Browse Source

place Fundamental modules in their own namespace to fix linker clash

pull/1639/head
bsp2 6 years ago
parent
commit
e9cdf1893c
35 changed files with 80 additions and 11947 deletions
  1. +4
    -0
      plugins/community/repos/Fundamental/src/8vert.cpp
  2. +4
    -1
      plugins/community/repos/Fundamental/src/ADSR.cpp
  3. +4
    -1
      plugins/community/repos/Fundamental/src/Delay.cpp
  4. +0
    -1
      plugins/community/repos/Fundamental/src/Fundamental.hpp
  5. +9
    -6
      plugins/community/repos/Fundamental/src/LFO.cpp
  6. +4
    -1
      plugins/community/repos/Fundamental/src/Mutes.cpp
  7. +6
    -0
      plugins/community/repos/Fundamental/src/Octave.cpp
  8. +4
    -0
      plugins/community/repos/Fundamental/src/SEQ3.cpp
  9. +4
    -0
      plugins/community/repos/Fundamental/src/Scope.cpp
  10. +9
    -6
      plugins/community/repos/Fundamental/src/SequentialSwitch.cpp
  11. +4
    -0
      plugins/community/repos/Fundamental/src/Unity.cpp
  12. +5
    -0
      plugins/community/repos/Fundamental/src/VCA.cpp
  13. +4
    -0
      plugins/community/repos/Fundamental/src/VCF.cpp
  14. +4
    -0
      plugins/community/repos/Fundamental/src/VCMixer.cpp
  15. +15
    -13
      plugins/community/repos/Fundamental/src/VCO.cpp
  16. +0
    -568
      vst2_bin/plugins/Fundamental/res__OLD/8vert.svg
  17. +0
    -277
      vst2_bin/plugins/Fundamental/res__OLD/ADSR.svg
  18. +0
    -285
      vst2_bin/plugins/Fundamental/res__OLD/Delay.svg
  19. +0
    -450
      vst2_bin/plugins/Fundamental/res__OLD/LFO-1.svg
  20. +0
    -296
      vst2_bin/plugins/Fundamental/res__OLD/LFO-2.svg
  21. +0
    -1254
      vst2_bin/plugins/Fundamental/res__OLD/Mutes.svg
  22. +0
    -523
      vst2_bin/plugins/Fundamental/res__OLD/SEQ3.svg
  23. +0
    -377
      vst2_bin/plugins/Fundamental/res__OLD/Scope.svg
  24. +0
    -484
      vst2_bin/plugins/Fundamental/res__OLD/SequentialSwitch1.svg
  25. +0
    -490
      vst2_bin/plugins/Fundamental/res__OLD/SequentialSwitch2.svg
  26. +0
    -1771
      vst2_bin/plugins/Fundamental/res__OLD/Unity.svg
  27. +0
    -2539
      vst2_bin/plugins/Fundamental/res__OLD/VCA-1.svg
  28. +0
    -771
      vst2_bin/plugins/Fundamental/res__OLD/VCA.svg
  29. +0
    -317
      vst2_bin/plugins/Fundamental/res__OLD/VCF.svg
  30. +0
    -587
      vst2_bin/plugins/Fundamental/res__OLD/VCMixer.svg
  31. +0
    -447
      vst2_bin/plugins/Fundamental/res__OLD/VCO-1.svg
  32. +0
    -307
      vst2_bin/plugins/Fundamental/res__OLD/VCO-2.svg
  33. +0
    -93
      vst2_bin/plugins/Fundamental/res__OLD/fonts/OFL.txt
  34. BIN
      vst2_bin/plugins/Fundamental/res__OLD/fonts/Sudo.ttf
  35. +0
    -82
      vst2_bin/plugins/Fundamental/res__OLD/test.svg

+ 4
- 0
plugins/community/repos/Fundamental/src/8vert.cpp View File

@@ -1,5 +1,6 @@
#include "Fundamental.hpp" #include "Fundamental.hpp"


namespace rack_plugin_Fundamental {


struct _8vert : Module { struct _8vert : Module {
enum ParamIds { enum ParamIds {
@@ -80,6 +81,9 @@ _8vertWidget::_8vertWidget(_8vert *module) : ModuleWidget(module) {
addChild(ModuleLightWidget::create<TinyLight<GreenRedLight>>(Vec(107.702, 319.521), module, 14)); addChild(ModuleLightWidget::create<TinyLight<GreenRedLight>>(Vec(107.702, 319.521), module, 14));
} }


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;


RACK_PLUGIN_MODEL_INIT(Fundamental, 8vert) { RACK_PLUGIN_MODEL_INIT(Fundamental, 8vert) {
Model *model = Model::create<_8vert, _8vertWidget>("Fundamental", "8vert", "8vert", ATTENUATOR_TAG); Model *model = Model::create<_8vert, _8vertWidget>("Fundamental", "8vert", "8vert", ATTENUATOR_TAG);


+ 4
- 1
plugins/community/repos/Fundamental/src/ADSR.cpp View File

@@ -1,6 +1,7 @@
#include "Fundamental.hpp" #include "Fundamental.hpp"
#include "dsp/digital.hpp" #include "dsp/digital.hpp"


namespace rack_plugin_Fundamental {


struct ADSR : Module { struct ADSR : Module {
enum ParamIds { enum ParamIds {
@@ -134,9 +135,11 @@ ADSRWidget::ADSRWidget(ADSR *module) : ModuleWidget(module) {
addChild(ModuleLightWidget::create<SmallLight<RedLight>>(Vec(94, 242), module, ADSR::RELEASE_LIGHT)); addChild(ModuleLightWidget::create<SmallLight<RedLight>>(Vec(94, 242), module, ADSR::RELEASE_LIGHT));
} }


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;


RACK_PLUGIN_MODEL_INIT(Fundamental, ADSR) { RACK_PLUGIN_MODEL_INIT(Fundamental, ADSR) {
Model *model = Model::create<ADSR, ADSRWidget>("Fundamental", "ADSR", "ADSR", ENVELOPE_GENERATOR_TAG); Model *model = Model::create<ADSR, ADSRWidget>("Fundamental", "ADSR", "ADSR", ENVELOPE_GENERATOR_TAG);
return model; return model;
} }


+ 4
- 1
plugins/community/repos/Fundamental/src/Delay.cpp View File

@@ -4,6 +4,7 @@
#include "dsp/filter.hpp" #include "dsp/filter.hpp"
#include "samplerate.h" #include "samplerate.h"


namespace rack_plugin_Fundamental {


#define HISTORY_SIZE (1<<21) #define HISTORY_SIZE (1<<21)


@@ -135,9 +136,11 @@ DelayWidget::DelayWidget(Delay *module) : ModuleWidget(module) {
addOutput(Port::create<PJ301MPort>(Vec(73, 320), Port::OUTPUT, module, Delay::OUT_OUTPUT)); addOutput(Port::create<PJ301MPort>(Vec(73, 320), Port::OUTPUT, module, Delay::OUT_OUTPUT));
} }


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;


RACK_PLUGIN_MODEL_INIT(Fundamental, Delay) { RACK_PLUGIN_MODEL_INIT(Fundamental, Delay) {
Model *modelDelay = Model::create<Delay, DelayWidget>("Fundamental", "Delay", "Delay", DELAY_TAG); Model *modelDelay = Model::create<Delay, DelayWidget>("Fundamental", "Delay", "Delay", DELAY_TAG);
return modelDelay; return modelDelay;
} }


+ 0
- 1
plugins/community/repos/Fundamental/src/Fundamental.hpp View File

@@ -1,6 +1,5 @@
#include "rack.hpp" #include "rack.hpp"



using namespace rack; using namespace rack;


RACK_PLUGIN_DECLARE(Fundamental); RACK_PLUGIN_DECLARE(Fundamental);


+ 9
- 6
plugins/community/repos/Fundamental/src/LFO.cpp View File

@@ -1,6 +1,7 @@
#include "Fundamental.hpp" #include "Fundamental.hpp"
#include "dsp/digital.hpp" #include "dsp/digital.hpp"


namespace rack_plugin_Fundamental {


struct LowFrequencyOscillator { struct LowFrequencyOscillator {
float phase = 0.0f; float phase = 0.0f;
@@ -155,12 +156,6 @@ LFOWidget::LFOWidget(LFO *module) : ModuleWidget(module) {
} }




RACK_PLUGIN_MODEL_INIT(Fundamental, LFO) {
Model *modelLFO = Model::create<LFO, LFOWidget>("Fundamental", "LFO", "LFO-1", LFO_TAG);
return modelLFO;
}


struct LFO2 : Module { struct LFO2 : Module {
enum ParamIds { enum ParamIds {
OFFSET_PARAM, OFFSET_PARAM,
@@ -244,6 +239,14 @@ LFO2Widget::LFO2Widget(LFO2 *module) : ModuleWidget(module) {
addChild(ModuleLightWidget::create<SmallLight<GreenRedLight>>(Vec(68, 42.5f), module, LFO2::PHASE_POS_LIGHT)); addChild(ModuleLightWidget::create<SmallLight<GreenRedLight>>(Vec(68, 42.5f), module, LFO2::PHASE_POS_LIGHT));
} }


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;

RACK_PLUGIN_MODEL_INIT(Fundamental, LFO) {
Model *modelLFO = Model::create<LFO, LFOWidget>("Fundamental", "LFO", "LFO-1", LFO_TAG);
return modelLFO;
}


RACK_PLUGIN_MODEL_INIT(Fundamental, LFO2) { RACK_PLUGIN_MODEL_INIT(Fundamental, LFO2) {
Model *modelLFO2 = Model::create<LFO2, LFO2Widget>("Fundamental", "LFO2", "LFO-2", LFO_TAG); Model *modelLFO2 = Model::create<LFO2, LFO2Widget>("Fundamental", "LFO2", "LFO-2", LFO_TAG);


+ 4
- 1
plugins/community/repos/Fundamental/src/Mutes.cpp View File

@@ -1,10 +1,10 @@
#include "Fundamental.hpp" #include "Fundamental.hpp"
#include "dsp/digital.hpp" #include "dsp/digital.hpp"


namespace rack_plugin_Fundamental {


#define NUM_CHANNELS 10 #define NUM_CHANNELS 10



struct Mutes : Module { struct Mutes : Module {
enum ParamIds { enum ParamIds {
MUTE_PARAM, MUTE_PARAM,
@@ -144,6 +144,9 @@ MutesWidget::MutesWidget(Mutes *module) : ModuleWidget(module) {
addChild(ModuleLightWidget::create<MuteLight<GreenLight>>(mm2px(Vec(17.32, 108.915)), module, Mutes::MUTE_LIGHT + 9)); addChild(ModuleLightWidget::create<MuteLight<GreenLight>>(mm2px(Vec(17.32, 108.915)), module, Mutes::MUTE_LIGHT + 9));
} }


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;


RACK_PLUGIN_MODEL_INIT(Fundamental, Mutes) { RACK_PLUGIN_MODEL_INIT(Fundamental, Mutes) {
Model *modelMutes = Model::create<Mutes, MutesWidget>("Fundamental", "Mutes", "Mutes", SWITCH_TAG); Model *modelMutes = Model::create<Mutes, MutesWidget>("Fundamental", "Mutes", "Mutes", SWITCH_TAG);


+ 6
- 0
plugins/community/repos/Fundamental/src/Octave.cpp View File

@@ -1,5 +1,7 @@
#include "Fundamental.hpp" #include "Fundamental.hpp"


namespace rack_plugin_Fundamental {

struct Octave : Module { struct Octave : Module {
enum ParamIds { enum ParamIds {
NUM_PARAMS NUM_PARAMS
@@ -160,6 +162,10 @@ struct OctaveWidget : ModuleWidget {
} }
}; };


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;

RACK_PLUGIN_MODEL_INIT(Fundamental, Octave) { RACK_PLUGIN_MODEL_INIT(Fundamental, Octave) {
Model *modelOctave = createModel<Octave, OctaveWidget>("Fundamental", "Octave", "Octave", UTILITY_TAG); Model *modelOctave = createModel<Octave, OctaveWidget>("Fundamental", "Octave", "Octave", UTILITY_TAG);
return modelOctave; return modelOctave;


+ 4
- 0
plugins/community/repos/Fundamental/src/SEQ3.cpp View File

@@ -1,6 +1,7 @@
#include "Fundamental.hpp" #include "Fundamental.hpp"
#include "dsp/digital.hpp" #include "dsp/digital.hpp"


namespace rack_plugin_Fundamental {


struct SEQ3 : Module { struct SEQ3 : Module {
enum ParamIds { enum ParamIds {
@@ -201,6 +202,9 @@ struct SEQ3Widget : ModuleWidget {
} }
}; };


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;


RACK_PLUGIN_MODEL_INIT(Fundamental, SEQ3) { RACK_PLUGIN_MODEL_INIT(Fundamental, SEQ3) {
Model *modelSEQ3 = Model::create<SEQ3, SEQ3Widget>("Fundamental", "SEQ3", "SEQ-3", SEQUENCER_TAG); Model *modelSEQ3 = Model::create<SEQ3, SEQ3Widget>("Fundamental", "SEQ3", "SEQ-3", SEQUENCER_TAG);


+ 4
- 0
plugins/community/repos/Fundamental/src/Scope.cpp View File

@@ -2,6 +2,7 @@
#include "Fundamental.hpp" #include "Fundamental.hpp"
#include "dsp/digital.hpp" #include "dsp/digital.hpp"


namespace rack_plugin_Fundamental {


#define BUFFER_SIZE 512 #define BUFFER_SIZE 512


@@ -338,6 +339,9 @@ ScopeWidget::ScopeWidget(Scope *module) : ModuleWidget(module) {
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(Vec(150, 296), module, Scope::EXTERNAL_LIGHT)); addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(Vec(150, 296), module, Scope::EXTERNAL_LIGHT));
} }


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;


RACK_PLUGIN_MODEL_INIT(Fundamental, Scope) { RACK_PLUGIN_MODEL_INIT(Fundamental, Scope) {
Model *modelScope = Model::create<Scope, ScopeWidget>("Fundamental", "Scope", "Scope", VISUAL_TAG); Model *modelScope = Model::create<Scope, ScopeWidget>("Fundamental", "Scope", "Scope", VISUAL_TAG);


+ 9
- 6
plugins/community/repos/Fundamental/src/SequentialSwitch.cpp View File

@@ -2,6 +2,7 @@
#include "dsp/digital.hpp" #include "dsp/digital.hpp"
#include "dsp/filter.hpp" #include "dsp/filter.hpp"


namespace rack_plugin_Fundamental {


template <int TYPE> template <int TYPE>
struct SequentialSwitch : Module { struct SequentialSwitch : Module {
@@ -104,12 +105,6 @@ SequentialSwitch1Widget::SequentialSwitch1Widget(SequentialSwitch<1> *module) :
} }




RACK_PLUGIN_MODEL_INIT(Fundamental, SequentialSwitch1) {
Model *modelSequentialSwitch1 = Model::create<SequentialSwitch<1>, SequentialSwitch1Widget>("Fundamental", "SequentialSwitch1", "Sequential Switch 1", UTILITY_TAG);
return modelSequentialSwitch1;
}


struct SequentialSwitch2Widget : ModuleWidget { struct SequentialSwitch2Widget : ModuleWidget {
SequentialSwitch2Widget(SequentialSwitch<2> *module); SequentialSwitch2Widget(SequentialSwitch<2> *module);
}; };
@@ -138,6 +133,14 @@ SequentialSwitch2Widget::SequentialSwitch2Widget(SequentialSwitch<2> *module) :
addChild(ModuleLightWidget::create<TinyLight<GreenLight>>(mm2px(Vec(10.7321, 92.6276)), module, TSequentialSwitch::CHANNEL_LIGHT + 3)); addChild(ModuleLightWidget::create<TinyLight<GreenLight>>(mm2px(Vec(10.7321, 92.6276)), module, TSequentialSwitch::CHANNEL_LIGHT + 3));
} }


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;

RACK_PLUGIN_MODEL_INIT(Fundamental, SequentialSwitch1) {
Model *modelSequentialSwitch1 = Model::create<SequentialSwitch<1>, SequentialSwitch1Widget>("Fundamental", "SequentialSwitch1", "Sequential Switch 1", UTILITY_TAG);
return modelSequentialSwitch1;
}


RACK_PLUGIN_MODEL_INIT(Fundamental, SequentialSwitch2) { RACK_PLUGIN_MODEL_INIT(Fundamental, SequentialSwitch2) {
Model *modelSequentialSwitch2 = Model::create<SequentialSwitch<2>, SequentialSwitch2Widget>("Fundamental", "SequentialSwitch2", "Sequential Switch 2", UTILITY_TAG); Model *modelSequentialSwitch2 = Model::create<SequentialSwitch<2>, SequentialSwitch2Widget>("Fundamental", "SequentialSwitch2", "Sequential Switch 2", UTILITY_TAG);


+ 4
- 0
plugins/community/repos/Fundamental/src/Unity.cpp View File

@@ -1,6 +1,7 @@
#include "Fundamental.hpp" #include "Fundamental.hpp"
#include "dsp/vumeter.hpp" #include "dsp/vumeter.hpp"


namespace rack_plugin_Fundamental {


struct Unity : Module { struct Unity : Module {
enum ParamIds { enum ParamIds {
@@ -158,6 +159,9 @@ void UnityWidget::appendContextMenu(Menu *menu) {
menu->addChild(mergeItem); menu->addChild(mergeItem);
} }


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;


RACK_PLUGIN_MODEL_INIT(Fundamental, Unity) { RACK_PLUGIN_MODEL_INIT(Fundamental, Unity) {
Model *modelUnity = Model::create<Unity, UnityWidget>("Fundamental", "Unity", "Unity", MIXER_TAG, UTILITY_TAG, DUAL_TAG); Model *modelUnity = Model::create<Unity, UnityWidget>("Fundamental", "Unity", "Unity", MIXER_TAG, UTILITY_TAG, DUAL_TAG);


+ 5
- 0
plugins/community/repos/Fundamental/src/VCA.cpp View File

@@ -1,5 +1,6 @@
#include "Fundamental.hpp" #include "Fundamental.hpp"


namespace rack_plugin_Fundamental {


struct VCA : Module { struct VCA : Module {
enum ParamIds { enum ParamIds {
@@ -161,6 +162,10 @@ struct VCA_1Widget : ModuleWidget {
} }
}; };


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;

RACK_PLUGIN_MODEL_INIT(Fundamental, VCA_1) { RACK_PLUGIN_MODEL_INIT(Fundamental, VCA_1) {
Model *modelVCA_1 = Model::create<VCA_1, VCA_1Widget>("Fundamental", "VCA-1", "VCA-1", AMPLIFIER_TAG); Model *modelVCA_1 = Model::create<VCA_1, VCA_1Widget>("Fundamental", "VCA-1", "VCA-1", AMPLIFIER_TAG);
return modelVCA_1; return modelVCA_1;


+ 4
- 0
plugins/community/repos/Fundamental/src/VCF.cpp View File

@@ -3,6 +3,7 @@
#include "dsp/resampler.hpp" #include "dsp/resampler.hpp"
#include "dsp/ode.hpp" #include "dsp/ode.hpp"


namespace rack_plugin_Fundamental {


inline float clip(float x) { inline float clip(float x) {
return tanhf(x); return tanhf(x);
@@ -170,6 +171,9 @@ struct VCFWidget : ModuleWidget {
} }
}; };


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;


RACK_PLUGIN_MODEL_INIT(Fundamental, VCF) { RACK_PLUGIN_MODEL_INIT(Fundamental, VCF) {
Model *modelVCF = Model::create<VCF, VCFWidget>("Fundamental", "VCF", "VCF", FILTER_TAG); Model *modelVCF = Model::create<VCF, VCFWidget>("Fundamental", "VCF", "VCF", FILTER_TAG);


+ 4
- 0
plugins/community/repos/Fundamental/src/VCMixer.cpp View File

@@ -1,5 +1,6 @@
#include "Fundamental.hpp" #include "Fundamental.hpp"


namespace rack_plugin_Fundamental {


struct VCMixer : Module { struct VCMixer : Module {
enum ParamIds { enum ParamIds {
@@ -73,6 +74,9 @@ struct VCMixerWidget : ModuleWidget {
} }
}; };


} // namespace rack_plugin_Fundamental

using namespace rack_plugin_Fundamental;


RACK_PLUGIN_MODEL_INIT(Fundamental, VCMixer) { RACK_PLUGIN_MODEL_INIT(Fundamental, VCMixer) {
Model *modelVCMixer = Model::create<VCMixer, VCMixerWidget>("Fundamental", "VCMixer", "Mixer", MIXER_TAG, AMPLIFIER_TAG); Model *modelVCMixer = Model::create<VCMixer, VCMixerWidget>("Fundamental", "VCMixer", "Mixer", MIXER_TAG, AMPLIFIER_TAG);


+ 15
- 13
plugins/community/repos/Fundamental/src/VCO.cpp
File diff suppressed because it is too large
View File


+ 0
- 568
vst2_bin/plugins/Fundamental/res__OLD/8vert.svg View File

@@ -1,568 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="120.18444"
height="379.99997"
viewBox="0 0 31.7988 100.54166"
version="1.1"
id="svg85367"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="8vert.svg">
<defs
id="defs85361" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="-33.845215"
inkscape:cy="183.98393"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
units="px"
inkscape:window-width="1920"
inkscape:window-height="1137"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:object-nodes="true"
inkscape:snap-page="true"
inkscape:object-paths="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="false"
inkscape:snap-bbox-midpoints="false"
inkscape:snap-intersection-paths="false"
inkscape:snap-smooth-nodes="false"
inkscape:snap-midpoints="false"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="false"
inkscape:snap-others="false" />
<metadata
id="metadata85364">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-116.50683,-85.327033)">
<path
inkscape:connector-curvature="0"
id="path65292"
d="m 116.58014,85.400352 h 31.65218 V 185.79646 h -31.65218 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69622"
d="m 146.36593,95.745855 c 0,-0.430211 -0.35259,-0.78171 -0.78281,-0.78171 h -6.00997 c -0.43022,0 -0.78278,0.351499 -0.78278,0.78171 v 9.133585 c 0,0.43021 0.35256,0.78279 0.78278,0.78279 h 6.00997 c 0.43022,0 0.78281,-0.35258 0.78281,-0.78279 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602381"
d="m 141.25963,97.550775 c 0.38817,0 0.67281,-0.293276 0.67281,-0.651245 0,-0.357967 -0.28034,-0.646931 -0.6685,-0.646931 -0.38815,0 -0.66848,0.293275 -0.66848,0.646931 v 0.0043 c 0,0.357967 0.28033,0.646931 0.66417,0.646931 z m 0.005,-0.254461 c -0.21993,0 -0.37953,-0.181141 -0.37953,-0.396784 0,-0.215644 0.15526,-0.39247 0.37523,-0.39247 0.22426,0 0.38383,0.176826 0.38383,0.39247 v 0.0043 c 0,0.215644 -0.15526,0.39247 -0.37953,0.39247 z m 0,0"
id="path85036" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602381"
d="m 142.75921,97.550775 c 0.34072,0 0.55205,-0.189766 0.55205,-0.5693 v -0.582238 c 0,-0.07763 -0.0603,-0.138012 -0.13802,-0.138012 -0.0776,0 -0.13801,0.06038 -0.13801,0.138012 v 0.595176 c 0,0.198392 -0.10351,0.301901 -0.27171,0.301901 -0.16819,0 -0.27169,-0.10782 -0.27169,-0.310527 v -0.58655 c 0,-0.07763 -0.0604,-0.138012 -0.13802,-0.138012 -0.0733,0 -0.13801,0.06038 -0.13801,0.138012 v 0.590865 c 0,0.370907 0.20702,0.560673 0.54341,0.560673 z m 0,0"
id="path85028" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602381"
d="m 143.93728,97.399823 c 0,0.07763 0.0603,0.138012 0.13801,0.138012 0.0776,0 0.13802,-0.06038 0.13802,-0.138012 v -0.8712 h 0.26307 c 0.0733,0 0.1294,-0.05607 0.1294,-0.129386 0,-0.069 -0.0561,-0.125073 -0.1294,-0.125073 h -0.80651 c -0.069,0 -0.12507,0.05607 -0.12507,0.125073 0,0.07332 0.056,0.129386 0.12507,0.129386 h 0.26741 z m 0,0"
id="path85032" />
<path
inkscape:connector-curvature="0"
id="path69634"
d="m 128.07179,97.452673 c 0,-0.07979 0.0647,-0.144482 0.14124,-0.144482 h 0.77524 c 0.0776,0 0.14127,0.06469 0.14127,0.144482 0,0.07655 -0.0636,0.141247 -0.14127,0.141247 h -0.77524 c -0.0765,0 -0.14124,-0.06469 -0.14124,-0.141247"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69636"
d="m 135.93954,97.474236 h -0.35256 c -0.0754,0 -0.13693,-0.0593 -0.13693,-0.135853 0,-0.07547 0.0615,-0.136935 0.13693,-0.136935 h 0.35256 v -0.345031 c 0,-0.07979 0.0615,-0.142323 0.14127,-0.142323 0.0776,0 0.14124,0.06253 0.14124,0.142323 v 0.345031 h 0.35365 c 0.0744,0 0.13693,0.06146 0.13693,0.136935 0,0.07655 -0.0625,0.135853 -0.13693,0.135853 h -0.35365 v 0.34611 c 0,0.07871 -0.0636,0.141246 -0.14124,0.141246 -0.0798,0 -0.14127,-0.06254 -0.14127,-0.141246 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69638"
d="m 122.24835,101.87444 h 20.32979"
style="fill:none;stroke:#000000;stroke-width:0.18383186;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602381"
d="m 127.8396,92.845582 c 0.51321,0 0.89274,-0.254459 0.89274,-0.685746 v -0.0043 c 0,-0.276024 -0.13801,-0.422661 -0.3752,-0.547735 0.18113,-0.107822 0.29758,-0.258772 0.29758,-0.504606 v -0.0086 c 0,-0.357968 -0.32347,-0.633992 -0.81512,-0.633992 -0.49168,0 -0.81516,0.280337 -0.81516,0.633992 v 0.0086 c 0,0.245834 0.11646,0.396784 0.29328,0.504606 -0.24153,0.112135 -0.37089,0.280337 -0.37089,0.560674 v 0.0086 c 0,0.401097 0.37953,0.668495 0.89277,0.668495 z m 0,-1.405996 c -0.20272,0 -0.33211,-0.12076 -0.33211,-0.28465 v -0.0086 c 0,-0.142325 0.12509,-0.267398 0.33211,-0.267398 0.20702,0 0.33208,0.129386 0.33208,0.271711 v 0.0086 c 0,0.159577 -0.1294,0.280337 -0.33208,0.280337 z m 0,0.983335 c -0.25016,0 -0.40112,-0.129387 -0.40112,-0.288963 v -0.0043 c 0,-0.181141 0.16821,-0.284649 0.40112,-0.284649 0.23288,0 0.40108,0.103508 0.40108,0.284649 v 0.0043 c 0,0.163889 -0.15095,0.288963 -0.40108,0.288963 z m 0,0"
id="path85020" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602381"
d="m 130.03884,92.845582 h 0.0345 c 0.13801,0 0.23288,-0.07332 0.28464,-0.198392 l 0.75906,-1.81572 c 0.013,-0.03019 0.026,-0.07332 0.026,-0.112134 0,-0.142325 -0.11215,-0.245833 -0.25017,-0.245833 -0.12076,0 -0.21132,0.07763 -0.24582,0.159575 l -0.58655,1.518131 -0.57791,-1.500879 c -0.0388,-0.103509 -0.12509,-0.176827 -0.25877,-0.176827 -0.14235,0 -0.25447,0.107821 -0.25447,0.250146 0,0.04313 0.013,0.08195 0.0302,0.125073 l 0.75043,1.798468 c 0.0517,0.125073 0.15095,0.198392 0.28896,0.198392 z m 0,0"
id="path85024" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602381"
d="m 131.77078,92.811079 h 1.29817 c 0.1294,0 0.2286,-0.0992 0.2286,-0.224269 0,-0.125074 -0.0992,-0.228582 -0.2286,-0.228582 h -1.048 v -0.487355 h 0.88413 c 0.12506,0 0.22857,-0.0992 0.22857,-0.22427 0,-0.129385 -0.10351,-0.228582 -0.22857,-0.228582 h -0.88413 v -0.470102 h 1.03508 c 0.12507,0 0.22858,-0.0992 0.22858,-0.228583 0,-0.125073 -0.10351,-0.228582 -0.22858,-0.228582 h -1.28525 c -0.14232,0 -0.25446,0.116447 -0.25446,0.258772 v 1.807094 c 0,0.142325 0.11214,0.254459 0.25446,0.254459 z m 0,0"
id="path85016" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602381"
d="m 133.7687,92.573871 c 0,0.142325 0.11214,0.258772 0.25447,0.258772 0.14231,0 0.25446,-0.116447 0.25446,-0.258772 v -0.504606 h 0.4054 l 0.49598,0.62968 c 0.0604,0.07763 0.13802,0.133698 0.25447,0.133698 0.12076,0 0.24152,-0.09488 0.24152,-0.237208 0,-0.07763 -0.0345,-0.133699 -0.082,-0.194079 l -0.35364,-0.431287 c 0.28033,-0.116447 0.46145,-0.340717 0.46145,-0.707311 v -0.0043 c 0,-0.219957 -0.069,-0.401098 -0.19838,-0.530484 -0.15095,-0.150953 -0.37953,-0.23721 -0.67711,-0.23721 h -0.8022 c -0.14233,0 -0.25447,0.116447 -0.25447,0.258772 z m 0.50893,-0.953145 v -0.668495 h 0.5046 c 0.25016,0 0.40109,0.112135 0.40109,0.332092 v 0.0043 c 0,0.198391 -0.14232,0.332091 -0.38814,0.332091 z m 0,0"
id="path85012" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602381"
d="m 136.68934,92.573871 c 0,0.142325 0.11212,0.258772 0.25443,0.258772 0.14235,0 0.25447,-0.116447 0.25447,-0.258772 v -1.613014 h 0.49168 c 0.12937,0 0.23288,-0.103509 0.23288,-0.232895 0,-0.129386 -0.10351,-0.237208 -0.23288,-0.237208 h -1.49227 c -0.12937,0 -0.23287,0.107822 -0.23287,0.237208 0,0.129386 0.1035,0.232895 0.23287,0.232895 h 0.49169 z m 0,0"
id="path85008" />
<path
inkscape:connector-curvature="0"
id="path69666"
d="m 146.36593,108.90443 c 0,-0.35582 -0.29112,-0.64693 -0.64695,-0.64693 h -6.28169 c -0.35582,0 -0.64692,0.29111 -0.64692,0.64693 v 6.28169 c 0,0.35582 0.2911,0.64693 0.64692,0.64693 h 6.28169 c 0.35583,0 0.64695,-0.29111 0.64695,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69668"
d="m 122.24835,112.04528 h 20.32979"
style="fill:none;stroke:#000000;stroke-width:0.18383186;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path69670"
d="m 146.36593,119.07634 c 0,-0.35581 -0.29112,-0.64694 -0.64695,-0.64694 h -6.28169 c -0.35582,0 -0.64692,0.29113 -0.64692,0.64694 v 6.28169 c 0,0.35581 0.2911,0.64693 0.64692,0.64693 h 6.28169 c 0.35583,0 0.64695,-0.29112 0.64695,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69672"
d="m 122.24835,122.21718 h 20.32979"
style="fill:none;stroke:#000000;stroke-width:0.18383186;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path69674"
d="m 146.36593,129.24716 c 0,-0.35581 -0.29112,-0.64693 -0.64695,-0.64693 h -6.28169 c -0.35582,0 -0.64692,0.29112 -0.64692,0.64693 v 6.28278 c 0,0.35581 0.2911,0.64693 0.64692,0.64693 h 6.28169 c 0.35583,0 0.64695,-0.29112 0.64695,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69676"
d="m 122.24835,132.38909 h 20.32979"
style="fill:none;stroke:#000000;stroke-width:0.18383186;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path69678"
d="m 146.36593,139.41908 c 0,-0.35582 -0.29112,-0.64694 -0.64695,-0.64694 h -6.28169 c -0.35582,0 -0.64692,0.29112 -0.64692,0.64694 v 6.28277 c 0,0.35581 0.2911,0.64585 0.64692,0.64585 h 6.28169 c 0.35583,0 0.64695,-0.29004 0.64695,-0.64585 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69680"
d="m 122.24835,142.55992 h 20.32979"
style="fill:none;stroke:#000000;stroke-width:0.18383186;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path69682"
d="m 146.36593,149.59098 c 0,-0.35581 -0.29112,-0.64693 -0.64695,-0.64693 h -6.28169 c -0.35582,0 -0.64692,0.29112 -0.64692,0.64693 v 6.2817 c 0,0.35581 0.2911,0.64694 0.64692,0.64694 h 6.28169 c 0.35583,0 0.64695,-0.29113 0.64695,-0.64694 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69684"
d="m 122.24835,152.73183 h 20.32979"
style="fill:none;stroke:#000000;stroke-width:0.18383186;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path69686"
d="m 146.36593,159.76181 c 0,-0.35581 -0.29112,-0.64585 -0.64695,-0.64585 h -6.28169 c -0.35582,0 -0.64692,0.29004 -0.64692,0.64585 v 6.28278 c 0,0.35581 0.2911,0.64692 0.64692,0.64692 h 6.28169 c 0.35583,0 0.64695,-0.29111 0.64695,-0.64692 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69688"
d="m 122.24835,162.90374 h 20.32979"
style="fill:none;stroke:#000000;stroke-width:0.18383186;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path69690"
d="m 146.36593,169.93371 c 0,-0.35581 -0.29112,-0.64692 -0.64695,-0.64692 h -6.28169 c -0.35582,0 -0.64692,0.29111 -0.64692,0.64692 v 6.28278 c 0,0.35581 0.2911,0.64586 0.64692,0.64586 h 6.28169 c 0.35583,0 0.64695,-0.29005 0.64695,-0.64586 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69692"
d="m 122.24835,173.07457 h 20.32979"
style="fill:none;stroke:#000000;stroke-width:0.18383186;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path69694"
d="m 128.07179,107.6235 c 0,-0.0787 0.0647,-0.1434 0.14124,-0.1434 h 0.77524 c 0.0776,0 0.14127,0.0647 0.14127,0.1434 0,0.0776 -0.0636,0.14233 -0.14127,0.14233 h -0.77524 c -0.0765,0 -0.14124,-0.0647 -0.14124,-0.14233"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69696"
d="m 135.93954,107.64615 h -0.35256 c -0.0754,0 -0.13693,-0.0593 -0.13693,-0.13694 0,-0.0744 0.0615,-0.13585 0.13693,-0.13585 h 0.35256 v -0.34611 c 0,-0.0787 0.0615,-0.14125 0.14127,-0.14125 0.0776,0 0.14124,0.0625 0.14124,0.14125 v 0.34611 h 0.35365 c 0.0744,0 0.13693,0.0615 0.13693,0.13585 0,0.0776 -0.0625,0.13694 -0.13693,0.13694 h -0.35365 v 0.34503 c 0,0.0798 -0.0636,0.14232 -0.14124,0.14232 -0.0798,0 -0.14127,-0.0625 -0.14127,-0.14232 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602381"
d="m 121.3855,97.442408 c 0,0.06038 0.0518,0.10782 0.11214,0.10782 0.0604,0 0.11213,-0.04744 0.11213,-0.10782 v -1.056655 c 0,-0.06038 -0.0517,-0.10782 -0.11213,-0.10782 -0.0604,0 -0.11214,0.04744 -0.11214,0.10782 z m 0,0"
id="path85000" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602381"
d="m 121.99871,97.442408 c 0,0.06038 0.0517,0.10782 0.11215,0.10782 0.0604,0 0.10782,-0.04744 0.10782,-0.10782 v -0.797883 l 0.64694,0.836698 c 0.0302,0.03882 0.0604,0.069 0.11212,0.069 h 0.009 c 0.0604,0 0.10782,-0.05176 0.10782,-0.112135 v -1.052337 c 0,-0.06038 -0.0474,-0.10782 -0.10782,-0.10782 -0.0604,0 -0.10784,0.04744 -0.10784,0.10782 v 0.772005 l -0.62966,-0.815134 c -0.0302,-0.03882 -0.0604,-0.06469 -0.11216,-0.06469 h -0.026 c -0.0604,0 -0.11215,0.05176 -0.11215,0.112134 z m 0,0"
id="path85004" />
<path
inkscape:connector-curvature="0"
id="path69704"
d="m 128.07179,117.79541 c 0,-0.0798 0.0647,-0.14448 0.14124,-0.14448 h 0.77524 c 0.0776,0 0.14127,0.0647 0.14127,0.14448 0,0.0765 -0.0636,0.14233 -0.14127,0.14233 h -0.77524 c -0.0765,0 -0.14124,-0.0658 -0.14124,-0.14233"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69706"
d="m 135.93954,117.81805 h -0.35256 c -0.0754,0 -0.13693,-0.0604 -0.13693,-0.13693 0,-0.0744 0.0615,-0.13693 0.13693,-0.13693 h 0.35256 v -0.34503 c 0,-0.0798 0.0615,-0.14233 0.14127,-0.14233 0.0776,0 0.14124,0.0625 0.14124,0.14233 v 0.34503 h 0.35365 c 0.0744,0 0.13693,0.0625 0.13693,0.13693 0,0.0765 -0.0625,0.13693 -0.13693,0.13693 h -0.35365 v 0.34503 c 0,0.0798 -0.0636,0.14233 -0.14124,0.14233 -0.0798,0 -0.14127,-0.0625 -0.14127,-0.14233 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69708"
d="m 128.07179,127.96732 c 0,-0.0798 0.0647,-0.14449 0.14124,-0.14449 h 0.77524 c 0.0776,0 0.14127,0.0647 0.14127,0.14449 0,0.0765 -0.0636,0.14124 -0.14127,0.14124 h -0.77524 c -0.0765,0 -0.14124,-0.0647 -0.14124,-0.14124"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69710"
d="m 135.93954,127.98888 h -0.35256 c -0.0754,0 -0.13693,-0.0593 -0.13693,-0.13585 0,-0.0755 0.0615,-0.13693 0.13693,-0.13693 h 0.35256 v -0.34503 c 0,-0.0798 0.0615,-0.14233 0.14127,-0.14233 0.0776,0 0.14124,0.0625 0.14124,0.14233 v 0.34503 h 0.35365 c 0.0744,0 0.13693,0.0614 0.13693,0.13693 0,0.0765 -0.0625,0.13585 -0.13693,0.13585 h -0.35365 v 0.34611 c 0,0.0787 -0.0636,0.14125 -0.14124,0.14125 -0.0798,0 -0.14127,-0.0625 -0.14127,-0.14125 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69712"
d="m 128.07179,138.13815 c 0,-0.0787 0.0647,-0.14341 0.14124,-0.14341 h 0.77524 c 0.0776,0 0.14127,0.0647 0.14127,0.14341 0,0.0776 -0.0636,0.14233 -0.14127,0.14233 h -0.77524 c -0.0765,0 -0.14124,-0.0647 -0.14124,-0.14233"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69714"
d="m 135.93954,138.1608 h -0.35256 c -0.0754,0 -0.13693,-0.0593 -0.13693,-0.13694 0,-0.0744 0.0615,-0.13586 0.13693,-0.13586 h 0.35256 v -0.34611 c 0,-0.0787 0.0615,-0.14124 0.14127,-0.14124 0.0776,0 0.14124,0.0625 0.14124,0.14124 v 0.34611 h 0.35365 c 0.0744,0 0.13693,0.0614 0.13693,0.13586 0,0.0776 -0.0625,0.13694 -0.13693,0.13694 h -0.35365 v 0.34502 c 0,0.0798 -0.0636,0.14233 -0.14124,0.14233 -0.0798,0 -0.14127,-0.0625 -0.14127,-0.14233 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69716"
d="m 128.07179,148.31006 c 0,-0.0798 0.0647,-0.14448 0.14124,-0.14448 h 0.77524 c 0.0776,0 0.14127,0.0647 0.14127,0.14448 0,0.0776 -0.0636,0.14232 -0.14127,0.14232 h -0.77524 c -0.0765,0 -0.14124,-0.0647 -0.14124,-0.14232"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69718"
d="m 135.93954,148.3327 h -0.35256 c -0.0754,0 -0.13693,-0.0593 -0.13693,-0.13693 0,-0.0744 0.0615,-0.13694 0.13693,-0.13694 h 0.35256 v -0.34503 c 0,-0.0798 0.0615,-0.14124 0.14127,-0.14124 0.0776,0 0.14124,0.0615 0.14124,0.14124 v 0.34503 h 0.35365 c 0.0744,0 0.13693,0.0625 0.13693,0.13694 0,0.0776 -0.0625,0.13693 -0.13693,0.13693 h -0.35365 v 0.34503 c 0,0.0798 -0.0636,0.14232 -0.14124,0.14232 -0.0798,0 -0.14127,-0.0625 -0.14127,-0.14232 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69720"
d="m 128.07179,158.48196 c 0,-0.0798 0.0647,-0.14447 0.14124,-0.14447 h 0.77524 c 0.0776,0 0.14127,0.0647 0.14127,0.14447 0,0.0765 -0.0636,0.14126 -0.14127,0.14126 h -0.77524 c -0.0765,0 -0.14124,-0.0647 -0.14124,-0.14126"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69722"
d="m 135.93954,158.50461 h -0.35256 c -0.0754,0 -0.13693,-0.0604 -0.13693,-0.13693 0,-0.0755 0.0615,-0.13694 0.13693,-0.13694 h 0.35256 v -0.34503 c 0,-0.0798 0.0615,-0.14232 0.14127,-0.14232 0.0776,0 0.14124,0.0625 0.14124,0.14232 v 0.34503 h 0.35365 c 0.0744,0 0.13693,0.0615 0.13693,0.13694 0,0.0765 -0.0625,0.13693 -0.13693,0.13693 h -0.35365 v 0.34503 c 0,0.0798 -0.0636,0.14125 -0.14124,0.14125 -0.0798,0 -0.14127,-0.0614 -0.14127,-0.14125 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69724"
d="m 128.07179,168.65387 c 0,-0.0798 0.0647,-0.14447 0.14124,-0.14447 h 0.77524 c 0.0776,0 0.14127,0.0647 0.14127,0.14447 0,0.0765 -0.0636,0.14125 -0.14127,0.14125 h -0.77524 c -0.0765,0 -0.14124,-0.0647 -0.14124,-0.14125"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69726"
d="m 135.93954,168.67544 h -0.35256 c -0.0754,0 -0.13693,-0.0593 -0.13693,-0.13586 0,-0.0755 0.0615,-0.13693 0.13693,-0.13693 h 0.35256 v -0.34503 c 0,-0.0798 0.0615,-0.14232 0.14127,-0.14232 0.0776,0 0.14124,0.0625 0.14124,0.14232 v 0.34503 h 0.35365 c 0.0744,0 0.13693,0.0615 0.13693,0.13693 0,0.0765 -0.0625,0.13586 -0.13693,0.13586 h -0.35365 v 0.3461 c 0,0.0787 -0.0636,0.14125 -0.14124,0.14125 -0.0798,0 -0.14127,-0.0625 -0.14127,-0.14125 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69832"
d="m 123.91418,103.51118 -1.67986,2.7376 -1.67985,-2.7376 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69834"
d="m 123.91418,113.68201 -1.67986,2.73867 -1.67985,-2.73867 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69836"
d="m 123.91418,123.85392 -1.67986,2.73867 -1.67985,-2.73867 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69838"
d="m 123.91418,134.02583 -1.67986,2.73867 -1.67985,-2.73867 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69840"
d="m 123.91418,144.19773 -1.67986,2.7376 -1.67985,-2.7376 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69842"
d="m 123.91418,154.36857 -1.67986,2.73867 -1.67985,-2.73867 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
inkscape:connector-curvature="0"
id="path69844"
d="m 123.91418,164.54047 -1.67986,2.73867 -1.67985,-2.73867 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381" />
<path
id="path84874"
d="m 145.70822,122.50184 c 0,1.88579 -1.4017,3.41471 -3.13008,3.41471 -1.72838,0 -3.13006,-1.52892 -3.13006,-3.41471 0,-1.88581 1.40168,-3.41472 3.13006,-3.41472 1.72838,0 3.13008,1.52891 3.13008,3.41472"
style="clip-rule:nonzero;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602381"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="widgets"
style="display:none">
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37540817;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect86905"
width="6.4250898"
height="6.4251032"
x="2.5154901"
y="13.334324" />
<rect
y="12.634559"
x="11.98764"
height="7.8246284"
width="7.8235297"
id="rect1803"
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.45714849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
y="13.334324"
x="22.858219"
height="6.4251032"
width="6.4261708"
id="rect1807"
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37543976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.04573651;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2032"
width="0.78277081"
height="0.78278655"
x="28.496229"
y="13.338635" />
<rect
y="23.506224"
x="2.5154901"
height="6.4251032"
width="6.4250898"
id="rect2036"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37540817;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37540817;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2038"
width="6.4250898"
height="6.4251032"
x="2.5154901"
y="33.677055" />
<rect
y="43.848965"
x="2.5154901"
height="6.4251032"
width="6.4250898"
id="rect2040"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37540817;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37540817;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2042"
width="6.4250898"
height="6.4251032"
x="2.5154901"
y="54.020874" />
<rect
y="64.191704"
x="2.5154901"
height="6.4251032"
width="6.4250898"
id="rect2044"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37540817;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37540817;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2046"
width="6.4250898"
height="6.4251032"
x="2.5154901"
y="74.363617" />
<rect
y="84.535515"
x="2.5154901"
height="6.4251032"
width="6.4250898"
id="rect2048"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37540817;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.45714849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2050"
width="7.8235297"
height="7.8246284"
x="11.98764"
y="22.806469" />
<rect
y="32.977299"
x="11.98764"
height="7.8246284"
width="7.8235297"
id="rect2052"
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.45714849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.45714849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2054"
width="7.8235297"
height="7.8246284"
x="11.98764"
y="43.149208" />
<rect
y="53.32111"
x="11.98764"
height="7.8246284"
width="7.8235297"
id="rect2056"
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.45714849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.45714849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2058"
width="7.8235297"
height="7.8246284"
x="11.98764"
y="63.493031" />
<rect
y="73.663849"
x="11.98764"
height="7.8246284"
width="7.8235297"
id="rect2060"
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.45714849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.45714849;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2062"
width="7.8235297"
height="7.8246284"
x="11.98764"
y="83.835762" />
<rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37543976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2064"
width="6.4261708"
height="6.4251032"
x="22.858219"
y="23.506224" />
<rect
y="33.677055"
x="22.858219"
height="6.4251032"
width="6.4261708"
id="rect2066"
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37543976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37543976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2068"
width="6.4261708"
height="6.4251032"
x="22.858219"
y="43.848965" />
<rect
y="54.020874"
x="22.858219"
height="6.4251032"
width="6.4261708"
id="rect2070"
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37543976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37543976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2072"
width="6.4261708"
height="6.4251032"
x="22.858219"
y="64.191704" />
<rect
y="74.363617"
x="22.858219"
height="6.4251032"
width="6.4261708"
id="rect2074"
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37543976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.37543976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2076"
width="6.4261708"
height="6.4251032"
x="22.858219"
y="84.535515" />
<rect
y="23.51054"
x="28.496229"
height="0.78278655"
width="0.78277081"
id="rect2078"
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.04573651;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.04573651;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2080"
width="0.78277081"
height="0.78278655"
x="28.496229"
y="33.682449" />
<rect
y="43.853279"
x="28.496229"
height="0.78278655"
width="0.78277081"
id="rect2082"
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.04573651;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.04573651;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2084"
width="0.78277081"
height="0.78278655"
x="28.496229"
y="54.025192" />
<rect
y="64.197098"
x="28.496229"
height="0.78278655"
width="0.78277081"
id="rect2086"
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.04573651;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.04573651;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2088"
width="0.78277081"
height="0.78278655"
x="28.496229"
y="74.367928" />
<rect
y="84.539833"
x="28.496229"
height="0.78278655"
width="0.78277081"
id="rect2090"
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.04573651;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.24102568;fill-rule:evenodd;stroke:none;stroke-width:0.04573651;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25098039;paint-order:normal"
id="rect2092"
width="0.78277081"
height="0.78278655"
x="28.496229"
y="84.539833" />
</g>
</svg>

+ 0
- 277
vst2_bin/plugins/Fundamental/res__OLD/ADSR.svg View File

@@ -1,277 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="120.18038"
height="380.00003"
viewBox="0 0 31.797726 100.54167"
version="1.1"
id="svg8033"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="ADSR.svg">
<defs
id="defs8027" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="-211.88627"
inkscape:cy="180.3675"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1200"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="0"
units="px" />
<metadata
id="metadata8030">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-84.642804,-25.235117)">
<path
inkscape:connector-curvature="0"
id="path33441"
d="M 84.716122,25.308436 H 116.36721 V 125.70454 H 84.716122 Z m 0,0"
style="fill:#e6e6e6;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 88.394439,108.58996 c 0.185455,0 0.336405,-0.0647 0.444225,-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.112133,-0.11214 H 88.45482 c -0.05175,0 -0.0992,0.0431 -0.0992,0.0992 0,0.0518 0.04744,0.0949 0.0992,0.0949 h 0.250145 v 0.2329 c -0.07763,0.0604 -0.185452,0.0949 -0.306213,0.0949 -0.25446,0 -0.426974,-0.18977 -0.426974,-0.44854 0,-0.24152 0.176826,-0.44423 0.409723,-0.44423 0.133699,0 0.224269,0.0388 0.3019,0.0992 0.02156,0.0129 0.04313,0.0259 0.06901,0.0259 0.06038,0 0.112136,-0.0517 0.112136,-0.11213 0,-0.0431 -0.02588,-0.0733 -0.04744,-0.0906 -0.112136,-0.0819 -0.241522,-0.12508 -0.426974,-0.12508 -0.379534,0 -0.64693,0.29759 -0.64693,0.64693 v 0.004 c 0,0.3666 0.254458,0.64693 0.651243,0.64693 z m 0,0"
id="path9367"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.154246,108.47352 c 0,0.0604 0.04744,0.1035 0.10351,0.1035 0.04744,0 0.08626,-0.0259 0.103508,-0.069 l 0.103507,-0.24152 H 90.0772 l 0.10351,0.2329 c 0.01725,0.0474 0.05175,0.0776 0.10782,0.0776 0.05607,0 0.103511,-0.0474 0.103511,-0.10351 0,-0.0173 -0.0043,-0.0345 -0.01294,-0.0474 l -0.465791,-1.04371 c -0.02588,-0.0518 -0.06901,-0.0863 -0.1337,-0.0863 h -0.0086 c -0.06469,0 -0.107823,0.0345 -0.133699,0.0863 l -0.465791,1.04371 c -0.0086,0.0173 -0.01725,0.0345 -0.01725,0.0474 z m 0.396785,-0.40541 0.219956,-0.50461 0.219956,0.50461 z m 0,0"
id="path9363"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 90.833858,108.4692 c 0,0.0604 0.05175,0.10782 0.112133,0.10782 0.06038,0 0.112136,-0.0474 0.112136,-0.10782 v -0.95314 h 0.306213 c 0.05607,0 0.0992,-0.0474 0.0992,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.0992,-0.10351 h -0.836698 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.306216 z m 0,0"
id="path9359"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 91.840407,108.5684 h 0.741815 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09919,-0.0992 H 91.95254 v -0.33641 h 0.53911 c 0.05175,0 0.0992,-0.0431 0.0992,-0.0949 0,-0.0561 -0.04744,-0.1035 -0.0992,-0.1035 h -0.53911 v -0.32347 h 0.621054 c 0.05175,0 0.09489,-0.0431 0.09489,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09489,-0.0992 h -0.733187 c -0.06038,0 -0.112136,0.0474 -0.112136,0.11213 v 1.03078 c 0,0.0647 0.05175,0.11213 0.112136,0.11213 z m 0,0"
id="path9355"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 97.094056,108.4692 c 0,0.0604 0.05175,0.10782 0.112136,0.10782 0.06038,0 0.112133,-0.0474 0.112133,-0.10782 v -0.34071 h 0.276024 l 0.306215,0.39247 c 0.02588,0.0345 0.05607,0.0561 0.107821,0.0561 0.05175,0 0.10351,-0.0388 0.10351,-0.10351 0,-0.0345 -0.01294,-0.0561 -0.0345,-0.0819 l -0.24152,-0.3019 c 0.168201,-0.0561 0.284649,-0.17683 0.284649,-0.37522 v -0.004 c 0,-0.11214 -0.0345,-0.20271 -0.10351,-0.27171 -0.07763,-0.0776 -0.202703,-0.12508 -0.362281,-0.12508 h -0.448537 c -0.06038,0 -0.112136,0.0474 -0.112136,0.11214 z m 0.224269,-0.53479 v -0.42267 h 0.319153 c 0.163889,0 0.258773,0.0733 0.258773,0.21134 0,0.12938 -0.0992,0.21133 -0.258773,0.21133 z m 0,0"
id="path9335"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 98.5667,108.5684 h 0.741815 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09919,-0.0992 h -0.629682 v -0.33641 h 0.53911 c 0.05175,0 0.0992,-0.0431 0.0992,-0.0949 0,-0.0561 -0.04744,-0.1035 -0.0992,-0.1035 h -0.53911 v -0.32347 h 0.621054 c 0.05175,0 0.09488,-0.0431 0.09488,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09488,-0.0992 H 98.5667 c -0.06038,0 -0.112135,0.0474 -0.112135,0.11213 v 1.03078 c 0,0.0647 0.05175,0.11213 0.112135,0.11213 z m 0,0"
id="path9331"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 100.03716,108.4692 c 0,0.0604 0.0517,0.10782 0.11213,0.10782 0.0604,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95314 h 0.30622 c 0.0561,0 0.0992,-0.0474 0.0992,-0.0992 0,-0.0561 -0.0431,-0.10351 -0.0992,-0.10351 h -0.836699 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.306219 z m 0,0"
id="path9327"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 100.9314,108.4692 c 0,0.0604 0.0517,0.10782 0.11214,0.10782 0.0604,0 0.11213,-0.0474 0.11213,-0.10782 v -0.34071 h 0.27602 l 0.30622,0.39247 c 0.0259,0.0345 0.0561,0.0561 0.10782,0.0561 0.0517,0 0.10351,-0.0388 0.10351,-0.10351 0,-0.0345 -0.0129,-0.0561 -0.0345,-0.0819 l -0.24152,-0.3019 c 0.1682,-0.0561 0.28465,-0.17683 0.28465,-0.37522 v -0.004 c 0,-0.11214 -0.0345,-0.20271 -0.10351,-0.27171 -0.0776,-0.0776 -0.2027,-0.12508 -0.36228,-0.12508 h -0.44854 c -0.0604,0 -0.11213,0.0474 -0.11213,0.11214 z m 0.22427,-0.53479 v -0.42267 h 0.31915 c 0.16389,0 0.25878,0.0733 0.25878,0.21134 0,0.12938 -0.0992,0.21133 -0.25878,0.21133 z m 0,0"
id="path9323"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 102.29892,108.4692 c 0,0.0604 0.0517,0.10782 0.11213,0.10782 0.0604,0 0.11214,-0.0474 0.11214,-0.10782 v -1.05665 c 0,-0.0604 -0.0518,-0.10782 -0.11214,-0.10782 -0.0604,0 -0.11213,0.0474 -0.11213,0.10782 z m 0,0"
id="path9319"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 103.50159,108.58996 c 0.18545,0 0.3364,-0.0647 0.44422,-0.13801 0.0517,-0.0302 0.0776,-0.0776 0.0776,-0.13801 v -0.3364 c 0,-0.0604 -0.0474,-0.11214 -0.11213,-0.11214 h -0.34934 c -0.0518,0 -0.0992,0.0431 -0.0992,0.0992 0,0.0518 0.0474,0.0949 0.0992,0.0949 h 0.25014 v 0.2329 c -0.0776,0.0604 -0.18545,0.0949 -0.30621,0.0949 -0.25446,0 -0.42698,-0.18977 -0.42698,-0.44854 0,-0.24152 0.17683,-0.44423 0.40973,-0.44423 0.1337,0 0.22427,0.0388 0.3019,0.0992 0.0216,0.0129 0.0431,0.0259 0.069,0.0259 0.0604,0 0.11213,-0.0517 0.11213,-0.11213 0,-0.0431 -0.0259,-0.0733 -0.0474,-0.0906 -0.11213,-0.0819 -0.24152,-0.12508 -0.42697,-0.12508 -0.37953,0 -0.64693,0.29759 -0.64693,0.64693 v 0.004 c 0,0.3666 0.25446,0.64693 0.65124,0.64693 z m 0,0"
id="path9315"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 95.835391,32.499206 c 0,0.133699 0.09919,0.241521 0.232894,0.241521 0.107823,0 0.19408,-0.06038 0.237207,-0.159577 l 0.159578,-0.383845 h 1.022149 l 0.155265,0.366594 c 0.04744,0.103509 0.125071,0.176828 0.245833,0.176828 0.133699,0 0.241522,-0.112135 0.241522,-0.245834 0,-0.0345 -0.0086,-0.06901 -0.02588,-0.103509 l -0.810815,-1.824345 c -0.05607,-0.125073 -0.155265,-0.202705 -0.293277,-0.202705 h -0.03019 c -0.138012,0 -0.24152,0.07763 -0.297587,0.202705 l -0.806509,1.824345 c -0.01725,0.0345 -0.03019,0.07332 -0.03019,0.107822 z m 0.819443,-0.75044 0.323467,-0.763378 0.319153,0.763378 z m 0,0"
id="path9075"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 98.507333,32.464703 c 0,0.142325 0.112136,0.254459 0.254461,0.254459 h 0.64693 c 0.728876,0 1.233486,-0.508919 1.233486,-1.160162 v -0.0043 c 0,-0.655556 -0.50461,-1.15585 -1.233486,-1.15585 h -0.64693 c -0.142325,0 -0.254461,0.116448 -0.254461,0.258773 z m 0.508918,-0.207018 v -1.39737 h 0.392473 c 0.418348,0 0.698686,0.288962 0.698686,0.698685 v 0.0086 c 0,0.409723 -0.280338,0.690059 -0.698686,0.690059 z m 0,0"
id="path9071"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 101.92129,32.753665 c 0.50029,0 0.84964,-0.258772 0.84964,-0.720249 v -0.0086 c 0,-0.401097 -0.26309,-0.569299 -0.73319,-0.694373 -0.4011,-0.103504 -0.5003,-0.150946 -0.5003,-0.301896 v -0.0086 c 0,-0.112135 0.0992,-0.202705 0.29759,-0.202705 0.15958,0 0.31916,0.05607 0.48736,0.155263 0.0388,0.02588 0.0776,0.03882 0.12938,0.03882 0.12939,0 0.23721,-0.103509 0.23721,-0.237208 0,-0.0992 -0.0561,-0.168202 -0.11213,-0.202705 -0.21133,-0.129386 -0.45285,-0.202705 -0.7375,-0.202705 -0.47442,0 -0.81082,0.276024 -0.81082,0.698685 v 0.0043 c 0,0.461478 0.3019,0.590864 0.76769,0.711624 0.38816,0.0992 0.4701,0.16389 0.4701,0.293276 v 0.0086 c 0,0.133699 -0.12939,0.215643 -0.3364,0.215643 -0.22427,0 -0.41835,-0.07763 -0.59087,-0.207017 -0.0345,-0.02588 -0.0819,-0.04744 -0.14664,-0.04744 -0.13369,0 -0.24152,0.103508 -0.24152,0.237207 0,0.07763 0.0431,0.150951 0.0992,0.189767 0.25878,0.185453 0.56499,0.280336 0.87121,0.280336 z m 0,0"
id="path9067"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 103.25218,32.481954 c 0,0.142325 0.11214,0.258773 0.25446,0.258773 0.14232,0 0.25446,-0.116448 0.25446,-0.258773 v -0.504606 h 0.40541 l 0.49598,0.62968 c 0.0604,0.07763 0.13801,0.133699 0.25446,0.133699 0.12076,0 0.24152,-0.09488 0.24152,-0.237208 0,-0.07763 -0.0345,-0.133699 -0.0819,-0.19408 l -0.35366,-0.431287 c 0.28034,-0.116447 0.46148,-0.340717 0.46148,-0.707311 v -0.0043 c 0,-0.219956 -0.069,-0.401097 -0.1984,-0.530483 -0.15095,-0.150953 -0.37953,-0.237211 -0.67712,-0.237211 h -0.80219 c -0.14232,0 -0.25446,0.116448 -0.25446,0.258773 z m 0.50892,-0.953144 v -0.668495 h 0.50461 c 0.25014,0 0.40109,0.112134 0.40109,0.332091 v 0.0043 c 0,0.198392 -0.14232,0.332091 -0.38816,0.332091 z m 0,0"
id="path9063"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.599095,40.443363 c 0.202705,0 0.336402,-0.06469 0.45285,-0.168202 0.02156,-0.01725 0.03882,-0.04744 0.03882,-0.07763 0,-0.05607 -0.05175,-0.103509 -0.107823,-0.103509 -0.02588,0 -0.04744,0.0086 -0.06469,0.02588 -0.09057,0.07763 -0.181139,0.12076 -0.314838,0.12076 -0.237209,0 -0.414036,-0.202705 -0.414036,-0.448538 0,-0.245834 0.176827,-0.444226 0.414036,-0.444226 0.120759,0 0.215643,0.04313 0.3019,0.112134 0.01294,0.01294 0.0345,0.02156 0.06469,0.02156 0.06038,0 0.112136,-0.04744 0.112136,-0.107822 0,-0.03882 -0.02156,-0.06901 -0.04313,-0.08626 -0.112136,-0.08626 -0.237207,-0.142325 -0.431287,-0.142325 -0.379534,0 -0.64693,0.293275 -0.64693,0.646931 v 0.0043 c 0,0.362281 0.271709,0.64693 0.638305,0.64693 z m 0,0"
id="path9003"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 90.889301,40.43905 h 0.01294 c 0.06038,0 0.103508,-0.0345 0.125071,-0.09057 l 0.444228,-1.039402 c 0.0043,-0.01294 0.0086,-0.03019 0.0086,-0.04744 0,-0.05607 -0.04744,-0.103508 -0.107823,-0.103508 -0.05175,0 -0.09057,0.0345 -0.107821,0.06901 l -0.3666,0.914322 -0.362281,-0.905703 c -0.01725,-0.04744 -0.05607,-0.07763 -0.112133,-0.07763 -0.06469,0 -0.112135,0.04744 -0.112135,0.107821 0,0.01725 0.0043,0.0345 0.01294,0.05175 l 0.439914,1.030776 c 0.02156,0.05607 0.06469,0.09057 0.125072,0.09057 z m 0,0"
id="path8999"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path34093"
d="m 90.69484,62.766808 h 15.01634"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path34095"
d="m 90.69484,80.370871 h 15.01634"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path34097"
d="m 90.69484,97.976013 h 15.01634"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path34099"
d="m 90.69484,45.161663 h 15.01634"
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 103.55021,37.705675 c 0,0.07332 0.0517,0.129387 0.12507,0.129387 0.0561,0 0.10351,-0.0345 0.12507,-0.08626 l 0.12939,-0.301901 h 0.75044 l 0.12507,0.293275 c 0.0259,0.05607 0.069,0.09488 0.1337,0.09488 0.0733,0 0.12939,-0.06038 0.12939,-0.133699 0,-0.01725 -0.004,-0.0345 -0.0173,-0.05607 l -0.57361,-1.280923 c -0.0302,-0.06901 -0.082,-0.112134 -0.15958,-0.112134 h -0.0129 c -0.0776,0 -0.1337,0.04313 -0.16389,0.112134 l -0.57361,1.280923 c -0.0129,0.02156 -0.0172,0.04313 -0.0172,0.06038 z m 0.48304,-0.49598 0.27171,-0.625366 0.27171,0.625366 z m 0,0"
id="path8947"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 105.59003,37.69705 c 0,0.07763 0.0604,0.138012 0.13801,0.138012 0.0733,0 0.13801,-0.06038 0.13801,-0.138012 v -1.168788 h 0.37522 c 0.069,0 0.12507,-0.05607 0.12507,-0.125074 0,-0.06901 -0.0561,-0.125073 -0.12507,-0.125073 h -1.02646 c -0.069,0 -0.12508,0.05607 -0.12508,0.125073 0,0.06901 0.0561,0.125074 0.12508,0.125074 h 0.37522 z m 0,0"
id="path8943"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 107.11235,37.69705 c 0,0.07763 0.0604,0.138012 0.13801,0.138012 0.0733,0 0.13802,-0.06038 0.13802,-0.138012 v -1.168788 h 0.37522 c 0.069,0 0.12507,-0.05607 0.12507,-0.125074 0,-0.06901 -0.0561,-0.125073 -0.12507,-0.125073 h -1.02647 c -0.069,0 -0.12507,0.05607 -0.12507,0.125073 0,0.06901 0.0561,0.125074 0.12507,0.125074 h 0.37522 z m 0,0"
id="path8939"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 103.46161,55.466665 c 0,0.07763 0.0604,0.138012 0.13801,0.138012 h 0.43991 c 0.48304,0 0.81945,-0.336404 0.81945,-0.772004 v -0.0043 c 0,-0.4356 -0.33641,-0.767692 -0.81945,-0.767692 h -0.43991 c -0.0776,0 -0.13801,0.05607 -0.13801,0.1337 z m 0.27171,-0.107823 v -1.05234 h 0.30621 c 0.32347,0 0.5348,0.224271 0.5348,0.526171 v 0.0043 c 0,0.3019 -0.21133,0.521856 -0.5348,0.521856 z m 0,0"
id="path8935"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 105.37433,55.604677 h 0.91002 c 0.0647,0 0.12076,-0.05175 0.12076,-0.120761 0,-0.06901 -0.0561,-0.120758 -0.12076,-0.120758 h -0.77632 v -0.418349 h 0.66418 c 0.069,0 0.12077,-0.05175 0.12077,-0.116448 0,-0.06901 -0.0518,-0.125074 -0.12077,-0.125074 h -0.66418 v -0.401098 h 0.76338 c 0.069,0 0.12076,-0.05175 0.12076,-0.120758 0,-0.06901 -0.0517,-0.120762 -0.12076,-0.120762 h -0.89708 c -0.0776,0 -0.13801,0.05607 -0.13801,0.1337 v 1.272296 c 0,0.07763 0.0604,0.138012 0.13801,0.138012 z m 0,0"
id="path8931"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 107.44279,55.630554 c 0.25015,0 0.41835,-0.07763 0.56499,-0.207018 0.0216,-0.02156 0.0431,-0.05607 0.0431,-0.09919 0,-0.06469 -0.0604,-0.125074 -0.12939,-0.125074 -0.0345,0 -0.0604,0.01294 -0.0819,0.03019 -0.11213,0.09488 -0.22427,0.15095 -0.38384,0.15095 -0.29759,0 -0.51324,-0.245834 -0.51324,-0.547735 v -0.0043 c 0,-0.301901 0.21565,-0.547735 0.51324,-0.547735 0.14663,0 0.25877,0.05607 0.36659,0.142324 0.0173,0.01294 0.0431,0.02588 0.0819,0.02588 0.0733,0 0.1337,-0.06038 0.1337,-0.133696 0,-0.04744 -0.0216,-0.08626 -0.0517,-0.107823 -0.1337,-0.103508 -0.29327,-0.176829 -0.53048,-0.176829 -0.4701,0 -0.79788,0.362283 -0.79788,0.802195 v 0.0043 c 0,0.444225 0.3364,0.793568 0.78494,0.793568 z m 0,0"
id="path8927"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 104.14855,73.229933 c 0.32346,0 0.55205,-0.172514 0.55205,-0.461476 v -0.0043 c 0,-0.254461 -0.1682,-0.370909 -0.49598,-0.452853 -0.29759,-0.06901 -0.37091,-0.125074 -0.37091,-0.24152 v -0.0043 c 0,-0.10351 0.0949,-0.185454 0.25446,-0.185454 0.12076,0 0.23289,0.04313 0.35366,0.116448 0.0216,0.01294 0.0431,0.02156 0.0733,0.02156 0.069,0 0.12507,-0.05607 0.12507,-0.125074 0,-0.05175 -0.0259,-0.09057 -0.0604,-0.10782 -0.13801,-0.09489 -0.29328,-0.146638 -0.48735,-0.146638 -0.30622,0 -0.53049,0.185452 -0.53049,0.448538 v 0.0043 c 0,0.284649 0.18546,0.383847 0.51755,0.461478 0.28465,0.06901 0.34934,0.129384 0.34934,0.237207 v 0.0043 c 0,0.116448 -0.10782,0.194079 -0.27602,0.194079 -0.16821,0 -0.30622,-0.05607 -0.43129,-0.159575 -0.0173,-0.01294 -0.0431,-0.02156 -0.082,-0.02156 -0.069,0 -0.12507,0.05607 -0.12507,0.125074 0,0.04313 0.0216,0.08194 0.0517,0.103511 0.17251,0.129383 0.37091,0.194077 0.58224,0.194077 z m 0,0"
id="path8923"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 105.70536,73.234246 c 0.40541,0 0.66418,-0.232894 0.66418,-0.694373 v -0.75475 c 0,-0.07332 -0.0604,-0.133699 -0.13369,-0.133699 -0.0776,0 -0.13802,0.06038 -0.13802,0.133699 v 0.767691 c 0,0.284649 -0.14664,0.426974 -0.38816,0.426974 -0.24151,0 -0.39247,-0.15095 -0.39247,-0.439915 v -0.75475 c 0,-0.07332 -0.0561,-0.133699 -0.1337,-0.133699 -0.0776,0 -0.13801,0.06038 -0.13801,0.133699 v 0.767691 c 0,0.448538 0.25877,0.681432 0.65987,0.681432 z m 0,0"
id="path8919"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 107.34137,73.229933 c 0.32347,0 0.55205,-0.172514 0.55205,-0.461476 v -0.0043 c 0,-0.254461 -0.1682,-0.370909 -0.49598,-0.452853 -0.29759,-0.06901 -0.37091,-0.125074 -0.37091,-0.24152 v -0.0043 c 0,-0.10351 0.0949,-0.185454 0.25446,-0.185454 0.12076,0 0.2329,0.04313 0.35366,0.116448 0.0216,0.01294 0.0431,0.02156 0.0733,0.02156 0.069,0 0.12507,-0.05607 0.12507,-0.125074 0,-0.05175 -0.0259,-0.09057 -0.0604,-0.10782 -0.13801,-0.09489 -0.29327,-0.146638 -0.48735,-0.146638 -0.30622,0 -0.53049,0.185452 -0.53049,0.448538 v 0.0043 c 0,0.284649 0.18546,0.383847 0.51755,0.461478 0.28465,0.06901 0.34934,0.129384 0.34934,0.237207 v 0.0043 c 0,0.116448 -0.10782,0.194079 -0.27602,0.194079 -0.1682,0 -0.30622,-0.05607 -0.43129,-0.159575 -0.0173,-0.01294 -0.0431,-0.02156 -0.082,-0.02156 -0.069,0 -0.12507,0.05607 -0.12507,0.125074 0,0.04313 0.0216,0.08194 0.0517,0.103511 0.17252,0.129383 0.37091,0.194077 0.58224,0.194077 z m 0,0"
id="path8915"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 103.63384,90.686993 c 0,0.07763 0.0604,0.138012 0.13801,0.138012 0.0733,0 0.1337,-0.06038 0.1337,-0.138012 v -0.414036 h 0.34071 l 0.37522,0.478729 c 0.0345,0.04313 0.0733,0.07332 0.1337,0.07332 0.069,0 0.12939,-0.05175 0.12939,-0.129386 0,-0.03881 -0.0172,-0.06901 -0.0431,-0.103508 l -0.29328,-0.370906 c 0.20702,-0.06469 0.34935,-0.215646 0.34935,-0.461478 v -0.0043 c 0,-0.133699 -0.0474,-0.250148 -0.12939,-0.336405 -0.0992,-0.09488 -0.25015,-0.15095 -0.44423,-0.15095 h -0.55204 c -0.0776,0 -0.13802,0.05607 -0.13802,0.1337 z m 0.27171,-0.655555 v -0.517546 h 0.39678 c 0.19839,0 0.31915,0.09057 0.31915,0.25446 v 0.0043 c 0,0.159575 -0.12507,0.258773 -0.31915,0.258773 z m 0,0"
id="path8911"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 105.42954,90.812067 h 0.91002 c 0.0647,0 0.12076,-0.05175 0.12076,-0.120761 0,-0.06901 -0.0561,-0.120759 -0.12076,-0.120759 h -0.77632 v -0.418348 h 0.66418 c 0.069,0 0.12076,-0.05175 0.12076,-0.116449 0,-0.06901 -0.0517,-0.125073 -0.12076,-0.125073 h -0.66418 v -0.401098 h 0.76338 c 0.069,0 0.12076,-0.05175 0.12076,-0.120759 0,-0.06901 -0.0517,-0.120761 -0.12076,-0.120761 h -0.89708 c -0.0776,0 -0.13801,0.05607 -0.13801,0.1337 v 1.272296 c 0,0.07763 0.0604,0.138012 0.13801,0.138012 z m 0,0"
id="path8907"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 106.81739,90.674055 c 0,0.07763 0.0604,0.138012 0.13801,0.138012 h 0.83239 c 0.069,0 0.12507,-0.05607 0.12507,-0.125074 0,-0.06901 -0.0561,-0.120761 -0.12507,-0.120761 H 107.0891 V 89.38882 c 0,-0.07332 -0.0604,-0.133699 -0.1337,-0.133699 -0.0776,0 -0.13801,0.06038 -0.13801,0.133699 z m 0,0"
id="path8903"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.599095,58.047964 c 0.202705,0 0.336402,-0.06469 0.45285,-0.168201 0.02156,-0.01725 0.03882,-0.04744 0.03882,-0.07763 0,-0.05607 -0.05175,-0.10351 -0.107823,-0.10351 -0.02588,0 -0.04744,0.0086 -0.06469,0.02588 -0.09057,0.07763 -0.181139,0.120758 -0.314838,0.120758 -0.237209,0 -0.414036,-0.202702 -0.414036,-0.448537 0,-0.245835 0.176827,-0.444225 0.414036,-0.444225 0.120759,0 0.215643,0.04313 0.3019,0.112133 0.01294,0.01294 0.0345,0.02156 0.06469,0.02156 0.06038,0 0.112136,-0.04744 0.112136,-0.107823 0,-0.03882 -0.02156,-0.06901 -0.04313,-0.08626 -0.112136,-0.08626 -0.237207,-0.142325 -0.431287,-0.142325 -0.379534,0 -0.64693,0.293275 -0.64693,0.64693 v 0.0043 c 0,0.36228 0.271709,0.64693 0.638305,0.64693 z m 0,0"
id="path8863"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 90.889301,58.043651 h 0.01294 c 0.06038,0 0.103508,-0.0345 0.125071,-0.09057 l 0.444228,-1.039403 c 0.0043,-0.01294 0.0086,-0.03019 0.0086,-0.04744 0,-0.05607 -0.04744,-0.103508 -0.107823,-0.103508 -0.05175,0 -0.09057,0.0345 -0.107821,0.06901 l -0.3666,0.914324 -0.362281,-0.905703 c -0.01725,-0.04744 -0.05607,-0.07763 -0.112133,-0.07763 -0.06469,0 -0.112135,0.04744 -0.112135,0.107821 0,0.01725 0.0043,0.0345 0.01294,0.05175 l 0.439914,1.030777 c 0.02156,0.05607 0.06469,0.09057 0.125072,0.09057 z m 0,0"
id="path8859"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.599095,75.652209 c 0.202705,0 0.336402,-0.06469 0.45285,-0.168201 0.02156,-0.01725 0.03882,-0.04744 0.03882,-0.07763 0,-0.05607 -0.05175,-0.10351 -0.107823,-0.10351 -0.02588,0 -0.04744,0.0086 -0.06469,0.02588 -0.09057,0.07763 -0.181139,0.120758 -0.314838,0.120758 -0.237209,0 -0.414036,-0.202702 -0.414036,-0.448537 0,-0.245835 0.176827,-0.444225 0.414036,-0.444225 0.120759,0 0.215643,0.04313 0.3019,0.112133 0.01294,0.01294 0.0345,0.02156 0.06469,0.02156 0.06038,0 0.112136,-0.04744 0.112136,-0.107823 0,-0.03882 -0.02156,-0.06901 -0.04313,-0.08626 -0.112136,-0.08626 -0.237207,-0.142325 -0.431287,-0.142325 -0.379534,0 -0.64693,0.293275 -0.64693,0.64693 v 0.0043 c 0,0.362281 0.271709,0.64693 0.638305,0.64693 z m 0,0"
id="path8855"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 90.889301,75.647897 h 0.01294 c 0.06038,0 0.103508,-0.0345 0.125071,-0.09057 l 0.444228,-1.039402 c 0.0043,-0.01294 0.0086,-0.03019 0.0086,-0.04744 0,-0.05607 -0.04744,-0.103507 -0.107823,-0.103507 -0.05175,0 -0.09057,0.0345 -0.107821,0.06901 l -0.3666,0.914321 -0.362281,-0.905703 c -0.01725,-0.04744 -0.05607,-0.07763 -0.112133,-0.07763 -0.06469,0 -0.112135,0.04744 -0.112135,0.10782 0,0.01725 0.0043,0.0345 0.01294,0.05175 l 0.439914,1.030777 c 0.02156,0.05607 0.06469,0.09057 0.125072,0.09057 z m 0,0"
id="path8851"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.599095,93.256455 c 0.202705,0 0.336402,-0.06469 0.45285,-0.168201 0.02156,-0.01725 0.03882,-0.04744 0.03882,-0.07763 0,-0.05607 -0.05175,-0.10351 -0.107823,-0.10351 -0.02588,0 -0.04744,0.0086 -0.06469,0.02588 -0.09057,0.07763 -0.181139,0.120759 -0.314838,0.120759 -0.237209,0 -0.414036,-0.202703 -0.414036,-0.448538 0,-0.245835 0.176827,-0.444225 0.414036,-0.444225 0.120759,0 0.215643,0.04313 0.3019,0.112133 0.01294,0.01294 0.0345,0.02156 0.06469,0.02156 0.06038,0 0.112136,-0.04744 0.112136,-0.107823 0,-0.03882 -0.02156,-0.06901 -0.04313,-0.08626 -0.112136,-0.08626 -0.237207,-0.142325 -0.431287,-0.142325 -0.379534,0 -0.64693,0.293275 -0.64693,0.646931 v 0.0043 c 0,0.362281 0.271709,0.64693 0.638305,0.64693 z m 0,0"
id="path8847"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 90.889301,93.252142 h 0.01294 c 0.06038,0 0.103508,-0.0345 0.125071,-0.09057 L 91.47154,92.12217 c 0.0043,-0.01294 0.0086,-0.03019 0.0086,-0.04744 0,-0.05607 -0.04744,-0.103508 -0.107823,-0.103508 -0.05175,0 -0.09057,0.0345 -0.107821,0.06901 l -0.3666,0.914322 -0.362281,-0.905703 c -0.01725,-0.04744 -0.05607,-0.07763 -0.112133,-0.07763 -0.06469,0 -0.112135,0.04744 -0.112135,0.10782 0,0.01725 0.0043,0.0345 0.01294,0.05175 l 0.439914,1.030777 c 0.02156,0.05607 0.06469,0.09057 0.125072,0.09057 z m 0,0"
id="path8843"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path36497"
d="m 114.66902,106.93601 c 0,-0.43022 -0.35258,-0.78279 -0.78279,-0.78279 h -6.00999 c -0.43129,0 -0.78278,0.35257 -0.78278,0.78279 v 9.52389 c 0,0.43021 0.35149,0.78279 0.78278,0.78279 h 6.00999 c 0.43021,0 0.78279,-0.35258 0.78279,-0.78279 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:none;stroke-width:0.27602378"
d="m 109.5627,108.59052 c 0.38816,0 0.67281,-0.29328 0.67281,-0.65125 0,-0.35796 -0.28034,-0.64693 -0.66849,-0.64693 -0.38816,0 -0.6685,0.29328 -0.6685,0.64693 v 0.004 c 0,0.35797 0.28034,0.64693 0.66418,0.64693 z m 0.004,-0.25446 c -0.21995,0 -0.37953,-0.18114 -0.37953,-0.39679 0,-0.21564 0.15526,-0.39247 0.37522,-0.39247 0.22427,0 0.38385,0.17683 0.38385,0.39247 v 0.004 c 0,0.21565 -0.15527,0.39248 -0.37954,0.39248 z m 0,0"
id="path6923"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 111.0623,108.59052 c 0.34072,0 0.55205,-0.18977 0.55205,-0.5693 v -0.58224 c 0,-0.0776 -0.0604,-0.13801 -0.13801,-0.13801 -0.0776,0 -0.13801,0.0604 -0.13801,0.13801 v 0.59518 c 0,0.19839 -0.10351,0.3019 -0.27171,0.3019 -0.16821,0 -0.27171,-0.10782 -0.27171,-0.31053 v -0.58655 c 0,-0.0776 -0.0604,-0.13801 -0.13802,-0.13801 -0.0733,0 -0.13801,0.0604 -0.13801,0.13801 v 0.59086 c 0,0.37091 0.20702,0.56068 0.54342,0.56068 z m 0,0"
id="path6919"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 112.24034,108.43957 c 0,0.0776 0.0604,0.13801 0.13801,0.13801 0.0776,0 0.13801,-0.0604 0.13801,-0.13801 v -0.8712 h 0.26309 c 0.0733,0 0.12939,-0.0561 0.12939,-0.12939 0,-0.069 -0.0561,-0.12507 -0.12939,-0.12507 h -0.80651 c -0.069,0 -0.12507,0.0561 -0.12507,0.12507 0,0.0733 0.0561,0.12939 0.12507,0.12939 h 0.2674 z m 0,0"
id="path6915"
inkscape:connector-curvature="0" />
</g>
</svg>

+ 0
- 285
vst2_bin/plugins/Fundamental/res__OLD/Delay.svg View File

@@ -1,285 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="120.18038"
height="379.99997"
viewBox="0 0 31.797726 100.54167"
version="1.1"
id="svg4541"
sodipodi:docname="Delay.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<defs
id="defs4535" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="-317.90567"
inkscape:cy="99.928557"
inkscape:document-units="mm"
inkscape:current-layer="g13271"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1137"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px" />
<metadata
id="metadata4538">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-6.6477068,-91.775301)">
<g
transform="matrix(0.27602379,0,0,0.27602379,354.09618,57.736346)"
id="g13122"
style="stroke-width:0.9585526">
<g
transform="translate(-167.07644,-20.557569)"
id="g13178"
style="stroke-width:0.91882312">
<g
transform="translate(-99.2314,6.0949065)"
id="g13224"
style="stroke-width:0.88074034">
<g
transform="translate(-315.65411,137.78158)"
id="g13271"
style="stroke-width:0.84423596">
<path
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.84423596"
d="m -676.5352,0.265625 h 114.67187 V 363.98828 H -676.5352 Z m 0,0"
id="path25061"
inkscape:connector-curvature="0"
inkscape:export-filename="/home/vortico/src/cpp/VCV/Rack/plugins/Fundamental/res/Delay.png"
inkscape:export-xdpi="100.2962"
inkscape:export-ydpi="100.2962" />
<path
style="fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.84423596"
d="m -581.26958,297.40625 c 0,-1.55859 -1.27734,-2.83203 -2.83593,-2.83203 h -21.77344 c -1.55859,0 -2.83594,1.27344 -2.83594,2.83203 v 33.08984 c 0,1.5586 1.27735,2.83594 2.83594,2.83594 h 21.77344 c 1.55859,0 2.83593,-1.27734 2.83593,-2.83594 z m 0,0"
id="path25377"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path12074"
d="m -599.76658,303.4033 c 1.40625,0 2.4375,-1.0625 2.4375,-2.35938 0,-1.29687 -1.01562,-2.34375 -2.42187,-2.34375 -1.40625,0 -2.42188,1.0625 -2.42188,2.34375 v 0.0156 c 0,1.29687 1.01563,2.34375 2.40625,2.34375 z m 0.0156,-0.92188 c -0.79688,0 -1.375,-0.65625 -1.375,-1.4375 0,-0.78125 0.5625,-1.42187 1.35937,-1.42187 0.8125,0 1.39063,0.64062 1.39063,1.42187 v 0.0156 c 0,0.78125 -0.5625,1.42187 -1.375,1.42187 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12070"
d="m -594.33372,303.4033 c 1.23438,0 2,-0.6875 2,-2.0625 v -2.10938 c 0,-0.28125 -0.21875,-0.5 -0.5,-0.5 -0.28125,0 -0.5,0.21875 -0.5,0.5 v 2.15625 c 0,0.71875 -0.375,1.09375 -0.98437,1.09375 -0.60938,0 -0.98438,-0.39062 -0.98438,-1.125 v -2.125 c 0,-0.28125 -0.21875,-0.5 -0.5,-0.5 -0.26562,0 -0.5,0.21875 -0.5,0.5 v 2.14063 c 0,1.34375 0.75,2.03125 1.96875,2.03125 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12066"
d="m -590.06591,302.85642 c 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 v -3.15625 h 0.95313 c 0.26562,0 0.46875,-0.20312 0.46875,-0.46875 0,-0.25 -0.20313,-0.45312 -0.46875,-0.45312 h -2.92188 c -0.25,0 -0.45312,0.20312 -0.45312,0.45312 0,0.26563 0.20312,0.46875 0.45312,0.46875 h 0.96875 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12062"
d="m -654.9901,302.9658 c 0,0.21875 0.1875,0.39062 0.40625,0.39062 0.21875,0 0.40625,-0.17187 0.40625,-0.39062 v -3.82813 c 0,-0.21875 -0.1875,-0.39062 -0.40625,-0.39062 -0.21875,0 -0.40625,0.17187 -0.40625,0.39062 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12058"
d="m -652.76847,302.9658 c 0,0.21875 0.1875,0.39062 0.40625,0.39062 0.21875,0 0.39062,-0.17187 0.39062,-0.39062 v -2.89063 l 2.34375,3.03125 c 0.10938,0.14063 0.21875,0.25 0.40625,0.25 h 0.0312 c 0.21875,0 0.39063,-0.1875 0.39063,-0.40625 v -3.8125 c 0,-0.21875 -0.17188,-0.39062 -0.39063,-0.39062 -0.21875,0 -0.39062,0.17187 -0.39062,0.39062 v 2.79688 l -2.28125,-2.95313 c -0.10938,-0.14062 -0.21875,-0.23437 -0.40625,-0.23437 h -0.0937 c -0.21875,0 -0.40625,0.1875 -0.40625,0.40625 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12054"
d="m -639.15379,26.191895 c 0,0.515625 0.40625,0.921875 0.92187,0.921875 h 2.34375 c 2.64063,0 4.46875,-1.84375 4.46875,-4.203125 v -0.01563 c 0,-2.375 -1.82812,-4.1875 -4.46875,-4.1875 h -2.34375 c -0.51562,0 -0.92187,0.421875 -0.92187,0.9375 z m 1.84375,-0.75 v -5.0625 h 1.42187 c 1.51563,0 2.53125,1.046875 2.53125,2.53125 v 0.03125 c 0,1.484375 -1.01562,2.5 -2.53125,2.5 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12050"
d="m -628.78428,27.11377 h 4.70313 c 0.46875,0 0.82812,-0.359375 0.82812,-0.8125 0,-0.453125 -0.35937,-0.828125 -0.82812,-0.828125 h -3.79688 V 23.70752 h 3.20313 c 0.45312,0 0.82812,-0.359375 0.82812,-0.8125 0,-0.46875 -0.375,-0.828125 -0.82812,-0.828125 h -3.20313 V 20.36377 h 3.75 c 0.45313,0 0.82813,-0.359375 0.82813,-0.828125 0,-0.453125 -0.375,-0.828125 -0.82813,-0.828125 h -4.65625 c -0.51562,0 -0.92187,0.421875 -0.92187,0.9375 v 6.546875 c 0,0.515625 0.40625,0.921875 0.92187,0.921875 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12046"
d="m -621.54619,26.191895 c 0,0.515625 0.40625,0.921875 0.92188,0.921875 h 4.34375 c 0.46875,0 0.82812,-0.375 0.82812,-0.84375 0,-0.46875 -0.35937,-0.84375 -0.82812,-0.84375 h -3.42188 v -5.859375 c 0,-0.515625 -0.40625,-0.921875 -0.92187,-0.921875 -0.51563,0 -0.92188,0.40625 -0.92188,0.921875 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12042"
d="m -614.4395,26.316895 c 0,0.484375 0.35938,0.875 0.84375,0.875 0.39063,0 0.70313,-0.21875 0.85938,-0.578125 l 0.57812,-1.390625 h 3.70313 l 0.5625,1.328125 c 0.17187,0.375 0.45312,0.640625 0.89062,0.640625 0.48438,0 0.875,-0.40625 0.875,-0.890625 0,-0.125 -0.0312,-0.25 -0.0937,-0.375 l -2.9375,-6.609375 c -0.20312,-0.453125 -0.5625,-0.734375 -1.0625,-0.734375 h -0.10937 c -0.5,0 -0.875,0.28125 -1.07813,0.734375 l -2.92187,6.609375 c -0.0625,0.125 -0.10938,0.265625 -0.10938,0.390625 z m 2.96875,-2.71875 1.17188,-2.765625 1.15625,2.765625 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12038"
d="m -603.28588,26.254395 c 0,0.515625 0.40625,0.9375 0.92188,0.9375 0.51562,0 0.92187,-0.421875 0.92187,-0.9375 V 23.83252 l 2.71875,-3.65625 c 0.125,-0.171875 0.23438,-0.390625 0.23438,-0.640625 0,-0.515625 -0.32813,-0.90625 -0.89063,-0.90625 -0.39062,0 -0.67187,0.21875 -0.89062,0.546875 l -2.07813,2.96875 -2.04687,-2.9375 c -0.21875,-0.34375 -0.48438,-0.5625 -0.90625,-0.5625 -0.51563,0 -0.92188,0.390625 -0.92188,0.890625 0,0.265625 0.0937,0.46875 0.21875,0.65625 l 2.71875,3.6875 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12034"
d="m -603.17583,45.150841 c 0,0.28125 0.21875,0.5 0.5,0.5 0.26562,0 0.5,-0.21875 0.5,-0.5 v -4.234375 h 1.35937 c 0.25,0 0.45313,-0.203125 0.45313,-0.453125 0,-0.25 -0.20313,-0.453125 -0.45313,-0.453125 h -3.71875 c -0.25,0 -0.45312,0.203125 -0.45312,0.453125 0,0.25 0.20312,0.453125 0.45312,0.453125 h 1.35938 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12030"
d="m -599.20836,45.150841 c 0,0.28125 0.20313,0.5 0.48438,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 v -4.703125 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.48438,0.21875 -0.48438,0.484375 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12026"
d="m -596.53966,45.166466 c 0,0.265625 0.20312,0.484375 0.48437,0.484375 0.26563,0 0.48438,-0.21875 0.48438,-0.484375 v -3.359375 l 1.35937,2.046875 c 0.10938,0.15625 0.23438,0.25 0.40625,0.25 0.1875,0 0.3125,-0.09375 0.42188,-0.25 l 1.35937,-2.0625 v 3.359375 c 0,0.265625 0.23438,0.5 0.5,0.5 0.28125,0 0.48438,-0.21875 0.48438,-0.5 v -4.6875 c 0,-0.265625 -0.20313,-0.484375 -0.48438,-0.484375 h -0.10937 c -0.20313,0 -0.34375,0.07813 -0.45313,0.25 l -1.70312,2.65625 -1.6875,-2.65625 c -0.0937,-0.140625 -0.25,-0.25 -0.46875,-0.25 h -0.0937 c -0.28125,0 -0.5,0.21875 -0.5,0.484375 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12022"
d="m -588.85722,45.603966 h 3.29688 c 0.23437,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.20313,-0.4375 -0.4375,-0.4375 h -2.8125 v -1.515625 h 2.40625 c 0.25,0 0.4375,-0.1875 0.4375,-0.421875 0,-0.25 -0.1875,-0.453125 -0.4375,-0.453125 h -2.40625 v -1.453125 h 2.76562 c 0.25,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.1875,-0.4375 -0.4375,-0.4375 h -3.25 c -0.28125,0 -0.5,0.203125 -0.5,0.484375 v 4.609375 c 0,0.28125 0.21875,0.5 0.5,0.5 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12018"
d="m -606.02373,109.56404 c 0,0.28125 0.21875,0.5 0.5,0.5 0.26563,0 0.48438,-0.21875 0.48438,-0.5 v -1.82812 h 2.42187 c 0.25,0 0.4375,-0.20313 0.4375,-0.45313 0,-0.23437 -0.1875,-0.4375 -0.4375,-0.4375 h -2.42187 v -1.53125 h 2.78125 c 0.25,0 0.4375,-0.20312 0.4375,-0.45312 0,-0.25 -0.1875,-0.4375 -0.4375,-0.4375 h -3.26563 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12014"
d="m -600.67174,109.51717 c 0,0.28125 0.21875,0.5 0.5,0.5 h 1.59375 c 1.75,0 2.96875,-1.21875 2.96875,-2.79688 v -0.0156 c 0,-1.57813 -1.21875,-2.78125 -2.96875,-2.78125 h -1.59375 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 z m 0.98438,-0.39063 v -3.8125 h 1.10937 c 1.17188,0 1.9375,0.8125 1.9375,1.90625 v 0.0156 c 0,1.09375 -0.76562,1.89062 -1.9375,1.89062 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12010"
d="m -594.24217,109.51717 c 0,0.28125 0.21875,0.5 0.5,0.5 h 2.09375 c 1.25,0 2.07813,-0.53125 2.07813,-1.53125 v -0.0156 c 0,-0.76562 -0.46875,-1.14062 -1.125,-1.35937 0.42187,-0.21875 0.8125,-0.57813 0.8125,-1.25 v -0.0156 c 0,-0.375 -0.14063,-0.6875 -0.375,-0.9375 -0.32813,-0.3125 -0.82813,-0.48437 -1.46875,-0.48437 h -2.01563 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 z m 0.96875,-2.73438 v -1.5 h 1.42188 c 0.625,0 0.98437,0.28125 0.98437,0.71875 v 0.0156 c 0,0.51562 -0.4375,0.76562 -1.0625,0.76562 z m 0,2.35938 v -1.53125 h 1.5625 c 0.78125,0 1.15625,0.28125 1.15625,0.75 v 0.0156 c 0,0.5 -0.42187,0.76563 -1.09375,0.76563 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12006"
d="m -588.22777,109.56404 c 0,0.28125 0.21875,0.5 0.5,0.5 0.26563,0 0.48438,-0.21875 0.48438,-0.5 v -1.15625 l 0.90625,-0.875 1.8125,2.29688 c 0.0937,0.125 0.21875,0.23437 0.40625,0.23437 0.28125,0 0.5,-0.21875 0.5,-0.48437 0,-0.15625 -0.0625,-0.25 -0.14063,-0.35938 l -1.89062,-2.34375 1.75,-1.67187 c 0.10937,-0.10938 0.17187,-0.21875 0.17187,-0.375 0,-0.23438 -0.17187,-0.45313 -0.45312,-0.45313 -0.17188,0 -0.29688,0.0625 -0.40625,0.1875 l -2.65625,2.67188 v -2.375 c 0,-0.26563 -0.21875,-0.48438 -0.48438,-0.48438 -0.28125,0 -0.5,0.21875 -0.5,0.48438 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path12002"
d="m -606.94999,173.88692 c 0.90625,0 1.51563,-0.28125 2.04688,-0.75 0.0781,-0.0781 0.15625,-0.20313 0.15625,-0.35938 0,-0.23437 -0.21875,-0.45312 -0.46875,-0.45312 -0.125,0 -0.21875,0.0469 -0.29688,0.10937 -0.40625,0.34375 -0.8125,0.54688 -1.39062,0.54688 -1.07813,0 -1.85938,-0.89063 -1.85938,-1.98438 v -0.0156 c 0,-1.09375 0.78125,-1.98438 1.85938,-1.98438 0.53125,0 0.9375,0.20313 1.32812,0.51563 0.0625,0.0469 0.15625,0.0937 0.29688,0.0937 0.26562,0 0.48437,-0.21875 0.48437,-0.48438 0,-0.17187 -0.0781,-0.3125 -0.1875,-0.39062 -0.48437,-0.375 -1.0625,-0.64063 -1.92187,-0.64063 -1.70313,0 -2.89063,1.3125 -2.89063,2.90625 v 0.0156 c 0,1.60937 1.21875,2.875 2.84375,2.875 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path11998"
d="m -600.92228,173.88692 c 1.71875,0 2.9375,-1.3125 2.9375,-2.89063 v -0.0156 c 0,-1.57813 -1.20313,-2.89063 -2.92188,-2.89063 -1.71875,0 -2.9375,1.32813 -2.9375,2.90625 v 0.0156 c 0,1.57812 1.20313,2.875 2.92188,2.875 z m 0.0156,-0.90625 c -1.10937,0 -1.90625,-0.90625 -1.90625,-1.98438 v -0.0156 c 0,-1.09375 0.78125,-1.98438 1.89063,-1.98438 1.10937,0 1.90625,0.90625 1.90625,2 v 0.0156 c 0,1.07812 -0.78125,1.96875 -1.89063,1.96875 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path11994"
d="m -596.60216,173.29317 c 0,0.28125 0.21875,0.5 0.5,0.5 h 3.01562 c 0.25,0 0.45313,-0.20313 0.45313,-0.45313 0,-0.25 -0.20313,-0.4375 -0.45313,-0.4375 h -2.53125 v -4.26562 c 0,-0.26563 -0.21875,-0.48438 -0.48437,-0.48438 -0.28125,0 -0.5,0.21875 -0.5,0.48438 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path11990"
d="m -589.0991,173.88692 c 1.71875,0 2.9375,-1.3125 2.9375,-2.89063 v -0.0156 c 0,-1.57813 -1.20313,-2.89063 -2.92188,-2.89063 -1.71875,0 -2.9375,1.32813 -2.9375,2.90625 v 0.0156 c 0,1.57812 1.20313,2.875 2.92188,2.875 z m 0.0156,-0.90625 c -1.10937,0 -1.90625,-0.90625 -1.90625,-1.98438 v -0.0156 c 0,-1.09375 0.78125,-1.98438 1.89063,-1.98438 1.10937,0 1.90625,0.90625 1.90625,2 v 0.0156 c 0,1.07812 -0.78125,1.96875 -1.89063,1.96875 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path11986"
d="m -584.77897,173.34004 c 0,0.28125 0.21875,0.5 0.5,0.5 0.26563,0 0.48438,-0.21875 0.48438,-0.5 v -1.5 h 1.23437 l 1.35938,1.73438 c 0.125,0.15625 0.26562,0.26562 0.48437,0.26562 0.25,0 0.46875,-0.1875 0.46875,-0.46875 0,-0.14062 -0.0625,-0.25 -0.15625,-0.375 l -1.0625,-1.34375 c 0.75,-0.23437 1.26563,-0.78125 1.26563,-1.67187 v -0.0156 c 0,-0.48437 -0.17188,-0.90625 -0.46875,-1.21875 -0.35938,-0.34375 -0.90625,-0.54687 -1.60938,-0.54687 h -2 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 z m 0.98438,-2.375 v -1.875 h 1.4375 c 0.71875,0 1.15625,0.32813 1.15625,0.92188 v 0.0156 c 0,0.57813 -0.45313,0.9375 -1.15625,0.9375 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path11982"
d="m -654.10027,55.092392 c 0.73438,0 1.21875,-0.234375 1.64063,-0.609375 0.0781,-0.0625 0.14062,-0.171875 0.14062,-0.28125 0,-0.203125 -0.1875,-0.375 -0.39062,-0.375 -0.0937,0 -0.17188,0.03125 -0.23438,0.09375 -0.32812,0.28125 -0.65625,0.4375 -1.14062,0.4375 -0.85938,0 -1.5,-0.734375 -1.5,-1.625 0,-0.890625 0.64062,-1.609375 1.5,-1.609375 0.4375,0 0.78125,0.15625 1.09375,0.40625 0.0469,0.04687 0.125,0.07813 0.23437,0.07813 0.21875,0 0.40625,-0.171875 0.40625,-0.390625 0,-0.140625 -0.0781,-0.25 -0.15625,-0.3125 -0.40625,-0.3125 -0.85937,-0.515625 -1.5625,-0.515625 -1.375,0 -2.34375,1.0625 -2.34375,2.34375 v 0.01563 c 0,1.3125 0.98438,2.34375 2.3125,2.34375 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path11978"
d="m -649.42601,55.076767 h 0.0469 c 0.21875,0 0.375,-0.125 0.45312,-0.328125 l 1.60938,-3.765625 c 0.0156,-0.04687 0.0312,-0.109375 0.0312,-0.171875 0,-0.203125 -0.17188,-0.375 -0.39063,-0.375 -0.1875,0 -0.32812,0.125 -0.39062,0.25 l -1.32813,3.3125 -1.3125,-3.28125 c -0.0625,-0.171875 -0.20312,-0.28125 -0.40625,-0.28125 -0.23437,0 -0.40625,0.171875 -0.40625,0.390625 0,0.0625 0.0156,0.125 0.0469,0.1875 l 1.59375,3.734375 c 0.0781,0.203125 0.23437,0.328125 0.45312,0.328125 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
style="fill:none;stroke:#000000;stroke-width:0.68057233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m -651.9102,72.191409 h 56.91797"
id="path25971"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path11974"
d="m -602.00297,237.14786 c 0,0.26562 0.20313,0.48437 0.48438,0.48437 0.26562,0 0.48437,-0.21875 0.48437,-0.48437 v -3.35938 l 1.35938,2.04688 c 0.10937,0.15625 0.23437,0.25 0.40625,0.25 0.1875,0 0.3125,-0.0937 0.42187,-0.25 l 1.35938,-2.0625 v 3.35937 c 0,0.26563 0.23437,0.5 0.5,0.5 0.28125,0 0.48437,-0.21875 0.48437,-0.5 v -4.6875 c 0,-0.26562 -0.20312,-0.48437 -0.48437,-0.48437 h -0.10938 c -0.20312,0 -0.34375,0.0781 -0.45312,0.25 l -1.70313,2.65625 -1.6875,-2.65625 c -0.0937,-0.14063 -0.25,-0.25 -0.46875,-0.25 h -0.0937 c -0.28125,0 -0.5,0.21875 -0.5,0.48437 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path11970"
d="m -594.78605,237.13223 c 0,0.28125 0.20312,0.5 0.48437,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 v -4.70312 c 0,-0.26563 -0.21875,-0.48438 -0.5,-0.48438 -0.28125,0 -0.48437,0.21875 -0.48437,0.48438 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path11966"
d="m -592.5338,237.16348 c 0,0.28125 0.21875,0.46875 0.4375,0.46875 0.21875,0 0.34375,-0.10937 0.48437,-0.28125 l 1.48438,-1.92187 1.5,1.95312 c 0.125,0.15625 0.23437,0.25 0.45312,0.25 0.28125,0 0.48438,-0.21875 0.48438,-0.48437 0,-0.14063 -0.0781,-0.26563 -0.15625,-0.375 l -1.64063,-2.04688 1.5625,-1.95312 c 0.0937,-0.125 0.15625,-0.23438 0.15625,-0.375 0,-0.28125 -0.23437,-0.45313 -0.45312,-0.45313 -0.21875,0 -0.34375,0.0937 -0.48438,0.26563 l -1.39062,1.84375 -1.42188,-1.875 c -0.10937,-0.15625 -0.23437,-0.23438 -0.4375,-0.23438 -0.28125,0 -0.5,0.20313 -0.5,0.48438 0,0.125 0.0781,0.26562 0.15625,0.35937 l 1.5625,1.95313 -1.65625,2.0625 c -0.0937,0.125 -0.14062,0.23437 -0.14062,0.35937 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path11962"
d="m -654.09818,118.8769 c 0.73437,0 1.21875,-0.23438 1.64062,-0.60938 0.0781,-0.0625 0.14063,-0.17187 0.14063,-0.28125 0,-0.20312 -0.1875,-0.375 -0.39063,-0.375 -0.0937,0 -0.17187,0.0312 -0.23437,0.0937 -0.32813,0.28125 -0.65625,0.4375 -1.14063,0.4375 -0.85937,0 -1.5,-0.73437 -1.5,-1.625 0,-0.89062 0.64063,-1.60937 1.5,-1.60937 0.4375,0 0.78125,0.15625 1.09375,0.40625 0.0469,0.0469 0.125,0.0781 0.23438,0.0781 0.21875,0 0.40625,-0.17187 0.40625,-0.39062 0,-0.14063 -0.0781,-0.25 -0.15625,-0.3125 -0.40625,-0.3125 -0.85938,-0.51563 -1.5625,-0.51563 -1.375,0 -2.34375,1.0625 -2.34375,2.34375 v 0.0156 c 0,1.3125 0.98437,2.34375 2.3125,2.34375 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path11958"
d="m -649.42394,118.86127 h 0.0469 c 0.21875,0 0.375,-0.125 0.45312,-0.32812 l 1.60938,-3.76563 c 0.0156,-0.0469 0.0312,-0.10937 0.0312,-0.17187 0,-0.20313 -0.17188,-0.375 -0.39063,-0.375 -0.1875,0 -0.32812,0.125 -0.39062,0.25 l -1.32813,3.3125 -1.3125,-3.28125 c -0.0625,-0.17188 -0.20312,-0.28125 -0.40625,-0.28125 -0.23437,0 -0.40625,0.17187 -0.40625,0.39062 0,0.0625 0.0156,0.125 0.0469,0.1875 l 1.59375,3.73438 c 0.0781,0.20312 0.23437,0.32812 0.45312,0.32812 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
style="fill:none;stroke:#000000;stroke-width:0.68057233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m -651.9102,135.97266 h 56.91797"
id="path25991"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path11954"
d="m -654.09818,182.65618 c 0.73437,0 1.21875,-0.23437 1.64062,-0.60937 0.0781,-0.0625 0.14063,-0.17188 0.14063,-0.28125 0,-0.20313 -0.1875,-0.375 -0.39063,-0.375 -0.0937,0 -0.17187,0.0312 -0.23437,0.0937 -0.32813,0.28125 -0.65625,0.4375 -1.14063,0.4375 -0.85937,0 -1.5,-0.73438 -1.5,-1.625 0,-0.89063 0.64063,-1.60938 1.5,-1.60938 0.4375,0 0.78125,0.15625 1.09375,0.40625 0.0469,0.0469 0.125,0.0781 0.23438,0.0781 0.21875,0 0.40625,-0.17188 0.40625,-0.39063 0,-0.14062 -0.0781,-0.25 -0.15625,-0.3125 -0.40625,-0.3125 -0.85938,-0.51562 -1.5625,-0.51562 -1.375,0 -2.34375,1.0625 -2.34375,2.34375 v 0.0156 c 0,1.3125 0.98437,2.34375 2.3125,2.34375 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path11950"
d="m -649.42394,182.64056 h 0.0469 c 0.21875,0 0.375,-0.125 0.45312,-0.32813 l 1.60938,-3.76562 c 0.0156,-0.0469 0.0312,-0.10938 0.0312,-0.17188 0,-0.20312 -0.17188,-0.375 -0.39063,-0.375 -0.1875,0 -0.32812,0.125 -0.39062,0.25 l -1.32813,3.3125 -1.3125,-3.28125 c -0.0625,-0.17187 -0.20312,-0.28125 -0.40625,-0.28125 -0.23437,0 -0.40625,0.17188 -0.40625,0.39063 0,0.0625 0.0156,0.125 0.0469,0.1875 l 1.59375,3.73437 c 0.0781,0.20313 0.23437,0.32813 0.45312,0.32813 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
style="fill:none;stroke:#000000;stroke-width:0.68057233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m -651.9102,199.75 h 56.91797"
id="path25999"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path11946"
d="m -654.09818,246.43649 c 0.73437,0 1.21875,-0.23437 1.64062,-0.60937 0.0781,-0.0625 0.14063,-0.17188 0.14063,-0.28125 0,-0.20313 -0.1875,-0.375 -0.39063,-0.375 -0.0937,0 -0.17187,0.0312 -0.23437,0.0937 -0.32813,0.28125 -0.65625,0.4375 -1.14063,0.4375 -0.85937,0 -1.5,-0.73438 -1.5,-1.625 0,-0.89063 0.64063,-1.60938 1.5,-1.60938 0.4375,0 0.78125,0.15625 1.09375,0.40625 0.0469,0.0469 0.125,0.0781 0.23438,0.0781 0.21875,0 0.40625,-0.17188 0.40625,-0.39063 0,-0.14062 -0.0781,-0.25 -0.15625,-0.3125 -0.40625,-0.3125 -0.85938,-0.51562 -1.5625,-0.51562 -1.375,0 -2.34375,1.0625 -2.34375,2.34375 v 0.0156 c 0,1.3125 0.98437,2.34375 2.3125,2.34375 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
inkscape:connector-curvature="0"
id="path11942"
d="m -649.42394,246.42087 h 0.0469 c 0.21875,0 0.375,-0.125 0.45312,-0.32813 l 1.60938,-3.76562 c 0.0156,-0.0469 0.0312,-0.10938 0.0312,-0.17188 0,-0.20312 -0.17188,-0.375 -0.39063,-0.375 -0.1875,0 -0.32812,0.125 -0.39062,0.25 l -1.32813,3.3125 -1.3125,-3.28125 c -0.0625,-0.17187 -0.20312,-0.28125 -0.40625,-0.28125 -0.23437,0 -0.40625,0.17188 -0.40625,0.39063 0,0.0625 0.0156,0.125 0.0469,0.1875 l 1.59375,3.73437 c 0.0781,0.20313 0.23437,0.32813 0.45312,0.32813 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.84423596" />
<path
style="fill:none;stroke:#000000;stroke-width:0.68057233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m -651.9102,263.53125 h 56.91797"
id="path26007"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</g>
</g>
</svg>

+ 0
- 450
vst2_bin/plugins/Fundamental/res__OLD/LFO-1.svg View File

@@ -1,450 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="150.2265"
height="380"
viewBox="0 0 39.747429 100.54167"
version="1.1"
id="svg11003"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="LFO-1.svg">
<defs
id="defs10997" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="66.556865"
inkscape:cy="8.668938"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1200"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="0"
units="px" />
<metadata
id="metadata11000">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-35.146312,-50.389004)">
<path
inkscape:connector-curvature="0"
id="path33493"
d="M 35.219628,50.462323 H 74.821509 V 150.85843 H 35.219628 Z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
inkscape:export-filename="/home/vortico/pics/tmp/LFOs.png"
inkscape:export-xdpi="150.22649"
inkscape:export-ydpi="150.22649" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 51.247875,63.290817 c 0,0.09488 0.07332,0.168202 0.168222,0.168202 0.09488,0 0.168195,-0.07332 0.168195,-0.168202 v -0.62968 h 0.836692 c 0.08194,0 0.150945,-0.06901 0.150945,-0.155263 0,-0.08626 -0.069,-0.155264 -0.150945,-0.155264 h -0.836692 v -0.52617 h 0.957448 c 0.08625,0 0.155258,-0.06901 0.155258,-0.155263 0,-0.08626 -0.069,-0.155264 -0.155258,-0.155264 h -1.125643 c -0.09491,0 -0.168222,0.07332 -0.168222,0.172515 z m 0,0"
id="path4409"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 53.067679,63.290817 c 0,0.09488 0.07332,0.168202 0.168222,0.168202 0.09488,0 0.168196,-0.07332 0.168196,-0.168202 v -0.517545 h 0.43127 l 0.465799,0.599489 c 0.03881,0.05175 0.09057,0.08626 0.168196,0.08626 0.08194,0 0.159597,-0.06469 0.159597,-0.155264 0,-0.05175 -0.0217,-0.09057 -0.05175,-0.129386 l -0.370922,-0.470105 c 0.258762,-0.07763 0.439923,-0.267398 0.439923,-0.573612 v -0.0086 c 0,-0.168203 -0.06038,-0.310527 -0.159597,-0.414036 -0.125069,-0.120761 -0.314828,-0.19408 -0.560652,-0.19408 h -0.69006 c -0.09491,0 -0.168222,0.07332 -0.168222,0.172515 z m 0.336418,-0.819446 V 61.82444 h 0.495988 c 0.250137,0 0.401081,0.112135 0.401081,0.319153 v 0.0043 c 0,0.198393 -0.155257,0.323466 -0.396769,0.323466 z m 0,0"
id="path4405"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 55.281527,63.44608 h 1.138581 c 0.08194,0 0.150945,-0.06469 0.150945,-0.150951 0,-0.08194 -0.069,-0.15095 -0.150945,-0.15095 h -0.970385 v -0.521858 h 0.832379 c 0.08194,0 0.150945,-0.06469 0.150945,-0.146637 0,-0.08626 -0.069,-0.155264 -0.150945,-0.155264 h -0.832379 v -0.504606 h 0.957447 c 0.08194,0 0.150945,-0.06469 0.150945,-0.15095 0,-0.08194 -0.069,-0.150951 -0.150945,-0.150951 h -1.125643 c -0.09491,0 -0.168222,0.07332 -0.168222,0.172515 v 1.587137 c 0,0.0992 0.07332,0.172515 0.168222,0.172515 z m 0,0"
id="path4401"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 57.864733,63.480583 c 0.224261,0 0.426959,-0.06901 0.590868,-0.185454 l 0.138007,0.125074 c 0.03019,0.03019 0.069,0.05175 0.116443,0.05175 0.09057,0 0.15957,-0.07763 0.15957,-0.163889 0,-0.05607 -0.0217,-0.0992 -0.06038,-0.133699 l -0.125068,-0.0992 c 0.125068,-0.168202 0.194071,-0.37522 0.194071,-0.595176 v -0.0043 c 0,-0.543422 -0.41402,-0.996273 -1.004887,-0.996273 -0.59518,0 -1.01354,0.457164 -1.01354,1.000586 v 0.0043 c 0,0.543422 0.414047,0.996273 1.004914,0.996273 z m 0.09919,-0.608115 0.241511,0.202705 c -0.09488,0.05607 -0.20701,0.09057 -0.332078,0.09057 -0.383858,0 -0.659871,-0.310527 -0.659871,-0.685746 v -0.0043 c 0,-0.37522 0.267388,-0.681434 0.651245,-0.681434 0.383831,0 0.659871,0.310527 0.659871,0.685747 v 0.0043 c 0,0.138012 -0.0345,0.263085 -0.09491,0.366594 l -0.25013,-0.224269 c -0.03881,-0.0345 -0.069,-0.05175 -0.116443,-0.05175 -0.09057,0 -0.15957,0.07763 -0.15957,0.163889 0,0.06038 0.0217,0.0992 0.06038,0.133699 z m 0,0"
id="path4397"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 39.555408,121.88025 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.41404 h 0.539089 c 0.05607,0 0.103505,-0.0431 0.103505,-0.0992 0,-0.0561 -0.04744,-0.0992 -0.103505,-0.0992 h -0.539089 v -0.34503 h 0.62103 c 0.05609,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09922,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0,0"
id="path4393"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 40.770586,121.88025 c 0,0.0604 0.04744,0.10782 0.107818,0.10782 0.06469,0 0.112157,-0.0474 0.112157,-0.10782 v -0.75044 l 0.30189,0.45716 c 0.02593,0.0345 0.05606,0.0561 0.09488,0.0561 0.03881,0 0.069,-0.0216 0.09057,-0.0561 l 0.306229,-0.46148 v 0.75476 c 0,0.0561 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112131,-0.0474 0.112131,-0.10782 v -1.05234 c 0,-0.0604 -0.05175,-0.11214 -0.112131,-0.11214 h -0.02593 c -0.04313,0 -0.07332,0.0216 -0.09919,0.0561 l -0.379545,0.59949 -0.383831,-0.59518 c -0.02143,-0.0345 -0.05178,-0.0604 -0.09922,-0.0604 h -0.02593 c -0.06038,0 -0.11213,0.0518 -0.11213,0.11214 z m 0,0"
id="path4389"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 43.025736,121.88025 c 0,0.0604 0.05178,0.10782 0.107844,0.10782 0.06469,0 0.112131,-0.0474 0.112131,-0.10782 v -1.06528 c 0,-0.0604 -0.04744,-0.10782 -0.112131,-0.10782 -0.0345,0 -0.06469,0.009 -0.107844,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="path4381"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 48.436492,121.88025 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.41404 h 0.539088 c 0.05607,0 0.103505,-0.0431 0.103505,-0.0992 0,-0.0561 -0.04744,-0.0992 -0.103505,-0.0992 h -0.539088 v -0.34503 h 0.62103 c 0.05609,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09922,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0,0"
id="path4377"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 49.65167,121.88025 c 0,0.0604 0.04744,0.10782 0.107818,0.10782 0.06469,0 0.112156,-0.0474 0.112156,-0.10782 v -0.75044 l 0.30189,0.45716 c 0.02593,0.0345 0.05606,0.0561 0.09488,0.0561 0.03881,0 0.069,-0.0216 0.09057,-0.0561 l 0.306228,-0.46148 v 0.75476 c 0,0.0561 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -1.05234 c 0,-0.0604 -0.05175,-0.11214 -0.11213,-0.11214 h -0.02593 c -0.04313,0 -0.07332,0.0216 -0.09919,0.0561 l -0.379545,0.59949 -0.383831,-0.59518 c -0.0217,-0.0345 -0.05178,-0.0604 -0.09922,-0.0604 h -0.02593 c -0.06038,0 -0.112131,0.0518 -0.112131,0.11214 z m 0,0"
id="path4373"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 51.665281,121.87593 c 0,0.0647 0.05175,0.10351 0.116443,0.10351 h 0.711624 c 0.05606,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04313,-0.0992 -0.09919,-0.0992 h -0.5089 l 0.258763,-0.21564 c 0.224261,-0.18114 0.327766,-0.28896 0.327766,-0.48736 0,-0.22426 -0.168196,-0.37521 -0.41402,-0.37521 -0.198385,0 -0.314855,0.0733 -0.41836,0.2027 -0.01296,0.0173 -0.02169,0.0431 -0.02169,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.07766,-0.0949 0.146658,-0.14232 0.24585,-0.14232 0.116444,0 0.202698,0.0733 0.202698,0.19839 0,0.11213 -0.06038,0.19408 -0.232887,0.3364 l -0.38817,0.32778 c -0.03881,0.0345 -0.05607,0.069 -0.05607,0.11213 z m 0,0"
id="path4365"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 56.587299,121.88025 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.05607,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.082 l -0.241538,-0.3019 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="path4361"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 58.059943,121.97944 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 58.1721 v -0.3364 h 0.539088 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.1035 -0.09919,-0.1035 H 58.1721 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.11213 v 1.03078 c 0,0.0647 0.05175,0.11213 0.11213,0.11213 z m 0,0"
id="path4357"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 59.643659,121.99669 c 0.267388,0 0.448522,-0.13801 0.448522,-0.37522 v -0.004 c 0,-0.20702 -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.05607,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.11644 -0.39677,-0.11644 -0.250163,0 -0.426984,0.14663 -0.426984,0.36228 v 0.004 c 0,0.23289 0.146632,0.31052 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.0862 0.138007,0.10351 0.301916,0.15527 0.470111,0.15527 z m 0,0"
id="path4353"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 60.525833,121.97944 h 0.741813 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0518 -0.04744,-0.0992 -0.09922,-0.0992 H 60.63799 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.1035 -0.09919,-0.1035 H 60.63799 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.11213 v 1.03078 c 0,0.0647 0.05175,0.11213 0.11213,0.11213 z m 0,0"
id="path4349"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 61.996467,121.88025 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.05606,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="path4345"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.38519,121.88025 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.30622 h 0.245825 c 0.276013,0 0.504613,-0.14664 0.504613,-0.42697 v -0.004 c 0,-0.25447 -0.185473,-0.41835 -0.478737,-0.41835 H 66.49732 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.50461 v -0.45285 h 0.25445 c 0.163883,0 0.271701,0.0776 0.271701,0.22427 v 0.004 c 0,0.1337 -0.103505,0.22427 -0.271701,0.22427 z m 0,0"
id="path4341"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 67.931732,121.90612 c 0.0217,0.0561 0.06038,0.0906 0.112131,0.0906 h 0.0217 c 0.05607,0 0.09488,-0.0345 0.116443,-0.0906 l 0.280326,-0.81944 0.280352,0.81944 c 0.0172,0.0561 0.05607,0.0906 0.112131,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.107817,-0.10351 -0.05609,0 -0.09059,0.0345 -0.107845,0.0776 l -0.288951,0.86689 -0.284639,-0.86257 c -0.0172,-0.0518 -0.05606,-0.0863 -0.112157,-0.0863 h -0.01296 c -0.05606,0 -0.09488,0.0345 -0.112131,0.0863 l -0.284638,0.86257 -0.288978,-0.86689 c -0.01297,-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.01296,0.0431 z m 0,0"
id="path4337"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 69.645359,121.88025 c 0,0.0604 0.04744,0.10782 0.107818,0.10782 0.06469,0 0.112157,-0.0474 0.112157,-0.10782 v -0.75044 l 0.301889,0.45716 c 0.02593,0.0345 0.05607,0.0561 0.09488,0.0561 0.03881,0 0.069,-0.0216 0.09057,-0.0561 l 0.306229,-0.46148 v 0.75476 c 0,0.0561 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -1.05234 c 0,-0.0604 -0.05175,-0.11214 -0.11213,-0.11214 h -0.02593 c -0.04313,0 -0.07332,0.0216 -0.09919,0.0561 l -0.379545,0.59949 -0.383831,-0.59518 c -0.0217,-0.0345 -0.05178,-0.0604 -0.09922,-0.0604 h -0.02593 c -0.06038,0 -0.112131,0.0518 -0.112131,0.11214 z m 0,0"
id="path4333"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path35949"
d="M 37.134523,118.10541 H 72.906587"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
inkscape:export-filename="/home/vortico/pics/tmp/LFOs.png"
inkscape:export-xdpi="150.22649"
inkscape:export-ydpi="150.22649" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 50.434069,57.61859 c 0,0.142325 0.112157,0.254459 0.254477,0.254459 h 1.198959 c 0.129408,0 0.2286,-0.103509 0.2286,-0.232895 0,-0.129386 -0.09919,-0.232895 -0.2286,-0.232895 h -0.94451 v -1.617327 c 0,-0.142324 -0.11213,-0.254459 -0.254449,-0.254459 -0.14232,0 -0.254477,0.112135 -0.254477,0.254459 z m 0,0"
id="path4329"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 52.476097,57.635841 c 0,0.142325 0.112157,0.258773 0.254476,0.258773 0.14232,0 0.25445,-0.116448 0.25445,-0.258773 v -0.659869 h 0.892757 c 0.129408,0 0.232913,-0.103509 0.232913,-0.232895 0,-0.129386 -0.103505,-0.232895 -0.232913,-0.232895 h -0.892757 v -0.491667 h 1.043728 c 0.129382,0 0.228574,-0.103509 0.228574,-0.232896 0,-0.129386 -0.09919,-0.232894 -0.228574,-0.232894 h -1.298178 c -0.142319,0 -0.254476,0.116447 -0.254476,0.258772 z m 0,0"
id="path4325"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 55.731583,57.911865 c 0.715936,0 1.233488,-0.539109 1.233488,-1.198978 v -0.0043 c 0,-0.659869 -0.513239,-1.194665 -1.229175,-1.194665 -0.715936,0 -1.233488,0.539109 -1.233488,1.198978 v 0.0086 c 0,0.659869 0.513239,1.190352 1.229175,1.190352 z m 0.0042,-0.470103 c -0.409734,0 -0.702998,-0.332091 -0.702998,-0.728875 v -0.0043 c 0,-0.396784 0.284638,-0.724562 0.698685,-0.724562 0.409734,0 0.698685,0.332091 0.698685,0.728875 v 0.0086 c 0,0.396784 -0.284639,0.720249 -0.694372,0.720249 z m 0,0"
id="path4321"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 57.651082,57.088107 h 0.573591 c 0.13372,0 0.24585,-0.107822 0.24585,-0.241521 0,-0.133699 -0.11213,-0.241521 -0.24585,-0.241521 h -0.573591 c -0.13372,0 -0.241538,0.107822 -0.241538,0.241521 0,0.133699 0.107818,0.241521 0.241538,0.241521 z m 0,0"
id="path4317"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 59.109122,57.640154 c 0,0.138012 0.11213,0.25446 0.250137,0.25446 0.138007,0 0.250163,-0.116448 0.250163,-0.25446 v -1.867473 c 0,-0.138012 -0.112156,-0.250146 -0.250163,-0.250146 h -0.0042 c -0.07332,0 -0.14232,0.01725 -0.241512,0.04313 l -0.327792,0.09488 c -0.103505,0.03019 -0.168196,0.116448 -0.168196,0.219957 0,0.116447 0.103505,0.215643 0.219948,0.215643 0.03019,0 0.06472,-0.0043 0.09059,-0.01294 l 0.181134,-0.04313 z m 0,0"
id="path4313"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 41.692289,85.589692 c 0,0.07763 0.06038,0.138012 0.138007,0.138012 0.07334,0 0.13372,-0.06038 0.13372,-0.138012 v -0.504605 h 0.668496 c 0.069,0 0.120756,-0.05607 0.120756,-0.125074 0,-0.06469 -0.05175,-0.120761 -0.120756,-0.120761 H 41.964016 V 84.41659 h 0.767688 c 0.069,0 0.120756,-0.05606 0.120756,-0.125071 0,-0.06901 -0.05175,-0.120761 -0.120756,-0.120761 h -0.901408 c -0.07763,0 -0.138007,0.05607 -0.138007,0.133699 z m 0,0"
id="path4309"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 43.170463,85.594005 c 0,0.07332 0.05606,0.133699 0.133694,0.133699 0.07334,0 0.13372,-0.06038 0.13372,-0.133699 v -0.927267 l 0.375206,0.564986 c 0.03019,0.04313 0.06469,0.06901 0.11213,0.06901 0.05175,0 0.08626,-0.02588 0.11647,-0.06901 l 0.375206,-0.569299 v 0.927267 c 0,0.07332 0.06469,0.138012 0.138006,0.138012 0.07763,0 0.133694,-0.06038 0.133694,-0.138012 v -1.29386 c 0,-0.07332 -0.05606,-0.133699 -0.133694,-0.133699 h -0.03019 c -0.05607,0 -0.09488,0.02156 -0.125068,0.06901 l -0.470112,0.733186 -0.465772,-0.733186 c -0.02593,-0.03882 -0.069,-0.06901 -0.129382,-0.06901 h -0.02593 c -0.07763,0 -0.138006,0.06038 -0.138006,0.133699 z m 0,0"
id="path4305"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 45.94372,85.589692 c 0,0.07763 0.06038,0.138012 0.133694,0.138012 0.07763,0 0.138006,-0.06038 0.138006,-0.138012 v -1.306798 c 0,-0.07332 -0.06038,-0.1337 -0.138006,-0.1337 h -0.0042 c -0.03881,0 -0.07763,0.0086 -0.129381,0.02588 l -0.237225,0.07332 c -0.05175,0.01725 -0.09057,0.06038 -0.09057,0.116449 0,0.06469 0.05606,0.116446 0.120756,0.116446 0.01296,0 0.0345,-0.0043 0.04744,-0.0086 l 0.159597,-0.04744 z m 0,0"
id="path4297"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 48.002469,85.740642 c 0.250164,0 0.418359,-0.07763 0.564991,-0.207018 0.0217,-0.02156 0.04313,-0.05607 0.04313,-0.09919 0,-0.06469 -0.06038,-0.125074 -0.129381,-0.125074 -0.0345,0 -0.06038,0.01294 -0.08194,0.03019 -0.112131,0.09488 -0.224261,0.15095 -0.383858,0.15095 -0.297577,0 -0.513212,-0.245835 -0.513212,-0.547735 v -0.0043 c 0,-0.3019 0.215635,-0.547735 0.513212,-0.547735 0.146659,0 0.258789,0.05607 0.366607,0.142325 0.0172,0.01294 0.04313,0.02588 0.08194,0.02588 0.07332,0 0.133694,-0.06038 0.133694,-0.133697 0,-0.04744 -0.0217,-0.08626 -0.05175,-0.107823 -0.133694,-0.103507 -0.293264,-0.176829 -0.53049,-0.176829 -0.470085,0 -0.797877,0.362284 -0.797877,0.802196 v 0.0043 c 0,0.444224 0.336417,0.793567 0.784939,0.793567 z m 0,0"
id="path4289"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 49.578036,85.736329 h 0.01296 c 0.07763,0 0.129381,-0.04313 0.15957,-0.10782 l 0.543428,-1.280925 c 0.0042,-0.01725 0.01296,-0.03881 0.01296,-0.06038 0,-0.07332 -0.06038,-0.129386 -0.133693,-0.129386 -0.06469,0 -0.116444,0.04313 -0.133694,0.09057 l -0.452861,1.121347 -0.444209,-1.112721 c -0.0217,-0.06038 -0.06903,-0.0992 -0.138033,-0.0992 -0.07763,0 -0.138007,0.06038 -0.138007,0.133699 0,0.02156 0.0087,0.04313 0.0172,0.06469 l 0.539115,1.272297 c 0.03019,0.06469 0.07763,0.10782 0.155257,0.10782 z m 0,0"
id="path4285"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 41.451624,102.81137 c 0,0.0776 0.06038,0.13801 0.138007,0.13801 0.07334,0 0.13372,-0.0604 0.13372,-0.13801 v -0.5046 h 0.668496 c 0.069,0 0.120756,-0.0561 0.120756,-0.12508 0,-0.0647 -0.05175,-0.12076 -0.120756,-0.12076 h -0.668496 v -0.42266 h 0.767689 c 0.069,0 0.120755,-0.0561 0.120755,-0.12507 0,-0.069 -0.05175,-0.12076 -0.120755,-0.12076 h -0.901409 c -0.07763,0 -0.138007,0.0561 -0.138007,0.1337 z m 0,0"
id="path4281"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 42.929772,102.81568 c 0,0.0733 0.05607,0.1337 0.133694,0.1337 0.07334,0 0.13372,-0.0604 0.13372,-0.1337 v -0.92726 l 0.375206,0.56498 c 0.03019,0.0431 0.06469,0.069 0.11213,0.069 0.05175,0 0.08625,-0.0259 0.11647,-0.069 l 0.375205,-0.56929 v 0.92726 c 0,0.0733 0.06469,0.13801 0.138007,0.13801 0.07763,0 0.133694,-0.0604 0.133694,-0.13801 v -1.29386 c 0,-0.0733 -0.05607,-0.1337 -0.133694,-0.1337 h -0.03019 c -0.05607,0 -0.09488,0.0216 -0.125069,0.069 l -0.470111,0.73319 -0.465773,-0.73319 c -0.02593,-0.0388 -0.069,-0.069 -0.129381,-0.069 h -0.02593 c -0.07763,0 -0.138007,0.0604 -0.138007,0.1337 z m 0,0"
id="path4277"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 45.405451,102.80706 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.05606,-0.11644 -0.120756,-0.11644 h -0.625369 l 0.314828,-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.513239,-0.46148 -0.241512,0 -0.383857,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.125069,0.12076 0.04313,0 0.07334,-0.0173 0.09491,-0.0388 0.09488,-0.11645 0.181134,-0.17252 0.306202,-0.17252 0.138007,0 0.250137,0.0863 0.250137,0.24153 0,0.13801 -0.07763,0.2372 -0.293264,0.41403 l -0.474424,0.40541 c -0.04313,0.0388 -0.069,0.0819 -0.069,0.1337 z m 0,0"
id="path4269"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 48.240938,102.96232 c 0.250164,0 0.418359,-0.0776 0.564991,-0.20702 0.0217,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12507 -0.129381,-0.12507 -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.24584 -0.513212,-0.54774 v -0.004 c 0,-0.3019 0.215635,-0.54774 0.513212,-0.54774 0.146659,0 0.258789,0.0561 0.366607,0.14233 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="path4261"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 49.81677,102.95801 h 0.01296 c 0.07763,0 0.129382,-0.0431 0.159571,-0.10782 l 0.543427,-1.28093 c 0.0042,-0.0173 0.01297,-0.0388 0.01297,-0.0604 0,-0.0733 -0.06038,-0.12939 -0.133694,-0.12939 -0.06469,0 -0.116443,0.0431 -0.133694,0.0906 l -0.452861,1.12135 -0.444209,-1.11272 c -0.0217,-0.0604 -0.06903,-0.0992 -0.138033,-0.0992 -0.07763,0 -0.138006,0.0604 -0.138006,0.1337 0,0.0216 0.0087,0.0431 0.0172,0.0647 l 0.539115,1.2723 c 0.03019,0.0647 0.07763,0.10782 0.155258,0.10782 z m 0,0"
id="path4257"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 59.362222,102.81137 c 0,0.0776 0.06038,0.13801 0.138007,0.13801 0.07334,0 0.13372,-0.0604 0.13372,-0.13801 v -0.3709 h 0.306203 c 0.34073,0 0.621056,-0.18115 0.621056,-0.53049 v -0.004 c 0,-0.31053 -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.27602 v 0.004 c 0,0.15958 -0.129408,0.27602 -0.336418,0.27602 z m 0,0"
id="path4253"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 61.244203,102.84588 c 0.02593,0.069 0.07332,0.11213 0.14232,0.11213 h 0.02593 c 0.06469,0 0.116443,-0.0431 0.142319,-0.11213 l 0.345043,-1.00922 0.340704,1.00922 c 0.02593,0.069 0.07332,0.11213 0.14232,0.11213 h 0.02593 c 0.06472,0 0.11647,-0.0431 0.142346,-0.11213 l 0.457147,-1.28093 c 0.0042,-0.0173 0.01296,-0.0388 0.01296,-0.0561 0,-0.0733 -0.06469,-0.12939 -0.138006,-0.12939 -0.06469,0 -0.112131,0.0431 -0.129381,0.0992 l -0.357982,1.06096 -0.349329,-1.05665 c -0.0172,-0.0647 -0.06469,-0.10782 -0.133694,-0.10782 h -0.0217 c -0.069,0 -0.116443,0.0431 -0.138007,0.10782 l -0.349355,1.05665 -0.353642,-1.06096 c -0.0172,-0.0561 -0.06903,-0.0992 -0.133721,-0.0992 -0.07763,0 -0.138007,0.0561 -0.138007,0.1337 0,0.0172 0.0042,0.0345 0.0087,0.0517 z m 0,0"
id="path4249"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 63.340286,102.81568 c 0,0.0733 0.05607,0.1337 0.133694,0.1337 0.07334,0 0.13372,-0.0604 0.13372,-0.1337 v -0.92726 l 0.375206,0.56498 c 0.03019,0.0431 0.06469,0.069 0.11213,0.069 0.05175,0 0.08625,-0.0259 0.11647,-0.069 l 0.375205,-0.56929 v 0.92726 c 0,0.0733 0.06469,0.13801 0.138007,0.13801 0.07763,0 0.133694,-0.0604 0.133694,-0.13801 v -1.29386 c 0,-0.0733 -0.05606,-0.1337 -0.133694,-0.1337 h -0.03019 c -0.05607,0 -0.09488,0.0216 -0.125069,0.069 l -0.470111,0.73319 -0.465773,-0.73319 c -0.02593,-0.0388 -0.069,-0.069 -0.129381,-0.069 h -0.02593 c -0.07763,0 -0.138007,0.0604 -0.138007,0.1337 z m 0,0"
id="path4245"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.63538,102.96232 c 0.250163,0 0.418359,-0.0776 0.564991,-0.20702 0.02143,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12507 -0.129381,-0.12507 -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.24584 -0.513212,-0.54774 v -0.004 c 0,-0.3019 0.215635,-0.54774 0.513212,-0.54774 0.146659,0 0.258789,0.0561 0.366607,0.14233 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.02143,-0.0863 -0.05175,-0.10782 -0.133694,-0.10351 -0.293265,-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="path4237"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 68.211423,102.95801 h 0.01297 c 0.07763,0 0.129381,-0.0431 0.15957,-0.10782 l 0.543428,-1.28093 c 0.0042,-0.0173 0.01297,-0.0388 0.01297,-0.0604 0,-0.0733 -0.06038,-0.12939 -0.133694,-0.12939 -0.06469,0 -0.116444,0.0431 -0.133694,0.0906 l -0.452861,1.12135 -0.444209,-1.11272 c -0.0217,-0.0604 -0.06903,-0.0992 -0.138033,-0.0992 -0.07763,0 -0.138007,0.0604 -0.138007,0.1337 0,0.0216 0.0087,0.0431 0.0172,0.0647 l 0.539115,1.2723 c 0.03019,0.0647 0.07763,0.10782 0.155257,0.10782 z m 0,0"
id="path4233"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 58.978021,85.589692 c 0,0.07763 0.06038,0.138012 0.138006,0.138012 0.07334,0 0.133721,-0.06038 0.133721,-0.138012 v -0.370906 h 0.306202 c 0.340731,0 0.621057,-0.181142 0.621057,-0.530485 v -0.0043 c 0,-0.310526 -0.228574,-0.513231 -0.590868,-0.513231 h -0.470112 c -0.07763,0 -0.138006,0.05607 -0.138006,0.133699 z m 0.271727,-0.616741 V 84.41659 h 0.314828 c 0.202697,0 0.336417,0.09489 0.336417,0.276024 v 0.0043 c 0,0.159578 -0.129407,0.276024 -0.336417,0.276024 z m 0,0"
id="path4229"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 60.264531,85.550878 v 0.02156 c 0,0.08626 0.06469,0.155263 0.155257,0.155263 0.09059,0 0.155284,-0.06901 0.155284,-0.155263 v -0.02156 c 0,-0.08626 -0.06469,-0.150953 -0.155284,-0.150953 -0.09057,0 -0.155257,0.06469 -0.155257,0.150953 z m 0,0"
id="path4225"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 61.939343,85.624196 c 0.02593,0.06901 0.07332,0.112133 0.14232,0.112133 h 0.02593 c 0.06469,0 0.116443,-0.04313 0.142319,-0.112133 l 0.345043,-1.009213 0.340704,1.009213 c 0.02593,0.06901 0.07332,0.112133 0.14232,0.112133 h 0.02593 c 0.06472,0 0.116469,-0.04313 0.142346,-0.112133 l 0.457147,-1.280924 c 0.0042,-0.01725 0.01296,-0.03881 0.01296,-0.05607 0,-0.07332 -0.06469,-0.129386 -0.138006,-0.129386 -0.06469,0 -0.112131,0.04313 -0.129382,0.0992 l -0.357981,1.060966 -0.349329,-1.056654 c -0.0172,-0.06469 -0.06469,-0.10782 -0.133694,-0.10782 h -0.0217 c -0.069,0 -0.116443,0.04313 -0.138007,0.10782 l -0.349356,1.056654 -0.353642,-1.060966 c -0.0172,-0.05607 -0.06903,-0.0992 -0.13372,-0.0992 -0.07763,0 -0.138007,0.05607 -0.138007,0.133699 0,0.01725 0.0042,0.0345 0.0087,0.05175 z m 0,0"
id="path4217"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 64.0454,85.589692 c 0,0.07763 0.05607,0.138012 0.133694,0.138012 0.07766,0 0.138033,-0.06038 0.138033,-0.138012 v -1.298173 c 0,-0.07332 -0.06038,-0.133699 -0.138033,-0.133699 -0.07763,0 -0.133694,0.06038 -0.133694,0.133699 z m 0,0"
id="path4213"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 64.782238,85.576754 c 0,0.07763 0.06038,0.138012 0.138007,0.138012 h 0.439923 c 0.483049,0 0.819441,-0.336405 0.819441,-0.772004 v -0.0043 c 0,-0.435599 -0.336392,-0.767691 -0.819441,-0.767691 h -0.439923 c -0.07763,0 -0.138007,0.05607 -0.138007,0.133699 z m 0.271727,-0.107823 V 84.41659 h 0.306203 c 0.323479,0 0.534802,0.224272 0.534802,0.526172 v 0.0043 c 0,0.3019 -0.211323,0.521856 -0.534802,0.521856 z m 0,0"
id="path4209"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.847973,85.589692 c 0,0.07763 0.06038,0.138012 0.138006,0.138012 0.07332,0 0.138007,-0.06038 0.138007,-0.138012 v -1.168789 h 0.375232 c 0.069,0 0.125069,-0.05607 0.125069,-0.125071 0,-0.06901 -0.05607,-0.125074 -0.125069,-0.125074 h -1.026477 c -0.069,0 -0.125069,0.05607 -0.125069,0.125074 0,0.06901 0.05606,0.125071 0.125069,0.125071 h 0.375232 z m 0,0"
id="path4205"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 67.933558,85.589692 c 0,0.07763 0.06038,0.138012 0.138007,0.138012 0.07334,0 0.13372,-0.06038 0.13372,-0.138012 v -0.526169 h 0.7375 v 0.526169 c 0,0.07763 0.06038,0.138012 0.133694,0.138012 0.07763,0 0.138006,-0.06038 0.138006,-0.138012 v -1.298173 c 0,-0.07332 -0.06038,-0.133699 -0.138006,-0.133699 -0.07332,0 -0.133694,0.06038 -0.133694,0.133699 v 0.521856 h -0.7375 v -0.521856 c 0,-0.07332 -0.06038,-0.133699 -0.13372,-0.133699 -0.07763,0 -0.138007,0.06038 -0.138007,0.133699 z m 0,0"
id="path4201"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path36423"
d="m 72.422452,132.08989 c 0,-0.43021 -0.352583,-0.78278 -0.782796,-0.78278 h -6.009984 c -0.430186,0 -0.78277,0.35257 -0.78277,0.78278 v 9.5239 c 0,0.43021 0.352584,0.78279 0.78277,0.78279 h 6.009984 c 0.430213,0 0.782796,-0.35258 0.782796,-0.78279 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
inkscape:export-filename="/home/vortico/pics/tmp/LFOs.png"
inkscape:export-xdpi="150.22649"
inkscape:export-ydpi="150.22649" />
<path
inkscape:connector-curvature="0"
id="path36425"
d="m 63.346027,132.08989 c 0,-0.43021 -0.351525,-0.78278 -0.781711,-0.78278 h -6.011069 c -0.430213,0 -0.782796,0.35257 -0.782796,0.78278 v 9.5239 c 0,0.43021 0.352583,0.78279 0.782796,0.78279 h 6.011069 c 0.430186,0 0.781711,-0.35258 0.781711,-0.78279 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
inkscape:export-filename="/home/vortico/pics/tmp/LFOs.png"
inkscape:export-xdpi="150.22649"
inkscape:export-ydpi="150.22649" />
<path
inkscape:connector-curvature="0"
id="path36427"
d="m 54.270633,132.08989 c 0,-0.43021 -0.352557,-0.78278 -0.782769,-0.78278 h -6.011043 c -0.430212,0 -0.781738,0.35257 -0.781738,0.78278 v 9.5239 c 0,0.43021 0.351526,0.78279 0.781738,0.78279 h 6.011043 c 0.430212,0 0.782769,-0.35258 0.782769,-0.78279 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
inkscape:export-filename="/home/vortico/pics/tmp/LFOs.png"
inkscape:export-xdpi="150.22649"
inkscape:export-ydpi="150.22649" />
<path
inkscape:connector-curvature="0"
id="path36429"
d="m 45.194208,132.08989 c 0,-0.43021 -0.352557,-0.78278 -0.78277,-0.78278 h -6.009984 c -0.430212,0 -0.782796,0.35257 -0.782796,0.78278 v 9.5239 c 0,0.43021 0.352584,0.78279 0.782796,0.78279 h 6.009984 c 0.430213,0 0.78277,-0.35258 0.78277,-0.78279 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
inkscape:export-filename="/home/vortico/pics/tmp/LFOs.png"
inkscape:export-xdpi="150.22649"
inkscape:export-ydpi="150.22649" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 40.362467,133.74009 c 0.267388,0 0.457173,-0.13801 0.457173,-0.38815 v -0.004 c 0,-0.21996 -0.142346,-0.31053 -0.396795,-0.37523 -0.215636,-0.0561 -0.271701,-0.0819 -0.271701,-0.1682 0,-0.0647 0.05607,-0.11213 0.163883,-0.11213 0.08625,0 0.172508,0.0302 0.263075,0.0863 0.0217,0.0129 0.04313,0.0172 0.069,0.0172 0.07332,0 0.129382,-0.0561 0.129382,-0.12507 0,-0.0561 -0.03019,-0.0906 -0.06038,-0.11213 -0.112131,-0.069 -0.245825,-0.10783 -0.396769,-0.10783 -0.258789,0 -0.439923,0.15095 -0.439923,0.37522 v 0.004 c 0,0.25014 0.15957,0.31915 0.414046,0.38384 0.211323,0.0561 0.25445,0.0906 0.25445,0.15958 v 0.004 c 0,0.0733 -0.069,0.12076 -0.181134,0.12076 -0.125068,0 -0.228573,-0.0431 -0.323479,-0.11645 -0.0172,-0.0129 -0.04313,-0.0216 -0.07763,-0.0216 -0.07332,0 -0.129381,0.0518 -0.129381,0.12507 0,0.0431 0.0217,0.082 0.05175,0.10351 0.14232,0.10351 0.306229,0.15095 0.474425,0.15095 z m 0,0"
id="path4197"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 41.133409,133.59346 c 0,0.0776 0.06038,0.13801 0.138007,0.13801 0.07766,0 0.138033,-0.0604 0.138033,-0.13801 v -1.00059 c 0,-0.0776 -0.06038,-0.13801 -0.138033,-0.13801 -0.07763,0 -0.138007,0.0604 -0.138007,0.13801 z m 0,0"
id="path4193"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 41.782538,133.59777 c 0,0.0733 0.06038,0.1337 0.138007,0.1337 0.07334,0 0.13372,-0.0604 0.13372,-0.1337 v -0.67281 l 0.552027,0.72457 c 0.03881,0.0474 0.07766,0.0819 0.146659,0.0819 h 0.0087 c 0.07763,0 0.138006,-0.0604 0.138006,-0.13801 v -1.00059 c 0,-0.0776 -0.06038,-0.13801 -0.138006,-0.13801 -0.07332,0 -0.138033,0.0604 -0.138033,0.13801 v 0.64693 l -0.530463,-0.69868 c -0.03881,-0.0474 -0.07763,-0.082 -0.142346,-0.082 h -0.03019 c -0.07763,0 -0.138007,0.0604 -0.138007,0.13801 z m 0,0"
id="path4189"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 49.343033,133.59346 c 0,0.0776 0.06038,0.13801 0.138007,0.13801 0.07763,0 0.138007,-0.0604 0.138007,-0.13801 v -0.8712 h 0.263075 c 0.07334,0 0.129408,-0.0561 0.129408,-0.12939 0,-0.069 -0.05606,-0.12507 -0.129408,-0.12507 h -0.806503 c -0.069,0 -0.125068,0.0561 -0.125068,0.12507 0,0.0733 0.05606,0.12939 0.125068,0.12939 h 0.267414 z m 0,0"
id="path4185"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 50.253623,133.59346 c 0,0.0776 0.06038,0.13801 0.138007,0.13801 0.07766,0 0.138033,-0.0604 0.138033,-0.13801 v -0.27171 h 0.219948 l 0.271701,0.34071 c 0.03019,0.0388 0.07332,0.069 0.13372,0.069 0.069,0 0.133694,-0.0474 0.133694,-0.12507 0,-0.0431 -0.0217,-0.0733 -0.04744,-0.10782 l -0.189786,-0.2329 c 0.150971,-0.0604 0.250164,-0.18545 0.250164,-0.37953 v -0.004 c 0,-0.12076 -0.03881,-0.21564 -0.107818,-0.28896 -0.08197,-0.0819 -0.207037,-0.12507 -0.366607,-0.12507 h -0.43561 c -0.07763,0 -0.138007,0.0604 -0.138007,0.13801 z m 0.27604,-0.51755 v -0.35796 h 0.276014 c 0.133694,0 0.215635,0.0604 0.215635,0.17682 v 0.004 c 0,0.10782 -0.07763,0.17682 -0.211323,0.17682 z m 0,0"
id="path4181"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 51.627049,133.59346 c 0,0.0776 0.06038,0.13801 0.138007,0.13801 0.07766,0 0.138033,-0.0604 0.138033,-0.13801 v -1.00059 c 0,-0.0776 -0.06038,-0.13801 -0.138033,-0.13801 -0.07763,0 -0.138007,0.0604 -0.138007,0.13801 z m 0,0"
id="path4177"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 57.903918,133.74009 c 0.267388,0 0.457174,-0.13801 0.457174,-0.38815 v -0.004 c 0,-0.21996 -0.142346,-0.31053 -0.396796,-0.37523 -0.215635,-0.0561 -0.2717,-0.0819 -0.2717,-0.1682 0,-0.0647 0.05606,-0.11213 0.163882,-0.11213 0.08626,0 0.172509,0.0302 0.263076,0.0863 0.0217,0.0129 0.04313,0.0172 0.069,0.0172 0.07332,0 0.129381,-0.0561 0.129381,-0.12507 0,-0.0561 -0.03019,-0.0906 -0.06038,-0.11213 -0.11213,-0.069 -0.245824,-0.10783 -0.396769,-0.10783 -0.258789,0 -0.439923,0.15095 -0.439923,0.37522 v 0.004 c 0,0.25014 0.159571,0.31915 0.414047,0.38384 0.211323,0.0561 0.25445,0.0906 0.25445,0.15958 v 0.004 c 0,0.0733 -0.069,0.12076 -0.181134,0.12076 -0.125069,0 -0.228574,-0.0431 -0.32348,-0.11645 -0.0172,-0.0129 -0.04313,-0.0216 -0.07763,-0.0216 -0.07332,0 -0.129382,0.0518 -0.129382,0.12507 0,0.0431 0.0217,0.082 0.05175,0.10351 0.142319,0.10351 0.306229,0.15095 0.474424,0.15095 z m 0,0"
id="path4173"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 58.558444,133.6064 c 0,0.069 0.05607,0.12507 0.129382,0.12507 0.05607,0 0.103505,-0.0302 0.125068,-0.0819 l 0.08628,-0.20702 h 0.556339 l 0.08194,0.19408 c 0.02593,0.0604 0.06903,0.0949 0.13372,0.0949 0.07332,0 0.129381,-0.0561 0.129381,-0.12939 0,-0.0172 -0.0042,-0.0388 -0.01296,-0.0561 l -0.439923,-0.98765 c -0.03019,-0.069 -0.08194,-0.11214 -0.15957,-0.11214 h -0.01296 c -0.07763,0 -0.133694,0.0431 -0.163883,0.11214 l -0.43561,0.98765 c -0.0087,0.0173 -0.0172,0.0388 -0.0172,0.0604 z m 0.444236,-0.40973 0.172508,-0.41403 0.176821,0.41403 z m 0,0"
id="path4169"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 60.267441,133.62796 c 0.02593,0.0733 0.07763,0.11645 0.14232,0.11645 h 0.03019 c 0.069,0 0.116444,-0.0431 0.14232,-0.11645 l 0.245824,-0.71594 0.250164,0.71594 c 0.02593,0.0733 0.07332,0.11645 0.142319,0.11645 h 0.02593 c 0.069,0 0.120756,-0.0431 0.146632,-0.11645 l 0.349356,-0.98333 c 0.0042,-0.0172 0.01297,-0.0388 0.01297,-0.0561 0,-0.0733 -0.06469,-0.1337 -0.138007,-0.1337 -0.06903,0 -0.116469,0.0474 -0.13372,0.0992 l -0.250137,0.772 -0.250137,-0.76338 c -0.02143,-0.069 -0.069,-0.11213 -0.138034,-0.11213 h -0.0217 c -0.07332,0 -0.120756,0.0474 -0.14232,0.11213 l -0.250137,0.76338 -0.250163,-0.772 c -0.0172,-0.0561 -0.069,-0.0992 -0.133694,-0.0992 -0.07763,0 -0.14232,0.0604 -0.14232,0.13801 0,0.0129 0.0042,0.0345 0.01297,0.0518 z m 0,0"
id="path4165"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 67.190476,133.74009 c 0.267388,0 0.457173,-0.13801 0.457173,-0.38815 v -0.004 c 0,-0.21996 -0.142346,-0.31053 -0.396795,-0.37523 -0.215636,-0.0561 -0.271701,-0.0819 -0.271701,-0.1682 0,-0.0647 0.05606,-0.11213 0.163883,-0.11213 0.08625,0 0.172508,0.0302 0.263075,0.0863 0.0217,0.0129 0.04313,0.0172 0.069,0.0172 0.07332,0 0.129382,-0.0561 0.129382,-0.12507 0,-0.0561 -0.03019,-0.0906 -0.06038,-0.11213 -0.112131,-0.069 -0.245825,-0.10783 -0.396769,-0.10783 -0.258789,0 -0.439923,0.15095 -0.439923,0.37522 v 0.004 c 0,0.25014 0.15957,0.31915 0.414046,0.38384 0.211323,0.0561 0.25445,0.0906 0.25445,0.15958 v 0.004 c 0,0.0733 -0.069,0.12076 -0.181134,0.12076 -0.125068,0 -0.228573,-0.0431 -0.323479,-0.11645 -0.0172,-0.0129 -0.04313,-0.0216 -0.07763,-0.0216 -0.07332,0 -0.129381,0.0518 -0.129381,0.12507 0,0.0431 0.0217,0.082 0.05175,0.10351 0.14232,0.10351 0.306229,0.15095 0.474425,0.15095 z m 0,0"
id="path4161"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 68.541332,133.74441 c 0.14232,0 0.267388,-0.0388 0.375232,-0.10782 l 0.069,0.0604 c 0.0217,0.0216 0.05175,0.0388 0.09057,0.0388 0.07332,0 0.129381,-0.0604 0.129381,-0.12938 0,-0.0474 -0.0217,-0.082 -0.05175,-0.10782 l -0.05175,-0.0431 c 0.069,-0.10351 0.11213,-0.22859 0.11213,-0.36229 0,-0.35796 -0.280326,-0.64693 -0.668496,-0.64693 -0.388144,0 -0.668496,0.29328 -0.668496,0.64693 v 0.004 c 0,0.35797 0.280352,0.64693 0.664183,0.64693 z m 0.03881,-0.4011 0.129381,0.11214 c -0.04744,0.0216 -0.103505,0.0345 -0.163883,0.0345 -0.219948,0 -0.379518,-0.18114 -0.379518,-0.39679 0,-0.21564 0.155257,-0.39247 0.375205,-0.39247 0.224261,0 0.383858,0.17683 0.383858,0.39247 v 0.004 c 0,0.0647 -0.01297,0.12507 -0.0345,0.17251 l -0.138033,-0.12507 c -0.03019,-0.0216 -0.05607,-0.0345 -0.09488,-0.0345 -0.069,0 -0.129382,0.0561 -0.129382,0.12938 0,0.0431 0.0217,0.0776 0.05175,0.10351 z m 0,0"
id="path4157"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 69.532197,133.59346 c 0,0.0776 0.06038,0.13801 0.138007,0.13801 0.07766,0 0.138033,-0.0604 0.138033,-0.13801 v -0.27171 h 0.219948 l 0.271701,0.34071 c 0.03019,0.0388 0.07332,0.069 0.13372,0.069 0.069,0 0.133694,-0.0474 0.133694,-0.12507 0,-0.0431 -0.0217,-0.0733 -0.04744,-0.10782 l -0.189786,-0.2329 c 0.150972,-0.0604 0.250164,-0.18545 0.250164,-0.37953 v -0.004 c 0,-0.12076 -0.03881,-0.21564 -0.107818,-0.28896 -0.08197,-0.0819 -0.207036,-0.12507 -0.366606,-0.12507 h -0.43561 c -0.07763,0 -0.138007,0.0604 -0.138007,0.13801 z m 0.27604,-0.51755 v -0.35796 h 0.276013 c 0.133694,0 0.215636,0.0604 0.215636,0.17682 v 0.004 c 0,0.10782 -0.07763,0.17682 -0.211323,0.17682 z m 0,0"
id="path4153"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 39.917358,69.160222 c 0.327766,0 0.539115,-0.189766 0.539115,-0.564986 v -0.612428 c 0,-0.06038 -0.04744,-0.107822 -0.107818,-0.107822 -0.06472,0 -0.112157,0.04744 -0.112157,0.107822 v 0.621054 c 0,0.232895 -0.120755,0.349342 -0.314827,0.349342 -0.198385,0 -0.319141,-0.125073 -0.319141,-0.357968 v -0.612428 c 0,-0.06038 -0.04747,-0.107822 -0.107844,-0.107822 -0.06469,0 -0.11213,0.04744 -0.11213,0.107822 v 0.621054 c 0,0.366594 0.20701,0.55636 0.534802,0.55636 z m 0,0"
id="path4149"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 40.827975,69.039462 c 0,0.06038 0.05175,0.107821 0.11213,0.107821 0.06038,0 0.107844,-0.04744 0.107844,-0.107821 v -0.797881 l 0.646906,0.836696 c 0.03022,0.03882 0.06041,0.06901 0.112157,0.06901 h 0.0087 c 0.06038,0 0.107818,-0.05175 0.107818,-0.112134 v -1.052341 c 0,-0.06038 -0.04744,-0.107822 -0.107818,-0.107822 -0.06038,0 -0.107844,0.04744 -0.107844,0.107822 v 0.772004 l -0.629655,-0.815133 c -0.03019,-0.03881 -0.0604,-0.06469 -0.112157,-0.06469 h -0.02593 c -0.06038,0 -0.112131,0.05175 -0.112131,0.112135 z m 0,0"
id="path4145"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 42.317499,69.039462 c 0,0.06038 0.05175,0.107821 0.112131,0.107821 0.06038,0 0.112157,-0.04744 0.112157,-0.107821 v -1.056654 c 0,-0.06038 -0.05178,-0.107822 -0.112157,-0.107822 -0.06038,0 -0.112131,0.04744 -0.112131,0.107822 z m 0,0"
id="path4141"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 40.174877,78.919485 c 0,0.06469 0.05175,0.112136 0.11213,0.112136 h 0.470112 c 0.280326,0 0.465799,-0.120761 0.465799,-0.34503 v -0.0043 c 0,-0.168201 -0.103505,-0.25446 -0.250163,-0.3019 0.09491,-0.05175 0.18116,-0.129386 0.18116,-0.280336 v -0.0043 c 0,-0.08626 -0.03019,-0.155266 -0.08625,-0.207018 -0.06903,-0.07332 -0.185473,-0.112136 -0.327793,-0.112136 h -0.452861 c -0.06038,0 -0.11213,0.04744 -0.11213,0.112136 z m 0.219975,-0.612426 v -0.336404 h 0.314827 c 0.14232,0 0.224261,0.06038 0.224261,0.159575 v 0.0043 c 0,0.116449 -0.09488,0.172516 -0.237199,0.172516 z m 0,0.530482 v -0.34503 h 0.349329 c 0.172508,0 0.258762,0.06038 0.258762,0.168204 v 0.0043 c 0,0.112134 -0.09057,0.172514 -0.241511,0.172514 z m 0,0"
id="path4137"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 41.544202,78.932426 c 0,0.06038 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.04744 0.112157,-0.10782 V 77.87577 c 0,-0.06038 -0.05178,-0.10782 -0.112157,-0.10782 -0.06038,0 -0.11213,0.04744 -0.11213,0.10782 z m 0,0"
id="path4133"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 68.235342,69.160222 c 0.332078,0 0.54774,-0.288962 0.54774,-0.651243 0,-0.362282 -0.215662,-0.646931 -0.543428,-0.646931 -0.332105,0 -0.54774,0.288962 -0.54774,0.646931 v 0.0043 c 0,0.357968 0.215635,0.646931 0.543428,0.646931 z m 0.0042,-0.198392 c -0.194072,0 -0.319167,-0.202705 -0.319167,-0.452851 0,-0.250147 0.120783,-0.448539 0.314854,-0.448539 0.194072,0 0.323454,0.202705 0.323454,0.448539 v 0.0043 c 0,0.245834 -0.125069,0.448539 -0.319141,0.448539 z m 0,0"
id="path4129"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 69.356699,68.457224 c 0.155257,0 0.297577,-0.138012 0.297577,-0.293275 v -0.0043 c 0,-0.155263 -0.14232,-0.288962 -0.297577,-0.288962 -0.155284,0 -0.297603,0.133699 -0.297603,0.288962 v 0.0043 c 0,0.155263 0.142319,0.293275 0.297603,0.293275 z m 0,-0.12076 c -0.09922,0 -0.168222,-0.08195 -0.168222,-0.172515 v -0.0043 c 0,-0.09057 0.069,-0.168202 0.168222,-0.168202 0.09919,0 0.168196,0.07763 0.168196,0.168202 v 0.0043 c 0,0.09057 -0.069,0.172515 -0.168196,0.172515 z m 0,0"
id="path4125"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.922559,78.932426 c 0,0.06038 0.05178,0.10782 0.107844,0.10782 0.06469,0 0.11213,-0.04744 0.11213,-0.10782 v -1.065281 c 0,-0.06038 -0.04744,-0.107821 -0.11213,-0.107821 -0.0345,0 -0.06469,0.0086 -0.107844,0.02156 l -0.18976,0.06038 c -0.04744,0.01294 -0.07763,0.04744 -0.07763,0.09488 0,0.04744 0.04744,0.09057 0.09919,0.09057 0.0087,0 0.02593,0 0.03881,-0.0043 l 0.129382,-0.03882 z m 0,0"
id="path4121"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 67.94348,79.048872 c 0.276013,0 0.478711,-0.138012 0.478711,-0.362281 v -0.0043 c 0,-0.15095 -0.08626,-0.237207 -0.224261,-0.3019 0.103505,-0.05607 0.181133,-0.138012 0.181133,-0.280336 v -0.0043 c 0,-0.19408 -0.185446,-0.336405 -0.435583,-0.336405 -0.250164,0 -0.43561,0.146638 -0.43561,0.336405 v 0.0043 c 0,0.142324 0.07763,0.224268 0.181134,0.280336 -0.138007,0.06038 -0.224261,0.155263 -0.224261,0.306213 v 0.0043 c 0,0.215643 0.202697,0.357968 0.478737,0.357968 z m 0,-0.741813 c -0.129381,0 -0.224287,-0.07763 -0.224287,-0.185454 v -0.0043 c 0,-0.09488 0.09059,-0.176829 0.224287,-0.176829 0.133694,0 0.224261,0.08195 0.224261,0.176829 v 0.0043 c 0,0.107823 -0.09488,0.185454 -0.224261,0.185454 z m 0,0.556361 c -0.163883,0 -0.263102,-0.08626 -0.263102,-0.185454 v -0.0043 c 0,-0.116449 0.11647,-0.189767 0.263102,-0.189767 0.150945,0 0.263075,0.07332 0.263075,0.189767 v 0.0043 c 0,0.103507 -0.09919,0.185454 -0.263075,0.185454 z m 0,0"
id="path4117"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 69.220306,79.053184 c 0.332079,0 0.547741,-0.288962 0.547741,-0.651242 0,-0.362281 -0.215662,-0.64693 -0.543428,-0.64693 -0.332105,0 -0.547741,0.288962 -0.547741,0.64693 v 0.0043 c 0,0.357968 0.215636,0.64693 0.543428,0.64693 z m 0.0042,-0.198392 c -0.194071,0 -0.319166,-0.202703 -0.319166,-0.45285 0,-0.250148 0.120782,-0.448538 0.314854,-0.448538 0.194072,0 0.323453,0.202703 0.323453,0.448538 v 0.0043 c 0,0.245835 -0.125069,0.448538 -0.319141,0.448538 z m 0,0"
id="path4113"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 70.341134,78.350187 c 0.155258,0 0.297577,-0.138012 0.297577,-0.293275 v -0.0043 c 0,-0.155263 -0.142319,-0.288962 -0.297577,-0.288962 -0.155284,0 -0.297603,0.133699 -0.297603,0.288962 v 0.0043 c 0,0.155263 0.142319,0.293275 0.297603,0.293275 z m 0,-0.120759 c -0.09922,0 -0.168222,-0.08195 -0.168222,-0.172516 v -0.0043 c 0,-0.09057 0.069,-0.168201 0.168222,-0.168201 0.09919,0 0.168196,0.07763 0.168196,0.168201 v 0.0043 c 0,0.09057 -0.069,0.172516 -0.168196,0.172516 z m 0,0"
id="path4109"
inkscape:connector-curvature="0" />
</g>
</svg>

+ 0
- 296
vst2_bin/plugins/Fundamental/res__OLD/LFO-2.svg View File

@@ -1,296 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="90.138298"
height="380"
viewBox="0 0 23.849092 100.54167"
version="1.1"
id="svg11003"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="LFO-2.svg">
<defs
id="defs10997" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="29.53924"
inkscape:cy="-4.22136"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1200"
inkscape:window-x="7"
inkscape:window-y="133"
inkscape:window-maximized="0"
units="px" />
<metadata
id="metadata11000">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-28.135456,-32.246147)">
<path
inkscape:connector-curvature="0"
id="path33497"
d="m 28.208772,32.319466 h 23.70246 V 132.71557 h -23.70246 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
inkscape:export-filename="/home/vortico/pics/tmp/LFOs.png"
inkscape:export-xdpi="150.22649"
inkscape:export-ydpi="150.22649" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 35.136992,39.475733 c 0,0.142325 0.112157,0.254459 0.254477,0.254459 h 1.198959 c 0.129408,0 0.2286,-0.103509 0.2286,-0.232895 0,-0.129386 -0.09919,-0.232895 -0.2286,-0.232895 h -0.94451 v -1.617327 c 0,-0.142324 -0.11213,-0.254459 -0.254449,-0.254459 -0.14232,0 -0.254477,0.112135 -0.254477,0.254459 z m 0,0"
id="path4105"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 37.17902,39.492984 c 0,0.142325 0.112157,0.258773 0.254476,0.258773 0.14232,0 0.25445,-0.116448 0.25445,-0.258773 v -0.659869 h 0.892757 c 0.129408,0 0.232913,-0.103509 0.232913,-0.232895 0,-0.129386 -0.103505,-0.232895 -0.232913,-0.232895 h -0.892757 v -0.491667 h 1.043729 c 0.129381,0 0.228573,-0.103509 0.228573,-0.232896 0,-0.129386 -0.09919,-0.232894 -0.228573,-0.232894 h -1.298179 c -0.142319,0 -0.254476,0.116447 -0.254476,0.258772 z m 0,0"
id="path4101"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 40.43448,39.769008 c 0.715936,0 1.233487,-0.539109 1.233487,-1.198978 v -0.0043 c 0,-0.659869 -0.513238,-1.194665 -1.229174,-1.194665 -0.715936,0 -1.233488,0.539109 -1.233488,1.198978 v 0.0086 c 0,0.659869 0.513239,1.190352 1.229175,1.190352 z m 0.0042,-0.470103 c -0.409733,0 -0.702998,-0.332091 -0.702998,-0.728875 v -0.0043 c 0,-0.396784 0.284639,-0.724562 0.698686,-0.724562 0.409733,0 0.698685,0.332091 0.698685,0.728875 v 0.0086 c 0,0.396784 -0.284639,0.720249 -0.694373,0.720249 z m 0,0"
id="path4097"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 42.353979,38.94525 h 0.57359 c 0.133721,0 0.245851,-0.107822 0.245851,-0.241521 0,-0.133699 -0.11213,-0.241521 -0.245851,-0.241521 h -0.57359 c -0.13372,0 -0.241538,0.107822 -0.241538,0.241521 0,0.133699 0.107818,0.241521 0.241538,0.241521 z m 0,0"
id="path4093"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 43.343627,39.488672 c 0,0.15095 0.116443,0.24152 0.276039,0.24152 h 1.259338 c 0.120782,0 0.219974,-0.09488 0.219974,-0.219956 0,-0.12076 -0.09919,-0.219956 -0.219974,-0.219956 h -0.810816 l 0.379545,-0.293276 c 0.409707,-0.314839 0.608118,-0.508919 0.608118,-0.897077 v -0.0043 c 0,-0.4356 -0.319167,-0.715936 -0.797877,-0.715936 -0.349356,0 -0.569304,0.125073 -0.754777,0.340716 -0.03881,0.04313 -0.06038,0.103509 -0.06038,0.159577 0,0.129386 0.103505,0.228582 0.232913,0.228582 0.07763,0 0.138006,-0.0345 0.172508,-0.06901 0.129381,-0.142325 0.232886,-0.202705 0.375206,-0.202705 0.185473,0 0.314854,0.103509 0.314854,0.301901 0,0.189766 -0.116443,0.319153 -0.401109,0.556361 l -0.65987,0.539108 c -0.08626,0.06901 -0.133694,0.155264 -0.133694,0.25446 z m 0,0"
id="path4089"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 33.142405,103.73711 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.41404 h 0.539088 c 0.05607,0 0.103505,-0.0431 0.103505,-0.0992 0,-0.0561 -0.04744,-0.0992 -0.103505,-0.0992 h -0.539088 v -0.34503 h 0.62103 c 0.05609,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09922,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 z m 0,0"
id="path4085"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 34.357054,103.73711 c 0,0.0604 0.04744,0.10782 0.107817,0.10782 0.06469,0 0.112157,-0.0474 0.112157,-0.10782 v -0.75044 l 0.30189,0.45716 c 0.02593,0.0345 0.05606,0.0561 0.09488,0.0561 0.03881,0 0.069,-0.0216 0.09057,-0.0561 l 0.306229,-0.46148 v 0.75476 c 0,0.0561 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -1.05234 c 0,-0.0604 -0.05175,-0.11214 -0.11213,-0.11214 h -0.02593 c -0.04313,0 -0.07332,0.0216 -0.09919,0.0561 l -0.379545,0.59948 -0.383831,-0.59517 c -0.0217,-0.0345 -0.05178,-0.0604 -0.09922,-0.0604 h -0.02593 c -0.06038,0 -0.11213,0.0517 -0.11213,0.11214 z m 0,0"
id="path4081"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 42.78062,103.73711 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.082 l -0.241538,-0.3019 c 0.168222,-0.0561 0.284665,-0.17682 0.284665,-0.37522 v -0.004 c 0,-0.11214 -0.0345,-0.20271 -0.103505,-0.27171 -0.07766,-0.0776 -0.202724,-0.12508 -0.362294,-0.12508 h -0.448548 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 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.12938 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
id="path4077"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 44.253238,103.8363 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="path4073"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 45.836954,103.85355 c 0.267388,0 0.448522,-0.13801 0.448522,-0.37522 v -0.004 c 0,-0.20702 -0.133694,-0.3019 -0.401082,-0.36659 -0.241512,-0.0561 -0.297603,-0.0992 -0.297603,-0.1984 0,-0.0863 0.07334,-0.15095 0.202723,-0.15095 0.09919,0 0.194072,0.0302 0.288952,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.11213,-0.0776 -0.237199,-0.11645 -0.396769,-0.11645 -0.250164,0 -0.426985,0.14664 -0.426985,0.36228 v 0.004 c 0,0.23289 0.146633,0.31052 0.414047,0.37522 0.237199,0.0517 0.284639,0.10351 0.284639,0.18976 v 0.004 c 0,0.0949 -0.08625,0.15957 -0.219948,0.15957 -0.138007,0 -0.250138,-0.0474 -0.353669,-0.12938 -0.01297,-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.138007,0.10351 0.301916,0.15526 0.470112,0.15526 z m 0,0"
id="path4069"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 46.719128,103.8363 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="path4065"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 48.189761,103.73711 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 0.306203 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10352 -0.09922,-0.10352 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10352 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306228 z m 0,0"
id="path4061"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path36099"
d="M 30.122609,99.962543 H 49.99631"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
inkscape:export-filename="/home/vortico/pics/tmp/LFOs.png"
inkscape:export-xdpi="150.22649"
inkscape:export-ydpi="150.22649" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 33.096605,67.481339 c 0.02593,0.06901 0.07332,0.112133 0.14232,0.112133 h 0.02593 c 0.06469,0 0.116443,-0.04313 0.142319,-0.112133 l 0.345043,-1.009213 0.340704,1.009213 c 0.02593,0.06901 0.07332,0.112133 0.14232,0.112133 h 0.02593 c 0.06472,0 0.116469,-0.04313 0.142346,-0.112133 l 0.457147,-1.280924 c 0.0042,-0.01725 0.01296,-0.03881 0.01296,-0.05607 0,-0.07332 -0.06469,-0.129386 -0.138006,-0.129386 -0.06469,0 -0.112131,0.04313 -0.129382,0.09919 l -0.357981,1.060966 -0.349329,-1.056654 c -0.0172,-0.06469 -0.06469,-0.10782 -0.133694,-0.10782 h -0.0217 c -0.069,0 -0.116443,0.04313 -0.138007,0.10782 l -0.349356,1.056654 -0.353642,-1.060966 c -0.0172,-0.05607 -0.06903,-0.09919 -0.13372,-0.09919 -0.07763,0 -0.138007,0.05607 -0.138007,0.133699 0,0.01725 0.0042,0.0345 0.0087,0.05175 z m 0,0"
id="path4057"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 34.987847,67.45546 c 0,0.07332 0.05175,0.129387 0.125068,0.129387 0.05607,0 0.103505,-0.0345 0.125069,-0.08626 l 0.129408,-0.3019 h 0.750437 l 0.125069,0.293275 c 0.02593,0.05607 0.069,0.09488 0.133694,0.09488 0.07332,0 0.129381,-0.06038 0.129381,-0.133699 0,-0.01725 -0.0042,-0.0345 -0.0172,-0.05607 l -0.573617,-1.280922 c -0.03019,-0.06901 -0.08194,-0.112133 -0.15957,-0.112133 h -0.01296 c -0.07763,0 -0.133694,0.04313 -0.163883,0.112133 l -0.573617,1.280922 c -0.01296,0.02156 -0.0172,0.04313 -0.0172,0.06038 z m 0.48305,-0.49598 0.2717,-0.625366 0.271727,0.625366 z m 0,0"
id="path4053"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 37.309327,67.593472 h 0.01297 c 0.07763,0 0.129381,-0.04313 0.15957,-0.10782 l 0.543428,-1.280925 c 0.0042,-0.01725 0.01297,-0.03881 0.01297,-0.06038 0,-0.07332 -0.06038,-0.129386 -0.133694,-0.129386 -0.06469,0 -0.116444,0.04313 -0.133694,0.09057 l -0.452861,1.121347 -0.444209,-1.112721 c -0.0217,-0.06038 -0.06903,-0.09919 -0.138033,-0.09919 -0.07763,0 -0.138007,0.06038 -0.138007,0.133699 0,0.02156 0.0087,0.04313 0.0172,0.06469 l 0.539115,1.272297 c 0.03019,0.06469 0.07763,0.10782 0.155257,0.10782 z m 0,0"
id="path4049"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 38.491962,67.571909 h 0.910034 c 0.06469,0 0.120756,-0.05175 0.120756,-0.120761 0,-0.06901 -0.05607,-0.120759 -0.120756,-0.120759 h -0.776314 v -0.418348 h 0.664184 c 0.069,0 0.120756,-0.05176 0.120756,-0.116449 0,-0.06901 -0.05175,-0.125074 -0.120756,-0.125074 h -0.664184 v -0.401097 h 0.763376 c 0.069,0 0.120756,-0.05175 0.120756,-0.120759 0,-0.06901 -0.05175,-0.120761 -0.120756,-0.120761 h -0.897096 c -0.07763,0 -0.138007,0.05607 -0.138007,0.133699 v 1.272297 c 0,0.07763 0.06038,0.138012 0.138007,0.138012 z m 0,0"
id="path4045"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 32.601834,84.668513 c 0,0.0776 0.06038,0.13801 0.138007,0.13801 0.07334,0 0.13372,-0.0604 0.13372,-0.13801 v -0.50461 h 0.668497 c 0.069,0 0.120756,-0.0561 0.120756,-0.12507 0,-0.0647 -0.05175,-0.12076 -0.120756,-0.12076 h -0.668497 v -0.42266 h 0.767689 c 0.069,0 0.120756,-0.0561 0.120756,-0.12507 0,-0.069 -0.05175,-0.12077 -0.120756,-0.12077 h -0.901409 c -0.07763,0 -0.138007,0.0561 -0.138007,0.1337 z m 0,0"
id="path4041"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 34.079982,84.672823 c 0,0.0733 0.05607,0.1337 0.133694,0.1337 0.07334,0 0.13372,-0.0604 0.13372,-0.1337 v -0.92727 l 0.375206,0.56499 c 0.03019,0.0431 0.06469,0.069 0.11213,0.069 0.05175,0 0.08626,-0.0259 0.11647,-0.069 l 0.375206,-0.5693 v 0.92727 c 0,0.0733 0.06469,0.13801 0.138006,0.13801 0.07763,0 0.133694,-0.0604 0.133694,-0.13801 v -1.29386 c 0,-0.0733 -0.05607,-0.1337 -0.133694,-0.1337 h -0.03019 c -0.05607,0 -0.09488,0.0216 -0.125068,0.069 l -0.470112,0.73319 -0.465772,-0.73319 c -0.02593,-0.0388 -0.069,-0.069 -0.129382,-0.069 h -0.02593 c -0.07763,0 -0.138006,0.0604 -0.138006,0.1337 z m 0,0"
id="path4037"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 37.375103,84.819463 c 0.250163,0 0.418359,-0.0776 0.564991,-0.20702 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.11213,0.0949 -0.22426,0.15095 -0.383857,0.15095 -0.297577,0 -0.513212,-0.24583 -0.513212,-0.54773 v -0.004 c 0,-0.3019 0.215635,-0.54774 0.513212,-0.54774 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.0862 -0.05175,-0.10782 -0.133694,-0.10351 -0.293265,-0.17683 -0.53049,-0.17683 -0.470085,0 -0.797878,0.36229 -0.797878,0.8022 v 0.004 c 0,0.44423 0.336418,0.79357 0.78494,0.79357 z m 0,0"
id="path4029"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 38.950908,84.815153 h 0.01297 c 0.07763,0 0.129381,-0.0431 0.15957,-0.10782 l 0.543428,-1.28093 c 0.0042,-0.0173 0.01296,-0.0388 0.01296,-0.0604 0,-0.0733 -0.06038,-0.12938 -0.133694,-0.12938 -0.06469,0 -0.116443,0.0431 -0.133694,0.0906 l -0.45286,1.12134 -0.444209,-1.11272 c -0.0217,-0.0604 -0.06903,-0.0992 -0.138033,-0.0992 -0.07763,0 -0.138007,0.0604 -0.138007,0.1337 0,0.0216 0.0087,0.0431 0.0172,0.0647 l 0.539115,1.2723 c 0.03019,0.0647 0.07763,0.10782 0.155257,0.10782 z m 0,0"
id="path4025"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 31.917992,115.50666 c 0.0217,0.0561 0.06038,0.0906 0.112131,0.0906 h 0.0217 c 0.05607,0 0.09488,-0.0345 0.116444,-0.0906 l 0.280326,-0.81944 0.280352,0.81944 c 0.0172,0.0561 0.05607,0.0906 0.112131,0.0906 h 0.02169 c 0.05175,0 0.09488,-0.0345 0.116444,-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.288951,0.86689 -0.284639,-0.86258 c -0.0172,-0.0517 -0.05606,-0.0863 -0.112157,-0.0863 h -0.01296 c -0.05607,0 -0.09488,0.0345 -0.112131,0.0863 l -0.284639,0.86258 -0.288977,-0.86689 c -0.01297,-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.01296,0.0431 z m 0,0"
id="path4021"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 33.465514,115.4851 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.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.10351 0,-0.0172 -0.0042,-0.0345 -0.01297,-0.0474 l -0.465799,-1.04372 c -0.02593,-0.0517 -0.069,-0.0863 -0.133694,-0.0863 h -0.0087 c -0.06469,0 -0.107818,0.0345 -0.133694,0.0863 l -0.465799,1.04372 c -0.0087,0.0172 -0.0172,0.0345 -0.0172,0.0474 z m 0.396795,-0.40541 0.219948,-0.50461 0.219949,0.50461 z m 0,0"
id="path4017"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 35.371122,115.59723 h 0.01297 c 0.06038,0 0.103505,-0.0345 0.125068,-0.0906 l 0.444236,-1.0394 c 0.0042,-0.0129 0.0087,-0.0302 0.0087,-0.0474 0,-0.0561 -0.04744,-0.10351 -0.107818,-0.10351 -0.05175,0 -0.09059,0.0345 -0.107844,0.069 l -0.36658,0.91433 -0.362294,-0.9057 c -0.0172,-0.0474 -0.05606,-0.0776 -0.11213,-0.0776 -0.06469,0 -0.112131,0.0474 -0.112131,0.10782 0,0.0172 0.0042,0.0345 0.01297,0.0517 l 0.439922,1.03078 c 0.0217,0.0561 0.06469,0.0906 0.125069,0.0906 z m 0,0"
id="path4013"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 36.34471,115.57998 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.629656 v -0.33641 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 36.34471 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="path4009"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path36485"
d="m 49.538078,113.94703 c 0,-0.43021 -0.351499,-0.78279 -0.781711,-0.78279 h -6.011043 c -0.430212,0 -0.781738,0.35258 -0.781738,0.78279 v 9.52389 c 0,0.43022 0.351526,0.78279 0.781738,0.78279 h 6.011043 c 0.430212,0 0.781711,-0.35257 0.781711,-0.78279 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
inkscape:export-filename="/home/vortico/pics/tmp/LFOs.png"
inkscape:export-xdpi="150.22649"
inkscape:export-ydpi="150.22649" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 44.432705,115.60154 c 0.38817,0 0.672808,-0.29327 0.672808,-0.65124 0,-0.35797 -0.280326,-0.64693 -0.668496,-0.64693 -0.388143,0 -0.668496,0.29328 -0.668496,0.64693 v 0.004 c 0,0.35797 0.280353,0.64693 0.664184,0.64693 z m 0.0042,-0.25445 c -0.219948,0 -0.379518,-0.18115 -0.379518,-0.39679 0,-0.21564 0.155257,-0.39247 0.375205,-0.39247 0.224261,0 0.383858,0.17683 0.383858,0.39247 v 0.004 c 0,0.21565 -0.155284,0.39248 -0.379545,0.39248 z m 0,0"
id="path4005"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 45.93231,115.60154 c 0.340704,0 0.552053,-0.18976 0.552053,-0.5693 v -0.58223 c 0,-0.0776 -0.06038,-0.13801 -0.138007,-0.13801 -0.07766,0 -0.138033,0.0604 -0.138033,0.13801 v 0.59517 c 0,0.1984 -0.103505,0.30191 -0.2717,0.30191 -0.168196,0 -0.271701,-0.10783 -0.271701,-0.31053 v -0.58655 c 0,-0.0776 -0.0604,-0.13801 -0.138033,-0.13801 -0.07332,0 -0.138007,0.0604 -0.138007,0.13801 v 0.59086 c 0,0.37091 0.20701,0.56067 0.543428,0.56067 z m 0,0"
id="path4001"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 47.110341,115.45059 c 0,0.0776 0.06038,0.13802 0.138006,0.13802 0.07763,0 0.138007,-0.0604 0.138007,-0.13802 v -0.8712 h 0.263075 c 0.07334,0 0.129408,-0.0561 0.129408,-0.12938 0,-0.069 -0.05606,-0.12508 -0.129408,-0.12508 h -0.806503 c -0.069,0 -0.125068,0.0561 -0.125068,0.12508 0,0.0733 0.05607,0.12938 0.125068,0.12938 h 0.267415 z m 0,0"
id="path3997"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 36.287295,45.14796 c 0,0.09488 0.07332,0.168202 0.168222,0.168202 0.09488,0 0.168196,-0.07332 0.168196,-0.168202 v -0.62968 h 0.836692 c 0.08194,0 0.150944,-0.06901 0.150944,-0.155263 0,-0.08626 -0.069,-0.155264 -0.150944,-0.155264 h -0.836692 v -0.52617 h 0.957447 c 0.08626,0 0.155258,-0.06901 0.155258,-0.155263 0,-0.08626 -0.069,-0.155264 -0.155258,-0.155264 h -1.125643 c -0.09491,0 -0.168222,0.07332 -0.168222,0.172515 z m 0,0"
id="path3993"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 38.107126,45.14796 c 0,0.09488 0.07332,0.168202 0.168222,0.168202 0.09488,0 0.168195,-0.07332 0.168195,-0.168202 v -0.517545 h 0.431271 l 0.465799,0.599489 c 0.03881,0.05175 0.09057,0.08626 0.168196,0.08626 0.08194,0 0.159596,-0.06469 0.159596,-0.155264 0,-0.05175 -0.02169,-0.09057 -0.05175,-0.129386 l -0.370921,-0.470105 c 0.258762,-0.07763 0.439922,-0.267398 0.439922,-0.573612 v -0.0086 c 0,-0.168203 -0.06038,-0.310527 -0.159596,-0.414036 -0.125069,-0.120761 -0.314828,-0.19408 -0.560653,-0.19408 h -0.690059 c -0.09491,0 -0.168222,0.07332 -0.168222,0.172515 z m 0.336417,-0.819446 v -0.646931 h 0.495988 c 0.250137,0 0.401082,0.112135 0.401082,0.319153 v 0.0043 c 0,0.198393 -0.155257,0.323466 -0.396769,0.323466 z m 0,0"
id="path3989"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 40.320974,45.303223 h 1.138581 c 0.08194,0 0.150945,-0.06469 0.150945,-0.150951 0,-0.08194 -0.069,-0.15095 -0.150945,-0.15095 h -0.970386 v -0.521858 h 0.832379 c 0.08194,0 0.150945,-0.06469 0.150945,-0.146637 0,-0.08626 -0.069,-0.155264 -0.150945,-0.155264 h -0.832379 v -0.504606 h 0.957448 c 0.08194,0 0.150945,-0.06469 0.150945,-0.15095 0,-0.08195 -0.069,-0.150951 -0.150945,-0.150951 h -1.125643 c -0.09491,0 -0.168222,0.07332 -0.168222,0.172515 v 1.587137 c 0,0.0992 0.07332,0.172515 0.168222,0.172515 z m 0,0"
id="path3985"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 42.90418,45.337726 c 0.224261,0 0.426958,-0.06901 0.590868,-0.185454 l 0.138006,0.125074 c 0.03019,0.03019 0.069,0.05175 0.116443,0.05175 0.09057,0 0.159571,-0.07763 0.159571,-0.163889 0,-0.05607 -0.0217,-0.0992 -0.06038,-0.133699 l -0.125069,-0.0992 c 0.125069,-0.168202 0.194072,-0.37522 0.194072,-0.595176 v -0.0043 c 0,-0.543422 -0.41402,-0.996273 -1.004887,-0.996273 -0.595181,0 -1.01354,0.457164 -1.01354,1.000586 v 0.0043 c 0,0.543422 0.414047,0.996273 1.004914,0.996273 z m 0.09919,-0.608115 0.241512,0.202705 c -0.09488,0.05607 -0.20701,0.09057 -0.332078,0.09057 -0.383858,0 -0.659871,-0.310527 -0.659871,-0.685746 v -0.0043 c 0,-0.37522 0.267388,-0.681434 0.651245,-0.681434 0.383831,0 0.659871,0.310527 0.659871,0.685747 v 0.0043 c 0,0.138012 -0.0345,0.263085 -0.09491,0.366594 l -0.250137,-0.224269 c -0.03881,-0.0345 -0.069,-0.05175 -0.116443,-0.05175 -0.09057,0 -0.15957,0.07763 -0.15957,0.163889 0,0.06038 0.0217,0.0992 0.06038,0.133699 z m 0,0"
id="path3981"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 45.45942,70.388848 c 0.327766,0 0.539115,-0.189764 0.539115,-0.564986 v -0.612428 c 0,-0.06038 -0.04744,-0.107821 -0.107818,-0.107821 -0.06472,0 -0.112156,0.04744 -0.112156,0.107821 v 0.621054 c 0,0.232896 -0.120756,0.349342 -0.314828,0.349342 -0.198385,0 -0.319141,-0.125071 -0.319141,-0.357968 v -0.612428 c 0,-0.06038 -0.04747,-0.107821 -0.107844,-0.107821 -0.06469,0 -0.11213,0.04744 -0.11213,0.107821 v 0.621054 c 0,0.366596 0.20701,0.55636 0.534802,0.55636 z m 0,0"
id="path3977"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 46.369984,70.26809 c 0,0.06038 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.107844,-0.04744 0.107844,-0.10782 v -0.797883 l 0.646907,0.836697 c 0.03021,0.03882 0.0604,0.06901 0.112156,0.06901 h 0.0087 c 0.06038,0 0.107817,-0.05175 0.107817,-0.112133 v -1.052343 c 0,-0.06038 -0.04744,-0.107821 -0.107817,-0.107821 -0.06038,0 -0.107845,0.04744 -0.107845,0.107821 v 0.772006 l -0.629655,-0.815133 c -0.03019,-0.03882 -0.0604,-0.06469 -0.112157,-0.06469 h -0.02593 c -0.06038,0 -0.11213,0.05176 -0.11213,0.112136 z m 0,0"
id="path3973"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 47.859508,70.26809 c 0,0.06038 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.112157,-0.04744 0.112157,-0.10782 v -1.056656 c 0,-0.06038 -0.05178,-0.107821 -0.112157,-0.107821 -0.06038,0 -0.112131,0.04744 -0.112131,0.107821 z m 0,0"
id="path3969"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 45.716939,80.148118 c 0,0.06469 0.05175,0.112136 0.112131,0.112136 h 0.470111 c 0.280326,0 0.465799,-0.120761 0.465799,-0.34503 v -0.0043 c 0,-0.168201 -0.103505,-0.25446 -0.250163,-0.3019 0.09491,-0.05175 0.18116,-0.129386 0.18116,-0.280337 v -0.0043 c 0,-0.08626 -0.03019,-0.155266 -0.08625,-0.207018 -0.06903,-0.07332 -0.185473,-0.112136 -0.327793,-0.112136 h -0.45286 c -0.06038,0 -0.112131,0.04744 -0.112131,0.112136 z m 0.219975,-0.612426 v -0.336404 h 0.314827 c 0.14232,0 0.224261,0.06038 0.224261,0.159575 v 0.0043 c 0,0.116449 -0.09488,0.172516 -0.237199,0.172516 z m 0,0.530482 v -0.34503 h 0.349329 c 0.172508,0 0.258763,0.06038 0.258763,0.168204 v 0.0043 c 0,0.112133 -0.09057,0.172514 -0.241512,0.172514 z m 0,0"
id="path3965"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 47.086237,80.161059 c 0,0.06038 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.112157,-0.04744 0.112157,-0.10782 v -1.056656 c 0,-0.06038 -0.05178,-0.10782 -0.112157,-0.10782 -0.06038,0 -0.112131,0.04744 -0.112131,0.10782 z m 0,0"
id="path3961"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 46.071534,87.610943 c 0.332078,0 0.54774,-0.28896 0.54774,-0.65124 0,-0.36228 -0.215662,-0.64693 -0.543428,-0.64693 -0.332105,0 -0.54774,0.28896 -0.54774,0.64693 v 0.004 c 0,0.35797 0.215635,0.64693 0.543428,0.64693 z m 0.0042,-0.19839 c -0.194072,0 -0.319167,-0.20271 -0.319167,-0.45285 0,-0.25015 0.120782,-0.44854 0.314854,-0.44854 0.194072,0 0.323453,0.2027 0.323453,0.44854 v 0.004 c 0,0.24583 -0.125068,0.44854 -0.31914,0.44854 z m 0,0"
id="path3957"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 47.192891,86.907943 c 0.155257,0 0.297577,-0.13801 0.297577,-0.29327 v -0.004 c 0,-0.15526 -0.14232,-0.28896 -0.297577,-0.28896 -0.155284,0 -0.297604,0.1337 -0.297604,0.28896 v 0.004 c 0,0.15526 0.14232,0.29327 0.297604,0.29327 z m 0,-0.12076 c -0.09922,0 -0.168222,-0.0819 -0.168222,-0.17251 v -0.004 c 0,-0.0906 0.069,-0.1682 0.168222,-0.1682 0.09919,0 0.168195,0.0776 0.168195,0.1682 v 0.004 c 0,0.0906 -0.069,0.17251 -0.168195,0.17251 z m 0,0"
id="path3953"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 44.758724,97.381363 c 0,0.0604 0.05178,0.10782 0.107844,0.10782 0.06469,0 0.112131,-0.0474 0.112131,-0.10782 v -1.06528 c 0,-0.0604 -0.04744,-0.10783 -0.112131,-0.10783 -0.0345,0 -0.06469,0.009 -0.107844,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="path3949"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 45.779672,97.497803 c 0.276013,0 0.47871,-0.13801 0.47871,-0.36228 v -0.004 c 0,-0.15095 -0.08625,-0.23721 -0.22426,-0.3019 0.103505,-0.0561 0.181133,-0.13801 0.181133,-0.28034 v -0.004 c 0,-0.19408 -0.185446,-0.33641 -0.435583,-0.33641 -0.250164,0 -0.43561,0.14664 -0.43561,0.33641 v 0.004 c 0,0.14233 0.07763,0.22427 0.181134,0.28034 -0.138007,0.0604 -0.224261,0.15526 -0.224261,0.30621 v 0.004 c 0,0.21565 0.202697,0.35797 0.478737,0.35797 z m 0,-0.74181 c -0.129381,0 -0.224287,-0.0776 -0.224287,-0.18545 v -0.004 c 0,-0.0949 0.09059,-0.17683 0.224287,-0.17683 0.133694,0 0.224261,0.0819 0.224261,0.17683 v 0.004 c 0,0.10782 -0.09488,0.18545 -0.224261,0.18545 z m 0,0.55636 c -0.163883,0 -0.263102,-0.0863 -0.263102,-0.18545 v -0.004 c 0,-0.11645 0.11647,-0.18976 0.263102,-0.18976 0.150945,0 0.263075,0.0733 0.263075,0.18976 v 0.004 c 0,0.1035 -0.09919,0.18545 -0.263075,0.18545 z m 0,0"
id="path3945"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 47.056525,97.502113 c 0.332078,0 0.54774,-0.28896 0.54774,-0.65124 0,-0.36228 -0.215662,-0.64693 -0.543428,-0.64693 -0.332105,0 -0.54774,0.28896 -0.54774,0.64693 v 0.004 c 0,0.35797 0.215635,0.64693 0.543428,0.64693 z m 0.0042,-0.19839 c -0.194072,0 -0.319167,-0.2027 -0.319167,-0.45285 0,-0.25015 0.120782,-0.44854 0.314854,-0.44854 0.194072,0 0.323453,0.20271 0.323453,0.44854 v 0.004 c 0,0.24584 -0.125068,0.44854 -0.31914,0.44854 z m 0,0"
id="path3941"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 48.177352,96.799123 c 0.155258,0 0.297577,-0.13802 0.297577,-0.29328 v -0.004 c 0,-0.15526 -0.142319,-0.28896 -0.297577,-0.28896 -0.155284,0 -0.297603,0.1337 -0.297603,0.28896 v 0.004 c 0,0.15526 0.142319,0.29328 0.297603,0.29328 z m 0,-0.12076 c -0.09922,0 -0.168222,-0.0819 -0.168222,-0.17252 v -0.004 c 0,-0.0906 0.069,-0.1682 0.168222,-0.1682 0.09919,0 0.168196,0.0776 0.168196,0.1682 v 0.004 c 0,0.0906 -0.069,0.17252 -0.168196,0.17252 z m 0,0"
id="path3937"
inkscape:connector-curvature="0" />
</g>
</svg>

+ 0
- 1254
vst2_bin/plugins/Fundamental/res__OLD/Mutes.svg
File diff suppressed because it is too large
View File


+ 0
- 523
vst2_bin/plugins/Fundamental/res__OLD/SEQ3.svg View File

@@ -1,523 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="330.49908"
height="380"
viewBox="0 0 87.444549 100.54166"
version="1.1"
id="svg12553"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="SEQ3.svg">
<defs
id="defs12547" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="163.61379"
inkscape:cy="-12.299431"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
units="px"
inkscape:window-width="1920"
inkscape:window-height="1200"
inkscape:window-x="5"
inkscape:window-y="182"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid12870"
originx="-20.372917"
originy="84.666661" />
</sodipodi:namedview>
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-26.543497,-161.30655)">
<path
inkscape:connector-curvature="0"
id="path33453"
d="m 26.616839,161.37987 h 87.297891 v 100.3961 H 26.616839 Z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
inkscape:connector-curvature="0"
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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
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
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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<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"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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
inkscape:connector-curvature="0"
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" />
</g>
</svg>

+ 0
- 377
vst2_bin/plugins/Fundamental/res__OLD/Scope.svg View File

@@ -1,377 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="195.29379"
height="380.00003"
viewBox="0 0 51.671483 100.54167"
version="1.1"
id="svg8630"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="Scope.svg">
<defs
id="defs8624" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="3.959798"
inkscape:cx="71.819591"
inkscape:cy="26.950962"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
units="px"
inkscape:window-width="1920"
inkscape:window-height="1200"
inkscape:window-x="149"
inkscape:window-y="266"
inkscape:window-maximized="0" />
<metadata
id="metadata8627">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-44.467833,-88.735117)">
<path
inkscape:connector-curvature="0"
id="path33449"
d="M 44.541176,88.808436 H 96.065974 V 189.20454 H 44.541176 Z m 0,0"
style="fill:#e6e6e6;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 48.871532,142.11256 c 0,0.0776 0.06038,0.12939 0.120756,0.12939 0.06038,0 0.09488,-0.0302 0.13372,-0.0776 l 0.409707,-0.53048 0.414047,0.53911 c 0.0345,0.0431 0.06469,0.069 0.125068,0.069 0.07763,0 0.133694,-0.0604 0.133694,-0.1337 0,-0.0388 -0.0217,-0.0733 -0.04313,-0.10351 l -0.452861,-0.56499 0.431298,-0.53911 c 0.02593,-0.0345 0.04313,-0.0647 0.04313,-0.10351 0,-0.0776 -0.06469,-0.12507 -0.125069,-0.12507 -0.06038,0 -0.09488,0.0259 -0.133694,0.0733 l -0.383857,0.50891 -0.392457,-0.51754 c -0.03019,-0.0431 -0.06472,-0.0647 -0.120782,-0.0647 -0.07763,0 -0.138007,0.0561 -0.138007,0.1337 0,0.0345 0.0217,0.0733 0.04313,0.0992 l 0.431298,0.53911 -0.457174,0.5693 c -0.02593,0.0345 -0.03881,0.0647 -0.03881,0.0992 z m 0,0"
id="path9387"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 51.731678,142.25058 c 0.323479,0 0.552053,-0.17252 0.552053,-0.46148 v -0.004 c 0,-0.25446 -0.168196,-0.37091 -0.495988,-0.45285 -0.297577,-0.069 -0.370893,-0.12508 -0.370893,-0.24152 v -0.004 c 0,-0.10351 0.09488,-0.18546 0.25445,-0.18546 0.120755,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.125068,-0.0561 0.125068,-0.12507 0,-0.0518 -0.02593,-0.0906 -0.06038,-0.10782 -0.138033,-0.0949 -0.29329,-0.14664 -0.487362,-0.14664 -0.306203,0 -0.53049,0.18545 -0.53049,0.44854 v 0.004 c 0,0.28465 0.185447,0.38385 0.517552,0.46148 0.284638,0.069 0.349329,0.12938 0.349329,0.2372 v 0.004 c 0,0.11645 -0.107818,0.19408 -0.276013,0.19408 -0.168196,0 -0.306203,-0.0561 -0.431298,-0.15957 -0.0172,-0.0129 -0.04313,-0.0216 -0.08194,-0.0216 -0.069,0 -0.125068,0.0561 -0.125068,0.12507 0,0.0431 0.0217,0.0819 0.05175,0.10351 0.172508,0.12939 0.370919,0.19408 0.582242,0.19408 z m 0,0"
id="path9379"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 53.351245,142.25489 c 0.250164,0 0.418359,-0.0776 0.564991,-0.20702 0.0217,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12507 -0.129381,-0.12507 -0.0345,0 -0.06038,0.0129 -0.08194,0.0302 -0.11213,0.0949 -0.224261,0.15095 -0.383857,0.15095 -0.297577,0 -0.513213,-0.24584 -0.513213,-0.54774 v -0.004 c 0,-0.3019 0.215636,-0.54773 0.513213,-0.54773 0.146658,0 0.258789,0.0561 0.366606,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.530489,-0.17683 -0.470086,0 -0.797878,0.36229 -0.797878,0.8022 v 0.004 c 0,0.44422 0.336418,0.79357 0.78494,0.79357 z m 0,0"
id="path9375"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 54.317292,142.091 c 0,0.0776 0.06038,0.13801 0.138006,0.13801 h 0.832406 c 0.069,0 0.125069,-0.0561 0.125069,-0.12507 0,-0.069 -0.05607,-0.12076 -0.125069,-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="path9371"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 50.281629,170.99463 c 0,0.0647 0.05175,0.10351 0.103505,0.10351 0.04744,0 0.07763,-0.0216 0.107817,-0.0604 l 0.332105,-0.43129 0.336392,0.43991 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.082 l -0.370919,-0.46147 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.107845,0.0604 l -0.314828,0.40972 -0.314854,-0.41834 c -0.03019,-0.0345 -0.05607,-0.0518 -0.103505,-0.0518 -0.06038,0 -0.107818,0.0474 -0.107818,0.10782 0,0.0302 0.0172,0.0561 0.0345,0.082 l 0.349356,0.4356 -0.370919,0.46147 c -0.0217,0.0259 -0.0345,0.0517 -0.0345,0.082 z m 0,0"
id="path9263"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 52.178506,170.99032 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -1.05666 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="path9255"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 52.791916,170.99032 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.107844,-0.0474 0.107844,-0.10782 v -0.79789 l 0.646907,0.8367 c 0.03021,0.0388 0.0604,0.069 0.112157,0.069 h 0.0087 c 0.06038,0 0.107817,-0.0517 0.107817,-0.11213 v -1.05235 c 0,-0.0604 -0.04744,-0.10782 -0.107817,-0.10782 -0.06038,0 -0.107845,0.0474 -0.107845,0.10782 v 0.77201 l -0.629654,-0.81514 c -0.03019,-0.0388 -0.0604,-0.0647 -0.112157,-0.0647 h -0.02593 c -0.06038,0 -0.11213,0.0518 -0.11213,0.11214 z m 0,0"
id="path9251"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.691081,168.37158 c 0,0.0647 0.05175,0.1035 0.103505,0.1035 0.04744,0 0.07763,-0.0216 0.107817,-0.0604 l 0.332105,-0.43128 0.336392,0.43991 c 0.02593,0.0345 0.05175,0.0517 0.09922,0.0517 0.06469,0 0.112131,-0.0474 0.112131,-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.40973 -0.314854,-0.41835 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.082 l 0.349356,0.4356 -0.37092,0.46147 c -0.0217,0.0259 -0.0345,0.0517 -0.0345,0.0819 z m 0,0"
id="path9231"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 76.563419,168.1533 c 0.04271,0.0427 0.106738,0.0396 0.146382,0 0.03965,-0.0396 0.04271,-0.10366 -4e-6,-0.14638 l -0.176883,-0.17688 0.179924,-0.17993 c 0.03659,-0.0366 0.03966,-0.10061 0.003,-0.13724 -0.03967,-0.0397 -0.10369,-0.0366 -0.140283,0 l -0.179923,0.17992 -0.176883,-0.17688 c -0.03967,-0.0397 -0.10673,-0.0396 -0.146374,0 -0.03964,0.0396 -0.03967,0.10671 -4e-6,0.14637 l 0.176883,0.17689 -0.179942,0.17994 c -0.03659,0.0366 -0.03966,0.10061 7e-6,0.14028 0.03656,0.0366 0.10065,0.0336 0.137243,-0.003 l 0.179941,-0.17994 z m 0,0"
id="path9227"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 77.399858,168.36726 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.39247 l 0.426985,-0.58655 c 0.0172,-0.0216 0.03019,-0.0517 0.03019,-0.082 0,-0.0561 -0.04313,-0.10782 -0.107818,-0.10782 -0.04747,0 -0.07766,0.0302 -0.103531,0.069 l -0.357955,0.50461 -0.349356,-0.50461 c -0.02593,-0.0388 -0.06038,-0.0647 -0.107818,-0.0647 -0.06038,0 -0.11213,0.0474 -0.11213,0.10351 0,0.0302 0.01296,0.0561 0.02593,0.0776 l 0.431297,0.59517 z m 0,0"
id="path9223"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 86.877974,168.46646 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.33641 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.1035 -0.09919,-0.1035 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="path9219"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 87.962448,168.37158 c 0,0.0647 0.05175,0.1035 0.103505,0.1035 0.04744,0 0.07763,-0.0216 0.107818,-0.0604 l 0.332105,-0.43128 0.336391,0.43991 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.37092,-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.107845,0.0604 l -0.314827,0.40973 -0.314854,-0.41835 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.082 l 0.349355,0.4356 -0.370919,0.46147 c -0.0217,0.0259 -0.0345,0.0517 -0.0345,0.0819 z m 0,0"
id="path9215"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.68187,168.36726 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.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.306229 z m 0,0"
id="path9211"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.658801,156.47633 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.43991 c 0.02593,0.0345 0.05175,0.0517 0.09922,0.0517 0.06469,0 0.112131,-0.0474 0.112131,-0.10782 0,-0.0302 -0.0172,-0.0604 -0.0345,-0.082 l -0.370919,-0.46147 0.349355,-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.41835 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.082 l 0.349356,0.4356 -0.37092,0.46148 c -0.0217,0.0259 -0.0345,0.0517 -0.0345,0.0819 z m 0,0"
id="path9207"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 75.907714,156.72648 c 0,0.0474 0.03881,0.0819 0.08625,0.0819 0.0345,0 0.06038,-0.0173 0.07763,-0.0474 l 0.733187,-1.5052 c 0.0042,-0.009 0.0087,-0.0259 0.0087,-0.0431 0,-0.0431 -0.0345,-0.082 -0.08194,-0.082 -0.0345,0 -0.06469,0.0173 -0.07763,0.0517 l -0.7375,1.50088 c -0.0042,0.0129 -0.0087,0.0259 -0.0087,0.0431 z m 0,0"
id="path9203"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 77.435021,156.47202 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.39247 l 0.426985,-0.58655 c 0.0172,-0.0216 0.03019,-0.0517 0.03019,-0.082 0,-0.0561 -0.04313,-0.10782 -0.107818,-0.10782 -0.04747,0 -0.07766,0.0302 -0.103531,0.069 l -0.357955,0.5046 -0.349356,-0.5046 c -0.02593,-0.0388 -0.06038,-0.0647 -0.107818,-0.0647 -0.06038,0 -0.11213,0.0474 -0.11213,0.1035 0,0.0302 0.01297,0.0561 0.02593,0.0776 l 0.431297,0.59518 z m 0,0"
id="path9199"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 61.528484,142.10394 c 0,0.0776 0.06038,0.13801 0.133694,0.13801 0.07763,0 0.138007,-0.0604 0.138007,-0.13801 v -0.48304 l 0.526176,-0.72025 c 0.0217,-0.0259 0.03881,-0.0604 0.03881,-0.0992 0,-0.0733 -0.05175,-0.12939 -0.133694,-0.12939 -0.05607,0 -0.09488,0.0302 -0.129381,0.0776 l -0.43561,0.62537 -0.431298,-0.62106 c -0.0345,-0.0474 -0.07332,-0.0819 -0.133694,-0.0819 -0.07763,0 -0.138006,0.0561 -0.138006,0.12939 0,0.0388 0.01296,0.069 0.0345,0.0949 l 0.53049,0.73319 z m 0,0"
id="path9195"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 63.835651,142.25058 c 0.323479,0 0.552053,-0.17252 0.552053,-0.46148 v -0.004 c 0,-0.25446 -0.168196,-0.37091 -0.495988,-0.45285 -0.297577,-0.069 -0.370893,-0.12508 -0.370893,-0.24152 v -0.004 c 0,-0.10351 0.09488,-0.18546 0.25445,-0.18546 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.12507 0,-0.0518 -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.18545 -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.12938 0.34933,0.2372 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.15957 -0.0172,-0.0129 -0.04313,-0.0216 -0.08194,-0.0216 -0.069,0 -0.125069,0.0561 -0.125069,0.12507 0,0.0431 0.0217,0.0819 0.05175,0.10351 0.172508,0.12939 0.370919,0.19408 0.582242,0.19408 z m 0,0"
id="path9187"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 65.455218,142.25489 c 0.250164,0 0.418359,-0.0776 0.564991,-0.20702 0.0217,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12507 -0.129381,-0.12507 -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.24584 -0.513212,-0.54774 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.36229 -0.797877,0.8022 v 0.004 c 0,0.44422 0.336417,0.79357 0.784939,0.79357 z m 0,0"
id="path9183"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.421265,142.091 c 0,0.0776 0.06038,0.13801 0.138006,0.13801 h 0.832406 c 0.069,0 0.125069,-0.0561 0.125069,-0.12507 0,-0.069 -0.05607,-0.12076 -0.125069,-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="path9179"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 48.689128,156.38851 c 0,0.0776 0.06038,0.12939 0.120756,0.12939 0.06038,0 0.09488,-0.0302 0.13372,-0.0776 l 0.409708,-0.53049 0.414046,0.53911 c 0.0345,0.0431 0.06469,0.069 0.125069,0.069 0.07763,0 0.133693,-0.0604 0.133693,-0.1337 0,-0.0388 -0.0217,-0.0733 -0.04313,-0.1035 l -0.45286,-0.56499 0.431297,-0.53911 c 0.02593,-0.0345 0.04313,-0.0647 0.04313,-0.10351 0,-0.0776 -0.06469,-0.12508 -0.125069,-0.12508 -0.06038,0 -0.09488,0.0259 -0.133694,0.0733 l -0.383857,0.50892 -0.392457,-0.51754 c -0.03019,-0.0431 -0.06472,-0.0647 -0.120782,-0.0647 -0.07763,0 -0.138006,0.0561 -0.138006,0.1337 0,0.0345 0.0217,0.0733 0.04313,0.0992 l 0.431297,0.53911 -0.457174,0.5693 c -0.02593,0.0345 -0.03881,0.0647 -0.03881,0.0992 z m 0,0"
id="path9175"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 51.005873,156.37989 c 0,0.0776 0.06038,0.13801 0.138006,0.13801 0.07334,0 0.133721,-0.0604 0.133721,-0.13801 v -0.37091 h 0.306202 c 0.34073,0 0.621056,-0.18114 0.621056,-0.53048 v -0.004 c 0,-0.31053 -0.228573,-0.51323 -0.590867,-0.51323 h -0.470112 c -0.07763,0 -0.138006,0.0561 -0.138006,0.1337 z m 0.271727,-0.61674 v -0.55636 h 0.314827 c 0.202698,0 0.336418,0.0949 0.336418,0.27602 v 0.004 c 0,0.15958 -0.129408,0.27602 -0.336418,0.27602 z m 0,0"
id="path9167"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 53.276738,156.53084 c 0.474425,0 0.810816,-0.36228 0.810816,-0.79788 v -0.004 c 0,-0.4356 -0.332079,-0.79789 -0.806503,-0.79789 -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.79357 z m 0.0042,-0.25015 c -0.306202,0 -0.52615,-0.25015 -0.52615,-0.54773 v -0.004 c 0,-0.3019 0.215635,-0.54774 0.521838,-0.54774 0.306228,0 0.526176,0.25015 0.526176,0.55205 v 0.004 c 0,0.29759 -0.215635,0.54342 -0.521864,0.54342 z m 0,0"
id="path9163"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 54.994757,156.52652 c 0.32348,0 0.552053,-0.17251 0.552053,-0.46147 v -0.004 c 0,-0.25446 -0.168195,-0.37091 -0.495987,-0.45285 -0.297577,-0.069 -0.370893,-0.12508 -0.370893,-0.24152 v -0.004 c 0,-0.10351 0.09488,-0.18546 0.254449,-0.18546 0.120756,0 0.232887,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.12507 0,-0.0517 -0.02593,-0.0906 -0.06038,-0.10782 -0.138034,-0.0949 -0.293291,-0.14664 -0.487363,-0.14664 -0.306202,0 -0.530489,0.18545 -0.530489,0.44854 v 0.004 c 0,0.28465 0.185446,0.38384 0.517551,0.46148 0.284639,0.069 0.349329,0.12938 0.349329,0.2372 v 0.004 c 0,0.11645 -0.107817,0.19408 -0.276013,0.19408 -0.168196,0 -0.306202,-0.0561 -0.431297,-0.15957 -0.0172,-0.0129 -0.04313,-0.0216 -0.08194,-0.0216 -0.069,0 -0.125068,0.0561 -0.125068,0.12507 0,0.0431 0.02143,0.0819 0.05175,0.10351 0.172509,0.12939 0.37092,0.19408 0.582242,0.19408 z m 0,0"
id="path9159"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 61.345207,156.37989 c 0,0.0776 0.06038,0.13801 0.133694,0.13801 0.07763,0 0.138007,-0.0604 0.138007,-0.13801 v -0.48305 l 0.526177,-0.72024 c 0.0217,-0.0259 0.03881,-0.0604 0.03881,-0.0992 0,-0.0733 -0.05175,-0.12939 -0.133694,-0.12939 -0.05607,0 -0.09488,0.0302 -0.129381,0.0776 l -0.43561,0.62537 -0.431298,-0.62106 c -0.0345,-0.0474 -0.07332,-0.0819 -0.133693,-0.0819 -0.07763,0 -0.138007,0.0561 -0.138007,0.12939 0,0.0388 0.01296,0.069 0.0345,0.0949 l 0.530489,0.73319 z m 0,0"
id="path9155"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 63.108973,156.37989 c 0,0.0776 0.06038,0.13801 0.138006,0.13801 0.07334,0 0.133721,-0.0604 0.133721,-0.13801 v -0.37091 h 0.306202 c 0.34073,0 0.621056,-0.18114 0.621056,-0.53048 v -0.004 c 0,-0.31053 -0.228573,-0.51323 -0.590867,-0.51323 h -0.470112 c -0.07763,0 -0.138006,0.0561 -0.138006,0.1337 z m 0.271727,-0.61674 v -0.55636 h 0.314827 c 0.202698,0 0.336418,0.0949 0.336418,0.27602 v 0.004 c 0,0.15958 -0.129408,0.27602 -0.336418,0.27602 z m 0,0"
id="path9147"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 65.3796,156.53084 c 0.474425,0 0.810816,-0.36228 0.810816,-0.79788 v -0.004 c 0,-0.4356 -0.332079,-0.79789 -0.806503,-0.79789 -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.79357 z m 0.0042,-0.25015 c -0.306203,0 -0.526151,-0.25015 -0.526151,-0.54773 v -0.004 c 0,-0.3019 0.215636,-0.54774 0.521838,-0.54774 0.306229,0 0.526177,0.25015 0.526177,0.55205 v 0.004 c 0,0.29759 -0.215636,0.54342 -0.521864,0.54342 z m 0,0"
id="path9143"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 67.097831,156.52652 c 0.323479,0 0.552053,-0.17251 0.552053,-0.46147 v -0.004 c 0,-0.25446 -0.168196,-0.37091 -0.495988,-0.45285 -0.297577,-0.069 -0.370893,-0.12508 -0.370893,-0.24152 v -0.004 c 0,-0.10351 0.09488,-0.18546 0.25445,-0.18546 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.125068,-0.0561 0.125068,-0.12507 0,-0.0517 -0.02593,-0.0906 -0.06038,-0.10782 -0.138033,-0.0949 -0.29329,-0.14664 -0.487362,-0.14664 -0.306203,0 -0.53049,0.18545 -0.53049,0.44854 v 0.004 c 0,0.28465 0.185447,0.38384 0.517552,0.46148 0.284638,0.069 0.349329,0.12938 0.349329,0.2372 v 0.004 c 0,0.11645 -0.107818,0.19408 -0.276013,0.19408 -0.168196,0 -0.306203,-0.0561 -0.431298,-0.15957 -0.0172,-0.0129 -0.04313,-0.0216 -0.08194,-0.0216 -0.069,0 -0.125069,0.0561 -0.125069,0.12507 0,0.0431 0.0217,0.0819 0.05175,0.10351 0.172508,0.12939 0.370919,0.19408 0.582242,0.19408 z m 0,0"
id="path9139"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.105478,142.10394 c 0,0.0776 0.06038,0.13801 0.138007,0.13801 0.07332,0 0.138007,-0.0604 0.138007,-0.13801 v -1.16879 h 0.375232 c 0.069,0 0.125068,-0.0561 0.125068,-0.12507 0,-0.069 -0.05607,-0.12508 -0.125068,-0.12508 h -1.026478 c -0.069,0 -0.125068,0.0561 -0.125068,0.12508 0,0.069 0.05607,0.12507 0.125068,0.12507 h 0.375232 z m 0,0"
id="path9135"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 75.200615,142.10394 c 0,0.0776 0.05607,0.13801 0.133694,0.13801 0.07766,0 0.138033,-0.0604 0.138033,-0.13801 v -1.29817 c 0,-0.0733 -0.06038,-0.1337 -0.138033,-0.1337 -0.07763,0 -0.133694,0.0604 -0.133694,0.1337 z m 0,0"
id="path9131"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 75.937242,142.10825 c 0,0.0733 0.05607,0.1337 0.133694,0.1337 0.07334,0 0.13372,-0.0604 0.13372,-0.1337 v -0.92727 l 0.375206,0.56499 c 0.03019,0.0431 0.06469,0.069 0.11213,0.069 0.05175,0 0.08625,-0.0259 0.11647,-0.069 l 0.375205,-0.5693 v 0.92727 c 0,0.0733 0.06469,0.13801 0.138007,0.13801 0.07763,0 0.133694,-0.0604 0.133694,-0.13801 v -1.29386 c 0,-0.0733 -0.05606,-0.1337 -0.133694,-0.1337 h -0.03019 c -0.05606,0 -0.09488,0.0216 -0.125069,0.069 l -0.470111,0.73319 -0.465773,-0.73319 c -0.02593,-0.0388 -0.069,-0.069 -0.129381,-0.069 h -0.02593 c -0.07763,0 -0.138007,0.0604 -0.138007,0.1337 z m 0,0"
id="path9127"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 78.057507,142.22901 h 0.910034 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.664184 c 0.069,0 0.120755,-0.0517 0.120755,-0.11644 0,-0.069 -0.05175,-0.12508 -0.120755,-0.12508 h -0.664184 v -0.4011 h 0.763376 c 0.069,0 0.120756,-0.0517 0.120756,-0.12075 0,-0.069 -0.05175,-0.12077 -0.120756,-0.12077 h -0.897096 c -0.07763,0 -0.138007,0.0561 -0.138007,0.1337 v 1.2723 c 0,0.0776 0.06038,0.13801 0.138007,0.13801 z m 0,0"
id="path9123"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path33957"
d="m 58.179547,144.3992 v 35.78497"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path33959"
d="m 70.303046,144.3992 v 35.78497"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path33961"
d="m 82.427603,144.3992 v 35.78497"
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 87.037491,156.47362 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -1.05666 c 0,-0.0604 -0.05178,-0.10782 -0.112157,-0.10782 -0.06038,0 -0.112131,0.0474 -0.112131,0.10782 z m 0,0"
id="path9119"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 87.65106,156.47362 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.79788 l 0.646906,0.83669 c 0.03022,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.10782 -0.107818,-0.10782 -0.06038,0 -0.107844,0.0474 -0.107844,0.10782 v 0.772 l -0.629655,-0.81513 c -0.03019,-0.0388 -0.0604,-0.0647 -0.112157,-0.0647 h -0.02593 c -0.06038,0 -0.112131,0.0518 -0.112131,0.11214 z m 0,0"
id="path9115"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.421149,156.47362 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 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 89.11492 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="path9111"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 65.503901,96.253665 c 0.500275,0 0.84963,-0.258772 0.84963,-0.720249 v -0.0086 c 0,-0.401097 -0.263101,-0.569299 -0.733186,-0.694373 -0.401109,-0.103504 -0.500301,-0.150946 -0.500301,-0.301896 v -0.0086 c 0,-0.112135 0.09919,-0.202705 0.297577,-0.202705 0.159597,0 0.319167,0.05607 0.487362,0.155263 0.03881,0.02588 0.07763,0.03882 0.129382,0.03882 0.129407,0 0.237225,-0.103509 0.237225,-0.237208 0,-0.0992 -0.05607,-0.168202 -0.11213,-0.202705 -0.21135,-0.129386 -0.452861,-0.202705 -0.737526,-0.202705 -0.474398,0 -0.810816,0.276024 -0.810816,0.698685 v 0.0043 c 0,0.461478 0.301916,0.590864 0.767688,0.711624 0.388171,0.0992 0.470112,0.16389 0.470112,0.293276 v 0.0086 c 0,0.133699 -0.129381,0.215643 -0.336391,0.215643 -0.224287,0 -0.418359,-0.07763 -0.590868,-0.207017 -0.0345,-0.02588 -0.08194,-0.04744 -0.146632,-0.04744 -0.13372,0 -0.241538,0.103508 -0.241538,0.237207 0,0.07763 0.04313,0.150951 0.09919,0.189767 0.258789,0.185453 0.564992,0.280336 0.87122,0.280336 z m 0,0"
id="path9039"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 67.875574,96.257978 c 0.370892,0 0.616743,-0.107822 0.828066,-0.288962 0.04313,-0.04313 0.08625,-0.103509 0.08625,-0.185454 0,-0.129386 -0.11213,-0.232895 -0.241511,-0.232895 -0.06038,0 -0.112131,0.02156 -0.150945,0.05607 -0.146659,0.116448 -0.288978,0.181141 -0.504614,0.181141 -0.396795,0 -0.672809,-0.332091 -0.672809,-0.728876 v -0.0043 c 0,-0.396783 0.284639,-0.724562 0.672809,-0.724562 0.181134,0 0.332079,0.06038 0.474425,0.168202 0.03881,0.02156 0.08194,0.04744 0.150945,0.04744 0.142319,0 0.254449,-0.107822 0.254449,-0.245834 0,-0.09057 -0.04744,-0.163889 -0.09919,-0.202705 -0.194072,-0.142324 -0.426985,-0.237208 -0.776314,-0.237208 -0.711623,0 -1.207611,0.53911 -1.207611,1.198979 v 0.0086 c 0,0.664182 0.504613,1.190353 1.186048,1.190353 z m 0,0"
id="path9035"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 70.321779,96.257978 c 0.715935,0 1.233486,-0.539109 1.233486,-1.198978 v -0.0043 c 0,-0.659869 -0.513238,-1.194666 -1.229174,-1.194666 -0.715936,0 -1.233487,0.53911 -1.233487,1.198979 v 0.0086 c 0,0.659869 0.513239,1.190353 1.229175,1.190353 z m 0.0042,-0.470103 c -0.409734,0 -0.702998,-0.332091 -0.702998,-0.728875 v -0.0043 c 0,-0.396784 0.284639,-0.724562 0.698685,-0.724562 0.409733,0 0.698685,0.332091 0.698685,0.728875 v 0.0086 c 0,0.396784 -0.284639,0.720249 -0.694372,0.720249 z m 0,0"
id="path9031"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 72.036384,95.981954 c 0,0.142325 0.112157,0.258773 0.254476,0.258773 0.142319,0 0.25445,-0.116448 0.25445,-0.258773 V 95.52479 h 0.38817 c 0.517525,0 0.935884,-0.280337 0.935884,-0.815133 v -0.0086 c 0,-0.474416 -0.336391,-0.802194 -0.888444,-0.802194 h -0.69006 c -0.142319,0 -0.254476,0.116448 -0.254476,0.258772 z m 0.508926,-0.910016 v -0.711623 h 0.392483 c 0.25445,0 0.41402,0.125073 0.41402,0.353655 v 0.0043 c 0,0.198392 -0.146632,0.353656 -0.405395,0.353656 z m 0,0"
id="path9027"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.517064,96.219162 h 1.298178 c 0.129382,0 0.228574,-0.0992 0.228574,-0.224269 0,-0.125073 -0.09919,-0.228582 -0.228574,-0.228582 h -1.048041 v -0.487355 h 0.884132 c 0.125095,0 0.2286,-0.0992 0.2286,-0.224269 0,-0.129386 -0.103505,-0.228582 -0.2286,-0.228582 h -0.884132 v -0.470103 h 1.035103 c 0.125069,0 0.228574,-0.0992 0.228574,-0.228582 0,-0.125074 -0.103505,-0.228583 -0.228574,-0.228583 h -1.28524 c -0.142319,0 -0.254476,0.116448 -0.254476,0.258773 v 1.807093 c 0,0.142325 0.112157,0.254459 0.254476,0.254459 z m 0,0"
id="path9023"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path35373"
d="m 89.305526,170.47805 -0.816186,0.81621 -0.817272,-0.81621"
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 62.839865,170.99045 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.39247 l 0.426984,-0.58655 c 0.0172,-0.0216 0.03019,-0.0517 0.03019,-0.0819 0,-0.0561 -0.04313,-0.10782 -0.107818,-0.10782 -0.04747,0 -0.07766,0.0302 -0.103531,0.069 l -0.357955,0.5046 -0.349356,-0.5046 c -0.02593,-0.0388 -0.06038,-0.0647 -0.107817,-0.0647 -0.06038,0 -0.112131,0.0474 -0.112131,0.10351 0,0.0302 0.01296,0.0561 0.02593,0.0776 l 0.431298,0.59517 z m 0,0"
id="path6707"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 64.286104,170.99045 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -1.05665 c 0,-0.0604 -0.05178,-0.10783 -0.112157,-0.10783 -0.06038,0 -0.11213,0.0474 -0.11213,0.10783 z m 0,0"
id="path6699"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 64.899699,170.99045 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.107845,-0.0474 0.107845,-0.10782 v -0.79788 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.11214 v -1.05234 c 0,-0.0604 -0.04744,-0.10782 -0.107818,-0.10782 -0.06038,0 -0.107844,0.0474 -0.107844,0.10782 v 0.77201 l -0.629656,-0.81514 c -0.03019,-0.0388 -0.0604,-0.0647 -0.112157,-0.0647 h -0.02593 c -0.06038,0 -0.11213,0.0518 -0.11213,0.11214 z m 0,0"
id="path6695"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 86.273586,142.10394 c 0,0.0776 0.06038,0.13801 0.138007,0.13801 0.07332,0 0.138007,-0.0604 0.138007,-0.13801 v -1.16879 h 0.375232 c 0.069,0 0.125068,-0.0561 0.125068,-0.12507 0,-0.069 -0.05606,-0.12508 -0.125068,-0.12508 h -1.026478 c -0.069,0 -0.125068,0.0561 -0.125068,0.12508 0,0.069 0.05606,0.12507 0.125068,0.12507 h 0.375232 z m 0,0"
id="path6691"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 87.360283,142.10394 c 0,0.0776 0.06038,0.13801 0.138007,0.13801 0.07334,0 0.13372,-0.0604 0.13372,-0.13801 v -0.41404 h 0.340704 l 0.375232,0.47873 c 0.0345,0.0431 0.07332,0.0733 0.133694,0.0733 0.069,0 0.129382,-0.0517 0.129382,-0.12939 0,-0.0388 -0.0172,-0.069 -0.04313,-0.1035 l -0.293264,-0.37091 c 0.20701,-0.0647 0.34933,-0.21564 0.34933,-0.46148 v -0.004 c 0,-0.1337 -0.04744,-0.25015 -0.129382,-0.3364 -0.09919,-0.0949 -0.250137,-0.15095 -0.444235,-0.15095 h -0.552053 c -0.07763,0 -0.138007,0.0561 -0.138007,0.1337 z m 0.271727,-0.65556 v -0.51754 h 0.396769 c 0.198411,0 0.319167,0.0906 0.319167,0.25446 v 0.004 c 0,0.15957 -0.125068,0.25877 -0.319167,0.25877 z m 0,0"
id="path6687"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.027714,142.10394 c 0,0.0776 0.05606,0.13801 0.133694,0.13801 0.07766,0 0.138033,-0.0604 0.138033,-0.13801 v -1.29817 c 0,-0.0733 -0.06038,-0.1337 -0.138033,-0.1337 -0.07763,0 -0.133694,0.0604 -0.133694,0.1337 z m 0,0"
id="path6683"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 90.484721,142.25489 c 0.232913,0 0.418359,-0.0776 0.552053,-0.1682 0.06038,-0.0388 0.09488,-0.0949 0.09488,-0.17252 v -0.40972 c 0,-0.0776 -0.06038,-0.13801 -0.138007,-0.13801 H 90.56235 c -0.06469,0 -0.120756,0.0517 -0.120756,0.11644 0,0.069 0.05607,0.12077 0.120756,0.12077 h 0.306229 v 0.28896 c -0.09488,0.069 -0.228574,0.11645 -0.375232,0.11645 -0.314828,0 -0.526151,-0.2329 -0.526151,-0.55205 v -0.004 c 0,-0.29759 0.215636,-0.54774 0.500274,-0.54774 0.168223,0 0.27604,0.0517 0.379545,0.12076 0.0217,0.0172 0.04744,0.0345 0.08194,0.0345 0.07332,0 0.133694,-0.0647 0.133694,-0.13801 0,-0.0517 -0.02593,-0.0906 -0.05607,-0.10782 -0.138006,-0.10351 -0.293264,-0.15958 -0.526176,-0.15958 -0.465773,0 -0.797878,0.3666 -0.797878,0.8022 v 0.004 c 0,0.44854 0.319167,0.79357 0.80219,0.79357 z m 0,0"
id="path6679"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path38411"
d="M 96.139317,137.44038 H 44.467833 V 100.4823 h 51.671484 z m 0,0"
style="fill:#1e282b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
inkscape:connector-curvature="0"
id="path5509"
d="M 44.46786,104.39516 H 96.13929"
style="clip-rule:nonzero;fill:none;stroke:#ffffff;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:0.25098041;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path5503"
d="M 44.46786,111.67852 H 96.13929"
style="clip-rule:nonzero;fill:none;stroke:#ffffff;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:0.25098041;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path5497"
d="M 44.46786,126.24417 H 96.13929"
style="clip-rule:nonzero;fill:none;stroke:#ffffff;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:0.25098041;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path5491"
d="M 44.46786,133.52753 H 96.13929"
style="clip-rule:nonzero;fill:none;stroke:#ffffff;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:0.25098041;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path5305"
d="M 44.46786,118.96188 H 96.13929"
style="clip-rule:nonzero;fill:none;stroke:#ffffff;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:0.25098041;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4803"
d="m 70.304131,104.39516 v 29.13452"
style="clip-rule:nonzero;fill:none;stroke:#ffffff;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:0.25098041;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4797"
d="m 78.915841,104.39516 v 29.13452"
style="clip-rule:nonzero;fill:none;stroke:#ffffff;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:0.25098041;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4791"
d="m 61.692367,104.39516 v 29.13452"
style="clip-rule:nonzero;fill:none;stroke:#ffffff;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:0.25098041;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4785"
d="m 53.080656,104.39516 v 29.13452"
style="clip-rule:nonzero;fill:none;stroke:#ffffff;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:0.25098041;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4779"
d="m 87.528638,104.39516 v 29.13452"
style="clip-rule:nonzero;fill:none;stroke:#ffffff;stroke-width:0.26458333;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:0.25098041;stroke-dasharray:none" />
</g>
</svg>

+ 0
- 484
vst2_bin/plugins/Fundamental/res__OLD/SequentialSwitch1.svg View File

@@ -1,484 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="15.239717mm"
height="128.4993mm"
viewBox="0 0 15.239717 128.4993"
version="1.1"
id="svg261903"
sodipodi:docname="SS-1.svg"
inkscape:version="0.92.2 5c3e80d, 2017-08-06">
<defs
id="defs261897">
<linearGradient
id="linear20"
gradientUnits="userSpaceOnUse"
x1="-0.095554203"
y1="0"
x2="1.32507"
y2="0"
gradientTransform="matrix(0,6.4087959,-6.4087959,0,64.256445,118.95198)">
<stop
offset="0"
style="stop-color:rgb(25.489807%,25.097656%,25.881958%);stop-opacity:1;"
id="stop217759" />
<stop
offset="0.0625"
style="stop-color:rgb(25.489807%,25.097656%,25.881958%);stop-opacity:1;"
id="stop217761" />
<stop
offset="0.078125"
style="stop-color:rgb(25.398254%,24.996948%,25.778198%);stop-opacity:1;"
id="stop217763" />
<stop
offset="0.09375"
style="stop-color:rgb(25.177002%,24.754333%,25.527954%);stop-opacity:1;"
id="stop217765" />
<stop
offset="0.109375"
style="stop-color:rgb(24.916077%,24.465942%,25.231934%);stop-opacity:1;"
id="stop217767" />
<stop
offset="0.125"
style="stop-color:rgb(24.653625%,24.179077%,24.935913%);stop-opacity:1;"
id="stop217769" />
<stop
offset="0.140625"
style="stop-color:rgb(24.3927%,23.892212%,24.639893%);stop-opacity:1;"
id="stop217771" />
<stop
offset="0.15625"
style="stop-color:rgb(24.131775%,23.605347%,24.343872%);stop-opacity:1;"
id="stop217773" />
<stop
offset="0.171875"
style="stop-color:rgb(23.87085%,23.316956%,24.047852%);stop-opacity:1;"
id="stop217775" />
<stop
offset="0.1875"
style="stop-color:rgb(23.609924%,23.03009%,23.751831%);stop-opacity:1;"
id="stop217777" />
<stop
offset="0.203125"
style="stop-color:rgb(23.348999%,22.743225%,23.455811%);stop-opacity:1;"
id="stop217779" />
<stop
offset="0.21875"
style="stop-color:rgb(23.088074%,22.45636%,23.15979%);stop-opacity:1;"
id="stop217781" />
<stop
offset="0.234375"
style="stop-color:rgb(22.825623%,22.167969%,22.86377%);stop-opacity:1;"
id="stop217783" />
<stop
offset="0.25"
style="stop-color:rgb(22.564697%,21.881104%,22.567749%);stop-opacity:1;"
id="stop217785" />
<stop
offset="0.265625"
style="stop-color:rgb(22.303772%,21.594238%,22.271729%);stop-opacity:1;"
id="stop217787" />
<stop
offset="0.28125"
style="stop-color:rgb(22.042847%,21.307373%,21.975708%);stop-opacity:1;"
id="stop217789" />
<stop
offset="0.296875"
style="stop-color:rgb(21.781921%,21.018982%,21.679688%);stop-opacity:1;"
id="stop217791" />
<stop
offset="0.3125"
style="stop-color:rgb(21.520996%,20.732117%,21.383667%);stop-opacity:1;"
id="stop217793" />
<stop
offset="0.328125"
style="stop-color:rgb(21.260071%,20.445251%,21.087646%);stop-opacity:1;"
id="stop217795" />
<stop
offset="0.34375"
style="stop-color:rgb(20.99762%,20.15686%,20.793152%);stop-opacity:1;"
id="stop217797" />
<stop
offset="0.359375"
style="stop-color:rgb(20.736694%,19.869995%,20.497131%);stop-opacity:1;"
id="stop217799" />
<stop
offset="0.375"
style="stop-color:rgb(20.475769%,19.58313%,20.201111%);stop-opacity:1;"
id="stop217801" />
<stop
offset="0.390625"
style="stop-color:rgb(20.214844%,19.296265%,19.90509%);stop-opacity:1;"
id="stop217803" />
<stop
offset="0.40625"
style="stop-color:rgb(19.953918%,19.007874%,19.60907%);stop-opacity:1;"
id="stop217805" />
<stop
offset="0.421875"
style="stop-color:rgb(19.692993%,18.721008%,19.313049%);stop-opacity:1;"
id="stop217807" />
<stop
offset="0.4375"
style="stop-color:rgb(19.432068%,18.434143%,19.017029%);stop-opacity:1;"
id="stop217809" />
<stop
offset="0.453125"
style="stop-color:rgb(19.169617%,18.147278%,18.721008%);stop-opacity:1;"
id="stop217811" />
<stop
offset="0.46875"
style="stop-color:rgb(18.908691%,17.858887%,18.424988%);stop-opacity:1;"
id="stop217813" />
<stop
offset="0.484375"
style="stop-color:rgb(18.647766%,17.572021%,18.128967%);stop-opacity:1;"
id="stop217815" />
<stop
offset="0.5"
style="stop-color:rgb(18.386841%,17.285156%,17.832947%);stop-opacity:1;"
id="stop217817" />
<stop
offset="0.515625"
style="stop-color:rgb(18.125916%,16.998291%,17.536926%);stop-opacity:1;"
id="stop217819" />
<stop
offset="0.53125"
style="stop-color:rgb(17.86499%,16.7099%,17.240906%);stop-opacity:1;"
id="stop217821" />
<stop
offset="0.546875"
style="stop-color:rgb(17.604065%,16.423035%,16.944885%);stop-opacity:1;"
id="stop217823" />
<stop
offset="0.5625"
style="stop-color:rgb(17.341614%,16.136169%,16.648865%);stop-opacity:1;"
id="stop217825" />
<stop
offset="0.578125"
style="stop-color:rgb(17.080688%,15.849304%,16.352844%);stop-opacity:1;"
id="stop217827" />
<stop
offset="0.59375"
style="stop-color:rgb(16.819763%,15.560913%,16.056824%);stop-opacity:1;"
id="stop217829" />
<stop
offset="0.609375"
style="stop-color:rgb(16.558838%,15.274048%,15.760803%);stop-opacity:1;"
id="stop217831" />
<stop
offset="0.625"
style="stop-color:rgb(16.297913%,14.987183%,15.464783%);stop-opacity:1;"
id="stop217833" />
<stop
offset="0.640625"
style="stop-color:rgb(16.036987%,14.700317%,15.168762%);stop-opacity:1;"
id="stop217835" />
<stop
offset="0.65625"
style="stop-color:rgb(15.776062%,14.411926%,14.872742%);stop-opacity:1;"
id="stop217837" />
<stop
offset="0.671875"
style="stop-color:rgb(15.513611%,14.125061%,14.576721%);stop-opacity:1;"
id="stop217839" />
<stop
offset="0.6875"
style="stop-color:rgb(15.252686%,13.838196%,14.280701%);stop-opacity:1;"
id="stop217841" />
<stop
offset="0.703125"
style="stop-color:rgb(14.99176%,13.551331%,13.98468%);stop-opacity:1;"
id="stop217843" />
<stop
offset="0.71875"
style="stop-color:rgb(14.730835%,13.262939%,13.68866%);stop-opacity:1;"
id="stop217845" />
<stop
offset="0.734375"
style="stop-color:rgb(14.46991%,12.976074%,13.392639%);stop-opacity:1;"
id="stop217847" />
<stop
offset="0.75"
style="stop-color:rgb(14.208984%,12.689209%,13.096619%);stop-opacity:1;"
id="stop217849" />
<stop
offset="0.765625"
style="stop-color:rgb(13.948059%,12.402344%,12.802124%);stop-opacity:1;"
id="stop217851" />
<stop
offset="0.78125"
style="stop-color:rgb(13.771057%,12.207031%,12.600708%);stop-opacity:1;"
id="stop217853" />
<stop
offset="0.8125"
style="stop-color:rgb(13.725281%,12.156677%,12.548828%);stop-opacity:1;"
id="stop217855" />
<stop
offset="0.875"
style="stop-color:rgb(13.725281%,12.156677%,12.548828%);stop-opacity:1;"
id="stop217857" />
<stop
offset="1"
style="stop-color:rgb(13.725281%,12.156677%,12.548828%);stop-opacity:1;"
id="stop217859" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="116.76754"
inkscape:cy="227.00068"
inkscape:document-units="mm"
inkscape:current-layer="layer2"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-nodes="false"
inkscape:snap-others="false"
inkscape:window-width="1600"
inkscape:window-height="882"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="0" />
<metadata
id="metadata261900">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-56.636094,-70.97654)">
<path
inkscape:connector-curvature="0"
id="path227414"
d="M 56.729792,71.070247 H 71.78349 V 199.38351 H 56.729792 Z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
id="path227416"
d="M 71.875811,70.97654 H 56.636094 v 128.4993 H 71.875811 Z M 71.689756,199.28981 H 56.823489 V 71.163954 h 14.866267 z m 0,0"
style="fill:#ababab;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 62.772381,87.235891 c 0.25908,0 0.429966,-0.08268 0.578802,-0.214976 0.02752,-0.02205 0.0496,-0.06063 0.0496,-0.09922 0,-0.07166 -0.06615,-0.132292 -0.137795,-0.132292 -0.03316,0 -0.06064,0.01101 -0.08269,0.03306 -0.115746,0.09922 -0.231528,0.15434 -0.402378,0.15434 -0.303177,0 -0.529167,-0.259069 -0.529167,-0.573264 0,-0.314191 0.22599,-0.56775 0.529167,-0.56775 0.15434,0 0.27559,0.05512 0.385833,0.143316 0.01658,0.01655 0.0441,0.02755 0.08269,0.02755 0.07715,0 0.143299,-0.06063 0.143299,-0.137802 0,-0.04961 -0.02752,-0.08819 -0.0551,-0.110243 -0.143334,-0.110243 -0.303178,-0.181903 -0.551216,-0.181903 -0.485069,0 -0.82684,0.374827 -0.82684,0.826823 v 0.0055 c 0,0.46302 0.347274,0.826822 0.815798,0.826822 z m 0,0"
id="path257857" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 63.78697,87.065012 c 0,0.08268 0.06615,0.143316 0.143333,0.143316 h 0.8654 c 0.07165,0 0.132291,-0.05512 0.132291,-0.126778 0,-0.07166 -0.06064,-0.132291 -0.132291,-0.132291 h -0.722101 v -1.218188 c 0,-0.07717 -0.06615,-0.137802 -0.143299,-0.137802 -0.07719,0 -0.143333,0.06063 -0.143333,0.137802 z m 0,0"
id="path257861" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 65.262604,87.08155 c 0,0.07717 0.06615,0.137802 0.143334,0.137802 0.07715,0 0.143298,-0.06063 0.143298,-0.137802 v -0.336243 l 0.25908,-0.248045 0.51816,0.655945 c 0.02752,0.03859 0.06061,0.06615 0.115746,0.06615 0.08269,0 0.143298,-0.06063 0.143298,-0.137802 0,-0.0441 -0.01658,-0.07166 -0.03856,-0.09922 l -0.540208,-0.672486 0.496112,-0.479559 c 0.03316,-0.03305 0.0551,-0.06615 0.0551,-0.110243 0,-0.06615 -0.0551,-0.126778 -0.132292,-0.126778 -0.0496,0 -0.08269,0.01655 -0.115746,0.04961 l -0.760695,0.766189 v -0.677997 c 0,-0.07717 -0.06615,-0.137802 -0.143298,-0.137802 -0.07719,0 -0.143334,0.06063 -0.143334,0.137802 z m 0,0"
id="path257865" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 61.1955,80.585773 c 0.639409,0 1.085885,-0.330729 1.085885,-0.920529 v -0.01103 c 0,-0.51263 -0.336233,-0.727604 -0.937048,-0.887456 -0.512657,-0.132292 -0.63941,-0.192925 -0.63941,-0.385851 v -0.01103 c 0,-0.143316 0.126753,-0.259071 0.38033,-0.259071 0.20394,0 0.407881,0.07166 0.622864,0.198438 0.0496,0.03307 0.09924,0.04961 0.165382,0.04961 0.165347,0 0.303142,-0.132292 0.303142,-0.303169 0,-0.126779 -0.07165,-0.214974 -0.143298,-0.259071 -0.270087,-0.165364 -0.578767,-0.259071 -0.942587,-0.259071 -0.606319,0 -1.036285,0.352778 -1.036285,0.892969 v 0.0055 c 0,0.5898 0.385868,0.755165 0.981181,0.909505 0.496076,0.126779 0.600816,0.209462 0.600816,0.374826 v 0.01103 c 0,0.170877 -0.165382,0.275608 -0.429966,0.275608 -0.286632,0 -0.53467,-0.09922 -0.755156,-0.264583 -0.0441,-0.03307 -0.104739,-0.06063 -0.187395,-0.06063 -0.170886,0 -0.308681,0.132291 -0.308681,0.303168 0,0.09922 0.0551,0.192926 0.126753,0.242535 0.330729,0.237022 0.722101,0.35829 1.113473,0.358289 z m 0,0"
id="path257869" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 63.934431,80.585773 c 0.63941,0 1.085885,-0.330729 1.085885,-0.920529 v -0.01103 c 0,-0.51263 -0.336232,-0.727604 -0.937048,-0.887456 -0.512621,-0.132292 -0.63941,-0.192925 -0.63941,-0.385851 v -0.01103 c 0,-0.143316 0.126789,-0.259071 0.38033,-0.259071 0.203941,0 0.407917,0.07166 0.622864,0.198438 0.04964,0.03307 0.09924,0.04961 0.165382,0.04961 0.165348,0 0.303178,-0.132292 0.303178,-0.303169 0,-0.126779 -0.07168,-0.214974 -0.143334,-0.259071 -0.270086,-0.165364 -0.578767,-0.259071 -0.942587,-0.259071 -0.606319,0 -1.036284,0.352778 -1.036284,0.892969 v 0.0055 c 0,0.5898 0.385868,0.755165 0.98118,0.909505 0.496076,0.126779 0.600816,0.209462 0.600816,0.374826 v 0.01103 c 0,0.170877 -0.165347,0.275608 -0.42993,0.275608 -0.286632,0 -0.534705,-0.09922 -0.755191,-0.264583 -0.0441,-0.03307 -0.104705,-0.06063 -0.187396,-0.06063 -0.170886,0 -0.308681,0.132291 -0.308681,0.303168 0,0.09922 0.0551,0.192926 0.126789,0.242535 0.330729,0.237022 0.722065,0.35829 1.113437,0.358289 z m 0,0"
id="path257873" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 65.830788,79.538464 h 0.733107 c 0.170886,0 0.314184,-0.137804 0.314184,-0.308681 0,-0.170876 -0.143298,-0.30868 -0.314184,-0.30868 h -0.733107 c -0.170886,0 -0.308681,0.137804 -0.308681,0.30868 0,0.170877 0.137795,0.308681 0.308681,0.308681 z m 0,0"
id="path257881" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 67.694301,80.244019 c 0,0.176389 0.143334,0.325217 0.319723,0.325217 0.176389,0 0.319687,-0.148828 0.319687,-0.325217 v -2.386762 c 0,-0.176388 -0.143298,-0.319704 -0.319687,-0.319704 h -0.0056 c -0.09373,0 -0.181927,0.02205 -0.30868,0.05512 L 67.28082,77.71394 c -0.132292,0.03858 -0.214983,0.148828 -0.214983,0.28112 0,0.148828 0.132292,0.275607 0.281129,0.275607 0.03856,0 0.08266,-0.0055 0.115746,-0.01653 l 0.231493,-0.05512 z m 0,0"
id="path257877" />
<path
inkscape:connector-curvature="0"
id="path233384"
d="m 69.097686,145.05987 c 0,-0.54983 -0.450638,-1.00045 -1.000442,-1.00045 h -7.681207 c -0.549839,0 -1.000442,0.45062 -1.000442,1.00045 v 41.98469 c 0,0.54984 0.450603,0.99908 1.000442,0.99908 h 7.681207 c 0.549804,0 1.000442,-0.44924 1.000442,-0.99908 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 62.570768,147.42422 c 0.496076,0 0.859896,-0.37483 0.859896,-0.83234 0,-0.45751 -0.358281,-0.82682 -0.854392,-0.82682 -0.496076,0 -0.854393,0.37483 -0.854393,0.82682 v 0.005 c 0,0.45751 0.358317,0.82683 0.848889,0.82683 z m 0.0056,-0.32522 c -0.281128,0 -0.485069,-0.23151 -0.485069,-0.50712 0,-0.27561 0.198438,-0.5016 0.479566,-0.5016 0.286632,0 0.490573,0.22599 0.490573,0.5016 v 0.005 c 0,0.27561 -0.198438,0.50161 -0.48507,0.50161 z m 0,0"
id="path257913" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 64.487375,147.42422 c 0.435469,0 0.705555,-0.24254 0.705555,-0.72761 v -0.74414 c 0,-0.0992 -0.07715,-0.17638 -0.176388,-0.17638 -0.0992,0 -0.176389,0.0772 -0.176389,0.17638 v 0.76068 c 0,0.25356 -0.132292,0.38585 -0.347275,0.38585 -0.214947,0 -0.347239,-0.1378 -0.347239,-0.39687 v -0.74966 c 0,-0.0992 -0.07719,-0.17638 -0.176389,-0.17638 -0.09373,0 -0.176389,0.0772 -0.176389,0.17638 v 0.75517 c 0,0.47404 0.264583,0.71658 0.694514,0.71658 z m 0,0"
id="path257921" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 65.99296,147.23129 c 0,0.0992 0.07715,0.17639 0.176389,0.17639 0.0992,0 0.176389,-0.0772 0.176389,-0.17639 v -1.11345 h 0.336232 c 0.0937,0 0.165347,-0.0717 0.165347,-0.16537 0,-0.0882 -0.07165,-0.15985 -0.165347,-0.15985 h -1.030781 c -0.08819,0 -0.159844,0.0717 -0.159844,0.15985 0,0.0937 0.07165,0.16537 0.159844,0.16537 h 0.341771 z m 0,0"
id="path257917" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 62.088874,101.09004 c 0,0.0772 0.06615,0.13781 0.143334,0.13781 0.07715,0 0.143298,-0.0606 0.143298,-0.13781 v -0.43546 h 0.352778 l 0.391371,0.50161 c 0.03316,0.0441 0.07165,0.0717 0.137795,0.0717 0.06615,0 0.132292,-0.0496 0.132292,-0.1323 0,-0.0441 -0.01658,-0.0717 -0.0441,-0.10473 l -0.308681,-0.38585 c 0.214983,-0.0716 0.36382,-0.226 0.36382,-0.47956 v -0.005 c 0,-0.143314 -0.0441,-0.259066 -0.132292,-0.34726 -0.09924,-0.09922 -0.25908,-0.159856 -0.46302,-0.159856 h -0.573264 c -0.07719,0 -0.143334,0.06064 -0.143334,0.143317 z m 0.286632,-0.68351 v -0.540189 h 0.407917 c 0.209444,0 0.330729,0.09371 0.330729,0.270099 0,0.16536 -0.126788,0.27009 -0.330729,0.27009 z m 0,0"
id="path257925" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 64.379883,101.23887 c 0.341736,0 0.573264,-0.17639 0.573264,-0.47956 v -0.005 c 0,-0.26458 -0.170885,-0.38585 -0.512621,-0.46853 -0.308681,-0.0717 -0.380365,-0.12678 -0.380365,-0.25357 0,-0.110237 0.09373,-0.192919 0.25908,-0.192919 0.126788,0 0.248038,0.03858 0.369323,0.121269 0.02187,0.01654 0.0441,0.02204 0.07165,0.02204 0.07719,0 0.137795,-0.06063 0.137795,-0.132291 0,-0.05512 -0.03316,-0.09371 -0.06615,-0.110244 -0.143298,-0.09922 -0.303142,-0.148828 -0.507118,-0.148828 -0.319687,0 -0.545677,0.187412 -0.545677,0.463023 v 0.005 c 0,0.29765 0.187396,0.39687 0.529167,0.47955 0.303142,0.0661 0.363784,0.13229 0.363784,0.24254 v 0.005 c 0,0.12127 -0.110243,0.20395 -0.281128,0.20395 -0.176389,0 -0.319688,-0.0606 -0.451979,-0.16537 -0.01658,-0.0165 -0.0441,-0.0275 -0.08269,-0.0275 -0.07165,0 -0.132292,0.0606 -0.132292,0.13229 0,0.0441 0.02187,0.0827 0.05514,0.11025 0.176389,0.13229 0.385833,0.19843 0.600816,0.19843 z m 0,0"
id="path257933" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 65.741711,101.09004 c 0,0.0772 0.06615,0.13781 0.143334,0.13781 0.07715,0 0.143298,-0.0606 0.143298,-0.13781 v -1.218185 h 0.391372 c 0.07165,0 0.126788,-0.06064 0.126788,-0.126783 0,-0.07165 -0.05514,-0.132292 -0.126788,-0.132292 h -1.06934 c -0.07168,0 -0.126788,0.06064 -0.126788,0.132292 0,0.06615 0.0551,0.126783 0.126788,0.126783 h 0.391336 z m 0,0"
id="path257929" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 63.169432,132.17699 c 0,0.0772 0.06615,0.1378 0.143334,0.1378 0.07715,0 0.143298,-0.0606 0.143298,-0.1378 v -1.35048 c 0,-0.0772 -0.06615,-0.1378 -0.143298,-0.1378 -0.07719,0 -0.143334,0.0606 -0.143334,0.1378 z m 0,0"
id="path257941" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 63.953199,132.17699 c 0,0.0772 0.06615,0.1378 0.143333,0.1378 0.07715,0 0.137795,-0.0606 0.137795,-0.1378 v -1.01975 l 0.826806,1.06936 c 0.03859,0.0496 0.07719,0.0882 0.143333,0.0882 h 0.01094 c 0.07719,0 0.13783,-0.0661 0.13783,-0.14332 v -1.34496 c 0,-0.0772 -0.06064,-0.13781 -0.13783,-0.13781 -0.07715,0 -0.137795,0.0606 -0.137795,0.13781 v 0.98667 l -0.804756,-1.04179 c -0.03859,-0.0496 -0.07719,-0.0827 -0.143334,-0.0827 h -0.03316 c -0.07719,0 -0.143334,0.0662 -0.143334,0.14331 z m 0,0"
id="path257937" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 61.425228,115.65975 c 0,0.0827 0.06615,0.13229 0.148802,0.13229 l 0.909532,0.005 c 0.07165,0 0.126753,-0.0551 0.126753,-0.12126 0,-0.0717 -0.0551,-0.12678 -0.126753,-0.12678 l -0.650452,-0.005 0.330729,-0.27561 c 0.286632,-0.226 0.418924,-0.3638 0.424427,-0.61736 0,-0.28663 -0.214947,-0.48507 -0.529167,-0.48507 -0.253541,0 -0.402378,0.0937 -0.534669,0.25907 -0.01658,0.022 -0.02752,0.0551 -0.02752,0.0827 0,0.0717 0.0551,0.13229 0.126788,0.13229 0.0441,0 0.07715,-0.022 0.0992,-0.0441 0.09924,-0.12126 0.187431,-0.18189 0.314184,-0.18189 0.148837,0 0.25908,0.0937 0.25908,0.25355 -0.0056,0.14332 -0.08269,0.24805 -0.303177,0.42995 l -0.496076,0.41893 c -0.0496,0.0441 -0.07165,0.0882 -0.07165,0.14331 z m 0,0"
id="path257945" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 62.953356,114.73183 v 0.022 c 0,0.0882 0.06615,0.15985 0.159879,0.15985 0.0937,0 0.159843,-0.0717 0.159843,-0.15985 v -0.022 c 0.0056,-0.0937 -0.06064,-0.15985 -0.15434,-0.15985 -0.0937,0 -0.159844,0.0661 -0.165382,0.15985 z m 0,0.89297 v 0.022 c 0,0.0937 0.06615,0.15985 0.159879,0.15985 0.0937,0 0.159843,-0.0662 0.159843,-0.15985 v -0.022 c 0,-0.0882 -0.06615,-0.15434 -0.159843,-0.15434 -0.09373,0 -0.159879,0.0661 -0.159879,0.15434 z m 0,0"
id="path257949" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 64.193158,115.82494 c 0.336268,0 0.562257,-0.20946 0.562257,-0.5016 v -0.005 c 0,-0.29766 -0.225989,-0.42444 -0.468524,-0.45751 l 0.38033,-0.38585 c 0.0496,-0.0496 0.08269,-0.0882 0.08269,-0.15434 0,-0.0717 -0.06064,-0.12127 -0.143334,-0.12127 l -0.821302,-0.005 c -0.06615,0 -0.121285,0.0551 -0.121285,0.12126 0,0.0662 0.05514,0.12127 0.121285,0.12127 h 0.584271 l -0.38033,0.40239 c -0.0441,0.0441 -0.06064,0.0772 -0.06064,0.11576 0,0.0662 0.05514,0.12126 0.121285,0.12126 h 0.06064 c 0.220486,0 0.369288,0.0882 0.369288,0.24805 v 0.006 c 0,0.14332 -0.12125,0.24254 -0.281093,0.24254 -0.148837,0 -0.264584,-0.0551 -0.36382,-0.15434 -0.02187,-0.022 -0.0551,-0.0386 -0.0937,-0.0386 -0.07165,0 -0.137795,0.0662 -0.137795,0.1378 0,0.0386 0.02187,0.0772 0.0496,0.0992 0.126788,0.12678 0.30868,0.20946 0.540173,0.20946 z m 0,0"
id="path257953" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 65.099656,114.73715 v 0.022 c 0,0.0882 0.06615,0.15985 0.159843,0.15985 0.09373,0 0.159879,-0.0717 0.159879,-0.15985 v -0.022 c 0.0056,-0.0937 -0.06064,-0.15985 -0.15434,-0.15985 -0.09373,0 -0.159879,0.0662 -0.165382,0.15985 z m 0,0.89297 v 0.022 c 0,0.0937 0.06615,0.15985 0.159843,0.15985 0.09373,0 0.159879,-0.0661 0.159879,-0.15985 v -0.022 c 0,-0.0882 -0.06615,-0.15434 -0.159879,-0.15434 -0.0937,0 -0.159843,0.0661 -0.159843,0.15434 z m 0,0"
id="path257961" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 66.542799,115.68136 c 0,0.0772 0.06064,0.1323 0.137795,0.1323 0.07719,0.005 0.132292,-0.0496 0.132292,-0.12679 v -0.23702 h 0.126788 c 0.06615,0 0.115747,-0.0496 0.115747,-0.11575 0,-0.0662 -0.0496,-0.11576 -0.115747,-0.11576 h -0.126788 l 0.0056,-0.90399 c 0,-0.0772 -0.06061,-0.13229 -0.132292,-0.1378 -0.08266,0 -0.126753,0.0275 -0.176389,0.0882 l -0.76066,0.89848 c -0.03859,0.0441 -0.06064,0.0937 -0.06064,0.14882 0,0.0772 0.06064,0.1323 0.137795,0.1323 h 0.716642 z m -0.523663,-0.46853 0.529167,-0.63941 -0.0056,0.63941 z m 0,0"
id="path257957" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="widgets"
style="display:none">
<rect
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.19901438;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect262182"
width="4.7473311"
height="10.000421"
x="5.2461929"
y="46.91531" />
<rect
y="17.69401"
x="3.513984"
height="8.2103519"
width="8.2117491"
id="rect262989"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.23716429;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.23716429;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect262991"
width="8.2117491"
height="8.2103519"
x="3.513984"
y="32.18959" />
<rect
y="62.809601"
x="3.5153599"
height="8.2103519"
width="8.2117491"
id="rect262993"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.23716429;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.23716429;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect262995"
width="8.2117491"
height="8.2103519"
x="3.5153599"
y="77.809547" />
<rect
y="87.811348"
x="3.513984"
height="8.2103519"
width="8.2117491"
id="rect262997"
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.23716429;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.23716429;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect262999"
width="8.2117491"
height="8.2103519"
x="3.513984"
y="97.809021" />
<rect
y="107.80944"
x="3.513984"
height="8.2103519"
width="8.2117491"
id="rect263001"
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.23716429;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
y="77.715843"
x="10.820329"
height="0.99907935"
width="0.99910229"
id="rect263003"
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.02885729;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.02885729;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect263005"
width="0.99910229"
height="0.99907935"
x="10.820329"
y="87.716263" />
<rect
y="97.716682"
x="10.820329"
height="0.99907935"
width="0.99910229"
id="rect263007"
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.02885729;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.02885729;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect263009"
width="0.99910229"
height="0.99907935"
x="10.820329"
y="107.71573" />
</g>
</svg>

+ 0
- 490
vst2_bin/plugins/Fundamental/res__OLD/SequentialSwitch2.svg View File

@@ -1,490 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="15.239717mm"
height="128.4993mm"
viewBox="0 0 15.239717 128.4993"
version="1.1"
id="svg264135"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
sodipodi:docname="SequentialSwitch2.svg">
<defs
id="defs264129">
<linearGradient
id="linear21"
gradientUnits="userSpaceOnUse"
x1="-0.095554203"
y1="0"
x2="1.32507"
y2="0"
gradientTransform="matrix(0,6.4087959,-6.4087959,0,90.714778,76.618644)">
<stop
offset="0"
style="stop-color:rgb(25.489807%,25.097656%,25.881958%);stop-opacity:1;"
id="stop217868" />
<stop
offset="0.0625"
style="stop-color:rgb(25.489807%,25.097656%,25.881958%);stop-opacity:1;"
id="stop217870" />
<stop
offset="0.078125"
style="stop-color:rgb(25.398254%,24.996948%,25.778198%);stop-opacity:1;"
id="stop217872" />
<stop
offset="0.09375"
style="stop-color:rgb(25.177002%,24.754333%,25.527954%);stop-opacity:1;"
id="stop217874" />
<stop
offset="0.109375"
style="stop-color:rgb(24.916077%,24.465942%,25.231934%);stop-opacity:1;"
id="stop217876" />
<stop
offset="0.125"
style="stop-color:rgb(24.653625%,24.179077%,24.935913%);stop-opacity:1;"
id="stop217878" />
<stop
offset="0.140625"
style="stop-color:rgb(24.3927%,23.892212%,24.639893%);stop-opacity:1;"
id="stop217880" />
<stop
offset="0.15625"
style="stop-color:rgb(24.131775%,23.605347%,24.343872%);stop-opacity:1;"
id="stop217882" />
<stop
offset="0.171875"
style="stop-color:rgb(23.87085%,23.316956%,24.047852%);stop-opacity:1;"
id="stop217884" />
<stop
offset="0.1875"
style="stop-color:rgb(23.609924%,23.03009%,23.751831%);stop-opacity:1;"
id="stop217886" />
<stop
offset="0.203125"
style="stop-color:rgb(23.348999%,22.743225%,23.455811%);stop-opacity:1;"
id="stop217888" />
<stop
offset="0.21875"
style="stop-color:rgb(23.088074%,22.45636%,23.15979%);stop-opacity:1;"
id="stop217890" />
<stop
offset="0.234375"
style="stop-color:rgb(22.825623%,22.167969%,22.86377%);stop-opacity:1;"
id="stop217892" />
<stop
offset="0.25"
style="stop-color:rgb(22.564697%,21.881104%,22.567749%);stop-opacity:1;"
id="stop217894" />
<stop
offset="0.265625"
style="stop-color:rgb(22.303772%,21.594238%,22.271729%);stop-opacity:1;"
id="stop217896" />
<stop
offset="0.28125"
style="stop-color:rgb(22.042847%,21.307373%,21.975708%);stop-opacity:1;"
id="stop217898" />
<stop
offset="0.296875"
style="stop-color:rgb(21.781921%,21.018982%,21.679688%);stop-opacity:1;"
id="stop217900" />
<stop
offset="0.3125"
style="stop-color:rgb(21.520996%,20.732117%,21.383667%);stop-opacity:1;"
id="stop217902" />
<stop
offset="0.328125"
style="stop-color:rgb(21.260071%,20.445251%,21.087646%);stop-opacity:1;"
id="stop217904" />
<stop
offset="0.34375"
style="stop-color:rgb(20.99762%,20.15686%,20.793152%);stop-opacity:1;"
id="stop217906" />
<stop
offset="0.359375"
style="stop-color:rgb(20.736694%,19.869995%,20.497131%);stop-opacity:1;"
id="stop217908" />
<stop
offset="0.375"
style="stop-color:rgb(20.475769%,19.58313%,20.201111%);stop-opacity:1;"
id="stop217910" />
<stop
offset="0.390625"
style="stop-color:rgb(20.214844%,19.296265%,19.90509%);stop-opacity:1;"
id="stop217912" />
<stop
offset="0.40625"
style="stop-color:rgb(19.953918%,19.007874%,19.60907%);stop-opacity:1;"
id="stop217914" />
<stop
offset="0.421875"
style="stop-color:rgb(19.692993%,18.721008%,19.313049%);stop-opacity:1;"
id="stop217916" />
<stop
offset="0.4375"
style="stop-color:rgb(19.432068%,18.434143%,19.017029%);stop-opacity:1;"
id="stop217918" />
<stop
offset="0.453125"
style="stop-color:rgb(19.169617%,18.147278%,18.721008%);stop-opacity:1;"
id="stop217920" />
<stop
offset="0.46875"
style="stop-color:rgb(18.908691%,17.858887%,18.424988%);stop-opacity:1;"
id="stop217922" />
<stop
offset="0.484375"
style="stop-color:rgb(18.647766%,17.572021%,18.128967%);stop-opacity:1;"
id="stop217924" />
<stop
offset="0.5"
style="stop-color:rgb(18.386841%,17.285156%,17.832947%);stop-opacity:1;"
id="stop217926" />
<stop
offset="0.515625"
style="stop-color:rgb(18.125916%,16.998291%,17.536926%);stop-opacity:1;"
id="stop217928" />
<stop
offset="0.53125"
style="stop-color:rgb(17.86499%,16.7099%,17.240906%);stop-opacity:1;"
id="stop217930" />
<stop
offset="0.546875"
style="stop-color:rgb(17.604065%,16.423035%,16.944885%);stop-opacity:1;"
id="stop217932" />
<stop
offset="0.5625"
style="stop-color:rgb(17.341614%,16.136169%,16.648865%);stop-opacity:1;"
id="stop217934" />
<stop
offset="0.578125"
style="stop-color:rgb(17.080688%,15.849304%,16.352844%);stop-opacity:1;"
id="stop217936" />
<stop
offset="0.59375"
style="stop-color:rgb(16.819763%,15.560913%,16.056824%);stop-opacity:1;"
id="stop217938" />
<stop
offset="0.609375"
style="stop-color:rgb(16.558838%,15.274048%,15.760803%);stop-opacity:1;"
id="stop217940" />
<stop
offset="0.625"
style="stop-color:rgb(16.297913%,14.987183%,15.464783%);stop-opacity:1;"
id="stop217942" />
<stop
offset="0.640625"
style="stop-color:rgb(16.036987%,14.700317%,15.168762%);stop-opacity:1;"
id="stop217944" />
<stop
offset="0.65625"
style="stop-color:rgb(15.776062%,14.411926%,14.872742%);stop-opacity:1;"
id="stop217946" />
<stop
offset="0.671875"
style="stop-color:rgb(15.513611%,14.125061%,14.576721%);stop-opacity:1;"
id="stop217948" />
<stop
offset="0.6875"
style="stop-color:rgb(15.252686%,13.838196%,14.280701%);stop-opacity:1;"
id="stop217950" />
<stop
offset="0.703125"
style="stop-color:rgb(14.99176%,13.551331%,13.98468%);stop-opacity:1;"
id="stop217952" />
<stop
offset="0.71875"
style="stop-color:rgb(14.730835%,13.262939%,13.68866%);stop-opacity:1;"
id="stop217954" />
<stop
offset="0.734375"
style="stop-color:rgb(14.46991%,12.976074%,13.392639%);stop-opacity:1;"
id="stop217956" />
<stop
offset="0.75"
style="stop-color:rgb(14.208984%,12.689209%,13.096619%);stop-opacity:1;"
id="stop217958" />
<stop
offset="0.765625"
style="stop-color:rgb(13.948059%,12.402344%,12.802124%);stop-opacity:1;"
id="stop217960" />
<stop
offset="0.78125"
style="stop-color:rgb(13.771057%,12.207031%,12.600708%);stop-opacity:1;"
id="stop217962" />
<stop
offset="0.8125"
style="stop-color:rgb(13.725281%,12.156677%,12.548828%);stop-opacity:1;"
id="stop217964" />
<stop
offset="0.875"
style="stop-color:rgb(13.725281%,12.156677%,12.548828%);stop-opacity:1;"
id="stop217966" />
<stop
offset="1"
style="stop-color:rgb(13.725281%,12.156677%,12.548828%);stop-opacity:1;"
id="stop217968" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="-4.0608176"
inkscape:cy="313.04249"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-nodes="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:window-width="1600"
inkscape:window-height="882"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="0" />
<metadata
id="metadata264132">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-83.094427,-28.643207)"
style="display:inline">
<path
inkscape:connector-curvature="0"
id="path227418"
d="M 83.188125,28.736914 H 98.241823 V 157.05018 H 83.188125 Z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
id="path227420"
d="M 98.334144,28.643207 H 83.094427 V 157.14251 H 98.334144 Z M 98.148089,156.95648 H 83.281823 V 28.83062 h 14.866266 z m 0,0"
style="fill:#ababab;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
id="path233122"
d="m 95.556019,132.53764 c 0,-0.54984 -0.450638,-0.99907 -1.000442,-0.99907 h -7.681206 c -0.54984,0 -1.000443,0.44923 -1.000443,0.99907 v 12.17359 c 0,0.54984 0.450603,0.99908 1.000443,0.99908 h 7.681206 c 0.549804,0 1.000442,-0.44924 1.000442,-0.99908 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 89.028749,134.9027 c 0.496111,0 0.859896,-0.37483 0.859896,-0.83234 0,-0.45751 -0.358281,-0.82682 -0.854393,-0.82682 -0.496076,0 -0.854357,0.37483 -0.854357,0.82682 v 0.006 c 0,0.45751 0.358281,0.82682 0.848854,0.82682 z m 0.0056,-0.32522 c -0.281093,0 -0.485069,-0.23151 -0.485069,-0.50712 0,-0.27561 0.198437,-0.5016 0.479566,-0.5016 0.286632,0 0.490573,0.22599 0.490573,0.5016 v 0.006 c 0,0.2756 -0.198438,0.5016 -0.48507,0.5016 z m 0,0"
id="path257825" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 90.945355,134.9027 c 0.435469,0 0.705556,-0.24254 0.705556,-0.72761 v -0.74414 c 0,-0.0992 -0.07719,-0.17638 -0.176389,-0.17638 -0.09924,0 -0.176389,0.0772 -0.176389,0.17638 v 0.76068 c 0,0.25356 -0.132291,0.38585 -0.347274,0.38585 -0.214983,0 -0.347275,-0.1378 -0.347275,-0.39687 v -0.74966 c 0,-0.0992 -0.07715,-0.17638 -0.176389,-0.17638 -0.0937,0 -0.176388,0.0772 -0.176388,0.17638 v 0.75517 c 0,0.47404 0.264583,0.71658 0.694548,0.71658 z m 0,0"
id="path257833" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 92.450976,134.70977 c 0,0.0992 0.07715,0.17639 0.176388,0.17639 0.0992,0 0.176389,-0.0772 0.176389,-0.17639 v -1.11345 h 0.336233 c 0.0937,0 0.165347,-0.0717 0.165347,-0.16537 0,-0.0882 -0.07165,-0.15985 -0.165347,-0.15985 h -1.030782 c -0.08819,0 -0.159843,0.0717 -0.159843,0.15985 0,0.0937 0.07165,0.16537 0.159843,0.16537 h 0.341772 z m 0,0"
id="path257829" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 88.54689,58.756489 c 0,0.07717 0.06615,0.137806 0.143333,0.137806 0.07715,0 0.143299,-0.06063 0.143299,-0.137806 v -0.435456 h 0.352777 l 0.391372,0.501602 c 0.03316,0.0441 0.07165,0.07166 0.137795,0.07166 0.06615,0 0.132292,-0.04961 0.132292,-0.132292 0,-0.04409 -0.01658,-0.07166 -0.0441,-0.104733 L 89.49498,58.271421 c 0.214983,-0.07166 0.36382,-0.225997 0.36382,-0.479555 v -0.0055 c 0,-0.143317 -0.0441,-0.25907 -0.132292,-0.347266 -0.09924,-0.09922 -0.25908,-0.159853 -0.463021,-0.159853 h -0.573264 c -0.07719,0 -0.143333,0.06063 -0.143333,0.143317 z m 0.286632,-0.683506 v -0.540192 h 0.407917 c 0.209444,0 0.330729,0.09371 0.330729,0.270098 0,0.165364 -0.126789,0.270094 -0.330729,0.270094 z m 0,0"
id="path257837" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 90.837864,58.90532 c 0.341736,0 0.573264,-0.17639 0.573264,-0.47956 v -0.0055 c 0,-0.264584 -0.170886,-0.38585 -0.512621,-0.468535 -0.308681,-0.07165 -0.380365,-0.126778 -0.380365,-0.253558 0,-0.110244 0.09373,-0.192924 0.25908,-0.192924 0.126788,0 0.248037,0.03858 0.369322,0.121267 0.02187,0.01654 0.0441,0.02204 0.07165,0.02204 0.07719,0 0.137795,-0.06064 0.137795,-0.132291 0,-0.05512 -0.03316,-0.09371 -0.06615,-0.110244 -0.143298,-0.09922 -0.303141,-0.148831 -0.507117,-0.148831 -0.319688,0 -0.545677,0.187415 -0.545677,0.463021 v 0.0055 c 0,0.297657 0.187395,0.396875 0.529167,0.479558 0.303141,0.06614 0.363784,0.132291 0.363784,0.242533 v 0.0055 c 0,0.121269 -0.110243,0.203949 -0.281129,0.203949 -0.176389,0 -0.319687,-0.06063 -0.451979,-0.165365 -0.01658,-0.01654 -0.0441,-0.02755 -0.08269,-0.02755 -0.07165,0 -0.132291,0.06063 -0.132291,0.132292 0,0.04409 0.02187,0.08268 0.05514,0.110241 0.176388,0.132292 0.385833,0.198437 0.600816,0.198437 z m 0,0"
id="path257845" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 92.199692,58.756489 c 0,0.07717 0.06615,0.137806 0.143334,0.137806 0.07715,0 0.143298,-0.06063 0.143298,-0.137806 v -1.218184 h 0.391372 c 0.07165,0 0.126788,-0.06063 0.126788,-0.12678 0,-0.07166 -0.05514,-0.132292 -0.126788,-0.132292 H 91.80832 c -0.07165,0 -0.126753,0.06063 -0.126753,0.132292 0,0.06615 0.0551,0.12678 0.126753,0.12678 h 0.391372 z m 0,0"
id="path257841" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 89.627448,89.843441 c 0,0.07717 0.06615,0.137805 0.143334,0.137805 0.07715,0 0.143298,-0.06064 0.143298,-0.137805 v -1.350476 c 0,-0.07717 -0.06615,-0.137806 -0.143298,-0.137806 -0.07719,0 -0.143334,0.06064 -0.143334,0.137806 z m 0,0"
id="path257853" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 90.411109,89.843441 c 0,0.07717 0.06615,0.137805 0.143333,0.137805 0.07715,0 0.137795,-0.06064 0.137795,-0.137805 v -1.019747 l 0.826841,1.069356 c 0.03856,0.04961 0.07715,0.0882 0.143298,0.0882 h 0.01094 c 0.07715,0 0.137795,-0.06615 0.137795,-0.143317 v -1.344964 c 0,-0.07717 -0.06064,-0.137806 -0.137795,-0.137806 -0.07719,0 -0.13783,0.06064 -0.13783,0.137806 v 0.986674 l -0.804757,-1.041801 c -0.03859,-0.04961 -0.07719,-0.08268 -0.143333,-0.08268 h -0.03316 c -0.07719,0 -0.143334,0.06615 -0.143334,0.143315 z m 0,0"
id="path257849" />
<path
inkscape:connector-curvature="0"
id="path233150"
d="M 90.714956,95.557986 V 125.55788"
style="fill:none;stroke:#000000;stroke-width:0.23495001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 89.230997,44.902307 c 0.25908,0 0.429965,-0.08268 0.578802,-0.214972 0.02752,-0.02205 0.0496,-0.06064 0.0496,-0.09922 0,-0.07166 -0.06615,-0.132291 -0.137795,-0.132291 -0.03316,0 -0.06064,0.01101 -0.08269,0.03305 -0.115746,0.09922 -0.231528,0.15434 -0.402378,0.15434 -0.303177,0 -0.529167,-0.259073 -0.529167,-0.573264 0,-0.314194 0.22599,-0.567753 0.529167,-0.567753 0.15434,0 0.27559,0.05512 0.385833,0.143316 0.01658,0.01654 0.0441,0.02755 0.08269,0.02755 0.07715,0 0.143298,-0.06064 0.143298,-0.137806 0,-0.04961 -0.02752,-0.08819 -0.0551,-0.110243 -0.143333,-0.110243 -0.303177,-0.181899 -0.551215,-0.181899 -0.485069,0 -0.82684,0.374826 -0.82684,0.826823 v 0.0055 c 0,0.463021 0.347274,0.826823 0.815798,0.826823 z m 0,0"
id="path257885" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 90.245656,44.731432 c 0,0.08268 0.06615,0.143316 0.143333,0.143316 h 0.8654 c 0.07165,0 0.132291,-0.05512 0.132291,-0.126781 0,-0.07166 -0.06064,-0.132292 -0.132291,-0.132292 h -0.722101 v -1.218184 c 0,-0.07717 -0.06615,-0.137805 -0.143299,-0.137805 -0.07719,0 -0.143333,0.06063 -0.143333,0.137805 z m 0,0"
id="path257889" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 91.721184,44.747967 c 0,0.07717 0.06615,0.137806 0.143334,0.137806 0.07715,0 0.143298,-0.06064 0.143298,-0.137806 v -0.33624 l 0.25908,-0.248048 0.51816,0.655948 c 0.02752,0.03858 0.06061,0.06615 0.115747,0.06615 0.08269,0 0.143298,-0.06064 0.143298,-0.137806 0,-0.0441 -0.01658,-0.07166 -0.03856,-0.09922 l -0.540208,-0.672486 0.496111,-0.479555 c 0.03316,-0.03305 0.0551,-0.06615 0.0551,-0.110243 0,-0.06615 -0.0551,-0.126781 -0.132292,-0.126781 -0.0496,0 -0.08269,0.01654 -0.115746,0.04961 l -0.760695,0.766187 V 43.39749 c 0,-0.07717 -0.06615,-0.137805 -0.143298,-0.137805 -0.07719,0 -0.143333,0.06063 -0.143333,0.137805 z m 0,0"
id="path257893" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 87.242141,38.25244 c 0.63941,0 1.085886,-0.33073 1.085886,-0.92053 v -0.01103 c 0,-0.51263 -0.336233,-0.727604 -0.937049,-0.887457 -0.512656,-0.132291 -0.63941,-0.192925 -0.63941,-0.38585 v -0.01103 c 0,-0.143316 0.126754,-0.259071 0.38033,-0.259071 0.203941,0 0.407882,0.07166 0.622865,0.198437 0.0496,0.03307 0.09924,0.04961 0.165382,0.04961 0.165347,0 0.303142,-0.132291 0.303142,-0.303168 0,-0.12678 -0.07165,-0.214974 -0.143299,-0.259071 -0.270086,-0.165365 -0.578767,-0.259071 -0.942586,-0.259071 -0.60632,0 -1.036285,0.352777 -1.036285,0.892968 v 0.0055 c 0,0.589801 0.385868,0.755165 0.981181,0.909506 0.496076,0.126779 0.600815,0.209461 0.600815,0.374826 v 0.01103 c 0,0.170877 -0.165382,0.275608 -0.429965,0.275608 -0.286632,0 -0.53467,-0.09922 -0.755156,-0.264583 -0.0441,-0.03307 -0.10474,-0.06063 -0.187396,-0.06063 -0.170885,0 -0.30868,0.132291 -0.30868,0.303168 0,0.09922 0.0551,0.192925 0.126753,0.242535 0.330729,0.237022 0.722101,0.35829 1.113472,0.358289 z m 0,0"
id="path257897" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 89.981073,38.25244 c 0.639409,0 1.085885,-0.33073 1.085885,-0.92053 v -0.01103 c 0,-0.51263 -0.336233,-0.727604 -0.937049,-0.887457 C 89.617253,36.301137 89.4905,36.240503 89.4905,36.047578 v -0.01103 c 0,-0.143316 0.126753,-0.259071 0.380329,-0.259071 0.203941,0 0.407882,0.07166 0.622865,0.198437 0.0496,0.03307 0.09924,0.04961 0.165382,0.04961 0.165347,0 0.303142,-0.132291 0.303142,-0.303168 0,-0.12678 -0.07165,-0.214974 -0.143298,-0.259071 -0.270087,-0.165365 -0.578767,-0.259071 -0.942587,-0.259071 -0.606319,0 -1.036285,0.352777 -1.036285,0.892968 v 0.0055 c 0,0.589801 0.385869,0.755165 0.981181,0.909506 0.496076,0.126779 0.600816,0.209461 0.600816,0.374826 v 0.01103 c 0,0.170877 -0.165382,0.275608 -0.429966,0.275608 -0.286632,0 -0.53467,-0.09922 -0.755156,-0.264583 -0.0441,-0.03307 -0.10474,-0.06063 -0.187395,-0.06063 -0.170886,0 -0.308681,0.132291 -0.308681,0.303168 0,0.09922 0.0551,0.192925 0.126753,0.242535 0.330729,0.237022 0.722101,0.35829 1.113473,0.358289 z m 0,0"
id="path257901" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 91.877394,37.205131 h 0.733143 c 0.17085,0 0.314184,-0.137804 0.314184,-0.308681 0,-0.170877 -0.143334,-0.30868 -0.314184,-0.30868 h -0.733143 c -0.17085,0 -0.30868,0.137803 -0.30868,0.30868 0,0.170877 0.13783,0.308681 0.30868,0.308681 z m 0,0"
id="path257909" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 93.142279,37.899662 c 0,0.192925 0.148837,0.30868 0.352778,0.30868 h 1.609548 c 0.15434,0 0.281129,-0.121267 0.281129,-0.281119 0,-0.154341 -0.126789,-0.28112 -0.281129,-0.28112 H 94.06832 l 0.48507,-0.374826 c 0.523663,-0.402388 0.77724,-0.650434 0.77724,-1.146528 v -0.0055 c 0,-0.556728 -0.407917,-0.915018 -1.019775,-0.915018 -0.446476,0 -0.727604,0.159853 -0.9646,0.435461 -0.04964,0.05512 -0.07719,0.132291 -0.07719,0.203949 0,0.165365 0.132292,0.292144 0.297674,0.292144 0.0992,0 0.176389,-0.0441 0.220486,-0.08819 0.165347,-0.181901 0.297639,-0.259071 0.479531,-0.259071 0.237031,0 0.402414,0.132292 0.402414,0.385851 0,0.242535 -0.148838,0.407899 -0.512657,0.711068 l -0.843351,0.689018 c -0.110243,0.08819 -0.170885,0.198438 -0.170885,0.325218 z m 0,0"
id="path257905" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 87.883421,73.327419 c 0,0.08268 0.06615,0.132291 0.148837,0.132291 l 0.909496,0.0055 c 0.07168,0 0.126788,-0.05512 0.126788,-0.121269 0,-0.07165 -0.0551,-0.126778 -0.126788,-0.126778 l -0.650416,-0.0055 0.330729,-0.275606 c 0.286632,-0.225997 0.418923,-0.363802 0.424427,-0.617363 0,-0.286631 -0.214983,-0.485069 -0.529167,-0.485069 -0.253541,0 -0.402378,0.09371 -0.53467,0.259072 -0.01658,0.02204 -0.02752,0.05512 -0.02752,0.08268 0,0.07166 0.0551,0.132291 0.126753,0.132291 0.0441,0 0.07719,-0.02204 0.09924,-0.0441 0.0992,-0.121266 0.187396,-0.181898 0.314184,-0.181898 0.148837,0 0.25908,0.0937 0.25908,0.253558 -0.0056,0.143317 -0.08269,0.248044 -0.303177,0.429948 l -0.496076,0.418923 c -0.04964,0.0441 -0.07169,0.0882 -0.07169,0.143316 z m 0,0"
id="path257965" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 89.411689,72.399496 v 0.02204 c 0,0.0882 0.06615,0.159856 0.159879,0.159856 0.0937,0 0.159844,-0.07166 0.159844,-0.159856 v -0.02204 c 0.0056,-0.0937 -0.06064,-0.159851 -0.15434,-0.159851 -0.0937,0 -0.159844,0.06615 -0.165383,0.159851 z m 0,0.892969 v 0.02204 c 0,0.09371 0.06615,0.159856 0.159879,0.159856 0.0937,0 0.159844,-0.06614 0.159844,-0.159856 v -0.02204 c 0,-0.08819 -0.06615,-0.15434 -0.159844,-0.15434 -0.09373,0 -0.159879,0.06615 -0.159879,0.15434 z m 0,0"
id="path257969" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 90.651492,73.492609 c 0.336267,0 0.562257,-0.20946 0.562257,-0.501603 v -0.0055 c 0,-0.297656 -0.22599,-0.424434 -0.468525,-0.457507 l 0.38033,-0.385855 c 0.0496,-0.04961 0.08269,-0.08819 0.08269,-0.15434 0,-0.07166 -0.06064,-0.121266 -0.143333,-0.121266 l -0.821302,-0.0055 c -0.06615,0 -0.121285,0.05512 -0.121285,0.121267 0,0.06615 0.05514,0.121266 0.121285,0.121266 h 0.58427 L 90.44755,72.50596 c -0.0441,0.0441 -0.06064,0.07717 -0.06064,0.115756 0,0.06614 0.05514,0.121266 0.121285,0.121266 h 0.06064 c 0.220486,0 0.369287,0.08819 0.369287,0.24805 v 0.0055 c 0,0.143314 -0.121249,0.242533 -0.281093,0.242533 -0.148837,0 -0.264583,-0.05512 -0.36382,-0.15434 -0.02187,-0.02204 -0.0551,-0.03858 -0.0937,-0.03858 -0.07165,0 -0.137795,0.06615 -0.137795,0.137803 0,0.03859 0.02187,0.07717 0.0496,0.09922 0.126789,0.12678 0.308681,0.209463 0.540174,0.209463 z m 0,0"
id="path257973" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 91.557883,72.404817 v 0.02204 c 0,0.08819 0.06615,0.159853 0.159879,0.159853 0.0937,0 0.159844,-0.07166 0.159844,-0.159853 v -0.02204 c 0.0056,-0.0937 -0.06064,-0.159851 -0.15434,-0.159851 -0.0937,0 -0.159844,0.06615 -0.165383,0.159851 z m 0,0.892968 v 0.02204 c 0,0.09371 0.06615,0.159854 0.159879,0.159854 0.0937,0 0.159844,-0.06615 0.159844,-0.159854 v -0.02204 c 0,-0.0882 -0.06615,-0.154342 -0.159844,-0.154342 -0.09373,0 -0.159879,0.06615 -0.159879,0.154342 z m 0,0"
id="path257981" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 93.001062,73.349033 c 0,0.07717 0.06064,0.132291 0.137795,0.132291 0.07719,0.0055 0.132291,-0.04961 0.132291,-0.12678 v -0.237022 h 0.126789 c 0.06615,0 0.115746,-0.04961 0.115746,-0.115758 0,-0.06614 -0.0496,-0.115752 -0.115746,-0.115752 h -0.126789 l 0.0056,-0.903994 c 0,-0.07717 -0.06061,-0.132292 -0.132292,-0.137806 -0.08266,0 -0.126752,0.02755 -0.176388,0.0882 l -0.760616,0.898479 c -0.03859,0.0441 -0.06064,0.0937 -0.06064,0.148826 0,0.07717 0.06064,0.132291 0.137795,0.132291 h 0.716598 z m -0.523663,-0.468535 0.529166,-0.639411 -0.0056,0.639411 z m 0,0"
id="path257977" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="widgets"
style="display:none">
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.22184688;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect264416"
width="8.2117491"
height="8.2103519"
x="3.513984"
y="17.69401" />
<rect
y="32.190971"
x="3.513984"
height="8.2103519"
width="8.2117491"
id="rect264961"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.22184688;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.22184688;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect264963"
width="8.2117491"
height="8.2103519"
x="3.513984"
y="62.810978" />
<rect
y="72.811401"
x="3.513984"
height="8.2103519"
width="8.2117491"
id="rect264965"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.22184688;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.22184688;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect264967"
width="8.2117491"
height="8.2103519"
x="3.513984"
y="82.809074" />
<rect
y="92.810867"
x="3.513984"
height="8.2103519"
width="8.2117491"
id="rect264969"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.22184688;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.22184688;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect264971"
width="8.2117491"
height="8.2103519"
x="3.513984"
y="107.62202" />
<rect
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.18616091;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect264973"
width="4.7473302"
height="10.000423"
x="5.2461939"
y="46.91531" />
<rect
y="62.627701"
x="10.732135"
height="1.1754676"
width="1.1754906"
id="rect264975"
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.0317592;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.0317592;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect264977"
width="1.1754906"
height="1.1754676"
x="10.732135"
y="72.62812" />
<rect
y="82.628548"
x="10.732135"
height="1.1754676"
width="1.1754906"
id="rect264979"
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.0317592;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.0317592;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect264981"
width="1.1754906"
height="1.1754676"
x="10.732135"
y="92.627586" />
</g>
</svg>

+ 0
- 1771
vst2_bin/plugins/Fundamental/res__OLD/Unity.svg
File diff suppressed because it is too large
View File


+ 0
- 2539
vst2_bin/plugins/Fundamental/res__OLD/VCA-1.svg
File diff suppressed because it is too large
View File


+ 0
- 771
vst2_bin/plugins/Fundamental/res__OLD/VCA.svg View File

@@ -1,771 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="25.4mm"
height="128.49931mm"
viewBox="0 0 25.399999 128.49931"
version="1.1"
id="svg47416"
inkscape:version="0.92.2 2405546, 2018-03-11"
sodipodi:docname="VCA.svg">
<defs
id="defs47410">
<clipPath
id="clip465">
<path
d="M 0.03125,0.253906 H 22.710938 V 24.992188 H 0.03125 Z m 0,0"
id="path3835"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip467">
<path
d="m 0.246094,0.488281 h 16.25 v 15.101563 h -16.25 z m 0,0"
id="path3851"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip469">
<path
d="M 0.03125,0.828125 H 22.710938 V 25.570312 H 0.03125 Z m 0,0"
id="path3867"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip471">
<path
d="m 0.246094,0.0664062 h 16.25 V 15.164062 h -16.25 z m 0,0"
id="path3883"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip473">
<path
d="M 0.996094,0.253906 H 23.675781 V 24.992188 H 0.996094 Z m 0,0"
id="path3899"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip475">
<path
d="m 0.210938,0.488281 h 16.25 v 15.101563 h -16.25 z m 0,0"
id="path3915"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip477">
<path
d="M 0.996094,0.828125 H 23.675781 V 25.570312 H 0.996094 Z m 0,0"
id="path3931"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip479">
<path
d="m 0.210938,0.0664062 h 16.25 V 15.164062 h -16.25 z m 0,0"
id="path3947"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip481">
<path
d="M 0.03125,0.382812 H 22.710938 V 25.121094 H 0.03125 Z m 0,0"
id="path3963"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip483">
<path
d="m 0.246094,0.617188 h 16.25 V 15.71875 h -16.25 z m 0,0"
id="path3979"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip485">
<path
d="M 0.03125,0.957031 H 22.710938 V 25.699219 H 0.03125 Z m 0,0"
id="path3995"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip487">
<path
d="m 0.246094,0.195312 h 16.25 v 15.097657 h -16.25 z m 0,0"
id="path4011"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip489">
<path
d="M 0.996094,0.382812 H 23.675781 V 25.121094 H 0.996094 Z m 0,0"
id="path4027"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip491">
<path
d="m 0.210938,0.617188 h 16.25 V 15.71875 h -16.25 z m 0,0"
id="path4043"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip493">
<path
d="M 0.996094,0.957031 H 23.675781 V 25.699219 H 0.996094 Z m 0,0"
id="path4059"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip495">
<path
d="m 0.210938,0.195312 h 16.25 v 15.097657 h -16.25 z m 0,0"
id="path4075"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip465-3">
<path
inkscape:connector-curvature="0"
d="M 0.03125,0.253906 H 22.710938 V 24.992188 H 0.03125 Z m 0,0"
id="path3835-6" />
</clipPath>
<clipPath
id="clip467-7">
<path
inkscape:connector-curvature="0"
d="m 0.246094,0.488281 h 16.25 v 15.101563 h -16.25 z m 0,0"
id="path3851-5" />
</clipPath>
<clipPath
id="clip469-3">
<path
inkscape:connector-curvature="0"
d="M 0.03125,0.828125 H 22.710938 V 25.570312 H 0.03125 Z m 0,0"
id="path3867-5" />
</clipPath>
<clipPath
id="clip471-6">
<path
inkscape:connector-curvature="0"
d="m 0.246094,0.0664062 h 16.25 V 15.164062 h -16.25 z m 0,0"
id="path3883-2" />
</clipPath>
<clipPath
id="clip473-9">
<path
inkscape:connector-curvature="0"
d="M 0.996094,0.253906 H 23.675781 V 24.992188 H 0.996094 Z m 0,0"
id="path3899-1" />
</clipPath>
<clipPath
id="clip475-2">
<path
inkscape:connector-curvature="0"
d="m 0.210938,0.488281 h 16.25 v 15.101563 h -16.25 z m 0,0"
id="path3915-7" />
</clipPath>
<clipPath
id="clip477-0">
<path
inkscape:connector-curvature="0"
d="M 0.996094,0.828125 H 23.675781 V 25.570312 H 0.996094 Z m 0,0"
id="path3931-9" />
</clipPath>
<clipPath
id="clip479-3">
<path
inkscape:connector-curvature="0"
d="m 0.210938,0.0664062 h 16.25 V 15.164062 h -16.25 z m 0,0"
id="path3947-6" />
</clipPath>
<clipPath
id="clip481-0">
<path
inkscape:connector-curvature="0"
d="M 0.03125,0.382812 H 22.710938 V 25.121094 H 0.03125 Z m 0,0"
id="path3963-6" />
</clipPath>
<clipPath
id="clip483-2">
<path
inkscape:connector-curvature="0"
d="m 0.246094,0.617188 h 16.25 V 15.71875 h -16.25 z m 0,0"
id="path3979-6" />
</clipPath>
<clipPath
id="clip485-1">
<path
inkscape:connector-curvature="0"
d="M 0.03125,0.957031 H 22.710938 V 25.699219 H 0.03125 Z m 0,0"
id="path3995-8" />
</clipPath>
<clipPath
id="clip487-7">
<path
inkscape:connector-curvature="0"
d="m 0.246094,0.195312 h 16.25 v 15.097657 h -16.25 z m 0,0"
id="path4011-9" />
</clipPath>
<clipPath
id="clip489-2">
<path
inkscape:connector-curvature="0"
d="M 0.996094,0.382812 H 23.675781 V 25.121094 H 0.996094 Z m 0,0"
id="path4027-0" />
</clipPath>
<clipPath
id="clip491-2">
<path
inkscape:connector-curvature="0"
d="m 0.210938,0.617188 h 16.25 V 15.71875 h -16.25 z m 0,0"
id="path4043-3" />
</clipPath>
<clipPath
id="clip493-7">
<path
inkscape:connector-curvature="0"
d="M 0.996094,0.957031 H 23.675781 V 25.699219 H 0.996094 Z m 0,0"
id="path4059-5" />
</clipPath>
<clipPath
id="clip495-9">
<path
inkscape:connector-curvature="0"
d="m 0.210938,0.195312 h 16.25 v 15.097657 h -16.25 z m 0,0"
id="path4075-2" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="-187.09326"
inkscape:cy="214.59139"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-nodes="false"
inkscape:snap-others="false"
inkscape:window-width="1600"
inkscape:window-height="882"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="0" />
<metadata
id="metadata47413">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-331.91936,46.631807)">
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277778"
d="m 332.01168,-46.5381 h 25.21395 V 81.775178 h -25.21395 z m 0,0"
id="path26769" />
<path
inkscape:connector-curvature="0"
style="fill:#ababab;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277778"
d="m 357.31936,-46.631807 h -25.4 V 81.867508 h 25.4 z M 357.13193,81.681468 H 332.10538 V -46.444394 h 25.02655 z m 0,0"
id="path26771" />
<g
id="use28517"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,337.84474,-37.066671)">
<path
id="path51483"
d="m 4.296875,0.125 h 0.125 c 0.5,0 0.84375,-0.265625 1.03125,-0.71875 l 2.75,-6.578125 C 8.25,-7.28125 8.296875,-7.4375 8.296875,-7.578125 c 0,-0.515625 -0.40625,-0.890625 -0.90625,-0.890625 -0.4375,0 -0.765625,0.28125 -0.890625,0.578125 l -2.125,5.5 -2.09375,-5.4375 c -0.140625,-0.375 -0.453125,-0.640625 -0.9375,-0.640625 -0.515625,0 -0.921875,0.390625 -0.921875,0.90625 0,0.15625 0.046875,0.296875 0.109375,0.453125 L 3.25,-0.59375 C 3.4375,-0.140625 3.796875,0.125 4.296875,0.125 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28521"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,340.80765,-37.066671)">
<path
id="path51479"
d="m 4.9375,0.140625 c 1.34375,0 2.234375,-0.390625 3,-1.046875 0.15625,-0.15625 0.3125,-0.375 0.3125,-0.671875 0,-0.46875 -0.40625,-0.84375 -0.875,-0.84375 -0.21875,0 -0.40625,0.078125 -0.546875,0.203125 C 6.296875,-1.796875 5.78125,-1.5625 5,-1.5625 c -1.4375,0 -2.4375,-1.203125 -2.4375,-2.640625 V -4.21875 c 0,-1.4375 1.03125,-2.625 2.4375,-2.625 0.65625,0 1.203125,0.21875 1.71875,0.609375 C 6.859375,-6.15625 7.015625,-6.0625 7.265625,-6.0625 7.78125,-6.0625 8.1875,-6.453125 8.1875,-6.953125 8.1875,-7.28125 8.015625,-7.546875 7.828125,-7.6875 7.125,-8.203125 6.28125,-8.546875 5.015625,-8.546875 c -2.578125,0 -4.375,1.953125 -4.375,4.34375 v 0.03125 c 0,2.40625 1.828125,4.3125 4.296875,4.3125 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28525"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,343.95301,-37.066671)">
<path
id="path51475"
d="m 0.4375,-0.796875 c 0,0.484375 0.359375,0.875 0.84375,0.875 0.390625,0 0.703125,-0.21875 0.859375,-0.578125 L 2.71875,-1.890625 h 3.703125 l 0.5625,1.328125 C 7.15625,-0.1875 7.4375,0.078125 7.875,0.078125 c 0.484375,0 0.875,-0.40625 0.875,-0.890625 0,-0.125 -0.03125,-0.25 -0.09375,-0.375 L 5.71875,-7.796875 C 5.515625,-8.25 5.15625,-8.53125 4.65625,-8.53125 H 4.546875 c -0.5,0 -0.875,0.28125 -1.078125,0.734375 L 0.546875,-1.1875 C 0.484375,-1.0625 0.4375,-0.921875 0.4375,-0.796875 Z m 2.96875,-2.71875 1.171875,-2.765625 1.15625,2.765625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28529"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,347.17971,-37.066671)">
<path
id="path51467"
d="m 1.40625,-2.84375 h 2.078125 c 0.484375,0 0.890625,-0.390625 0.890625,-0.875 0,-0.484375 -0.40625,-0.875 -0.890625,-0.875 H 1.40625 c -0.484375,0 -0.875,0.390625 -0.875,0.875 0,0.484375 0.390625,0.875 0.875,0.875 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28531"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,348.75869,-37.066671)">
<path
id="path51471"
d="m 0.515625,-0.875 c 0,0.546875 0.421875,0.875 1,0.875 h 4.5625 C 6.515625,0 6.875,-0.34375 6.875,-0.796875 c 0,-0.4375 -0.359375,-0.796875 -0.796875,-0.796875 h -2.9375 l 1.375,-1.0625 C 6,-3.796875 6.71875,-4.5 6.71875,-5.90625 v -0.015625 c 0,-1.578125 -1.15625,-2.59375 -2.890625,-2.59375 -1.265625,0 -2.0625,0.453125 -2.734375,1.234375 -0.140625,0.15625 -0.21875,0.375 -0.21875,0.578125 0,0.46875 0.375,0.828125 0.84375,0.828125 0.28125,0 0.5,-0.125 0.625,-0.25 0.46875,-0.515625 0.84375,-0.734375 1.359375,-0.734375 0.671875,0 1.140625,0.375 1.140625,1.09375 0,0.6875 -0.421875,1.15625 -1.453125,2.015625 L 1,-1.796875 c -0.3125,0.25 -0.484375,0.5625 -0.484375,0.921875 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28535"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,339.83546,-30.54374)">
<path
id="path51463"
d="m 0.71875,-0.5 c 0,0.28125 0.21875,0.5 0.5,0.5 h 3.015625 c 0.25,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.25 -0.203125,-0.4375 -0.453125,-0.4375 H 1.703125 V -5.15625 c 0,-0.265625 -0.21875,-0.484375 -0.484375,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28539"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,341.62931,-30.54374)">
<path
id="path51459"
d="m 1.21875,0 h 3.296875 c 0.234375,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.203125,-0.4375 -0.4375,-0.4375 h -2.8125 v -1.515625 h 2.40625 c 0.25,0 0.4375,-0.1875 0.4375,-0.421875 0,-0.25 -0.1875,-0.453125 -0.4375,-0.453125 H 1.703125 V -4.71875 H 4.46875 c 0.25,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.1875,-0.4375 -0.4375,-0.4375 h -3.25 c -0.28125,0 -0.5,0.203125 -0.5,0.484375 V -0.5 c 0,0.28125 0.21875,0.5 0.5,0.5 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28543"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,343.60173,-30.54374)">
<path
id="path51455"
d="m 2.90625,0.078125 h 0.046875 c 0.28125,0 0.46875,-0.15625 0.578125,-0.390625 L 5.5,-4.953125 c 0.015625,-0.0625 0.046875,-0.140625 0.046875,-0.21875 0,-0.265625 -0.21875,-0.46875 -0.484375,-0.46875 -0.234375,0 -0.421875,0.15625 -0.484375,0.328125 L 2.9375,-1.25 1.328125,-5.28125 c -0.078125,-0.21875 -0.25,-0.359375 -0.5,-0.359375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.078125 0.03125,0.15625 0.0625,0.234375 L 2.34375,-0.3125 c 0.109375,0.234375 0.28125,0.390625 0.5625,0.390625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28547"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,345.70823,-30.54374)">
<path
id="path51451"
d="m 1.21875,0 h 3.296875 c 0.234375,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.203125,-0.4375 -0.4375,-0.4375 h -2.8125 v -1.515625 h 2.40625 c 0.25,0 0.4375,-0.1875 0.4375,-0.421875 0,-0.25 -0.1875,-0.453125 -0.4375,-0.453125 H 1.703125 V -4.71875 H 4.46875 c 0.25,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.1875,-0.4375 -0.4375,-0.4375 h -3.25 c -0.28125,0 -0.5,0.203125 -0.5,0.484375 V -0.5 c 0,0.28125 0.21875,0.5 0.5,0.5 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28551"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,347.65697,-30.54374)">
<path
id="path51447"
d="m 0.71875,-0.5 c 0,0.28125 0.21875,0.5 0.5,0.5 h 3.015625 c 0.25,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.25 -0.203125,-0.4375 -0.453125,-0.4375 H 1.703125 V -5.15625 c 0,-0.265625 -0.21875,-0.484375 -0.484375,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28555"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,339.83546,24.929857)">
<path
id="path51443"
d="m 0.71875,-0.5 c 0,0.28125 0.21875,0.5 0.5,0.5 h 3.015625 c 0.25,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.25 -0.203125,-0.4375 -0.453125,-0.4375 H 1.703125 V -5.15625 c 0,-0.265625 -0.21875,-0.484375 -0.484375,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28559"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,341.62931,24.929857)">
<path
id="path51439"
d="m 1.21875,0 h 3.296875 c 0.234375,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.203125,-0.4375 -0.4375,-0.4375 h -2.8125 v -1.515625 h 2.40625 c 0.25,0 0.4375,-0.1875 0.4375,-0.421875 0,-0.25 -0.1875,-0.453125 -0.4375,-0.453125 H 1.703125 V -4.71875 H 4.46875 c 0.25,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.1875,-0.4375 -0.4375,-0.4375 h -3.25 c -0.28125,0 -0.5,0.203125 -0.5,0.484375 V -0.5 c 0,0.28125 0.21875,0.5 0.5,0.5 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28563"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,343.60173,24.929857)">
<path
id="path51435"
d="m 2.90625,0.078125 h 0.046875 c 0.28125,0 0.46875,-0.15625 0.578125,-0.390625 L 5.5,-4.953125 c 0.015625,-0.0625 0.046875,-0.140625 0.046875,-0.21875 0,-0.265625 -0.21875,-0.46875 -0.484375,-0.46875 -0.234375,0 -0.421875,0.15625 -0.484375,0.328125 L 2.9375,-1.25 1.328125,-5.28125 c -0.078125,-0.21875 -0.25,-0.359375 -0.5,-0.359375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.078125 0.03125,0.15625 0.0625,0.234375 L 2.34375,-0.3125 c 0.109375,0.234375 0.28125,0.390625 0.5625,0.390625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28567"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,345.70823,24.929857)">
<path
id="path51431"
d="m 1.21875,0 h 3.296875 c 0.234375,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.203125,-0.4375 -0.4375,-0.4375 h -2.8125 v -1.515625 h 2.40625 c 0.25,0 0.4375,-0.1875 0.4375,-0.421875 0,-0.25 -0.1875,-0.453125 -0.4375,-0.453125 H 1.703125 V -4.71875 H 4.46875 c 0.25,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.1875,-0.4375 -0.4375,-0.4375 h -3.25 c -0.28125,0 -0.5,0.203125 -0.5,0.484375 V -0.5 c 0,0.28125 0.21875,0.5 0.5,0.5 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use28571"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,347.65697,24.929857)">
<path
id="path51427"
d="m 0.71875,-0.5 c 0,0.28125 0.21875,0.5 0.5,0.5 h 3.015625 c 0.25,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.25 -0.203125,-0.4375 -0.453125,-0.4375 H 1.703125 V -5.15625 c 0,-0.265625 -0.21875,-0.484375 -0.484375,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277778"
d="m 355.46315,57.787664 c 0,-0.549838 -0.45064,-1.000455 -1.00048,-1.000455 h -7.68117 c -0.54984,0 -1.00048,0.450617 -1.00048,1.000455 v 12.172214 c 0,0.54984 0.45064,1.00045 1.00048,1.00045 h 7.68117 c 0.54984,0 1.00048,-0.45061 1.00048,-1.00045 z m 0,0"
id="path29797" />
<g
id="use29799"
style="fill:#e6e6e6;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,347.96693,59.873978)">
<path
id="path51423"
d="m 2.75,0.078125 c 1.40625,0 2.4375,-1.0625 2.4375,-2.359375 0,-1.296875 -1.015625,-2.34375 -2.421875,-2.34375 -1.40625,0 -2.421875,1.0625 -2.421875,2.34375 v 0.015625 c 0,1.296875 1.015625,2.34375 2.40625,2.34375 z M 2.765625,-0.84375 c -0.796875,0 -1.375,-0.65625 -1.375,-1.4375 0,-0.78125 0.5625,-1.421875 1.359375,-1.421875 0.8125,0 1.390625,0.640625 1.390625,1.421875 v 0.015625 c 0,0.78125 -0.5625,1.421875 -1.375,1.421875 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use29803"
style="fill:#e6e6e6;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,349.99377,59.873978)">
<path
id="path51415"
d="m 2.4375,0.078125 c 1.234375,0 2,-0.6875 2,-2.0625 V -4.09375 c 0,-0.28125 -0.21875,-0.5 -0.5,-0.5 -0.28125,0 -0.5,0.21875 -0.5,0.5 v 2.15625 c 0,0.71875 -0.375,1.09375 -0.984375,1.09375 -0.609375,0 -0.984375,-0.390625 -0.984375,-1.125 v -2.125 c 0,-0.28125 -0.21875,-0.5 -0.5,-0.5 -0.265625,0 -0.5,0.21875 -0.5,0.5 v 2.140625 c 0,1.34375 0.75,2.03125 1.96875,2.03125 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use29805"
style="fill:#e6e6e6;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,351.79151,59.873978)">
<path
id="path51419"
d="m 1.609375,-0.46875 c 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 V -3.625 H 3.5625 c 0.265625,0 0.46875,-0.203125 0.46875,-0.46875 0,-0.25 -0.203125,-0.453125 -0.46875,-0.453125 H 0.640625 c -0.25,0 -0.453125,0.203125 -0.453125,0.453125 0,0.265625 0.203125,0.46875 0.453125,0.46875 h 0.96875 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277778"
d="m 355.46315,2.4470229 c 0,-0.549836 -0.45064,-1.000453 -1.00048,-1.000453 h -7.68117 c -0.54984,0 -1.00048,0.450617 -1.00048,1.000453 V 14.619237 c 0,0.549836 0.45064,1.000456 1.00048,1.000456 h 7.68117 c 0.54984,0 1.00048,-0.45062 1.00048,-1.000456 z m 0,0"
id="path29831" />
<g
id="use29833"
style="fill:#e6e6e6;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,347.96693,4.5333419)">
<path
id="path51411"
d="m 2.75,0.078125 c 1.40625,0 2.4375,-1.0625 2.4375,-2.359375 0,-1.296875 -1.015625,-2.34375 -2.421875,-2.34375 -1.40625,0 -2.421875,1.0625 -2.421875,2.34375 v 0.015625 c 0,1.296875 1.015625,2.34375 2.40625,2.34375 z M 2.765625,-0.84375 c -0.796875,0 -1.375,-0.65625 -1.375,-1.4375 0,-0.78125 0.5625,-1.421875 1.359375,-1.421875 0.8125,0 1.390625,0.640625 1.390625,1.421875 v 0.015625 c 0,0.78125 -0.5625,1.421875 -1.375,1.421875 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use29837"
style="fill:#e6e6e6;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,349.99377,4.5333419)">
<path
id="path51403"
d="m 2.4375,0.078125 c 1.234375,0 2,-0.6875 2,-2.0625 V -4.09375 c 0,-0.28125 -0.21875,-0.5 -0.5,-0.5 -0.28125,0 -0.5,0.21875 -0.5,0.5 v 2.15625 c 0,0.71875 -0.375,1.09375 -0.984375,1.09375 -0.609375,0 -0.984375,-0.390625 -0.984375,-1.125 v -2.125 c 0,-0.28125 -0.21875,-0.5 -0.5,-0.5 -0.265625,0 -0.5,0.21875 -0.5,0.5 v 2.140625 c 0,1.34375 0.75,2.03125 1.96875,2.03125 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use29839"
style="fill:#e6e6e6;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,351.79151,4.5333419)">
<path
id="path51407"
d="m 1.609375,-0.46875 c 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 V -3.625 H 3.5625 c 0.265625,0 0.46875,-0.203125 0.46875,-0.46875 0,-0.25 -0.203125,-0.453125 -0.46875,-0.453125 H 0.640625 c -0.25,0 -0.453125,0.203125 -0.453125,0.453125 0,0.265625 0.203125,0.46875 0.453125,0.46875 h 0.96875 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use29843"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,348.58148,-10.474709)">
<path
id="path51395"
d="M 0.578125,-0.40625 C 0.578125,-0.171875 0.765625,0 0.984375,0 H 3.4375 c 0.203125,0 0.375,-0.15625 0.375,-0.359375 0,-0.203125 -0.171875,-0.375 -0.375,-0.375 H 1.390625 V -4.1875 c 0,-0.21875 -0.1875,-0.390625 -0.40625,-0.390625 -0.21875,0 -0.40625,0.171875 -0.40625,0.390625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use29845"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,350.04901,-10.474709)">
<path
id="path51399"
d="m 0.625,-0.359375 c 0,0.21875 0.1875,0.390625 0.40625,0.390625 0.21875,0 0.40625,-0.171875 0.40625,-0.390625 V -4.1875 c 0,-0.21875 -0.1875,-0.390625 -0.40625,-0.390625 -0.21875,0 -0.40625,0.171875 -0.40625,0.390625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use29849"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,350.84954,-10.474709)">
<path
id="path51391"
d="m 0.578125,-0.359375 c 0,0.21875 0.1875,0.390625 0.40625,0.390625 0.21875,0 0.390625,-0.171875 0.390625,-0.390625 V -3.25 l 2.34375,3.03125 c 0.109375,0.140625 0.21875,0.25 0.40625,0.25 h 0.03125 c 0.21875,0 0.390625,-0.1875 0.390625,-0.40625 v -3.8125 c 0,-0.21875 -0.171875,-0.390625 -0.390625,-0.390625 -0.21875,0 -0.390625,0.171875 -0.390625,0.390625 v 2.796875 L 1.484375,-4.34375 C 1.375,-4.484375 1.265625,-4.578125 1.078125,-4.578125 h -0.09375 c -0.21875,0 -0.40625,0.1875 -0.40625,0.40625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use29853"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,337.3088,5.0332269)">
<path
id="path51383"
d="m 0.625,-0.359375 c 0,0.21875 0.1875,0.390625 0.40625,0.390625 0.21875,0 0.40625,-0.171875 0.40625,-0.390625 V -4.1875 c 0,-0.21875 -0.1875,-0.390625 -0.40625,-0.390625 -0.21875,0 -0.40625,0.171875 -0.40625,0.390625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use29855"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,338.10908,5.0332269)">
<path
id="path51387"
d="m 0.578125,-0.359375 c 0,0.21875 0.1875,0.390625 0.40625,0.390625 0.21875,0 0.390625,-0.171875 0.390625,-0.390625 V -3.25 l 2.34375,3.03125 c 0.109375,0.140625 0.21875,0.25 0.40625,0.25 h 0.03125 c 0.21875,0 0.390625,-0.1875 0.390625,-0.40625 v -3.8125 c 0,-0.21875 -0.171875,-0.390625 -0.390625,-0.390625 -0.21875,0 -0.390625,0.171875 -0.390625,0.390625 v 2.796875 L 1.484375,-4.34375 C 1.375,-4.484375 1.265625,-4.578125 1.078125,-4.578125 h -0.09375 c -0.21875,0 -0.40625,0.1875 -0.40625,0.40625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use29859"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,336.20125,-10.474709)">
<path
id="path51379"
d="m 0.984375,0 h 2.6875 c 0.1875,0 0.359375,-0.15625 0.359375,-0.359375 0,-0.1875 -0.171875,-0.359375 -0.359375,-0.359375 H 1.390625 V -1.9375 H 3.34375 c 0.1875,0 0.359375,-0.15625 0.359375,-0.34375 0,-0.203125 -0.171875,-0.375 -0.359375,-0.375 H 1.390625 v -1.171875 h 2.25 c 0.1875,0 0.34375,-0.15625 0.34375,-0.359375 0,-0.203125 -0.15625,-0.359375 -0.34375,-0.359375 h -2.65625 c -0.21875,0 -0.40625,0.171875 -0.40625,0.40625 V -0.40625 C 0.578125,-0.171875 0.765625,0 0.984375,0 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use29863"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,337.81262,-10.474709)">
<path
id="path51371"
d="m 0.34375,-0.34375 c 0,0.234375 0.1875,0.375 0.375,0.375 0.171875,0 0.28125,-0.078125 0.390625,-0.21875 L 2.3125,-1.75 3.53125,-0.15625 c 0.09375,0.125 0.1875,0.1875 0.359375,0.1875 0.234375,0 0.40625,-0.171875 0.40625,-0.390625 0,-0.109375 -0.0625,-0.21875 -0.125,-0.296875 L 2.828125,-2.328125 4.09375,-3.90625 c 0.078125,-0.109375 0.125,-0.1875 0.125,-0.3125 0,-0.21875 -0.1875,-0.359375 -0.359375,-0.359375 -0.171875,0 -0.28125,0.078125 -0.390625,0.21875 L 2.328125,-2.875 1.1875,-4.390625 c -0.109375,-0.125 -0.203125,-0.1875 -0.375,-0.1875 -0.21875,0 -0.390625,0.171875 -0.390625,0.390625 0,0.109375 0.0625,0.203125 0.125,0.296875 L 1.8125,-2.3125 0.46875,-0.640625 c -0.078125,0.09375 -0.125,0.1875 -0.125,0.296875 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use29865"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,339.49571,-10.474709)">
<path
id="path51375"
d="m 0.578125,-0.359375 c 0,0.21875 0.1875,0.390625 0.40625,0.390625 0.21875,0 0.40625,-0.171875 0.40625,-0.390625 V -1.46875 H 2.28125 c 1,0 1.828125,-0.53125 1.828125,-1.546875 V -3.03125 C 4.109375,-3.953125 3.4375,-4.546875 2.375,-4.546875 H 0.984375 c -0.21875,0 -0.40625,0.171875 -0.40625,0.40625 z M 1.390625,-2.1875 V -3.828125 H 2.3125 c 0.59375,0 0.984375,0.28125 0.984375,0.8125 V -3 c 0,0.484375 -0.375,0.8125 -0.984375,0.8125 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use30145"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,348.58206,44.865441)">
<path
id="path51363"
d="M 0.578125,-0.40625 C 0.578125,-0.171875 0.765625,0 0.984375,0 H 3.4375 c 0.203125,0 0.375,-0.15625 0.375,-0.359375 0,-0.203125 -0.171875,-0.375 -0.375,-0.375 H 1.390625 V -4.1875 c 0,-0.21875 -0.1875,-0.390625 -0.40625,-0.390625 -0.21875,0 -0.40625,0.171875 -0.40625,0.390625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use30147"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,350.04962,44.865441)">
<path
id="path51367"
d="m 0.625,-0.359375 c 0,0.21875 0.1875,0.390625 0.40625,0.390625 0.21875,0 0.40625,-0.171875 0.40625,-0.390625 V -4.1875 c 0,-0.21875 -0.1875,-0.390625 -0.40625,-0.390625 -0.21875,0 -0.40625,0.171875 -0.40625,0.390625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use30151"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,350.84986,44.865441)">
<path
id="path51359"
d="m 0.578125,-0.359375 c 0,0.21875 0.1875,0.390625 0.40625,0.390625 0.21875,0 0.390625,-0.171875 0.390625,-0.390625 V -3.25 l 2.34375,3.03125 c 0.109375,0.140625 0.21875,0.25 0.40625,0.25 h 0.03125 c 0.21875,0 0.390625,-0.1875 0.390625,-0.40625 v -3.8125 c 0,-0.21875 -0.171875,-0.390625 -0.390625,-0.390625 -0.21875,0 -0.390625,0.171875 -0.390625,0.390625 v 2.796875 L 1.484375,-4.34375 C 1.375,-4.484375 1.265625,-4.578125 1.078125,-4.578125 h -0.09375 c -0.21875,0 -0.40625,0.1875 -0.40625,0.40625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use30155"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,337.30941,59.873483)">
<path
id="path51351"
d="m 0.625,-0.359375 c 0,0.21875 0.1875,0.390625 0.40625,0.390625 0.21875,0 0.40625,-0.171875 0.40625,-0.390625 V -4.1875 c 0,-0.21875 -0.1875,-0.390625 -0.40625,-0.390625 -0.21875,0 -0.40625,0.171875 -0.40625,0.390625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use30157"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,338.10972,59.873483)">
<path
id="path51355"
d="m 0.578125,-0.359375 c 0,0.21875 0.1875,0.390625 0.40625,0.390625 0.21875,0 0.390625,-0.171875 0.390625,-0.390625 V -3.25 l 2.34375,3.03125 c 0.109375,0.140625 0.21875,0.25 0.40625,0.25 h 0.03125 c 0.21875,0 0.390625,-0.1875 0.390625,-0.40625 v -3.8125 c 0,-0.21875 -0.171875,-0.390625 -0.390625,-0.390625 -0.21875,0 -0.390625,0.171875 -0.390625,0.390625 v 2.796875 L 1.484375,-4.34375 C 1.375,-4.484375 1.265625,-4.578125 1.078125,-4.578125 h -0.09375 c -0.21875,0 -0.40625,0.1875 -0.40625,0.40625 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use30161"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,336.20186,44.865441)">
<path
id="path51347"
d="m 0.984375,0 h 2.6875 c 0.1875,0 0.359375,-0.15625 0.359375,-0.359375 0,-0.1875 -0.171875,-0.359375 -0.359375,-0.359375 H 1.390625 V -1.9375 H 3.34375 c 0.1875,0 0.359375,-0.15625 0.359375,-0.34375 0,-0.203125 -0.171875,-0.375 -0.359375,-0.375 H 1.390625 v -1.171875 h 2.25 c 0.1875,0 0.34375,-0.15625 0.34375,-0.359375 0,-0.203125 -0.15625,-0.359375 -0.34375,-0.359375 h -2.65625 c -0.21875,0 -0.40625,0.171875 -0.40625,0.40625 V -0.40625 C 0.578125,-0.171875 0.765625,0 0.984375,0 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use30165"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,337.8132,44.865441)">
<path
id="path51339"
d="m 0.34375,-0.34375 c 0,0.234375 0.1875,0.375 0.375,0.375 0.171875,0 0.28125,-0.078125 0.390625,-0.21875 L 2.3125,-1.75 3.53125,-0.15625 c 0.09375,0.125 0.1875,0.1875 0.359375,0.1875 0.234375,0 0.40625,-0.171875 0.40625,-0.390625 0,-0.109375 -0.0625,-0.21875 -0.125,-0.296875 L 2.828125,-2.328125 4.09375,-3.90625 c 0.078125,-0.109375 0.125,-0.1875 0.125,-0.3125 0,-0.21875 -0.1875,-0.359375 -0.359375,-0.359375 -0.171875,0 -0.28125,0.078125 -0.390625,0.21875 L 2.328125,-2.875 1.1875,-4.390625 c -0.109375,-0.125 -0.203125,-0.1875 -0.375,-0.1875 -0.21875,0 -0.390625,0.171875 -0.390625,0.390625 0,0.109375 0.0625,0.203125 0.125,0.296875 L 1.8125,-2.3125 0.46875,-0.640625 c -0.078125,0.09375 -0.125,0.1875 -0.125,0.296875 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="use30167"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.3527778,0,0,0.3527778,339.49632,44.865441)">
<path
id="path51343"
d="m 0.578125,-0.359375 c 0,0.21875 0.1875,0.390625 0.40625,0.390625 0.21875,0 0.40625,-0.171875 0.40625,-0.390625 V -1.46875 H 2.28125 c 1,0 1.828125,-0.53125 1.828125,-1.546875 V -3.03125 C 4.109375,-3.953125 3.4375,-4.546875 2.375,-4.546875 H 0.984375 c -0.21875,0 -0.40625,0.171875 -0.40625,0.40625 z M 1.390625,-2.1875 V -3.828125 H 2.3125 c 0.59375,0 0.984375,0.28125 0.984375,0.8125 V -3 c 0,0.484375 -0.375,0.8125 -0.984375,0.8125 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:0.23495002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 334.45905,19.081324 h 20.31918"
id="path33341" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:0.23495002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 338.61523,50.886445 h 12.00684"
id="path34019" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:0.23495002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 338.61523,-4.3329251 h 12.00684"
id="path34021" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="widgets"
style="display:none">
<rect
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.33333333;fill-rule:evenodd;stroke:none;stroke-width:0.29280153;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078;paint-order:normal"
id="rect52103"
width="12.7"
height="12.700002"
x="6.3500004"
y="19.117525" />
<rect
y="38.19371"
x="2.5907001"
height="8.2103491"
width="8.21175"
id="rect52912"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.33333333;fill-rule:evenodd;stroke:none;stroke-width:0.18930769;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.33333333;fill-rule:evenodd;stroke:none;stroke-width:0.18930769;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078;paint-order:normal"
id="rect52918"
width="8.21175"
height="8.2103491"
x="14.59752"
y="38.19371" />
<rect
y="52.806423"
x="2.5906999"
height="8.2103491"
width="8.21175"
id="rect52920"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.33333333;fill-rule:evenodd;stroke:none;stroke-width:0.18930769;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.33333333;fill-rule:evenodd;stroke:none;stroke-width:0.18930769;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078;paint-order:normal"
id="rect52922"
width="8.21175"
height="8.2103491"
x="14.59752"
y="52.806423" />
<rect
y="74.805435"
x="6.3500004"
height="12.700002"
width="12.7"
id="rect52924"
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.33333333;fill-rule:evenodd;stroke:none;stroke-width:0.29280153;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.33333333;fill-rule:evenodd;stroke:none;stroke-width:0.18930769;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078;paint-order:normal"
id="rect52926"
width="8.21175"
height="8.2103491"
x="2.5906999"
y="93.534348" />
<rect
y="93.534348"
x="14.59752"
height="8.2103491"
width="8.21175"
id="rect52928"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.33333333;fill-rule:evenodd;stroke:none;stroke-width:0.18930769;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.33333333;fill-rule:evenodd;stroke:none;stroke-width:0.18930769;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078;paint-order:normal"
id="rect52930"
width="8.21175"
height="8.2103491"
x="2.5906997"
y="108.14706" />
<rect
y="108.14706"
x="14.59752"
height="8.2103491"
width="8.21175"
id="rect52932"
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.33333333;fill-rule:evenodd;stroke:none;stroke-width:0.18930769;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078;paint-order:normal" />
</g>
</svg>

+ 0
- 317
vst2_bin/plugins/Fundamental/res__OLD/VCF.svg View File

@@ -1,317 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="120.18037"
height="379.99997"
viewBox="0 0 31.797722 100.54167"
version="1.1"
id="svg4541"
sodipodi:docname="VCF.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<defs
id="defs4535" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="-96.379684"
inkscape:cy="138.75941"
inkscape:document-units="mm"
inkscape:current-layer="g13178"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1200"
inkscape:window-x="8"
inkscape:window-y="136"
inkscape:window-maximized="0"
units="px" />
<metadata
id="metadata4538">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-49.620829,-52.061968)">
<g
transform="matrix(0.27602379,0,0,0.27602379,354.09618,57.736346)"
id="g13122"
style="stroke-width:0.9585526">
<g
transform="translate(-167.07644,-20.557569)"
id="g13178"
style="stroke-width:0.91882312">
<path
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.91882312"
d="m -935.73442,0.265625 h 114.66797 V 363.98828 h -114.66797 z m 0,0"
id="path25057"
inkscape:connector-curvature="0" />
<path
style="fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.91882312"
d="m -828.96098,297.40625 c 0,-1.55859 -1.27735,-2.83203 -2.83594,-2.83203 h -21.77344 c -1.55859,0 -2.83593,1.27344 -2.83593,2.83203 v 33.08984 c 0,1.5586 1.27734,2.83594 2.83593,2.83594 h 21.77344 c 1.55859,0 2.83594,-1.27734 2.83594,-2.83594 z m 0,0"
id="path25247"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path11938"
d="m -849.13823,302.85642 c 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 v -1.35937 h 1.84375 v 1.35937 c 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 v -3.625 c 0,-0.28125 -0.21875,-0.5 -0.5,-0.5 -0.28125,0 -0.5,0.21875 -0.5,0.5 v 1.34375 h -1.84375 v -1.34375 c 0,-0.28125 -0.21875,-0.5 -0.5,-0.5 -0.28125,0 -0.5,0.21875 -0.5,0.5 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11934"
d="m -843.94993,302.85642 c 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 v -0.89062 h 0.76562 c 1.01563,0 1.82813,-0.54688 1.82813,-1.60938 v -0.0156 c 0,-0.92188 -0.65625,-1.5625 -1.73438,-1.5625 h -1.35937 c -0.28125,0 -0.5,0.21875 -0.5,0.5 z m 1,-1.78125 v -1.39062 h 0.78125 c 0.5,0 0.8125,0.23437 0.8125,0.6875 v 0.0156 c 0,0.39063 -0.29688,0.6875 -0.79688,0.6875 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11930"
d="m -839.39991,302.85642 c 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 v -1.29687 h 1.75 c 0.26562,0 0.45312,-0.20313 0.45312,-0.45313 0,-0.25 -0.1875,-0.45312 -0.45312,-0.45312 h -1.75 v -0.96875 h 2.04687 c 0.25,0 0.45313,-0.20313 0.45313,-0.45313 0,-0.25 -0.20313,-0.45312 -0.45313,-0.45312 h -2.54687 c -0.28125,0 -0.5,0.21875 -0.5,0.5 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
style="fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.91882312"
d="m -864.67583,297.40625 c 0,-1.55859 -1.27734,-2.83203 -2.83593,-2.83203 h -21.77735 c -1.55859,0 -2.83203,1.27344 -2.83203,2.83203 v 33.08984 c 0,1.5586 1.27344,2.83594 2.83203,2.83594 h 21.77735 c 1.55859,0 2.83593,-1.27734 2.83593,-2.83594 z m 0,0"
id="path25259"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path11926"
d="m -884.35011,302.82517 c 0,0.28125 0.21875,0.5 0.5,0.5 h 2.35937 c 0.25,0 0.45313,-0.20312 0.45313,-0.45312 0,-0.25 -0.20313,-0.45313 -0.45313,-0.45313 h -1.85937 v -3.1875 c 0,-0.28125 -0.21875,-0.5 -0.5,-0.5 -0.28125,0 -0.5,0.21875 -0.5,0.5 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11922"
d="m -880.17063,302.85642 c 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 v -0.89062 h 0.76562 c 1.01563,0 1.82813,-0.54688 1.82813,-1.60938 v -0.0156 c 0,-0.92188 -0.65625,-1.5625 -1.73438,-1.5625 h -1.35937 c -0.28125,0 -0.5,0.21875 -0.5,0.5 z m 1,-1.78125 v -1.39062 h 0.78125 c 0.5,0 0.8125,0.23437 0.8125,0.6875 v 0.0156 c 0,0.39063 -0.29688,0.6875 -0.79688,0.6875 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11918"
d="m -875.61866,302.85642 c 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 v -1.29687 h 1.75 c 0.26562,0 0.45312,-0.20313 0.45312,-0.45313 0,-0.25 -0.1875,-0.45312 -0.45312,-0.45312 h -1.75 v -0.96875 h 2.04687 c 0.25,0 0.45313,-0.20313 0.45313,-0.45313 0,-0.25 -0.20313,-0.45312 -0.45313,-0.45312 h -2.54687 c -0.28125,0 -0.5,0.21875 -0.5,0.5 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11914"
d="m -923.18889,259.00628 c 0,0.21875 0.1875,0.39063 0.40625,0.39063 0.21875,0 0.40625,-0.17188 0.40625,-0.39063 v -1.5 h 1.95313 c 0.20312,0 0.375,-0.15625 0.375,-0.35937 0,-0.20313 -0.17188,-0.35938 -0.375,-0.35938 h -1.95313 v -1.25 h 2.25 c 0.20313,0 0.35938,-0.15625 0.35938,-0.35937 0,-0.20313 -0.15625,-0.35938 -0.35938,-0.35938 h -2.65625 c -0.21875,0 -0.40625,0.17188 -0.40625,0.40625 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11910"
d="m -918.78642,259.00628 c 0,0.21875 0.1875,0.39063 0.40625,0.39063 0.21875,0 0.40625,-0.17188 0.40625,-0.39063 v -1.23437 h 1 l 1.10937,1.42187 c 0.0937,0.125 0.20313,0.20313 0.39063,0.20313 0.1875,0 0.375,-0.14063 0.375,-0.375 0,-0.125 -0.0469,-0.20313 -0.125,-0.29688 l -0.875,-1.09375 c 0.60937,-0.20312 1.03125,-0.64062 1.03125,-1.35937 v -0.0156 c 0,-0.40625 -0.125,-0.73437 -0.375,-0.98437 -0.28125,-0.28125 -0.73438,-0.45313 -1.3125,-0.45313 h -1.625 c -0.21875,0 -0.40625,0.17188 -0.40625,0.40625 z m 0.8125,-1.9375 v -1.53125 h 1.15625 c 0.59375,0 0.9375,0.26563 0.9375,0.76563 0,0.46875 -0.35938,0.76562 -0.9375,0.76562 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11906"
d="m -913.45188,259.36566 h 2.6875 c 0.1875,0 0.35937,-0.15625 0.35937,-0.35938 0,-0.1875 -0.17187,-0.35937 -0.35937,-0.35937 h -2.28125 v -1.21875 h 1.95312 c 0.1875,0 0.35938,-0.15625 0.35938,-0.34375 0,-0.20313 -0.17188,-0.375 -0.35938,-0.375 h -1.95312 v -1.17188 h 2.25 c 0.1875,0 0.34375,-0.15625 0.34375,-0.35937 0,-0.20313 -0.15625,-0.35938 -0.34375,-0.35938 h -2.65625 c -0.21875,0 -0.40625,0.17188 -0.40625,0.40625 v 3.73438 c 0,0.23437 0.1875,0.40625 0.40625,0.40625 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11902"
d="m -907.24675,259.44378 c 0.53125,0 1,-0.15625 1.39062,-0.42187 l 0.32813,0.28125 c 0.0625,0.0781 0.15625,0.125 0.28125,0.125 0.20312,0 0.375,-0.17188 0.375,-0.39063 0,-0.14062 -0.0625,-0.23437 -0.15625,-0.3125 l -0.28125,-0.23437 c 0.28125,-0.40625 0.45312,-0.89063 0.45312,-1.40625 0,-1.28125 -0.96875,-2.34375 -2.375,-2.34375 -1.39062,0 -2.375,1.0625 -2.375,2.34375 v 0.0156 c 0,1.28125 0.96875,2.34375 2.35938,2.34375 z m 0.23437,-1.4375 0.57813,0.48438 c -0.23438,0.14062 -0.5,0.21875 -0.79688,0.21875 -0.90625,0 -1.54687,-0.73438 -1.54687,-1.625 0,-0.89063 0.64062,-1.60938 1.53125,-1.60938 0.90625,0 1.54687,0.73438 1.54687,1.60938 v 0.0156 c 0,0.32813 -0.0781,0.625 -0.21875,0.875 l -0.57812,-0.54687 c -0.0937,-0.0781 -0.17188,-0.10938 -0.28125,-0.10938 -0.20313,0 -0.375,0.17188 -0.375,0.39063 0,0.125 0.0625,0.21875 0.14062,0.29687 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11898"
d="m -852.91088,258.95941 c 0,0.23437 0.1875,0.40625 0.40625,0.40625 h 1.29688 c 1.4375,0 2.42187,-1 2.42187,-2.28125 0,-1.28125 -0.98437,-2.26563 -2.42187,-2.26563 h -1.29688 c -0.21875,0 -0.40625,0.17188 -0.40625,0.40625 z m 0.8125,-0.32813 v -3.09375 h 0.89063 c 0.95312,0 1.57812,0.65625 1.57812,1.54688 v 0.0156 c 0,0.89063 -0.625,1.53125 -1.57812,1.53125 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11894"
d="m -847.63676,259.00628 c 0,0.21875 0.1875,0.39063 0.40625,0.39063 0.21875,0 0.40625,-0.17188 0.40625,-0.39063 v -1.23437 h 1 l 1.10937,1.42187 c 0.0937,0.125 0.20313,0.20313 0.39063,0.20313 0.1875,0 0.375,-0.14063 0.375,-0.375 0,-0.125 -0.0469,-0.20313 -0.125,-0.29688 l -0.875,-1.09375 c 0.60937,-0.20312 1.03125,-0.64062 1.03125,-1.35937 v -0.0156 c 0,-0.40625 -0.125,-0.73437 -0.375,-0.98437 -0.28125,-0.28125 -0.73438,-0.45313 -1.3125,-0.45313 h -1.625 c -0.21875,0 -0.40625,0.17188 -0.40625,0.40625 z m 0.8125,-1.9375 v -1.53125 h 1.15625 c 0.59375,0 0.9375,0.26563 0.9375,0.76563 0,0.46875 -0.35938,0.76562 -0.9375,0.76562 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11890"
d="m -842.68239,259.00628 c 0,0.21875 0.1875,0.39063 0.40625,0.39063 0.21875,0 0.40625,-0.17188 0.40625,-0.39063 v -3.82812 c 0,-0.21875 -0.1875,-0.39063 -0.40625,-0.39063 -0.21875,0 -0.40625,0.17188 -0.40625,0.39063 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11886"
d="m -838.78353,259.42816 h 0.0469 c 0.21875,0 0.375,-0.125 0.45312,-0.32813 l 1.60938,-3.76562 c 0.0156,-0.0469 0.0312,-0.10938 0.0312,-0.17188 0,-0.20312 -0.17188,-0.375 -0.39063,-0.375 -0.1875,0 -0.32812,0.125 -0.39062,0.25 l -1.32813,3.3125 -1.3125,-3.28125 c -0.0625,-0.17187 -0.20312,-0.28125 -0.40625,-0.28125 -0.23437,0 -0.40625,0.17188 -0.40625,0.39063 0,0.0625 0.0156,0.125 0.0469,0.1875 l 1.59375,3.73437 c 0.0781,0.20313 0.23437,0.32813 0.45312,0.32813 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11882"
d="m -835.25557,259.36566 h 2.6875 c 0.1875,0 0.35938,-0.15625 0.35938,-0.35938 0,-0.1875 -0.17188,-0.35937 -0.35938,-0.35937 h -2.28125 v -1.21875 h 1.95313 c 0.1875,0 0.35937,-0.15625 0.35937,-0.34375 0,-0.20313 -0.17187,-0.375 -0.35937,-0.375 h -1.95313 v -1.17188 h 2.25 c 0.1875,0 0.34375,-0.15625 0.34375,-0.35937 0,-0.20313 -0.15625,-0.35938 -0.34375,-0.35938 h -2.65625 c -0.21875,0 -0.40625,0.17188 -0.40625,0.40625 v 3.73438 c 0,0.23437 0.1875,0.40625 0.40625,0.40625 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11878"
d="m -884.64387,259.00628 c 0,0.21875 0.1875,0.39063 0.40625,0.39063 0.21875,0 0.40625,-0.17188 0.40625,-0.39063 v -1.23437 h 1 l 1.10937,1.42187 c 0.0937,0.125 0.20313,0.20313 0.39063,0.20313 0.1875,0 0.375,-0.14063 0.375,-0.375 0,-0.125 -0.0469,-0.20313 -0.125,-0.29688 l -0.875,-1.09375 c 0.60937,-0.20312 1.03125,-0.64062 1.03125,-1.35937 v -0.0156 c 0,-0.40625 -0.125,-0.73437 -0.375,-0.98437 -0.28125,-0.28125 -0.73438,-0.45313 -1.3125,-0.45313 h -1.625 c -0.21875,0 -0.40625,0.17188 -0.40625,0.40625 z m 0.8125,-1.9375 v -1.53125 h 1.15625 c 0.59375,0 0.9375,0.26563 0.9375,0.76563 0,0.46875 -0.35938,0.76562 -0.9375,0.76562 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11874"
d="m -879.30867,259.36566 h 2.6875 c 0.1875,0 0.35938,-0.15625 0.35938,-0.35938 0,-0.1875 -0.17188,-0.35937 -0.35938,-0.35937 h -2.28125 v -1.21875 h 1.95313 c 0.1875,0 0.35937,-0.15625 0.35937,-0.34375 0,-0.20313 -0.17187,-0.375 -0.35937,-0.375 h -1.95313 v -1.17188 h 2.25 c 0.1875,0 0.34375,-0.15625 0.34375,-0.35937 0,-0.20313 -0.15625,-0.35938 -0.34375,-0.35938 h -2.65625 c -0.21875,0 -0.40625,0.17188 -0.40625,0.40625 v 3.73438 c 0,0.23437 0.1875,0.40625 0.40625,0.40625 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11870"
d="m -873.57119,259.42816 c 0.96875,0 1.625,-0.5 1.625,-1.35938 v -0.0156 c 0,-0.75 -0.48437,-1.09375 -1.45312,-1.32813 -0.875,-0.20312 -1.07813,-0.35937 -1.07813,-0.71875 0,-0.3125 0.26563,-0.54687 0.73438,-0.54687 0.35937,0 0.70312,0.10937 1.04687,0.34375 0.0625,0.0469 0.125,0.0625 0.20313,0.0625 0.21875,0 0.39062,-0.17188 0.39062,-0.375 0,-0.15625 -0.0937,-0.26563 -0.1875,-0.3125 -0.40625,-0.28125 -0.85937,-0.42188 -1.4375,-0.42188 -0.90625,0 -1.54687,0.53125 -1.54687,1.3125 v 0.0156 c 0,0.84375 0.53125,1.125 1.5,1.35937 0.85937,0.1875 1.03125,0.375 1.03125,0.6875 v 0.0156 c 0,0.34375 -0.3125,0.57812 -0.79688,0.57812 -0.5,0 -0.90625,-0.17187 -1.28125,-0.46875 -0.0469,-0.0469 -0.125,-0.0781 -0.23437,-0.0781 -0.20313,0 -0.375,0.17187 -0.375,0.375 0,0.125 0.0625,0.23437 0.15625,0.3125 0.5,0.375 1.09375,0.5625 1.70312,0.5625 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11866"
d="m -892.06795,46.742172 c 0,0.34375 0.26563,0.609375 0.60938,0.609375 0.34375,0 0.60937,-0.265625 0.60937,-0.609375 v -2.28125 h 3.03125 c 0.29688,0 0.54688,-0.25 0.54688,-0.5625 0,-0.3125 -0.25,-0.5625 -0.54688,-0.5625 h -3.03125 v -1.90625 h 3.46875 c 0.3125,0 0.5625,-0.25 0.5625,-0.5625 0,-0.3125 -0.25,-0.5625 -0.5625,-0.5625 h -4.07812 c -0.34375,0 -0.60938,0.265625 -0.60938,0.625 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11862"
d="m -885.47496,46.742172 c 0,0.34375 0.26563,0.609375 0.60938,0.609375 0.34375,0 0.60937,-0.265625 0.60937,-0.609375 v -1.875 h 1.5625 l 1.6875,2.171875 c 0.14063,0.1875 0.32813,0.3125 0.60938,0.3125 0.29687,0 0.57812,-0.234375 0.57812,-0.5625 0,-0.1875 -0.0781,-0.328125 -0.1875,-0.46875 l -1.34375,-1.703125 c 0.9375,-0.28125 1.59375,-0.96875 1.59375,-2.078125 v -0.03125 c 0,-0.609375 -0.21875,-1.125 -0.57812,-1.5 -0.45313,-0.4375 -1.14063,-0.703125 -2.03125,-0.703125 h -2.5 c -0.34375,0 -0.60938,0.265625 -0.60938,0.625 z m 1.21875,-2.96875 v -2.34375 h 1.79688 c 0.90625,0 1.45312,0.40625 1.45312,1.15625 v 0.01563 c 0,0.71875 -0.5625,1.171875 -1.4375,1.171875 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11858"
d="m -877.45457,47.304672 h 4.125 c 0.29687,0 0.54687,-0.234375 0.54687,-0.546875 0,-0.296875 -0.25,-0.546875 -0.54687,-0.546875 h -3.51563 v -1.890625 h 3.01563 c 0.29687,0 0.54687,-0.234375 0.54687,-0.53125 0,-0.3125 -0.25,-0.5625 -0.54687,-0.5625 h -3.01563 v -1.828125 h 3.46875 c 0.29688,0 0.54688,-0.234375 0.54688,-0.546875 0,-0.296875 -0.25,-0.546875 -0.54688,-0.546875 h -4.07812 c -0.34375,0 -0.60938,0.265625 -0.60938,0.625 v 5.75 c 0,0.359375 0.26563,0.625 0.60938,0.625 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11854"
d="m -868.09583,47.429672 c 0.8125,0 1.54687,-0.25 2.14062,-0.671875 l 0.5,0.453125 c 0.10938,0.109375 0.25,0.1875 0.42188,0.1875 0.32812,0 0.57812,-0.28125 0.57812,-0.59375 0,-0.203125 -0.0781,-0.359375 -0.21875,-0.484375 l -0.45312,-0.359375 c 0.45312,-0.609375 0.70312,-1.359375 0.70312,-2.15625 v -0.01563 c 0,-1.96875 -1.5,-3.609375 -3.64062,-3.609375 -2.15625,0 -3.67188,1.65625 -3.67188,3.625 v 0.01563 c 0,1.96875 1.5,3.609375 3.64063,3.609375 z m 0.35937,-2.203125 0.875,0.734375 c -0.34375,0.203125 -0.75,0.328125 -1.20312,0.328125 -1.39063,0 -2.39063,-1.125 -2.39063,-2.484375 v -0.01563 c 0,-1.359375 0.96875,-2.46875 2.35938,-2.46875 1.39062,0 2.39062,1.125 2.39062,2.484375 v 0.01563 c 0,0.5 -0.125,0.953125 -0.34375,1.328125 l -0.90625,-0.8125 c -0.14062,-0.125 -0.25,-0.1875 -0.42187,-0.1875 -0.32813,0 -0.57813,0.28125 -0.57813,0.59375 0,0.21875 0.0781,0.359375 0.21875,0.484375 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11850"
d="m -924.99714,189.91793 c 0,0.28125 0.21875,0.5 0.5,0.5 0.26563,0 0.48438,-0.21875 0.48438,-0.5 v -1.82812 h 2.42187 c 0.25,0 0.4375,-0.20313 0.4375,-0.45313 0,-0.23437 -0.1875,-0.4375 -0.4375,-0.4375 h -2.42187 v -1.53125 h 2.78125 c 0.25,0 0.4375,-0.20312 0.4375,-0.45312 0,-0.25 -0.1875,-0.4375 -0.4375,-0.4375 h -3.26563 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11846"
d="m -919.64195,189.91793 c 0,0.28125 0.21875,0.5 0.5,0.5 0.26563,0 0.48438,-0.21875 0.48438,-0.5 v -1.5 h 1.23437 l 1.35938,1.73438 c 0.125,0.15625 0.26562,0.26562 0.48437,0.26562 0.25,0 0.46875,-0.1875 0.46875,-0.46875 0,-0.14062 -0.0625,-0.25 -0.15625,-0.375 l -1.0625,-1.34375 c 0.75,-0.23437 1.26563,-0.78125 1.26563,-1.67187 v -0.0156 c 0,-0.48437 -0.17188,-0.90625 -0.46875,-1.21875 -0.35938,-0.34375 -0.90625,-0.54687 -1.60938,-0.54687 h -2 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 z m 0.98438,-2.375 v -1.875 h 1.4375 c 0.71875,0 1.15625,0.32813 1.15625,0.92188 v 0.0156 c 0,0.57813 -0.45313,0.9375 -1.15625,0.9375 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11842"
d="m -913.13554,190.37106 h 3.29688 c 0.23437,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.20313,-0.4375 -0.4375,-0.4375 h -2.8125 v -1.51563 h 2.40625 c 0.25,0 0.4375,-0.1875 0.4375,-0.42187 0,-0.25 -0.1875,-0.45313 -0.4375,-0.45313 h -2.40625 v -1.45312 h 2.76562 c 0.25,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.1875,-0.4375 -0.4375,-0.4375 h -3.25 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 v 4.60938 c 0,0.28125 0.21875,0.5 0.5,0.5 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11838"
d="m -905.56609,190.46481 c 0.65625,0 1.23438,-0.1875 1.70313,-0.53125 l 0.40625,0.35937 c 0.0781,0.0937 0.20312,0.15625 0.34375,0.15625 0.25,0 0.45312,-0.21875 0.45312,-0.48437 0,-0.15625 -0.0625,-0.28125 -0.17187,-0.375 l -0.35938,-0.29688 c 0.35938,-0.48437 0.5625,-1.09375 0.5625,-1.71875 v -0.0156 c 0,-1.57813 -1.20312,-2.89063 -2.92187,-2.89063 -1.71875,0 -2.9375,1.32813 -2.9375,2.90625 v 0.0156 c 0,1.57812 1.20312,2.875 2.92187,2.875 z m 0.29688,-1.75 0.6875,0.57812 c -0.26563,0.17188 -0.59375,0.26563 -0.96875,0.26563 -1.10938,0 -1.90625,-0.90625 -1.90625,-1.98438 v -0.0156 c 0,-1.09375 0.78125,-1.98438 1.89062,-1.98438 1.10938,0 1.90625,0.90625 1.90625,2 v 0.0156 c 0,0.39062 -0.0937,0.75 -0.26562,1.0625 l -0.73438,-0.65625 c -0.10937,-0.0937 -0.1875,-0.14063 -0.34375,-0.14063 -0.25,0 -0.45312,0.21875 -0.45312,0.46875 0,0.17188 0.0625,0.28125 0.1875,0.39063 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11834"
d="m -896.4442,190.46481 c 0.90625,0 1.51562,-0.28125 2.04687,-0.75 0.0781,-0.0781 0.15625,-0.20313 0.15625,-0.35938 0,-0.23437 -0.21875,-0.45312 -0.46875,-0.45312 -0.125,0 -0.21875,0.0469 -0.29687,0.10937 -0.40625,0.34375 -0.8125,0.54688 -1.39063,0.54688 -1.07812,0 -1.85937,-0.89063 -1.85937,-1.98438 v -0.0156 c 0,-1.09375 0.78125,-1.98438 1.85937,-1.98438 0.53125,0 0.9375,0.20313 1.32813,0.51563 0.0625,0.0469 0.15625,0.0937 0.29687,0.0937 0.26563,0 0.48438,-0.21875 0.48438,-0.48438 0,-0.17187 -0.0781,-0.3125 -0.1875,-0.39062 -0.48438,-0.375 -1.0625,-0.64063 -1.92188,-0.64063 -1.70312,0 -2.89062,1.3125 -2.89062,2.90625 v 0.0156 c 0,1.60937 1.21875,2.875 2.84375,2.875 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11830"
d="m -890.73524,190.44918 h 0.0469 c 0.28125,0 0.46875,-0.15625 0.57812,-0.39062 l 1.96875,-4.64063 c 0.0156,-0.0625 0.0469,-0.14062 0.0469,-0.21875 0,-0.26562 -0.21875,-0.46875 -0.48438,-0.46875 -0.23437,0 -0.42187,0.15625 -0.48437,0.32813 l -1.64063,4.0625 -1.60937,-4.03125 c -0.0781,-0.21875 -0.25,-0.35938 -0.5,-0.35938 -0.28125,0 -0.5,0.21875 -0.5,0.48438 0,0.0781 0.0312,0.15625 0.0625,0.23437 l 1.95312,4.60938 c 0.10938,0.23437 0.28125,0.39062 0.5625,0.39062 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11826"
d="m -916.01314,127.52594 c 0,0.28125 0.21875,0.5 0.5,0.5 0.26562,0 0.48437,-0.21875 0.48437,-0.5 v -1.82812 h 2.42188 c 0.25,0 0.4375,-0.20313 0.4375,-0.45313 0,-0.23437 -0.1875,-0.4375 -0.4375,-0.4375 h -2.42188 v -1.53125 h 2.78125 c 0.25,0 0.4375,-0.20312 0.4375,-0.45312 0,-0.25 -0.1875,-0.4375 -0.4375,-0.4375 h -3.26562 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11822"
d="m -910.62266,127.52594 c 0,0.28125 0.20313,0.5 0.48438,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 v -4.70312 c 0,-0.26563 -0.21875,-0.48438 -0.5,-0.48438 -0.28125,0 -0.48438,0.21875 -0.48438,0.48438 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11818"
d="m -907.95314,127.54157 c 0,0.26562 0.21875,0.48437 0.48438,0.48437 0.26562,0 0.48437,-0.21875 0.48437,-0.48437 v -3.54688 l 2.875,3.71875 c 0.14063,0.17188 0.28125,0.29688 0.51563,0.29688 h 0.0469 c 0.26563,0 0.46875,-0.21875 0.46875,-0.48438 v -4.70312 c 0,-0.26563 -0.20312,-0.48438 -0.48437,-0.48438 -0.26563,0 -0.48438,0.21875 -0.48438,0.48438 v 3.4375 l -2.79687,-3.625 c -0.125,-0.17188 -0.26563,-0.28125 -0.51563,-0.28125 h -0.0937 c -0.28125,0 -0.5,0.21875 -0.5,0.48437 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11814"
d="m -900.89955,127.97907 h 3.29688 c 0.23437,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.20313,-0.4375 -0.4375,-0.4375 h -2.8125 v -1.51563 h 2.40625 c 0.25,0 0.4375,-0.1875 0.4375,-0.42187 0,-0.25 -0.1875,-0.45313 -0.4375,-0.45313 h -2.40625 v -1.45312 h 2.76562 c 0.25,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.1875,-0.4375 -0.4375,-0.4375 h -3.25 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 v 4.60938 c 0,0.28125 0.21875,0.5 0.5,0.5 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
style="fill:none;stroke:#000000;stroke-width:0.47927633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m -928.80083,245.32813 h 100.80079"
id="path25367"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path11810"
d="m -886.69651,27.23877 h 0.125 c 0.5,0 0.84375,-0.265625 1.03125,-0.71875 l 2.75,-6.578125 c 0.0469,-0.109375 0.0937,-0.265625 0.0937,-0.40625 0,-0.515625 -0.40625,-0.890625 -0.90625,-0.890625 -0.4375,0 -0.76563,0.28125 -0.89063,0.578125 l -2.125,5.5 -2.09375,-5.4375 c -0.14062,-0.375 -0.45312,-0.640625 -0.9375,-0.640625 -0.51562,0 -0.92187,0.390625 -0.92187,0.90625 0,0.15625 0.0469,0.296875 0.10937,0.453125 l 2.71875,6.515625 c 0.1875,0.453125 0.54688,0.71875 1.04688,0.71875 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11806"
d="m -877.6559,27.254395 c 1.34375,0 2.23438,-0.390625 3,-1.046875 0.15625,-0.15625 0.3125,-0.375 0.3125,-0.671875 0,-0.46875 -0.40625,-0.84375 -0.875,-0.84375 -0.21875,0 -0.40625,0.07813 -0.54687,0.203125 -0.53125,0.421875 -1.04688,0.65625 -1.82813,0.65625 -1.4375,0 -2.4375,-1.203125 -2.4375,-2.640625 v -0.01563 c 0,-1.4375 1.03125,-2.625 2.4375,-2.625 0.65625,0 1.20313,0.21875 1.71875,0.609375 0.14063,0.07813 0.29688,0.171875 0.54688,0.171875 0.51562,0 0.92187,-0.390625 0.92187,-0.890625 0,-0.328125 -0.17187,-0.59375 -0.35937,-0.734375 -0.70313,-0.515625 -1.54688,-0.859375 -2.8125,-0.859375 -2.57813,0 -4.375,1.953125 -4.375,4.34375 v 0.03125 c 0,2.40625 1.82812,4.3125 4.29687,4.3125 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11802"
d="m -872.65218,26.254395 c 0,0.515625 0.40625,0.9375 0.92188,0.9375 0.51562,0 0.92187,-0.421875 0.92187,-0.9375 V 23.86377 h 3.23438 c 0.46875,0 0.84375,-0.375 0.84375,-0.84375 0,-0.46875 -0.375,-0.84375 -0.84375,-0.84375 h -3.23438 v -1.78125 h 3.78125 c 0.46875,0 0.82813,-0.375 0.82813,-0.84375 0,-0.46875 -0.35938,-0.84375 -0.82813,-0.84375 h -4.70312 c -0.51563,0 -0.92188,0.421875 -0.92188,0.9375 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11798"
d="m -917.19441,302.9658 c 0,0.21875 0.1875,0.39062 0.40625,0.39062 0.21875,0 0.40625,-0.17187 0.40625,-0.39062 v -3.82813 c 0,-0.21875 -0.1875,-0.39062 -0.40625,-0.39062 -0.21875,0 -0.40625,0.17187 -0.40625,0.39062 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11794"
d="m -914.97276,302.9658 c 0,0.21875 0.1875,0.39062 0.40625,0.39062 0.21875,0 0.39062,-0.17187 0.39062,-0.39062 v -2.89063 l 2.34375,3.03125 c 0.10938,0.14063 0.21875,0.25 0.40625,0.25 h 0.0312 c 0.21875,0 0.39063,-0.1875 0.39063,-0.40625 v -3.8125 c 0,-0.21875 -0.17188,-0.39062 -0.39063,-0.39062 -0.21875,0 -0.39062,0.17187 -0.39062,0.39062 v 2.79688 l -2.28125,-2.95313 c -0.10938,-0.14062 -0.21875,-0.23437 -0.40625,-0.23437 h -0.0937 c -0.21875,0 -0.40625,0.1875 -0.40625,0.40625 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11790"
d="m -862.50444,189.87158 c 0,0.28125 0.21875,0.5 0.5,0.5 h 1.59375 c 1.75,0 2.96875,-1.21875 2.96875,-2.79688 v -0.0156 c 0,-1.57813 -1.21875,-2.78125 -2.96875,-2.78125 h -1.59375 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 z m 0.98437,-0.39063 v -3.8125 h 1.10938 c 1.17187,0 1.9375,0.8125 1.9375,1.90625 v 0.0156 c 0,1.09375 -0.76563,1.89062 -1.9375,1.89062 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11786"
d="m -856.07484,189.91845 c 0,0.28125 0.21875,0.5 0.5,0.5 0.26563,0 0.48438,-0.21875 0.48438,-0.5 v -1.5 h 1.23437 l 1.35938,1.73438 c 0.125,0.15625 0.26562,0.26562 0.48437,0.26562 0.25,0 0.46875,-0.1875 0.46875,-0.46875 0,-0.14062 -0.0625,-0.25 -0.15625,-0.375 l -1.0625,-1.34375 c 0.75,-0.23437 1.26563,-0.78125 1.26563,-1.67187 v -0.0156 c 0,-0.48437 -0.17188,-0.90625 -0.46875,-1.21875 -0.35938,-0.34375 -0.90625,-0.54687 -1.60938,-0.54687 h -2 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 z m 0.98438,-2.375 v -1.875 h 1.4375 c 0.71875,0 1.15625,0.32813 1.15625,0.92188 v 0.0156 c 0,0.57813 -0.45313,0.9375 -1.15625,0.9375 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11782"
d="m -850.03236,189.91845 c 0,0.28125 0.20312,0.5 0.48437,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 v -4.70312 c 0,-0.26563 -0.21875,-0.48438 -0.5,-0.48438 -0.28125,0 -0.48437,0.21875 -0.48437,0.48438 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11778"
d="m -845.30736,190.4497 h 0.0469 c 0.28125,0 0.46875,-0.15625 0.57813,-0.39062 l 1.96875,-4.64063 c 0.0156,-0.0625 0.0469,-0.14062 0.0469,-0.21875 0,-0.26562 -0.21875,-0.46875 -0.48437,-0.46875 -0.23438,0 -0.42188,0.15625 -0.48438,0.32813 l -1.64062,4.0625 -1.60938,-4.03125 c -0.0781,-0.21875 -0.25,-0.35938 -0.5,-0.35938 -0.28125,0 -0.5,0.21875 -0.5,0.48438 0,0.0781 0.0312,0.15625 0.0625,0.23437 l 1.95313,4.60938 c 0.10937,0.23437 0.28125,0.39062 0.5625,0.39062 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11774"
d="m -841.02284,190.37158 h 3.29688 c 0.23437,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.20313,-0.4375 -0.4375,-0.4375 h -2.8125 v -1.51563 h 2.40625 c 0.25,0 0.4375,-0.1875 0.4375,-0.42187 0,-0.25 -0.1875,-0.45313 -0.4375,-0.45313 h -2.40625 v -1.45312 h 2.76562 c 0.25,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.1875,-0.4375 -0.4375,-0.4375 h -3.25 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 v 4.60938 c 0,0.28125 0.21875,0.5 0.5,0.5 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11770"
d="m -857.66444,127.52644 c 0,0.28125 0.21875,0.5 0.5,0.5 0.26562,0 0.48437,-0.21875 0.48437,-0.5 v -1.5 h 1.23438 l 1.35937,1.73438 c 0.125,0.15625 0.26563,0.26562 0.48438,0.26562 0.25,0 0.46875,-0.1875 0.46875,-0.46875 0,-0.14062 -0.0625,-0.25 -0.15625,-0.375 l -1.0625,-1.34375 c 0.75,-0.23437 1.26562,-0.78125 1.26562,-1.67187 v -0.0156 c 0,-0.48437 -0.17187,-0.90625 -0.46875,-1.21875 -0.35937,-0.34375 -0.90625,-0.54687 -1.60937,-0.54687 h -2 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 z m 0.98437,-2.375 v -1.875 h 1.4375 c 0.71875,0 1.15625,0.32813 1.15625,0.92188 v 0.0156 c 0,0.57813 -0.45312,0.9375 -1.15625,0.9375 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11766"
d="m -851.15886,127.97957 h 3.29688 c 0.23437,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.20313,-0.4375 -0.4375,-0.4375 h -2.8125 v -1.51563 h 2.40625 c 0.25,0 0.4375,-0.1875 0.4375,-0.42187 0,-0.25 -0.1875,-0.45313 -0.4375,-0.45313 h -2.40625 v -1.45312 h 2.76562 c 0.25,0 0.4375,-0.1875 0.4375,-0.4375 0,-0.25 -0.1875,-0.4375 -0.4375,-0.4375 h -3.25 c -0.28125,0 -0.5,0.20312 -0.5,0.48437 v 4.60938 c 0,0.28125 0.21875,0.5 0.5,0.5 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
<path
inkscape:connector-curvature="0"
id="path11762"
d="m -844.1541,128.05769 c 1.17188,0 2,-0.625 2,-1.67187 v -0.0156 c 0,-0.92187 -0.60937,-1.34375 -1.79687,-1.64062 -1.07813,-0.25 -1.34375,-0.45313 -1.34375,-0.875 v -0.0156 c 0,-0.375 0.34375,-0.67187 0.92187,-0.67187 0.4375,0 0.84375,0.15625 1.28125,0.42187 0.0781,0.0469 0.15625,0.0781 0.26563,0.0781 0.25,0 0.45312,-0.20313 0.45312,-0.45313 0,-0.1875 -0.0937,-0.32812 -0.21875,-0.39062 -0.5,-0.34375 -1.0625,-0.53125 -1.76562,-0.53125 -1.10938,0 -1.92188,0.67187 -1.92188,1.625 v 0.0156 c 0,1.03125 0.67188,1.39063 1.875,1.67188 1.03125,0.25 1.26563,0.46875 1.26563,0.85937 v 0.0156 c 0,0.42187 -0.39063,0.70312 -1,0.70312 -0.60938,0 -1.10938,-0.20312 -1.5625,-0.57812 -0.0625,-0.0469 -0.15625,-0.0781 -0.29688,-0.0781 -0.25,0 -0.45312,0.20313 -0.45312,0.45313 0,0.15625 0.0781,0.29687 0.1875,0.375 0.625,0.46875 1.34375,0.70312 2.10937,0.70312 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91882312" />
</g>
</g>
</g>
</svg>

+ 0
- 587
vst2_bin/plugins/Fundamental/res__OLD/VCMixer.svg View File

@@ -1,587 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="50.799999mm"
height="128.4993mm"
viewBox="0 0 50.799999 128.4993"
version="1.1"
id="svg152160"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="VCMixer.svg">
<defs
id="defs152154" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="83.801231"
inkscape:cy="226.43862"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:window-width="1920"
inkscape:window-height="1200"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="0" />
<metadata
id="metadata152157">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-12.397619,10.666317)">
<path
inkscape:connector-curvature="0"
id="path120665"
d="M 12.491352,-10.57261 H 63.103919 V 117.74065 H 12.491352 Z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
id="path120667"
d="m 63.197619,-10.666317 h -50.8 V 117.83298 h 50.8 z M 63.010223,117.64695 H 12.58505 V -10.478903 h 50.425173 z m 0,0"
style="fill:#ababab;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
id="path120769"
d="m 60.638603,94.052183 c 0,-0.54984 -0.450604,-0.99908 -1.000442,-0.99908 h -7.681172 c -0.549838,0 -1.000477,0.44924 -1.000477,0.99908 v 12.173587 c 0,0.54983 0.450639,0.99908 1.000477,0.99908 h 7.681172 c 0.549838,0 1.000442,-0.44925 1.000442,-0.99908 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 19.025467,11.248622 c 0.25908,0 0.429965,-0.08268 0.578802,-0.214972 0.02752,-0.02205 0.0496,-0.06064 0.0496,-0.09922 0,-0.07166 -0.06615,-0.132291 -0.137795,-0.132291 -0.03316,0 -0.06064,0.01101 -0.08269,0.03306 -0.115746,0.09922 -0.231528,0.15434 -0.402378,0.15434 -0.303177,0 -0.529167,-0.259073 -0.529167,-0.573264 0,-0.314194 0.22599,-0.5677527 0.529167,-0.5677527 0.15434,0 0.27559,0.05512 0.385833,0.143316 0.01658,0.01654 0.0441,0.02755 0.08269,0.02755 0.07715,0 0.143298,-0.06064 0.143298,-0.1378051 0,-0.04961 -0.02752,-0.08819 -0.0551,-0.110243 -0.143333,-0.110243 -0.303177,-0.181899 -0.551215,-0.181899 -0.485069,0 -0.82684,0.374826 -0.82684,0.8268221 v 0.0055 c 0,0.463021 0.347274,0.826823 0.815798,0.826823 z m 0,0"
id="path155082" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="M 20.67442,11.243112 H 20.691 c 0.07715,0 0.132292,-0.0441 0.159844,-0.115757 l 0.567761,-1.3284267 c 0.0056,-0.01655 0.01093,-0.03859 0.01093,-0.06064 0,-0.07166 -0.06064,-0.132291 -0.137795,-0.132291 -0.06615,0 -0.115746,0.0441 -0.137795,0.08819 L 20.685392,10.862771 20.222371,9.7052193 c -0.02187,-0.06063 -0.07165,-0.09922 -0.143298,-0.09922 -0.08269,0 -0.143334,0.06064 -0.143334,0.137805 0,0.02205 0.0056,0.0441 0.01658,0.06615 l 0.562258,1.3174027 c 0.02752,0.07166 0.08266,0.115757 0.159843,0.115757 z m 0,0"
id="path155086" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 33.266823,7.4235163 c 0,0.09922 0.07715,0.176389 0.176389,0.176389 h 1.063836 c 0.0882,0 0.159844,-0.07166 0.159844,-0.159854 0,-0.08819 -0.07165,-0.15434 -0.159844,-0.15434 h -0.892986 v -1.504816 c 0,-0.09371 -0.07715,-0.170879 -0.17085,-0.170879 -0.09924,0 -0.176389,0.07717 -0.176389,0.170879 z m 0,0"
id="path155078" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 35.237052,7.5999053 h 1.163037 c 0.08269,0 0.15434,-0.06615 0.15434,-0.15434 0,-0.08819 -0.07165,-0.15434 -0.15434,-0.15434 h -0.992187 v -0.534681 h 0.848889 c 0.08819,0 0.15434,-0.06615 0.15434,-0.148826 0,-0.0882 -0.06615,-0.159854 -0.15434,-0.159854 h -0.848889 v -0.512629 h 0.975677 c 0.0882,0 0.15434,-0.06615 0.15434,-0.15434 0,-0.08819 -0.06614,-0.15434 -0.15434,-0.15434 h -1.146527 c -0.09924,0 -0.176389,0.07166 -0.176389,0.170875 v 1.626086 c 0,0.09922 0.07715,0.176389 0.176389,0.176389 z m 0,0"
id="path155074" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 37.80478,7.6274643 h 0.01658 c 0.09924,0 0.165382,-0.05512 0.203976,-0.137802 l 0.694514,-1.637111 c 0.0056,-0.02205 0.01658,-0.04961 0.01658,-0.07717 0,-0.0937 -0.07719,-0.165365 -0.170885,-0.165365 -0.08269,0 -0.148837,0.05512 -0.170886,0.115757 l -0.578767,1.43316 -0.56776,-1.422135 c -0.02752,-0.07717 -0.0882,-0.126782 -0.176389,-0.126782 -0.0992,0 -0.176389,0.07717 -0.176389,0.170879 0,0.02755 0.01093,0.05512 0.02187,0.08268 l 0.689045,1.626087 c 0.03856,0.08268 0.0992,0.137802 0.198438,0.137802 z m 0,0"
id="path155070" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 39.315973,7.5999053 h 1.163039 c 0.08269,0 0.15434,-0.06615 0.15434,-0.15434 0,-0.08819 -0.07165,-0.15434 -0.15434,-0.15434 h -0.992187 v -0.534681 h 0.848889 c 0.08819,0 0.154339,-0.06615 0.154339,-0.148826 0,-0.0882 -0.06615,-0.159854 -0.154339,-0.159854 h -0.848889 v -0.512629 h 0.975677 c 0.08819,0 0.15434,-0.06615 0.15434,-0.15434 0,-0.08819 -0.06615,-0.15434 -0.15434,-0.15434 h -1.146529 c -0.09924,0 -0.176387,0.07166 -0.176387,0.170875 v 1.626086 c 0,0.09922 0.07715,0.176389 0.176387,0.176389 z m 0,0"
id="path155066" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 41.088329,7.4235163 c 0,0.09922 0.07715,0.176389 0.17639,0.176389 h 1.063837 c 0.08819,0 0.159842,-0.07166 0.159842,-0.159854 0,-0.08819 -0.07165,-0.15434 -0.159842,-0.15434 h -0.892988 v -1.504816 c 0,-0.09371 -0.07715,-0.170879 -0.170849,-0.170879 -0.09924,0 -0.17639,0.07717 -0.17639,0.170879 z m 0,0"
id="path155062" />
<path
inkscape:connector-curvature="0"
id="path125809"
d="M 19.797697,16.844838 H 55.797575"
style="fill:none;stroke:#000000;stroke-width:0.23495001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path125811"
d="m 60.638603,8.9569463 c 0,-0.549836 -0.450604,-0.999077 -1.000442,-0.999077 h -7.681172 c -0.549838,0 -1.000477,0.449241 -1.000477,0.999077 V 21.130535 c 0,0.549839 0.450639,0.999078 1.000477,0.999078 h 7.681172 c 0.549838,0 1.000442,-0.449239 1.000442,-0.999078 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 53.729486,10.885494 c 0,0.09922 0.07715,0.170878 0.170886,0.170878 0.0992,0 0.176387,-0.07166 0.176387,-0.170878 v -0.79375 l 0.303144,0.468535 c 0.03859,0.05512 0.08269,0.08819 0.148836,0.08819 0.06064,0 0.110244,-0.03305 0.143333,-0.08819 l 0.308681,-0.479559 v 0.799264 c 0,0.09922 0.08266,0.176388 0.17639,0.176388 0.0992,0 0.176387,-0.07717 0.176387,-0.176388 V 9.6066743 c 0,-0.09922 -0.07719,-0.176388 -0.176387,-0.176388 h -0.0386 c -0.07165,0 -0.121285,0.03305 -0.159842,0.08819 l -0.424463,0.7000447 -0.42993,-0.6945307 c -0.03316,-0.05512 -0.08269,-0.09371 -0.159845,-0.09371 h -0.03859 c -0.09924,0 -0.17639,0.07717 -0.17639,0.176388 z m 0,0"
id="path155058" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 55.817578,10.879984 c 0,0.09922 0.07715,0.176388 0.176389,0.176388 0.0992,0 0.176387,-0.07717 0.176387,-0.176388 V 9.6011643 c 0,-0.09922 -0.07719,-0.176389 -0.176387,-0.176389 -0.09924,0 -0.176389,0.07717 -0.176389,0.176389 z m 0,0"
id="path155050" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 56.536046,10.896518 c 0,0.09922 0.08269,0.159854 0.159842,0.159854 0.07719,0 0.126789,-0.03305 0.170887,-0.09371 l 0.374824,-0.485069 0.374828,0.496093 c 0.0441,0.05512 0.08819,0.08268 0.165346,0.08268 0.09924,0 0.170886,-0.07166 0.170886,-0.170878 0,-0.04961 -0.02188,-0.09922 -0.0496,-0.132292 L 57.467592,10.22403 57.875508,9.7224263 c 0.03856,-0.0441 0.0551,-0.08269 0.0551,-0.132292 0,-0.09922 -0.08269,-0.165365 -0.159845,-0.165365 -0.07719,0 -0.126788,0.03858 -0.170884,0.09922 l -0.347276,0.457507 -0.352777,-0.468531 c -0.0441,-0.05512 -0.08819,-0.08819 -0.165346,-0.08819 -0.09924,0 -0.170886,0.07717 -0.170886,0.176389 0,0.04961 0.02188,0.0937 0.0496,0.132292 l 0.407916,0.4960927 -0.429966,0.529167 c -0.03856,0.0441 -0.0551,0.0882 -0.0551,0.137802 z m 0,0"
id="path155054" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 31.117736,-1.3933254 c 0,0.1763887 0.13783,0.3197047 0.314219,0.3197047 0.176389,0 0.319687,-0.143316 0.319687,-0.3197047 v -1.4717448 l 0.567761,0.8654079 c 0.06615,0.104731 0.148837,0.1653645 0.270086,0.1653645 0.115747,0 0.203941,-0.060633 0.270087,-0.1653645 l 0.573264,-0.8819444 v 1.4772569 c 0,0.181901 0.143334,0.3307291 0.319723,0.3307291 0.181892,0 0.325225,-0.1488281 0.325225,-0.3307291 V -3.758039 c 0,-0.181901 -0.143333,-0.3252171 -0.325225,-0.3252171 h -0.07165 c -0.132291,0 -0.226024,0.055122 -0.29217,0.1653646 l -0.79375,1.2898437 -0.788211,-1.2843314 c -0.05514,-0.099219 -0.154341,-0.1708769 -0.292171,-0.1708769 h -0.07165 c -0.181892,0 -0.325226,0.1433161 -0.325226,0.3252171 z m 0,0"
id="path155042" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 34.862225,-1.4043498 c 0,0.181901 0.143298,0.3307291 0.325191,0.3307291 0.181927,0 0.325225,-0.1488281 0.325225,-0.3307291 v -2.3592013 c 0,-0.181901 -0.143298,-0.3252171 -0.325225,-0.3252171 -0.181893,0 -0.325191,0.1433161 -0.325191,0.3252171 z m 0,0"
id="path155046" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 36.075992,-1.376789 c 0,0.1874131 0.154341,0.3031683 0.297639,0.3031683 0.143333,0 0.231528,-0.066146 0.319722,-0.181901 l 0.683507,-0.8929688 0.694514,0.9095052 c 0.08269,0.1102432 0.159879,0.1653646 0.303177,0.1653646 0.181892,0 0.319723,-0.143316 0.319723,-0.3252171 0,-0.093706 -0.0441,-0.1763887 -0.09924,-0.2425345 l -0.79375,-0.9756511 0.755156,-0.9205296 c 0.06064,-0.082682 0.09373,-0.1598522 0.09373,-0.2535589 0,-0.181901 -0.148837,-0.2976563 -0.29217,-0.2976563 -0.148802,0 -0.231493,0.060634 -0.319687,0.176389 l -0.644907,0.8488715 -0.644949,-0.8654079 c -0.08266,-0.1047311 -0.165347,-0.1598526 -0.303142,-0.1598526 -0.187431,0 -0.319722,0.1378038 -0.319722,0.3197048 0,0.093707 0.0441,0.176389 0.0937,0.2425348 l 0.755191,0.9205296 -0.799289,0.9811631 c -0.06615,0.07717 -0.0992,0.1543402 -0.0992,0.2480469 z m 0,0"
id="path155038" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 39.57777,-1.1011815 h 1.659149 c 0.165383,0 0.292172,-0.1267794 0.292172,-0.2866319 0,-0.1598525 -0.126789,-0.2921442 -0.292172,-0.2921442 h -1.339426 v -0.6228731 h 1.129982 c 0.159843,0 0.292134,-0.1267796 0.292134,-0.2866318 0,-0.1653646 -0.132291,-0.2921442 -0.292134,-0.2921442 h -1.129982 v -0.6008246 h 1.322916 c 0.159843,0 0.292135,-0.1267796 0.292135,-0.2921441 0,-0.1598526 -0.132292,-0.2921442 -0.292135,-0.2921442 H 39.57777 c -0.181893,0 -0.325226,0.1488281 -0.325226,0.3307291 v 2.3095921 c 0,0.1819011 0.143333,0.3252169 0.325226,0.3252169 z m 0,0"
id="path155030" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 42.131176,-1.4043498 c 0,0.181901 0.143333,0.3307291 0.325226,0.3307291 0.181891,0 0.325226,-0.1488281 0.325226,-0.3307291 v -0.6449219 h 0.518123 l 0.633907,0.8047744 c 0.07719,0.099219 0.17639,0.1708766 0.325226,0.1708766 0.15434,0 0.308682,-0.1212672 0.308682,-0.3031683 0,-0.099219 -0.0441,-0.1708769 -0.104741,-0.2480469 l -0.45198,-0.5512152 c 0.358283,-0.1488281 0.589775,-0.4354602 0.589775,-0.9039931 v -0.00551 c 0,-0.2811198 -0.08819,-0.5126302 -0.253542,-0.6779948 -0.192934,-0.1929293 -0.485069,-0.3031722 -0.865399,-0.3031722 h -1.025277 c -0.181893,0 -0.325226,0.1488281 -0.325226,0.3307291 z m 0.650452,-1.2181856 v -0.8543838 h 0.644911 c 0.319723,0 0.512623,0.1433161 0.512623,0.4244359 v 0.00551 c 0,0.2535589 -0.181893,0.4244356 -0.496076,0.4244356 z m 0,0"
id="path155034" />
<path
inkscape:connector-curvature="0"
id="path125847"
d="m 24.638761,94.052183 c 0,-0.54984 -0.450639,-0.99908 -1.000478,-0.99908 h -7.681171 c -0.54984,0 -1.000478,0.44924 -1.000478,0.99908 v 12.173587 c 0,0.54983 0.450638,0.99908 1.000478,0.99908 h 7.681171 c 0.549839,0 1.000478,-0.44925 1.000478,-0.99908 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 18.158692,96.168153 c 0.25908,0 0.42993,-0.0772 0.573263,-0.20394 0.03316,-0.0276 0.06064,-0.0717 0.06064,-0.12127 0,-0.0937 -0.07719,-0.16537 -0.165382,-0.16537 -0.0441,0 -0.07715,0.0165 -0.104739,0.0386 -0.104705,0.0827 -0.198438,0.12678 -0.352778,0.12678 -0.270087,0 -0.463021,-0.23151 -0.463021,-0.50712 0,-0.27561 0.192934,-0.5016 0.463021,-0.5016 0.126788,0 0.231528,0.0386 0.330729,0.11575 0.02752,0.0165 0.05514,0.0331 0.10474,0.0331 0.09924,0 0.176389,-0.0772 0.176389,-0.17088 0,-0.0662 -0.03316,-0.11576 -0.07165,-0.14332 -0.132292,-0.0992 -0.292136,-0.15985 -0.53467,-0.15985 -0.496112,0 -0.837848,0.37483 -0.837848,0.82682 v 0.006 c 0,0.46302 0.352778,0.82682 0.821302,0.82682 z m 0,0"
id="path155026" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 19.173316,95.975233 c 0,0.0992 0.07715,0.17639 0.176389,0.17639 0.0992,0 0.176389,-0.0772 0.176389,-0.17639 v -0.47956 h 0.650416 v 0.47956 c 0,0.0992 0.07719,0.17639 0.176389,0.17639 0.09924,0 0.176389,-0.0772 0.176389,-0.17639 v -1.27882 c 0,-0.0992 -0.07715,-0.17639 -0.176389,-0.17639 -0.0992,0 -0.176389,0.0772 -0.176389,0.17639 v 0.47405 h -0.650416 v -0.47405 c 0,-0.0992 -0.07719,-0.17639 -0.176389,-0.17639 -0.09924,0 -0.176389,0.0772 -0.176389,0.17639 z m 0,0"
id="path155014" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d=""
id="path155018" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 21.818937,95.980743 c 0,0.0937 0.07715,0.17088 0.176389,0.17088 0.0937,0 0.17085,-0.0772 0.17085,-0.17088 v -1.29535 c 0,-0.0937 -0.07715,-0.17088 -0.17085,-0.17088 h -0.0056 c -0.0496,0 -0.0992,0.011 -0.165347,0.0276 l -0.225989,0.0661 c -0.07168,0.022 -0.121285,0.0827 -0.121285,0.15434 0,0.0827 0.07165,0.14882 0.15434,0.14882 0.02187,0 0.0441,-0.005 0.06615,-0.011 l 0.121285,-0.0275 z m 0,0"
id="path155022" />
<path
inkscape:connector-curvature="0"
id="path125861"
d="m 36.638708,94.052183 c 0,-0.54984 -0.450638,-0.99908 -1.000478,-0.99908 h -7.681171 c -0.549839,0 -1.000443,0.44924 -1.000443,0.99908 v 12.173587 c 0,0.54983 0.450604,0.99908 1.000443,0.99908 h 7.681171 c 0.54984,0 1.000478,-0.44925 1.000478,-0.99908 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 29.928522,96.168153 c 0.25908,0 0.42993,-0.0772 0.573264,-0.20394 0.03316,-0.0276 0.06064,-0.0717 0.06064,-0.12127 0,-0.0937 -0.07719,-0.16537 -0.165382,-0.16537 -0.0441,0 -0.07715,0.0165 -0.104739,0.0386 -0.104705,0.0827 -0.198438,0.12678 -0.352778,0.12678 -0.270087,0 -0.463021,-0.23151 -0.463021,-0.50712 0,-0.27561 0.192934,-0.5016 0.463021,-0.5016 0.126788,0 0.231528,0.0386 0.330729,0.11575 0.02752,0.0165 0.05514,0.0331 0.10474,0.0331 0.09924,0 0.176389,-0.0772 0.176389,-0.17088 0,-0.0662 -0.03316,-0.11576 -0.07165,-0.14332 -0.132291,-0.0992 -0.292135,-0.15985 -0.53467,-0.15985 -0.496111,0 -0.837847,0.37483 -0.837847,0.82682 v 0.006 c 0,0.46302 0.352778,0.82682 0.821302,0.82682 z m 0,0"
id="path155010" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 30.943146,95.975233 c 0,0.0992 0.07715,0.17639 0.176389,0.17639 0.0992,0 0.176389,-0.0772 0.176389,-0.17639 v -0.47956 h 0.650416 v 0.47956 c 0,0.0992 0.07719,0.17639 0.176389,0.17639 0.09924,0 0.176389,-0.0772 0.176389,-0.17639 v -1.27882 c 0,-0.0992 -0.07715,-0.17639 -0.176389,-0.17639 -0.0992,0 -0.176389,0.0772 -0.176389,0.17639 v 0.47405 h -0.650416 v -0.47405 c 0,-0.0992 -0.07719,-0.17639 -0.176389,-0.17639 -0.09924,0 -0.176389,0.0772 -0.176389,0.17639 z m 0,0"
id="path154998" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d=""
id="path155002" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 33.280087,95.975233 c 0,0.10473 0.07715,0.16537 0.187396,0.16537 h 0.870938 c 0.08819,0 0.15434,-0.0662 0.15434,-0.14883 0,-0.0882 -0.06615,-0.15434 -0.15434,-0.15434 h -0.556754 l 0.25908,-0.20395 c 0.286632,-0.22049 0.424427,-0.35278 0.424427,-0.62288 v -0.005 c 0,-0.29766 -0.220486,-0.49058 -0.551216,-0.49058 -0.242534,0 -0.396875,0.0827 -0.523628,0.23151 -0.02752,0.0331 -0.0441,0.0717 -0.0441,0.11024 0,0.0937 0.07165,0.16537 0.159844,0.16537 0.0551,0 0.0992,-0.0276 0.12125,-0.0551 0.08819,-0.0937 0.159878,-0.1378 0.264583,-0.1378 0.121285,0 0.214983,0.0717 0.214983,0.20946 0,0.13229 -0.07715,0.22049 -0.281129,0.38585 l -0.451979,0.37483 c -0.06064,0.0441 -0.0937,0.10473 -0.0937,0.17639 z m 0,0"
id="path155006" />
<path
inkscape:connector-curvature="0"
id="path125875"
d="m 48.638656,94.052183 c 0,-0.54984 -0.450603,-0.99908 -1.000442,-0.99908 h -7.681209 c -0.549838,0 -1.000442,0.44924 -1.000442,0.99908 v 12.173587 c 0,0.54983 0.450604,0.99908 1.000442,0.99908 h 7.681209 c 0.549839,0 1.000442,-0.44925 1.000442,-0.99908 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 41.938454,96.168153 c 0.25908,0 0.429929,-0.0772 0.573262,-0.20394 0.03316,-0.0276 0.06064,-0.0717 0.06064,-0.12127 0,-0.0937 -0.07719,-0.16537 -0.165381,-0.16537 -0.0441,0 -0.07715,0.0165 -0.10474,0.0386 -0.104704,0.0827 -0.198438,0.12678 -0.352777,0.12678 -0.270087,0 -0.463021,-0.23151 -0.463021,-0.50712 0,-0.27561 0.192934,-0.5016 0.463021,-0.5016 0.126788,0 0.231526,0.0386 0.330729,0.11575 0.02752,0.0165 0.05514,0.0331 0.104738,0.0331 0.09924,0 0.17639,-0.0772 0.17639,-0.17088 0,-0.0662 -0.03316,-0.11576 -0.07165,-0.14332 -0.132291,-0.0992 -0.292134,-0.15985 -0.53467,-0.15985 -0.496112,0 -0.837848,0.37483 -0.837848,0.82682 v 0.006 c 0,0.46302 0.35278,0.82682 0.821304,0.82682 z m 0,0"
id="path154994" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 42.953078,95.975233 c 0,0.0992 0.07715,0.17639 0.176387,0.17639 0.0992,0 0.17639,-0.0772 0.17639,-0.17639 v -0.47956 h 0.650417 v 0.47956 c 0,0.0992 0.07719,0.17639 0.176387,0.17639 0.09924,0 0.17639,-0.0772 0.17639,-0.17639 v -1.27882 c 0,-0.0992 -0.07715,-0.17639 -0.17639,-0.17639 -0.0992,0 -0.176387,0.0772 -0.176387,0.17639 v 0.47405 h -0.650417 v -0.47405 c 0,-0.0992 -0.07719,-0.17639 -0.17639,-0.17639 -0.09923,0 -0.176387,0.0772 -0.176387,0.17639 z m 0,0"
id="path154986" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d=""
id="path154990" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 45.912848,96.168153 c 0.374827,0 0.584271,-0.21497 0.584271,-0.5016 v -0.005 c 0,-0.18742 -0.104706,-0.28112 -0.253542,-0.34727 0.12125,-0.0661 0.209444,-0.17638 0.209444,-0.36931 v -0.006 c 0,-0.25355 -0.225989,-0.42994 -0.573265,-0.42994 -0.220485,0 -0.363783,0.0772 -0.490572,0.19843 -0.02752,0.0276 -0.0496,0.0717 -0.0496,0.11576 0,0.0882 0.07715,0.15985 0.165348,0.15985 0.04964,0 0.08269,-0.0165 0.110242,-0.0441 0.07719,-0.0661 0.154342,-0.11575 0.25908,-0.11575 0.148838,0 0.231529,0.0717 0.231529,0.17088 v 0.005 c 0,0.10473 -0.08269,0.18741 -0.248074,0.18741 h -0.0551 c -0.07719,0 -0.143333,0.0662 -0.143333,0.14332 0,0.0827 0.06615,0.14883 0.143333,0.14883 h 0.0441 c 0.192934,0 0.303178,0.0606 0.303178,0.1819 0,0.11575 -0.08269,0.19292 -0.237032,0.19292 -0.132292,0 -0.237033,-0.0496 -0.33073,-0.12126 -0.02188,-0.022 -0.06064,-0.0331 -0.09924,-0.0331 -0.0937,0 -0.165346,0.0717 -0.165346,0.16537 0,0.0606 0.02752,0.0992 0.06615,0.12677 0.137795,0.11025 0.319688,0.17639 0.529167,0.17639 z m 0,0"
id="path154982" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 53.853171,96.168153 c 0.25908,0 0.429929,-0.0772 0.573262,-0.20394 0.03316,-0.0276 0.06064,-0.0717 0.06064,-0.12127 0,-0.0937 -0.07719,-0.16537 -0.16538,-0.16537 -0.0441,0 -0.07715,0.0165 -0.104741,0.0386 -0.104703,0.0827 -0.198437,0.12678 -0.352777,0.12678 -0.270086,0 -0.463021,-0.23151 -0.463021,-0.50712 0,-0.27561 0.192935,-0.5016 0.463021,-0.5016 0.126789,0 0.231527,0.0386 0.330729,0.11575 0.02752,0.0165 0.05514,0.0331 0.104738,0.0331 0.09924,0 0.17639,-0.0772 0.17639,-0.17088 0,-0.0662 -0.03316,-0.11576 -0.07165,-0.14332 -0.132292,-0.0992 -0.292134,-0.15985 -0.53467,-0.15985 -0.496112,0 -0.837848,0.37483 -0.837848,0.82682 v 0.006 c 0,0.46302 0.352779,0.82682 0.821304,0.82682 z m 0,0"
id="path154978" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 54.867795,95.975233 c 0,0.0992 0.07715,0.17639 0.176387,0.17639 0.0992,0 0.17639,-0.0772 0.17639,-0.17639 v -0.47956 h 0.650417 v 0.47956 c 0,0.0992 0.07719,0.17639 0.176387,0.17639 0.09924,0 0.17639,-0.0772 0.17639,-0.17639 v -1.27882 c 0,-0.0992 -0.07715,-0.17639 -0.17639,-0.17639 -0.0992,0 -0.176387,0.0772 -0.176387,0.17639 v 0.47405 h -0.650417 v -0.47405 c 0,-0.0992 -0.07719,-0.17639 -0.17639,-0.17639 -0.09924,0 -0.176387,0.0772 -0.176387,0.17639 z m 0,0"
id="path154966" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d=""
id="path154970" />
<path
inkscape:connector-curvature="0"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 58.020533,95.986263 c 0,0.0937 0.07165,0.16536 0.165348,0.16536 0.0937,0 0.170884,-0.0717 0.170884,-0.16536 v -0.19293 h 0.08269 c 0.08266,0 0.143298,-0.0606 0.143298,-0.14332 0,-0.0772 -0.06064,-0.14331 -0.143298,-0.14331 h -0.08269 v -0.82683 c 0,-0.0937 -0.07719,-0.17087 -0.170884,-0.17087 -0.10474,0 -0.154342,0.0441 -0.220487,0.12127 l -0.694513,0.81028 c -0.05514,0.0606 -0.08269,0.11576 -0.08269,0.19293 0,0.0937 0.07715,0.15985 0.170883,0.15985 h 0.661459 z m -0.429964,-0.47956 0.429964,-0.50161 v 0.50161 z m 0,0"
id="path154974" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 17.914287,65.823444 c 0,0.07717 0.06615,0.137806 0.143334,0.137806 0.07715,0 0.143298,-0.06064 0.143298,-0.137806 v -1.350476 c 0,-0.07717 -0.06615,-0.137805 -0.143298,-0.137805 -0.07719,0 -0.143334,0.06064 -0.143334,0.137805 z m 0,0"
id="path154962" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 18.698512,65.823444 c 0,0.07717 0.06615,0.137806 0.143334,0.137806 0.07715,0 0.137795,-0.06064 0.137795,-0.137806 v -1.019746 l 0.82684,1.069358 c 0.03856,0.04961 0.07715,0.08819 0.143299,0.08819 h 0.01093 c 0.07715,0 0.137795,-0.06615 0.137795,-0.143315 v -1.344967 c 0,-0.07717 -0.06064,-0.137805 -0.137795,-0.137805 -0.07719,0 -0.137831,0.06064 -0.137831,0.137805 v 0.986674 l -0.804756,-1.04179 c -0.03859,-0.04961 -0.07719,-0.08269 -0.143334,-0.08269 h -0.03316 c -0.07719,0 -0.143334,0.06615 -0.143334,0.143317 z m 0,0"
id="path154950" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d=""
id="path154954" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 21.401884,65.823444 c 0,0.07717 0.06615,0.137806 0.13783,0.137806 0.08266,0 0.143298,-0.06064 0.143298,-0.137806 v -1.361498 c 0,-0.07717 -0.06064,-0.137806 -0.143298,-0.137806 -0.0441,0 -0.08269,0.01101 -0.13783,0.02755 l -0.242535,0.07717 c -0.06061,0.01654 -0.0992,0.06063 -0.0992,0.121267 0,0.06063 0.06064,0.115752 0.126788,0.115752 0.01093,0 0.03316,0 0.0496,-0.0055 l 0.165347,-0.04961 z m 0,0"
id="path154958" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 18.227801,80.928507 c 0.25908,0 0.429965,-0.08268 0.578802,-0.214972 0.02752,-0.02204 0.0496,-0.06063 0.0496,-0.09922 0,-0.07166 -0.06615,-0.132292 -0.137795,-0.132292 -0.03316,0 -0.06064,0.01101 -0.08269,0.03305 -0.115746,0.09922 -0.231528,0.154342 -0.402378,0.154342 -0.303177,0 -0.529167,-0.259074 -0.529167,-0.573264 0,-0.314196 0.22599,-0.567754 0.529167,-0.567754 0.15434,0 0.27559,0.05512 0.385833,0.143317 0.01658,0.01654 0.0441,0.02755 0.08269,0.02755 0.07715,0 0.143299,-0.06064 0.143299,-0.137806 0,-0.04961 -0.02752,-0.08819 -0.0551,-0.110244 -0.143334,-0.110241 -0.303177,-0.181898 -0.551216,-0.181898 -0.485069,0 -0.82684,0.374827 -0.82684,0.826823 v 0.0055 c 0,0.463021 0.347274,0.826823 0.815799,0.826823 z m 0,0"
id="path154946" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 19.877037,80.922998 h 0.01658 c 0.07715,0 0.132292,-0.0441 0.159843,-0.115758 l 0.567761,-1.328428 c 0.0056,-0.01654 0.01093,-0.03859 0.01093,-0.06063 0,-0.07166 -0.06064,-0.132292 -0.137795,-0.132292 -0.06615,0 -0.115746,0.0441 -0.137795,0.08819 l -0.468559,1.168577 -0.46302,-1.157552 c -0.02187,-0.06063 -0.07165,-0.09922 -0.143299,-0.09922 -0.08269,0 -0.143334,0.06063 -0.143334,0.137806 0,0.02204 0.0056,0.0441 0.01658,0.06615 l 0.562258,1.317403 c 0.02752,0.07166 0.08266,0.115758 0.159843,0.115758 z m 0,0"
id="path154934" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d=""
id="path154938" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 21.821301,80.774167 c 0,0.07717 0.06615,0.137806 0.137795,0.137806 0.08269,0 0.143298,-0.06063 0.143298,-0.137806 v -1.361501 c 0,-0.07717 -0.06061,-0.137805 -0.143298,-0.137805 -0.0441,0 -0.08269,0.01101 -0.137795,0.02755 l -0.242535,0.07717 c -0.06064,0.01654 -0.09924,0.06063 -0.09924,0.121269 0,0.06063 0.06064,0.115753 0.126789,0.115753 0.01093,0 0.03316,0 0.0496,-0.0055 l 0.165382,-0.04961 z m 0,0"
id="path154942" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 29.666197,65.823444 c 0,0.07717 0.06614,0.137806 0.143333,0.137806 0.07715,0 0.143298,-0.06064 0.143298,-0.137806 v -1.350476 c 0,-0.07717 -0.06615,-0.137805 -0.143298,-0.137805 -0.07719,0 -0.143333,0.06064 -0.143333,0.137805 z m 0,0"
id="path154930" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 30.450422,65.823444 c 0,0.07717 0.06614,0.137806 0.143333,0.137806 0.07715,0 0.137795,-0.06064 0.137795,-0.137806 v -1.019746 l 0.826841,1.069358 c 0.03856,0.04961 0.07715,0.08819 0.143298,0.08819 h 0.01093 c 0.07715,0 0.137795,-0.06615 0.137795,-0.143315 v -1.344967 c 0,-0.07717 -0.06064,-0.137805 -0.137795,-0.137805 -0.07719,0 -0.13783,0.06064 -0.13783,0.137805 v 0.986674 l -0.804757,-1.041794 c -0.03859,-0.04961 -0.07719,-0.08268 -0.143333,-0.08268 h -0.03316 c -0.07719,0 -0.143334,0.06615 -0.143334,0.143317 z m 0,0"
id="path154918" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d=""
id="path154922" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 32.845112,65.817935 c 0,0.08268 0.06615,0.132292 0.148837,0.132292 h 0.909497 c 0.07168,0 0.126788,-0.05512 0.126788,-0.121269 0,-0.07166 -0.0551,-0.12678 -0.126788,-0.12678 h -0.650417 l 0.330729,-0.275609 c 0.286632,-0.23151 0.418924,-0.369311 0.418924,-0.622871 0,-0.286631 -0.214983,-0.479558 -0.529167,-0.479558 -0.253576,0 -0.402378,0.09371 -0.53467,0.259072 -0.01658,0.02204 -0.02752,0.05512 -0.02752,0.08268 0,0.07166 0.05514,0.132292 0.126788,0.132292 0.0441,0 0.07719,-0.02204 0.09924,-0.0441 0.0992,-0.121269 0.187396,-0.181901 0.314184,-0.181901 0.148837,0 0.25908,0.0937 0.25908,0.253561 0,0.143314 -0.07719,0.248044 -0.297674,0.429948 l -0.496076,0.418923 c -0.04964,0.0441 -0.07168,0.08819 -0.07168,0.143316 z m 0,0"
id="path154926" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 41.670378,65.823444 c 0,0.07717 0.06615,0.137806 0.143333,0.137806 0.07715,0 0.143298,-0.06064 0.143298,-0.137806 v -1.350476 c 0,-0.07717 -0.06615,-0.137805 -0.143298,-0.137805 -0.07719,0 -0.143333,0.06064 -0.143333,0.137805 z m 0,0"
id="path154914" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 42.454566,65.823444 c 0,0.07717 0.06615,0.137806 0.143335,0.137806 0.07715,0 0.137795,-0.06064 0.137795,-0.137806 v -1.019746 l 0.826839,1.069358 c 0.03856,0.04961 0.07715,0.08819 0.143299,0.08819 h 0.01093 c 0.07715,0 0.137795,-0.06615 0.137795,-0.143315 v -1.344967 c 0,-0.07717 -0.06064,-0.137805 -0.137795,-0.137805 -0.07719,0 -0.137832,0.06064 -0.137832,0.137805 v 0.986674 l -0.804757,-1.041794 c -0.03859,-0.04961 -0.07719,-0.08268 -0.143333,-0.08268 h -0.03315 c -0.07719,0 -0.143336,0.06615 -0.143336,0.143317 z m 0,0"
id="path154906" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d=""
id="path154910" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 45.461116,65.977786 c 0.358315,0 0.573263,-0.209463 0.573263,-0.485071 v -0.0055 c 0,-0.192927 -0.121248,-0.297657 -0.281094,-0.358291 0.132292,-0.06615 0.236998,-0.17639 0.236998,-0.380336 0,-0.24805 -0.220488,-0.429948 -0.551217,-0.429948 -0.225988,0 -0.374825,0.08268 -0.496075,0.214971 -0.02752,0.02204 -0.0441,0.06064 -0.0441,0.09371 0,0.07166 0.06064,0.132291 0.132291,0.132291 0.0441,0 0.06615,-0.01654 0.0882,-0.03859 0.0937,-0.0937 0.187393,-0.148826 0.314182,-0.148826 0.170886,0 0.275627,0.08819 0.275627,0.214971 v 0.0055 c 0,0.137803 -0.115782,0.23151 -0.303178,0.23151 h -0.07165 c -0.06615,0 -0.121285,0.05512 -0.121285,0.115755 0,0.06615 0.05514,0.121267 0.121285,0.121267 h 0.06615 c 0.220486,0 0.352777,0.07717 0.352777,0.225999 0,0.143317 -0.110241,0.237022 -0.286631,0.237022 -0.154339,0 -0.275624,-0.06063 -0.374827,-0.15434 -0.02188,-0.01654 -0.04964,-0.02755 -0.08819,-0.02755 -0.07168,0 -0.132291,0.05512 -0.132291,0.132291 0,0.0441 0.02188,0.07717 0.0551,0.10473 0.137795,0.121267 0.319723,0.198438 0.53467,0.198438 z m 0,0"
id="path154902" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 53.587423,65.823444 c 0,0.07717 0.06615,0.137806 0.143333,0.137806 0.07715,0 0.143298,-0.06064 0.143298,-0.137806 v -1.350476 c 0,-0.07717 -0.06615,-0.137805 -0.143298,-0.137805 -0.07719,0 -0.143333,0.06064 -0.143333,0.137805 z m 0,0"
id="path154898" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 54.371577,65.823444 c 0,0.07717 0.06615,0.137806 0.143332,0.137806 0.07715,0 0.137795,-0.06064 0.137795,-0.137806 v -1.019746 l 0.826842,1.069358 c 0.03856,0.04961 0.07715,0.08819 0.143298,0.08819 h 0.01093 c 0.07715,0 0.137795,-0.06615 0.137795,-0.143315 v -1.344967 c 0,-0.07717 -0.06064,-0.137805 -0.137795,-0.137805 -0.07719,0 -0.13783,0.06064 -0.13783,0.137805 v 0.986674 l -0.804757,-1.041794 c -0.03859,-0.04961 -0.07719,-0.08268 -0.143332,-0.08268 h -0.03316 c -0.07719,0 -0.143333,0.06615 -0.143333,0.143317 z m 0,0"
id="path154890" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d=""
id="path154894" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 57.609653,65.828958 c 0,0.07717 0.06064,0.132292 0.137795,0.132292 0.07719,0 0.132292,-0.05512 0.132292,-0.132292 v -0.237024 h 0.126788 c 0.06615,0 0.115748,-0.04961 0.115748,-0.115753 0,-0.06615 -0.0496,-0.115758 -0.115748,-0.115758 H 57.87974 v -0.903991 c 0,-0.07717 -0.06064,-0.132292 -0.132292,-0.132292 -0.08269,0 -0.126788,0.02755 -0.176389,0.08819 l -0.755156,0.898483 c -0.03859,0.0441 -0.06064,0.0937 -0.06064,0.148825 0,0.07717 0.06064,0.132292 0.137795,0.132292 h 0.716597 z m -0.523663,-0.468535 0.523663,-0.639408 v 0.639408 z m 0,0"
id="path154886" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 29.97971,80.928507 c 0.25908,0 0.429966,-0.08268 0.578803,-0.214972 0.02752,-0.02204 0.0496,-0.06063 0.0496,-0.09922 0,-0.07166 -0.06615,-0.132292 -0.137795,-0.132292 -0.03316,0 -0.06064,0.01101 -0.08269,0.03305 -0.115746,0.09922 -0.231528,0.154342 -0.402378,0.154342 -0.303177,0 -0.529167,-0.259074 -0.529167,-0.573264 0,-0.314196 0.22599,-0.567754 0.529167,-0.567754 0.15434,0 0.27559,0.05512 0.385833,0.143317 0.01658,0.01654 0.0441,0.02755 0.08269,0.02755 0.07715,0 0.143298,-0.06064 0.143298,-0.137806 0,-0.04961 -0.02752,-0.08819 -0.0551,-0.110244 -0.143333,-0.110241 -0.303177,-0.181898 -0.551215,-0.181898 -0.485069,0 -0.82684,0.374827 -0.82684,0.826823 v 0.0055 c 0,0.463021 0.347274,0.826823 0.815798,0.826823 z m 0,0"
id="path154882" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 31.628946,80.922998 h 0.01658 c 0.07715,0 0.132292,-0.0441 0.159843,-0.115758 l 0.567761,-1.328428 c 0.0056,-0.01654 0.01093,-0.03859 0.01093,-0.06063 0,-0.07166 -0.06064,-0.132292 -0.137795,-0.132292 -0.06615,0 -0.115746,0.0441 -0.137795,0.08819 l -0.468559,1.168578 -0.463021,-1.157552 c -0.02187,-0.06063 -0.07165,-0.09922 -0.143298,-0.09922 -0.08269,0 -0.143334,0.06063 -0.143334,0.137806 0,0.02204 0.0056,0.0441 0.01658,0.06615 l 0.562257,1.317403 c 0.02752,0.07166 0.08266,0.115758 0.159843,0.115758 z m 0,0"
id="path154870" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d=""
id="path154874" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 33.26453,80.768656 c 0,0.08268 0.06615,0.132292 0.148802,0.132292 h 0.909531 c 0.07165,0 0.126753,-0.05512 0.126753,-0.121267 0,-0.07166 -0.0551,-0.12678 -0.126753,-0.12678 h -0.650451 l 0.330729,-0.275609 c 0.286632,-0.23151 0.418923,-0.369313 0.418923,-0.622871 0,-0.286631 -0.214982,-0.47956 -0.529166,-0.47956 -0.253542,0 -0.402379,0.09371 -0.53467,0.259074 -0.01658,0.02204 -0.02752,0.05512 -0.02752,0.08268 0,0.07166 0.0551,0.132292 0.126753,0.132292 0.0441,0 0.07719,-0.02204 0.09924,-0.0441 0.0992,-0.121267 0.187396,-0.181899 0.314184,-0.181899 0.148837,0 0.25908,0.0937 0.25908,0.253558 0,0.143317 -0.07719,0.248047 -0.297674,0.429948 l -0.496076,0.418926 c -0.0496,0.04409 -0.07165,0.08819 -0.07165,0.143314 z m 0,0"
id="path154878" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 41.983856,80.928507 c 0.25908,0 0.429964,-0.08268 0.578803,-0.214972 0.02752,-0.02204 0.0496,-0.06063 0.0496,-0.09922 0,-0.07166 -0.06615,-0.132292 -0.137795,-0.132292 -0.03316,0 -0.06064,0.01101 -0.08269,0.03305 -0.115748,0.09922 -0.231529,0.154342 -0.402379,0.154342 -0.303178,0 -0.529166,-0.259074 -0.529166,-0.573264 0,-0.314196 0.225988,-0.567754 0.529166,-0.567754 0.15434,0 0.27559,0.05512 0.385834,0.143317 0.01659,0.01654 0.0441,0.02755 0.08269,0.02755 0.07715,0 0.143299,-0.06064 0.143299,-0.137806 0,-0.04961 -0.02752,-0.08819 -0.05511,-0.110244 -0.143333,-0.110241 -0.303176,-0.181898 -0.551214,-0.181898 -0.485069,0 -0.826842,0.374827 -0.826842,0.826823 v 0.0055 c 0,0.463021 0.347276,0.826823 0.815801,0.826823 z m 0,0"
id="path154866" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 43.633057,80.922998 h 0.01659 c 0.07719,0 0.132291,-0.0441 0.159879,-0.115758 l 0.567725,-1.328428 c 0.0056,-0.01654 0.01093,-0.03859 0.01093,-0.06063 0,-0.07166 -0.06064,-0.132292 -0.137795,-0.132292 -0.06615,0 -0.115782,0.0441 -0.137832,0.08819 l -0.468524,1.168578 -0.463021,-1.157552 c -0.02188,-0.06063 -0.07165,-0.09922 -0.143298,-0.09922 -0.08269,0 -0.143333,0.06063 -0.143333,0.137806 0,0.02204 0.0056,0.0441 0.01659,0.06615 l 0.562222,1.317403 c 0.02752,0.07166 0.08269,0.115758 0.159879,0.115758 z m 0,0"
id="path154858" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d=""
id="path154862" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 45.880497,80.928507 c 0.358317,0 0.573265,-0.20946 0.573265,-0.485069 v -0.0055 c 0,-0.192927 -0.121251,-0.297657 -0.281094,-0.358291 0.132292,-0.06615 0.236996,-0.17639 0.236996,-0.380339 0,-0.248047 -0.220486,-0.429948 -0.551215,-0.429948 -0.225988,0 -0.374827,0.08268 -0.496075,0.214974 -0.02752,0.02204 -0.0441,0.06063 -0.0441,0.09371 0,0.07166 0.06064,0.132292 0.132292,0.132292 0.0441,0 0.06614,-0.01654 0.08819,-0.03859 0.0937,-0.0937 0.187397,-0.148826 0.314185,-0.148826 0.170886,0 0.275624,0.08819 0.275624,0.214972 v 0.0055 c 0,0.137803 -0.115781,0.23151 -0.303175,0.23151 h -0.07165 c -0.06615,0 -0.121285,0.05512 -0.121285,0.115753 0,0.06615 0.05514,0.121269 0.121285,0.121269 h 0.06614 c 0.220486,0 0.352777,0.07717 0.352777,0.225999 0,0.143317 -0.110244,0.237022 -0.286631,0.237022 -0.154342,0 -0.275627,-0.06063 -0.374827,-0.154342 -0.02188,-0.01654 -0.04964,-0.02755 -0.08819,-0.02755 -0.07169,0 -0.132291,0.05512 -0.132291,0.132291 0,0.0441 0.02188,0.07717 0.0551,0.10473 0.137795,0.121267 0.319722,0.198438 0.53467,0.198438 z m 0,0"
id="path154854" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 53.900864,80.928507 c 0.25908,0 0.429967,-0.08268 0.578803,-0.214972 0.02752,-0.02204 0.0496,-0.06063 0.0496,-0.09922 0,-0.07166 -0.06615,-0.132292 -0.137795,-0.132292 -0.03316,0 -0.06064,0.01101 -0.08269,0.03305 -0.115747,0.09922 -0.231529,0.154342 -0.402378,0.154342 -0.303178,0 -0.529167,-0.259074 -0.529167,-0.573264 0,-0.314196 0.225989,-0.567754 0.529167,-0.567754 0.154339,0 0.27559,0.05512 0.385831,0.143317 0.01659,0.01654 0.0441,0.02755 0.08269,0.02755 0.07715,0 0.143298,-0.06064 0.143298,-0.137806 0,-0.04961 -0.02752,-0.08819 -0.0551,-0.110244 -0.143333,-0.110241 -0.303179,-0.181898 -0.551215,-0.181898 -0.485071,0 -0.826841,0.374827 -0.826841,0.826823 v 0.0055 c 0,0.463021 0.347273,0.826823 0.815797,0.826823 z m 0,0"
id="path154850" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 55.550102,80.922998 h 0.01659 c 0.07715,0 0.132291,-0.0441 0.159845,-0.115758 l 0.567759,-1.328428 c 0.0056,-0.01654 0.01093,-0.03859 0.01093,-0.06063 0,-0.07166 -0.06064,-0.132292 -0.137795,-0.132292 -0.06615,0 -0.115747,0.0441 -0.137795,0.08819 l -0.468561,1.168578 -0.463021,-1.157552 c -0.02188,-0.06063 -0.07165,-0.09922 -0.143298,-0.09922 -0.08269,0 -0.143333,0.06063 -0.143333,0.137806 0,0.02204 0.0056,0.0441 0.01659,0.06615 l 0.562256,1.317403 c 0.02752,0.07166 0.08266,0.115758 0.159845,0.115758 z m 0,0"
id="path154838" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d=""
id="path154842" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 58.029036,80.779681 c 0,0.07717 0.06064,0.132292 0.137795,0.132292 0.07719,0 0.132292,-0.05512 0.132292,-0.132292 v -0.237024 h 0.126788 c 0.06615,0 0.115745,-0.04961 0.115745,-0.115753 0,-0.06615 -0.0496,-0.115758 -0.115745,-0.115758 h -0.126788 v -0.903994 c 0,-0.07717 -0.06064,-0.132291 -0.132292,-0.132291 -0.08269,0 -0.126788,0.02755 -0.176389,0.0882 l -0.755156,0.898483 c -0.03859,0.04409 -0.06064,0.0937 -0.06064,0.148825 0,0.07717 0.06064,0.132292 0.137795,0.132292 h 0.716597 z m -0.523663,-0.468535 0.523663,-0.63941 v 0.63941 z m 0,0"
id="path154846" />
<path
inkscape:connector-curvature="0"
id="path126005"
d="M 19.797697,71.970495 H 55.797575"
style="fill:none;stroke:#000000;stroke-width:0.23495001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path126007"
d="M 19.797697,86.970444 H 55.797575"
style="fill:none;stroke:#000000;stroke-width:0.23495001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 19.717758,30.395074 c 0,0.132292 0.110243,0.237025 0.237031,0.237025 0.132292,0 0.237031,-0.104733 0.237031,-0.237025 v -2.298565 c 0,-0.132291 -0.09924,-0.237024 -0.237031,-0.237024 h -0.0056 c -0.07165,0 -0.137795,0.01654 -0.231528,0.0441 l -0.413385,0.132292 c -0.09924,0.02204 -0.159879,0.10473 -0.159879,0.203948 0,0.110244 0.09924,0.198438 0.20948,0.198438 0.02187,0 0.06064,0 0.0882,-0.01101 l 0.27559,-0.08268 z m 0,0"
id="path154834" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 30.773707,30.384049 c 0,0.143317 0.110243,0.226002 0.259045,0.226002 h 1.537899 c 0.115747,0 0.20948,-0.09371 0.20948,-0.209463 0,-0.115758 -0.09373,-0.209462 -0.20948,-0.209462 h -1.10243 l 0.562257,-0.468535 c 0.479531,-0.391361 0.705555,-0.622872 0.705555,-1.047308 v -0.01101 c 0,-0.485069 -0.363819,-0.810284 -0.898489,-0.810284 -0.424427,0 -0.678004,0.165365 -0.89849,0.440971 -0.03316,0.03858 -0.0551,0.0937 -0.0551,0.143316 0,0.121267 0.0992,0.220486 0.214948,0.220486 0.07719,0 0.132291,-0.03306 0.170885,-0.07166 0.165383,-0.203946 0.314184,-0.303165 0.53467,-0.303165 0.248074,0 0.435469,0.154339 0.435469,0.418923 0,0.248044 -0.132292,0.418923 -0.507118,0.733115 l -0.832344,0.711068 c -0.08266,0.06615 -0.126753,0.143317 -0.126753,0.237022 z m 0,0"
id="path154830" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 43.821933,30.654146 c 0.606319,0 0.964636,-0.352777 0.964636,-0.815797 v -0.01101 c 0,-0.325218 -0.203975,-0.507119 -0.474062,-0.611852 0.220486,-0.104727 0.402379,-0.292142 0.402379,-0.633894 v -0.01101 c 0,-0.418926 -0.374828,-0.722093 -0.937049,-0.722093 -0.38033,0 -0.633907,0.143314 -0.843351,0.369313 -0.0386,0.03858 -0.06615,0.0937 -0.06615,0.154342 0,0.121267 0.0992,0.220485 0.225989,0.220485 0.06614,0 0.110244,-0.02755 0.148838,-0.06615 0.15434,-0.15434 0.308679,-0.24805 0.529167,-0.24805 0.292134,0 0.468524,0.148831 0.468524,0.363802 v 0.0055 c 0,0.237022 -0.198437,0.391362 -0.512622,0.391362 h -0.121285 c -0.110244,0 -0.203941,0.09371 -0.203941,0.198437 0,0.110244 0.0937,0.203951 0.203941,0.203951 h 0.110244 c 0.374824,0 0.595312,0.137803 0.595312,0.380339 v 0.0055 c 0,0.242533 -0.181893,0.396875 -0.485071,0.396875 -0.264583,0 -0.463021,-0.09371 -0.633905,-0.25356 -0.03856,-0.03306 -0.0882,-0.05512 -0.148801,-0.05512 -0.121285,0 -0.226026,0.09922 -0.226026,0.225996 0,0.08269 0.03859,0.132292 0.09373,0.17639 0.231492,0.20946 0.540173,0.336243 0.909495,0.336243 z m 0,0"
id="path154826" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.35277775"
d="m 56.072284,30.406099 c 0,0.126781 0.0992,0.226 0.231492,0.226 0.126788,0 0.225988,-0.09922 0.225988,-0.226 v -0.4079 h 0.209482 c 0.115744,0 0.198437,-0.08268 0.198437,-0.192923 0,-0.104733 -0.08269,-0.198438 -0.198437,-0.198438 h -0.209482 v -1.521354 c 0,-0.132292 -0.104703,-0.23151 -0.231491,-0.23151 -0.137795,0 -0.203941,0.05512 -0.292135,0.154342 l -1.278821,1.515837 c -0.06615,0.08269 -0.104738,0.159856 -0.104738,0.253561 0,0.132292 0.104738,0.220485 0.23703,0.220485 h 1.212675 z m -0.892987,-0.799261 0.892987,-1.074872 v 1.074872 z m 0,0"
id="path154822" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="widgets"
style="display:none">
<rect
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.11813943;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect155872"
width="12.700001"
height="12.699999"
x="19.049999"
y="21.161154" />
<rect
y="44.33149"
x="5.8993969"
height="26.999905"
width="2.9999871"
id="rect155883"
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.08372053;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.08372053;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect155885"
width="2.9999871"
height="26.999905"
x="17.899343"
y="44.331486" />
<rect
y="44.331486"
x="29.899292"
height="26.999905"
width="2.9999871"
id="rect155887"
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.08372053;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.08372053;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect155889"
width="2.9999871"
height="26.999905"
x="41.90065"
y="44.331486" />
<rect
y="23.404598"
x="3.2935331"
height="8.2117271"
width="8.2130899"
id="rect155891"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect155893"
width="8.2130899"
height="8.2117271"
x="39.293411"
y="23.4046" />
<rect
y="78.531639"
x="3.2935331"
height="8.2117271"
width="8.2130899"
id="rect155895"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect155897"
width="8.2130899"
height="8.2117271"
x="3.2935331"
y="93.531586" />
<rect
y="108.53153"
x="3.2935331"
height="8.2117271"
width="8.2130899"
id="rect155911"
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect155913"
width="8.2130899"
height="8.2117271"
x="15.29348"
y="78.531639" />
<rect
y="93.531586"
x="15.29348"
height="8.2117271"
width="8.2130899"
id="rect155915"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect155917"
width="8.2130899"
height="8.2117271"
x="15.29348"
y="108.53153" />
<rect
y="78.531639"
x="27.293465"
height="8.2117271"
width="8.2130899"
id="rect155919"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect155921"
width="8.2130899"
height="8.2117271"
x="27.293465"
y="93.531586" />
<rect
y="108.53153"
x="27.293465"
height="8.2117271"
width="8.2130899"
id="rect155923"
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect155925"
width="8.2130899"
height="8.2117271"
x="39.293411"
y="78.531639" />
<rect
y="93.531586"
x="39.293411"
height="8.2117271"
width="8.2130899"
id="rect155927"
style="opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none;stroke-width:0.07639443;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect155929"
width="8.2130899"
height="8.2117271"
x="39.293411"
y="108.53153" />
</g>
</svg>

+ 0
- 447
vst2_bin/plugins/Fundamental/res__OLD/VCO-1.svg View File

@@ -1,447 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="150.22649"
height="379.99997"
viewBox="0 0 39.747425 100.54166"
version="1.1"
id="svg11003"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="VCO-1.svg">
<defs
id="defs10997" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="-175.05947"
inkscape:cy="131.89281"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1200"
inkscape:window-x="5"
inkscape:window-y="94"
inkscape:window-maximized="0"
units="px" />
<metadata
id="metadata11000">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-64.792954,-75.127975)">
<path
inkscape:connector-curvature="0"
id="path33429"
d="M 64.866273,75.201293 H 104.46706 V 175.59739 H 64.866273 Z m 0,0"
style="fill:#e6e6e6;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 80.893703,88.029787 c 0,0.09488 0.07332,0.168202 0.168202,0.168202 0.09488,0 0.168202,-0.07332 0.168202,-0.168202 v -0.629679 h 0.836697 c 0.08195,0 0.150951,-0.06901 0.150951,-0.155264 0,-0.08626 -0.06901,-0.155263 -0.150951,-0.155263 H 81.230107 V 86.56341 h 0.957458 c 0.08626,0 0.155263,-0.06901 0.155263,-0.155263 0,-0.08626 -0.06901,-0.155264 -0.155263,-0.155264 h -1.12566 c -0.09488,0 -0.168202,0.07332 -0.168202,0.172515 z m 0,0"
id="path4739"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 82.713525,88.029787 c 0,0.09488 0.07332,0.168202 0.168202,0.168202 0.09488,0 0.168202,-0.07332 0.168202,-0.168202 v -0.517545 h 0.431287 l 0.46579,0.599489 c 0.03882,0.05175 0.09057,0.08626 0.168202,0.08626 0.08194,0 0.159576,-0.06469 0.159576,-0.155264 0,-0.05175 -0.02156,-0.09057 -0.05175,-0.129386 l -0.370907,-0.470103 c 0.258772,-0.07763 0.439913,-0.267398 0.439913,-0.573612 v -0.0086 c 0,-0.168202 -0.06038,-0.310527 -0.159577,-0.414036 -0.125073,-0.12076 -0.314839,-0.194079 -0.560673,-0.194079 h -0.690059 c -0.09488,0 -0.168202,0.07332 -0.168202,0.172515 z m 0.336404,-0.819446 V 86.56341 h 0.49598 c 0.250147,0 0.401097,0.112135 0.401097,0.319153 v 0.0043 c 0,0.198392 -0.155263,0.323465 -0.396784,0.323465 z m 0,0"
id="path4735"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 84.927342,88.18505 h 1.138598 c 0.08195,0 0.15095,-0.06469 0.15095,-0.150951 0,-0.08194 -0.06901,-0.15095 -0.15095,-0.15095 h -0.970396 v -0.521857 h 0.832384 c 0.08195,0 0.150951,-0.06469 0.150951,-0.146638 0,-0.08626 -0.06901,-0.155263 -0.150951,-0.155263 h -0.832384 v -0.504606 h 0.957457 c 0.08195,0 0.150951,-0.06469 0.150951,-0.150951 0,-0.08195 -0.06901,-0.150951 -0.150951,-0.150951 h -1.125659 c -0.09488,0 -0.168202,0.07332 -0.168202,0.172515 v 1.587137 c 0,0.0992 0.07332,0.172515 0.168202,0.172515 z m 0,0"
id="path4731"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 87.510579,88.219553 c 0.22427,0 0.426975,-0.06901 0.590864,-0.185454 l 0.138012,0.125074 c 0.03019,0.03019 0.06901,0.05175 0.116447,0.05175 0.09057,0 0.159576,-0.07763 0.159576,-0.163889 0,-0.05607 -0.02156,-0.0992 -0.06038,-0.133699 l -0.125073,-0.0992 c 0.125073,-0.168202 0.194079,-0.37522 0.194079,-0.595176 v -0.0043 c 0,-0.543422 -0.414035,-0.996273 -1.004899,-0.996273 -0.595176,0 -1.013525,0.457164 -1.013525,1.000586 v 0.0043 c 0,0.543422 0.414036,0.996273 1.004899,0.996273 z m 0.0992,-0.608115 0.241521,0.202705 c -0.09488,0.05607 -0.207018,0.09057 -0.332091,0.09057 -0.383845,0 -0.659869,-0.310526 -0.659869,-0.685746 v -0.0043 c 0,-0.37522 0.267398,-0.681433 0.651243,-0.681433 0.383846,0 0.65987,0.310526 0.65987,0.685746 v 0.0043 c 0,0.138012 -0.0345,0.263085 -0.09488,0.366594 l -0.250154,-0.224269 c -0.03882,-0.0345 -0.06901,-0.05175 -0.116447,-0.05175 -0.09057,0 -0.159577,0.07763 -0.159577,0.163889 0,0.06038 0.02156,0.0992 0.06038,0.133699 z m 0,0"
id="path4727"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 68.573442,146.73566 h 0.01294 c 0.06038,0 0.103509,-0.0345 0.125074,-0.0906 l 0.444225,-1.0394 c 0.0043,-0.0129 0.0086,-0.0302 0.0086,-0.0474 0,-0.0561 -0.04744,-0.10351 -0.107821,-0.10351 -0.05175,0 -0.09057,0.0345 -0.107822,0.069 l -0.366599,0.91432 -0.362281,-0.9057 c -0.01725,-0.0474 -0.05607,-0.0776 -0.112134,-0.0776 -0.06469,0 -0.112135,0.0474 -0.112135,0.10782 0,0.0173 0.0043,0.0345 0.01294,0.0517 l 0.439912,1.03078 c 0.02156,0.0561 0.06469,0.0906 0.125074,0.0906 z m 0,0"
id="path4723"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 69.152989,146.87367 c 0,0.0474 0.03882,0.0819 0.08626,0.0819 0.0345,0 0.06038,-0.0173 0.07763,-0.0474 l 0.733188,-1.50519 c 0.0043,-0.009 0.0086,-0.0259 0.0086,-0.0431 0,-0.0431 -0.0345,-0.082 -0.08195,-0.082 -0.0345,0 -0.06469,0.0173 -0.07763,0.0517 l -0.737505,1.50089 c -0.0043,0.0129 -0.0086,0.0259 -0.0086,0.0431 z m 0,0"
id="path4719"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 70.815053,146.73997 c 0.388159,0 0.65987,-0.29758 0.65987,-0.65124 0,-0.35366 -0.267398,-0.64693 -0.655557,-0.64693 -0.383846,0 -0.655556,0.29327 -0.655556,0.64693 v 0.004 c 0,0.35365 0.267398,0.64693 0.651243,0.64693 z m 0.0043,-0.2027 c -0.250146,0 -0.426974,-0.20271 -0.426974,-0.44854 0,-0.24584 0.176828,-0.44423 0.422662,-0.44423 0.250146,0 0.426974,0.20271 0.426974,0.44423 v 0.004 c 0,0.24583 -0.172515,0.44422 -0.422662,0.44422 z m 0,0"
id="path4715"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 72.376125,146.73997 c 0.202705,0 0.336404,-0.0647 0.452852,-0.1682 0.02156,-0.0172 0.03882,-0.0474 0.03882,-0.0776 0,-0.0561 -0.05175,-0.10351 -0.107822,-0.10351 -0.02588,0 -0.04744,0.009 -0.06469,0.0259 -0.09057,0.0776 -0.18114,0.12076 -0.314839,0.12076 -0.237208,0 -0.414036,-0.2027 -0.414036,-0.44854 0,-0.24583 0.176828,-0.44422 0.414036,-0.44422 0.12076,0 0.215643,0.0431 0.301901,0.11213 0.01294,0.0129 0.0345,0.0216 0.06469,0.0216 0.06038,0 0.112135,-0.0474 0.112135,-0.10782 0,-0.0388 -0.02156,-0.069 -0.04313,-0.0863 -0.112135,-0.0863 -0.237209,-0.14233 -0.431288,-0.14233 -0.379532,0 -0.646931,0.29328 -0.646931,0.64693 v 0.004 c 0,0.36228 0.271711,0.64693 0.638305,0.64693 z m 0,0"
id="path4711"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 73.490213,146.61921 c 0,0.0604 0.05175,0.10782 0.112135,0.10782 0.06038,0 0.112134,-0.0474 0.112134,-0.10782 v -0.95314 h 0.306214 c 0.05607,0 0.0992,-0.0474 0.0992,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.0992,-0.10351 h -0.836697 c -0.05607,0 -0.0992,0.0474 -0.0992,0.10351 0,0.0517 0.04313,0.0992 0.0992,0.0992 h 0.306214 z m 0,0"
id="path4707"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 78.900527,146.61921 c 0,0.0604 0.05175,0.10782 0.112135,0.10782 0.06038,0 0.112134,-0.0474 0.112134,-0.10782 v -0.41403 h 0.539109 c 0.05607,0 0.103509,-0.0431 0.103509,-0.0992 0,-0.0561 -0.04744,-0.0992 -0.103509,-0.0992 h -0.539109 v -0.34503 h 0.621054 c 0.05607,0 0.0992,-0.0431 0.0992,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.0992,-0.0992 h -0.733188 c -0.06038,0 -0.112135,0.0474 -0.112135,0.11213 z m 0,0"
id="path4703"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 80.115169,146.61921 c 0,0.0604 0.04744,0.10782 0.107822,0.10782 0.06469,0 0.112134,-0.0474 0.112134,-0.10782 v -0.75044 l 0.301902,0.45717 c 0.02588,0.0345 0.05607,0.0561 0.09488,0.0561 0.03882,0 0.06901,-0.0216 0.09057,-0.0561 l 0.306214,-0.46148 v 0.75475 c 0,0.0561 0.05175,0.10782 0.112135,0.10782 0.06038,0 0.112134,-0.0474 0.112134,-0.10782 v -1.05234 c 0,-0.0604 -0.05175,-0.11213 -0.112134,-0.11213 h -0.02588 c -0.04313,0 -0.07332,0.0216 -0.0992,0.0561 l -0.379532,0.59949 -0.383846,-0.59518 c -0.02156,-0.0345 -0.05175,-0.0604 -0.0992,-0.0604 h -0.02588 c -0.06038,0 -0.112135,0.0518 -0.112135,0.11214 z m 0,0"
id="path4699"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 87.159367,146.73566 c 0.267398,0 0.448538,-0.13801 0.448538,-0.37522 v -0.004 c 0,-0.20702 -0.133699,-0.3019 -0.401097,-0.36659 -0.241521,-0.0561 -0.297588,-0.0992 -0.297588,-0.1984 0,-0.0863 0.07332,-0.15095 0.202705,-0.15095 0.0992,0 0.194079,0.0302 0.288962,0.0949 0.01725,0.0129 0.0345,0.0172 0.05607,0.0172 0.06038,0 0.107822,-0.0474 0.107822,-0.1035 0,-0.0431 -0.02588,-0.0733 -0.05175,-0.0863 -0.112135,-0.0776 -0.237208,-0.11645 -0.396784,-0.11645 -0.250147,0 -0.426974,0.14664 -0.426974,0.36228 v 0.004 c 0,0.2329 0.146637,0.31053 0.414035,0.37522 0.237208,0.0517 0.28465,0.10351 0.28465,0.18977 v 0.004 c 0,0.0949 -0.08626,0.15957 -0.219957,0.15957 -0.138012,0 -0.250146,-0.0474 -0.353655,-0.12938 -0.01294,-0.0129 -0.0345,-0.0216 -0.06469,-0.0216 -0.05607,0 -0.103509,0.0474 -0.103509,0.10351 0,0.0345 0.01725,0.0647 0.04313,0.0863 0.138011,0.10351 0.301901,0.15526 0.470103,0.15526 z m 0,0"
id="path4695"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 88.270529,146.61921 c 0,0.0604 0.05175,0.10782 0.112135,0.10782 0.06038,0 0.112135,-0.0474 0.112135,-0.10782 v -0.39247 l 0.426974,-0.58655 c 0.01725,-0.0216 0.03019,-0.0517 0.03019,-0.0819 0,-0.0561 -0.04313,-0.10782 -0.107822,-0.10782 -0.04744,0 -0.07763,0.0302 -0.103509,0.069 l -0.357968,0.50461 -0.349343,-0.50461 c -0.02588,-0.0388 -0.06038,-0.0647 -0.107822,-0.0647 -0.06038,0 -0.112134,0.0474 -0.112134,0.10351 0,0.0302 0.01294,0.0561 0.02588,0.0776 l 0.431287,0.59518 z m 0,0"
id="path4691"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.212252,146.61921 c 0,0.0604 0.05175,0.10782 0.112134,0.10782 0.06038,0 0.107822,-0.0474 0.107822,-0.10782 v -0.79788 l 0.646931,0.8367 c 0.03019,0.0388 0.06038,0.069 0.112134,0.069 h 0.0086 c 0.06038,0 0.107822,-0.0517 0.107822,-0.11213 v -1.05235 c 0,-0.0604 -0.04744,-0.10782 -0.107822,-0.10782 -0.06038,0 -0.107822,0.0474 -0.107822,0.10782 v 0.77201 l -0.629679,-0.81513 c -0.03019,-0.0388 -0.06038,-0.0647 -0.112135,-0.0647 h -0.02588 c -0.06038,0 -0.112135,0.0517 -0.112135,0.11213 z m 0,0"
id="path4687"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 91.271623,146.73997 c 0.202705,0 0.336402,-0.0647 0.45285,-0.1682 0.02156,-0.0172 0.03882,-0.0474 0.03882,-0.0776 0,-0.0561 -0.05175,-0.10351 -0.107823,-0.10351 -0.02588,0 -0.04744,0.009 -0.06469,0.0259 -0.09057,0.0776 -0.181139,0.12076 -0.314838,0.12076 -0.237209,0 -0.414036,-0.2027 -0.414036,-0.44854 0,-0.24583 0.176827,-0.44422 0.414036,-0.44422 0.120758,0 0.215643,0.0431 0.3019,0.11213 0.01294,0.0129 0.0345,0.0216 0.06469,0.0216 0.06038,0 0.112136,-0.0474 0.112136,-0.10782 0,-0.0388 -0.02156,-0.069 -0.04313,-0.0863 -0.112135,-0.0863 -0.237207,-0.14233 -0.431286,-0.14233 -0.379534,0 -0.646932,0.29328 -0.646932,0.64693 v 0.004 c 0,0.36228 0.271711,0.64693 0.638306,0.64693 z m 0,0"
id="path4683"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 96.031115,146.61921 c 0,0.0604 0.05175,0.10782 0.112136,0.10782 0.06038,0 0.112133,-0.0474 0.112133,-0.10782 V 146.313 h 0.245835 c 0.276024,0 0.504605,-0.14664 0.504605,-0.42698 v -0.004 c 0,-0.25446 -0.185452,-0.41834 -0.478729,-0.41834 h -0.383844 c -0.06038,0 -0.112136,0.0474 -0.112136,0.11213 z m 0.224269,-0.5046 v -0.45285 h 0.25446 c 0.163888,0 0.271711,0.0776 0.271711,0.22426 v 0.004 c 0,0.1337 -0.103507,0.22427 -0.271711,0.22427 z m 0,0"
id="path4679"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 97.577615,146.64509 c 0.02156,0.0561 0.06038,0.0906 0.112133,0.0906 h 0.02156 c 0.05607,0 0.09489,-0.0345 0.116448,-0.0906 l 0.280337,-0.81945 0.280336,0.81945 c 0.01725,0.0561 0.05607,0.0906 0.112136,0.0906 h 0.02156 c 0.05175,0 0.09488,-0.0345 0.116448,-0.0906 l 0.370906,-1.0394 c 0.0043,-0.0129 0.0086,-0.0302 0.0086,-0.0474 0,-0.0561 -0.05176,-0.10351 -0.107821,-0.10351 -0.05607,0 -0.09057,0.0345 -0.107823,0.0776 l -0.288962,0.86689 -0.284649,-0.86258 c -0.01725,-0.0517 -0.05607,-0.0863 -0.112136,-0.0863 h -0.01294 c -0.05607,0 -0.09488,0.0345 -0.112136,0.0863 l -0.284649,0.86258 -0.288962,-0.86689 c -0.01294,-0.0431 -0.05607,-0.0776 -0.10782,-0.0776 -0.06038,0 -0.116449,0.0474 -0.116449,0.10782 0,0.0129 0.0043,0.0302 0.01294,0.0431 z m 0,0"
id="path4675"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 99.291271,146.61921 c 0,0.0604 0.04744,0.10782 0.107823,0.10782 0.06469,0 0.112133,-0.0474 0.112133,-0.10782 v -0.75044 l 0.301903,0.45717 c 0.02588,0.0345 0.05607,0.0561 0.09488,0.0561 0.03882,0 0.06901,-0.0216 0.09057,-0.0561 l 0.30622,-0.46148 v 0.75475 c 0,0.0561 0.0517,0.10782 0.11213,0.10782 0.0604,0 0.11213,-0.0474 0.11213,-0.10782 v -1.05234 c 0,-0.0604 -0.0517,-0.11213 -0.11213,-0.11213 h -0.0259 c -0.0431,0 -0.0733,0.0216 -0.0992,0.0561 l -0.37953,0.59949 -0.383844,-0.59518 c -0.02156,-0.0345 -0.05176,-0.0604 -0.0992,-0.0604 h -0.02588 c -0.06038,0 -0.112136,0.0518 -0.112136,0.11214 z m 0,0"
id="path4671"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path33631"
d="m 66.78011,142.84438 h 35.77311"
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 80.710678,82.646522 h 0.0345 c 0.138012,0 0.232895,-0.07332 0.284649,-0.198392 l 0.759066,-1.815719 c 0.01294,-0.03019 0.02588,-0.07332 0.02588,-0.112134 0,-0.142325 -0.112134,-0.245834 -0.250146,-0.245834 -0.120761,0 -0.211331,0.07763 -0.245834,0.159576 l -0.586552,1.518131 -0.577924,-1.500879 c -0.03882,-0.103509 -0.125074,-0.176828 -0.258773,-0.176828 -0.142324,0 -0.254459,0.107822 -0.254459,0.250146 0,0.04313 0.01294,0.08194 0.03019,0.125074 l 0.750439,1.798467 c 0.05175,0.125073 0.150951,0.198392 0.288964,0.198392 z m 0,0"
id="path4667"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 83.205773,82.650835 c 0.370907,0 0.616741,-0.107822 0.828072,-0.288962 0.04313,-0.04313 0.08626,-0.103509 0.08626,-0.185454 0,-0.129386 -0.112135,-0.232895 -0.241521,-0.232895 -0.06038,0 -0.112134,0.02156 -0.15095,0.05607 -0.146638,0.116448 -0.288963,0.181141 -0.504606,0.181141 -0.396784,0 -0.672808,-0.332091 -0.672808,-0.728876 v -0.0043 c 0,-0.396784 0.284649,-0.724562 0.672808,-0.724562 0.18114,0 0.332091,0.06038 0.474416,0.168202 0.03882,0.02156 0.08194,0.04744 0.15095,0.04744 0.142325,0 0.25446,-0.107822 0.25446,-0.245834 0,-0.09057 -0.04744,-0.163889 -0.0992,-0.202705 -0.19408,-0.142324 -0.426975,-0.237208 -0.776317,-0.237208 -0.711624,0 -1.207604,0.53911 -1.207604,1.198979 v 0.0086 c 0,0.664182 0.504606,1.190352 1.186039,1.190352 z m 0,0"
id="path4663"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 85.652296,82.650835 c 0.715937,0 1.233481,-0.539109 1.233481,-1.198978 v -0.0043 c 0,-0.65987 -0.513231,-1.194666 -1.229168,-1.194666 -0.715937,0 -1.233481,0.539109 -1.233481,1.198979 v 0.0086 c 0,0.659869 0.513231,1.190352 1.229168,1.190352 z m 0.0043,-0.470103 c -0.409723,0 -0.702998,-0.332091 -0.702998,-0.728875 v -0.0043 c 0,-0.396784 0.284649,-0.724563 0.698685,-0.724563 0.409723,0 0.698685,0.332091 0.698685,0.728876 v 0.0086 c 0,0.396784 -0.28465,0.720249 -0.694372,0.720249 z m 0,0"
id="path4659"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 87.571461,81.827077 h 0.573612 c 0.133699,0 0.245833,-0.107822 0.245833,-0.241521 0,-0.133699 -0.112134,-0.241521 -0.245833,-0.241521 h -0.573612 c -0.1337,0 -0.241521,0.107822 -0.241521,0.241521 0,0.133699 0.107821,0.241521 0.241521,0.241521 z m 0,0"
id="path4655"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.029523,82.379124 c 0,0.138012 0.112135,0.25446 0.250146,0.25446 0.138012,0 0.250147,-0.116448 0.250147,-0.25446 v -1.867473 c 0,-0.138012 -0.112135,-0.250147 -0.250147,-0.250147 h -0.0043 c -0.07332,0 -0.142325,0.01725 -0.241521,0.04313 l -0.327778,0.09488 c -0.103509,0.03019 -0.168202,0.116448 -0.168202,0.219957 0,0.116447 0.103509,0.215643 0.219956,0.215643 0.03019,0 0.06469,-0.0043 0.09057,-0.01294 l 0.18114,-0.04313 z m 0,0"
id="path4651"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 73.031882,110.32866 c 0,0.0776 0.06038,0.13801 0.138012,0.13801 0.07332,0 0.133699,-0.0604 0.133699,-0.13801 v -0.5046 h 0.668495 c 0.06901,0 0.12076,-0.0561 0.12076,-0.12508 0,-0.0647 -0.05175,-0.12076 -0.12076,-0.12076 h -0.668495 v -0.42266 h 0.767691 c 0.06901,0 0.12076,-0.0561 0.12076,-0.12507 0,-0.069 -0.05175,-0.12076 -0.12076,-0.12076 h -0.90139 c -0.07763,0 -0.138012,0.0561 -0.138012,0.1337 z m 0,0"
id="path4647"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.519789,110.32866 c 0,0.0776 0.05607,0.13801 0.133699,0.13801 0.07763,0 0.138012,-0.0604 0.138012,-0.13801 v -1.29817 c 0,-0.0733 -0.06038,-0.1337 -0.138012,-0.1337 -0.07763,0 -0.133699,0.0604 -0.133699,0.1337 z m 0,0"
id="path4643"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 75.256633,110.33298 c 0,0.0733 0.06038,0.13369 0.133699,0.13369 0.07332,0 0.133699,-0.0604 0.133699,-0.13369 v -0.97903 l 0.793568,1.02647 c 0.03882,0.0474 0.07763,0.0819 0.142325,0.0819 h 0.01294 c 0.07332,0 0.129386,-0.0604 0.129386,-0.1337 v -1.29817 c 0,-0.0733 -0.05607,-0.1337 -0.133698,-0.1337 -0.07332,0 -0.133699,0.0604 -0.133699,0.1337 v 0.94883 l -0.772007,-1.00059 c -0.0345,-0.0474 -0.07332,-0.0776 -0.142324,-0.0776 h -0.02588 c -0.07763,0 -0.138012,0.0604 -0.138012,0.1337 z m 0,0"
id="path4639"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 77.203595,110.45374 h 0.910016 c 0.06469,0 0.120761,-0.0517 0.120761,-0.12076 0,-0.069 -0.05607,-0.12076 -0.120761,-0.12076 h -0.776317 v -0.41835 h 0.664183 c 0.06901,0 0.12076,-0.0518 0.12076,-0.11645 0,-0.069 -0.05175,-0.12507 -0.12076,-0.12507 h -0.664183 v -0.4011 h 0.763379 c 0.06901,0 0.12076,-0.0517 0.12076,-0.12076 0,-0.069 -0.05175,-0.12076 -0.12076,-0.12076 h -0.897078 c -0.07763,0 -0.138012,0.0561 -0.138012,0.1337 v 1.27229 c 0,0.0776 0.06038,0.13802 0.138012,0.13802 z m 0,0"
id="path4635"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 72.106651,127.55034 c 0,0.0776 0.06038,0.13801 0.138012,0.13801 0.07332,0 0.133699,-0.0604 0.133699,-0.13801 v -0.50461 h 0.668495 c 0.06901,0 0.12076,-0.0561 0.12076,-0.12507 0,-0.0647 -0.05175,-0.12076 -0.12076,-0.12076 h -0.668495 v -0.42266 h 0.767691 c 0.06901,0 0.12076,-0.0561 0.12076,-0.12507 0,-0.069 -0.05175,-0.12077 -0.12076,-0.12077 h -0.90139 c -0.07763,0 -0.138012,0.0561 -0.138012,0.1337 z m 0,0"
id="path4631"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 73.584814,127.55465 c 0,0.0733 0.05607,0.1337 0.133699,0.1337 0.07332,0 0.133699,-0.0604 0.133699,-0.1337 v -0.92727 l 0.37522,0.56499 c 0.03019,0.0431 0.06469,0.069 0.112134,0.069 0.05175,0 0.08626,-0.0259 0.116448,-0.069 l 0.37522,-0.5693 v 0.92727 c 0,0.0733 0.06469,0.13801 0.138012,0.13801 0.07763,0 0.133699,-0.0604 0.133699,-0.13801 v -1.29386 c 0,-0.0733 -0.05607,-0.1337 -0.133699,-0.1337 h -0.03019 c -0.05607,0 -0.09488,0.0216 -0.125073,0.069 l -0.470104,0.73318 -0.46579,-0.73318 c -0.02588,-0.0388 -0.06901,-0.069 -0.129386,-0.069 h -0.02588 c -0.07763,0 -0.138012,0.0604 -0.138012,0.13369 z m 0,0"
id="path4627"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 76.879915,127.70129 c 0.250147,0 0.418349,-0.0776 0.564986,-0.20702 0.02156,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12507 -0.129386,-0.12507 -0.0345,0 -0.06038,0.0129 -0.08194,0.0302 -0.112134,0.0949 -0.224269,0.15095 -0.383845,0.15095 -0.297588,0 -0.513232,-0.24584 -0.513232,-0.54774 v -0.004 c 0,-0.3019 0.215644,-0.54773 0.513232,-0.54773 0.146638,0 0.258772,0.0561 0.366594,0.14232 0.01725,0.0129 0.04313,0.0259 0.08194,0.0259 0.07332,0 0.133699,-0.0604 0.133699,-0.13369 0,-0.0474 -0.02156,-0.0863 -0.05175,-0.10783 -0.133699,-0.1035 -0.293275,-0.17683 -0.530483,-0.17683 -0.470103,0 -0.797881,0.36229 -0.797881,0.8022 v 0.004 c 0,0.44422 0.336404,0.79357 0.784942,0.79357 z m 0,0"
id="path4623"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 78.455722,127.69698 h 0.01294 c 0.07763,0 0.129386,-0.0431 0.159576,-0.10782 l 0.543422,-1.28093 c 0.0043,-0.0172 0.01294,-0.0388 0.01294,-0.0604 0,-0.0733 -0.06038,-0.12939 -0.133699,-0.12939 -0.06469,0 -0.116447,0.0431 -0.133699,0.0906 l -0.452851,1.12135 -0.444226,-1.11272 c -0.02156,-0.0604 -0.06901,-0.0992 -0.138012,-0.0992 -0.07763,0 -0.138012,0.0604 -0.138012,0.1337 0,0.0216 0.0086,0.0431 0.01725,0.0647 l 0.539109,1.27229 c 0.03019,0.0647 0.07763,0.10783 0.155264,0.10783 z m 0,0"
id="path4619"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.00814,127.55034 c 0,0.0776 0.06038,0.13801 0.138011,0.13801 0.07332,0 0.133699,-0.0604 0.133699,-0.13801 v -0.37091 h 0.306214 c 0.340717,0 0.621054,-0.18114 0.621054,-0.53048 v -0.004 c 0,-0.31053 -0.228582,-0.51323 -0.590864,-0.51323 h -0.470103 c -0.07763,0 -0.138011,0.0561 -0.138011,0.1337 z m 0.27171,-0.61674 v -0.55636 h 0.31484 c 0.202705,0 0.336404,0.0949 0.336404,0.27602 v 0.004 c 0,0.15958 -0.129386,0.27602 -0.336404,0.27602 z m 0,0"
id="path4615"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 90.890097,127.58484 c 0.02588,0.069 0.07332,0.11214 0.142325,0.11214 h 0.02588 c 0.06469,0 0.116447,-0.0431 0.142325,-0.11214 l 0.345031,-1.00921 0.340717,1.00921 c 0.02588,0.069 0.07332,0.11214 0.142325,0.11214 h 0.02588 c 0.06469,0 0.116448,-0.0431 0.142325,-0.11214 l 0.457165,-1.28092 c 0.0043,-0.0173 0.01294,-0.0388 0.01294,-0.0561 0,-0.0733 -0.06469,-0.12939 -0.138012,-0.12939 -0.06469,0 -0.112135,0.0431 -0.129386,0.0992 l -0.357977,1.06098 -0.349343,-1.05666 c -0.01725,-0.0647 -0.06469,-0.10782 -0.133699,-0.10782 h -0.02156 c -0.06901,0 -0.116448,0.0431 -0.138012,0.10782 l -0.349344,1.05666 -0.353656,-1.06097 c -0.01725,-0.0561 -0.06901,-0.0992 -0.133699,-0.0992 -0.07763,0 -0.138011,0.0561 -0.138011,0.1337 0,0.0172 0.0043,0.0345 0.0086,0.0517 z m 0,0"
id="path4611"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 92.986195,127.55465 c 0,0.0733 0.05607,0.1337 0.133699,0.1337 0.07332,0 0.133699,-0.0604 0.133699,-0.1337 v -0.92727 l 0.375219,0.56499 c 0.03019,0.0431 0.06469,0.069 0.112136,0.069 0.05175,0 0.08626,-0.0259 0.116445,-0.069 l 0.375222,-0.5693 v 0.92727 c 0,0.0733 0.06469,0.13801 0.138012,0.13801 0.07763,0 0.133699,-0.0604 0.133699,-0.13801 v -1.29386 c 0,-0.0733 -0.05607,-0.1337 -0.133699,-0.1337 h -0.03019 c -0.05607,0 -0.09488,0.0216 -0.125074,0.069 l -0.470101,0.73319 -0.465791,-0.73319 c -0.02588,-0.0388 -0.06901,-0.069 -0.129386,-0.069 h -0.02588 c -0.07763,0 -0.138012,0.0604 -0.138012,0.1337 z m 0,0"
id="path4607"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 96.281297,127.70129 c 0.250148,0 0.418349,-0.0776 0.564986,-0.20702 0.02156,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12507 -0.129387,-0.12507 -0.0345,0 -0.06038,0.0129 -0.08194,0.0302 -0.112136,0.0949 -0.224269,0.15095 -0.383847,0.15095 -0.297587,0 -0.513231,-0.24584 -0.513231,-0.54774 v -0.004 c 0,-0.3019 0.215644,-0.54773 0.513231,-0.54773 0.146637,0 0.258773,0.0561 0.366596,0.14232 0.01725,0.0129 0.04313,0.0259 0.08194,0.0259 0.07332,0 0.1337,-0.0604 0.1337,-0.13369 0,-0.0474 -0.02156,-0.0863 -0.05176,-0.10783 -0.133699,-0.1035 -0.293274,-0.17683 -0.530484,-0.17683 -0.470101,0 -0.79788,0.36229 -0.79788,0.8022 v 0.004 c 0,0.44422 0.336404,0.79357 0.784942,0.79357 z m 0,0"
id="path4603"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 97.857322,127.69698 h 0.01294 c 0.07763,0 0.129387,-0.0431 0.159576,-0.10782 l 0.543422,-1.28093 c 0.0043,-0.0172 0.01294,-0.0388 0.01294,-0.0604 0,-0.0733 -0.06038,-0.12939 -0.133699,-0.12939 -0.06469,0 -0.116449,0.0431 -0.133699,0.0906 l -0.452851,1.12135 -0.444227,-1.11272 c -0.02156,-0.0604 -0.06901,-0.0992 -0.138012,-0.0992 -0.07763,0 -0.138012,0.0604 -0.138012,0.1337 0,0.0216 0.0086,0.0431 0.01725,0.0647 l 0.539107,1.27229 c 0.03019,0.0647 0.07763,0.10783 0.155263,0.10783 z m 0,0"
id="path4599"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 88.623915,110.32866 c 0,0.0776 0.06038,0.13801 0.138012,0.13801 0.07332,0 0.133699,-0.0604 0.133699,-0.13801 v -0.3709 h 0.306214 c 0.340717,0 0.621053,-0.18115 0.621053,-0.53049 v -0.004 c 0,-0.31052 -0.228582,-0.51323 -0.590863,-0.51323 h -0.470103 c -0.07763,0 -0.138012,0.0561 -0.138012,0.1337 z m 0.271711,-0.61674 v -0.55636 h 0.31484 c 0.202705,0 0.336404,0.0949 0.336404,0.27602 v 0.004 c 0,0.15958 -0.129386,0.27603 -0.336404,0.27603 z m 0,0"
id="path4595"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.910427,110.28985 v 0.0216 c 0,0.0863 0.06469,0.15526 0.155263,0.15526 0.09057,0 0.155264,-0.069 0.155264,-0.15526 v -0.0216 c 0,-0.0863 -0.06469,-0.15095 -0.155264,-0.15095 -0.09057,0 -0.155263,0.0647 -0.155263,0.15095 z m 0,0"
id="path4591"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 91.585236,110.36317 c 0.02588,0.069 0.07332,0.11213 0.142325,0.11213 h 0.02588 c 0.06469,0 0.116449,-0.0431 0.142325,-0.11213 l 0.34503,-1.00922 0.340717,1.00922 c 0.02588,0.069 0.07332,0.11213 0.142325,0.11213 h 0.02588 c 0.06469,0 0.116446,-0.0431 0.142325,-0.11213 l 0.457163,-1.28093 c 0.0043,-0.0173 0.01294,-0.0388 0.01294,-0.0561 0,-0.0733 -0.06469,-0.12938 -0.138012,-0.12938 -0.06469,0 -0.112133,0.0431 -0.129384,0.0992 l -0.357971,1.06096 -0.349342,-1.05665 c -0.01725,-0.0647 -0.06469,-0.10782 -0.1337,-0.10782 h -0.02156 c -0.06901,0 -0.116446,0.0431 -0.138012,0.10782 l -0.349356,1.05665 -0.353655,-1.06096 c -0.01725,-0.0561 -0.06901,-0.0992 -0.133699,-0.0992 -0.07763,0 -0.138011,0.0561 -0.138011,0.13369 0,0.0173 0.0043,0.0345 0.0086,0.0517 z m 0,0"
id="path4587"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 93.691296,110.32866 c 0,0.0776 0.05607,0.13801 0.133699,0.13801 0.07763,0 0.138012,-0.0604 0.138012,-0.13801 v -1.29817 c 0,-0.0733 -0.06038,-0.1337 -0.138012,-0.1337 -0.07763,0 -0.133699,0.0604 -0.133699,0.1337 z m 0,0"
id="path4583"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 94.428145,110.31572 c 0,0.0776 0.06038,0.13802 0.138012,0.13802 h 0.439912 c 0.483042,0 0.819446,-0.33641 0.819446,-0.77201 v -0.004 c 0,-0.4356 -0.336404,-0.76769 -0.819446,-0.76769 h -0.439912 c -0.07763,0 -0.138012,0.0561 -0.138012,0.1337 z m 0.271711,-0.10782 v -1.05234 h 0.306213 c 0.323466,0 0.534797,0.22427 0.534797,0.52617 v 0.004 c 0,0.3019 -0.211331,0.52186 -0.534797,0.52186 z m 0,0"
id="path4579"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 96.493847,110.32866 c 0,0.0776 0.06038,0.13801 0.138012,0.13801 0.07332,0 0.138012,-0.0604 0.138012,-0.13801 v -1.16879 h 0.375222 c 0.06901,0 0.125071,-0.0561 0.125071,-0.12507 0,-0.069 -0.05606,-0.12507 -0.125071,-0.12507 h -1.026465 c -0.06901,0 -0.125073,0.0561 -0.125073,0.12507 0,0.069 0.05607,0.12507 0.125073,0.12507 h 0.375219 z m 0,0"
id="path4575"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 97.579668,110.32866 c 0,0.0776 0.06038,0.13801 0.138012,0.13801 0.07332,0 0.133699,-0.0604 0.133699,-0.13801 v -0.52617 h 0.7375 v 0.52617 c 0,0.0776 0.06038,0.13801 0.133699,0.13801 0.07763,0 0.138012,-0.0604 0.138012,-0.13801 v -1.29817 c 0,-0.0733 -0.06038,-0.1337 -0.138012,-0.1337 -0.07332,0 -0.133699,0.0604 -0.133699,0.1337 v 0.52186 h -0.7375 v -0.52186 c 0,-0.0733 -0.06038,-0.1337 -0.133699,-0.1337 -0.07763,0 -0.138012,0.0604 -0.138012,0.1337 z m 0,0"
id="path4571"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path36593"
d="m 102.06803,156.82886 c 0,-0.43021 -0.3515,-0.78279 -0.78171,-0.78279 h -6.011067 c -0.43021,0 -0.782785,0.35258 -0.782785,0.78279 v 9.5239 c 0,0.43021 0.352575,0.78279 0.782785,0.78279 h 6.011067 c 0.43021,0 0.78171,-0.35258 0.78171,-0.78279 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:none;stroke-width:0.27602378"
d="m 96.836512,158.47906 c 0.267396,0 0.457163,-0.13801 0.457163,-0.38816 v -0.004 c 0,-0.21995 -0.142325,-0.31052 -0.396785,-0.37522 -0.215644,-0.0561 -0.271709,-0.0819 -0.271709,-0.1682 0,-0.0647 0.05607,-0.11213 0.163888,-0.11213 0.08626,0 0.172514,0.0302 0.263086,0.0863 0.02156,0.0129 0.04313,0.0172 0.06901,0.0172 0.07332,0 0.129387,-0.0561 0.129387,-0.12508 0,-0.0561 -0.03019,-0.0906 -0.06038,-0.11213 -0.112136,-0.069 -0.245835,-0.10782 -0.396785,-0.10782 -0.258773,0 -0.439912,0.15095 -0.439912,0.37522 v 0.004 c 0,0.25014 0.159575,0.31915 0.414036,0.38384 0.211331,0.0561 0.254458,0.0906 0.254458,0.15958 v 0.004 c 0,0.0733 -0.06901,0.12076 -0.181139,0.12076 -0.125074,0 -0.228585,-0.0431 -0.323467,-0.11645 -0.01725,-0.0129 -0.04313,-0.0216 -0.07763,-0.0216 -0.07332,0 -0.129387,0.0517 -0.129387,0.12507 0,0.0431 0.02156,0.0819 0.05175,0.10351 0.142325,0.10351 0.306213,0.15095 0.474417,0.15095 z m 0,0"
id="path4567"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 98.187406,158.48337 c 0.142324,0 0.267398,-0.0388 0.375218,-0.10782 l 0.06901,0.0604 c 0.02156,0.0216 0.05176,0.0388 0.09057,0.0388 0.07332,0 0.129383,-0.0604 0.129383,-0.12938 0,-0.0474 -0.02156,-0.0819 -0.05175,-0.10782 l -0.05175,-0.0431 c 0.06901,-0.10351 0.112133,-0.22859 0.112133,-0.36228 0,-0.35797 -0.280337,-0.64693 -0.668494,-0.64693 -0.388159,0 -0.668496,0.29327 -0.668496,0.64693 v 0.004 c 0,0.35796 0.280337,0.64693 0.664184,0.64693 z m 0.03881,-0.40109 0.129386,0.11213 c -0.04744,0.0216 -0.103507,0.0345 -0.163888,0.0345 -0.219956,0 -0.379534,-0.18114 -0.379534,-0.39678 0,-0.21565 0.155265,-0.39248 0.375222,-0.39248 0.224268,0 0.383844,0.17683 0.383844,0.39248 v 0.004 c 0,0.0647 -0.01294,0.12507 -0.0345,0.17251 l -0.138012,-0.12507 c -0.03019,-0.0216 -0.05607,-0.0345 -0.09488,-0.0345 -0.06901,0 -0.129387,0.0561 -0.129387,0.12939 0,0.0431 0.02156,0.0776 0.05175,0.10351 z m 0,0"
id="path4563"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 99.178241,158.33242 c 0,0.0776 0.06038,0.13802 0.138012,0.13802 0.07763,0 0.138012,-0.0604 0.138012,-0.13802 v -0.27171 h 0.219956 l 0.271711,0.34072 c 0.03019,0.0388 0.07332,0.069 0.133698,0.069 0.069,0 0.1337,-0.0474 0.1337,-0.12507 0,-0.0431 -0.0216,-0.0733 -0.0474,-0.10782 l -0.189766,-0.23291 c 0.150946,-0.0604 0.250146,-0.18545 0.250146,-0.37953 v -0.004 c 0,-0.12076 -0.0388,-0.21564 -0.10782,-0.28896 -0.0819,-0.0819 -0.207019,-0.12507 -0.366598,-0.12507 h -0.435599 c -0.07763,0 -0.138012,0.0604 -0.138012,0.13801 z m 0.276024,-0.51754 v -0.35797 h 0.276024 c 0.133699,0 0.215643,0.0604 0.215643,0.17683 v 0.004 c 0,0.10782 -0.07763,0.17683 -0.21133,0.17683 z m 0,0"
id="path4559"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path36605"
d="m 92.992666,156.82886 c 0,-0.43021 -0.352578,-0.78279 -0.782785,-0.78279 h -6.011067 c -0.430207,0 -0.781708,0.35258 -0.781708,0.78279 v 9.5239 c 0,0.43021 0.351501,0.78279 0.781708,0.78279 h 6.011067 c 0.430207,0 0.782785,-0.35258 0.782785,-0.78279 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:none;stroke-width:0.27602378"
d="m 87.549277,158.47906 c 0.267398,0 0.457165,-0.13801 0.457165,-0.38816 v -0.004 c 0,-0.21995 -0.142325,-0.31052 -0.396785,-0.37522 -0.215643,-0.0561 -0.27171,-0.0819 -0.27171,-0.1682 0,-0.0647 0.05607,-0.11213 0.163889,-0.11213 0.08626,0 0.172515,0.0302 0.263085,0.0863 0.02156,0.0129 0.04313,0.0172 0.06901,0.0172 0.07332,0 0.129386,-0.0561 0.129386,-0.12508 0,-0.0561 -0.03019,-0.0906 -0.06038,-0.11213 -0.112135,-0.069 -0.245834,-0.10782 -0.396784,-0.10782 -0.258773,0 -0.439913,0.15095 -0.439913,0.37522 v 0.004 c 0,0.25014 0.159576,0.31915 0.414035,0.38384 0.211331,0.0561 0.25446,0.0906 0.25446,0.15958 v 0.004 c 0,0.0733 -0.06901,0.12076 -0.181141,0.12076 -0.125073,0 -0.228582,-0.0431 -0.323465,-0.11645 -0.01725,-0.0129 -0.04313,-0.0216 -0.07763,-0.0216 -0.07332,0 -0.129386,0.0517 -0.129386,0.12507 0,0.0431 0.02156,0.0819 0.05175,0.10351 0.142325,0.10351 0.306214,0.15095 0.474416,0.15095 z m 0,0"
id="path4555"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 88.203827,158.34536 c 0,0.069 0.05607,0.12508 0.129386,0.12508 0.05607,0 0.103509,-0.0302 0.125074,-0.0819 l 0.08626,-0.20702 h 0.556361 l 0.08194,0.19408 c 0.02588,0.0604 0.06901,0.0949 0.133699,0.0949 0.07332,0 0.129386,-0.0561 0.129386,-0.12939 0,-0.0172 -0.0043,-0.0388 -0.01294,-0.0561 l -0.43991,-0.98765 c -0.03019,-0.069 -0.08194,-0.11213 -0.159576,-0.11213 h -0.01294 c -0.07763,0 -0.1337,0.0431 -0.16389,0.11213 l -0.435599,0.98765 c -0.0086,0.0173 -0.01725,0.0388 -0.01725,0.0604 z m 0.444226,-0.40972 0.172515,-0.41403 0.176828,0.41403 z m 0,0"
id="path4551"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 89.912794,158.36693 c 0.02588,0.0733 0.07763,0.11644 0.142325,0.11644 h 0.03019 c 0.06901,0 0.116447,-0.0431 0.142325,-0.11644 l 0.245833,-0.71594 0.250147,0.71594 c 0.02588,0.0733 0.07332,0.11644 0.142325,0.11644 h 0.02588 c 0.06901,0 0.12076,-0.0431 0.146638,-0.11644 l 0.349343,-0.98334 c 0.0043,-0.0172 0.01294,-0.0388 0.01294,-0.0561 0,-0.0733 -0.06469,-0.1337 -0.138012,-0.1337 -0.06901,0 -0.116449,0.0474 -0.1337,0.0992 l -0.250147,0.77201 -0.250146,-0.76338 c -0.02156,-0.069 -0.06901,-0.11213 -0.138012,-0.11213 h -0.02157 c -0.07332,0 -0.12076,0.0474 -0.142325,0.11213 l -0.250146,0.76338 -0.250147,-0.77201 c -0.01725,-0.0561 -0.06901,-0.0992 -0.133699,-0.0992 -0.07763,0 -0.142324,0.0604 -0.142324,0.13802 0,0.0129 0.0043,0.0345 0.01294,0.0517 z m 0,0"
id="path4547"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path36617"
d="m 83.916227,156.82886 c 0,-0.43021 -0.352575,-0.78279 -0.782788,-0.78279 h -6.009984 c -0.43021,0 -0.782785,0.35258 -0.782785,0.78279 v 9.5239 c 0,0.43021 0.352575,0.78279 0.782785,0.78279 h 6.009984 c 0.430213,0 0.782788,-0.35258 0.782788,-0.78279 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:none;stroke-width:0.27602378"
d="m 78.98931,158.33242 c 0,0.0776 0.06038,0.13802 0.138011,0.13802 0.07763,0 0.138012,-0.0604 0.138012,-0.13802 v -0.87119 h 0.263085 c 0.07332,0 0.129386,-0.0561 0.129386,-0.12939 0,-0.069 -0.05607,-0.12508 -0.129386,-0.12508 h -0.806507 c -0.06901,0 -0.125073,0.0561 -0.125073,0.12508 0,0.0733 0.05607,0.12939 0.125073,0.12939 h 0.267399 z m 0,0"
id="path4543"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 79.899913,158.33242 c 0,0.0776 0.06038,0.13802 0.138012,0.13802 0.07763,0 0.138012,-0.0604 0.138012,-0.13802 v -0.27171 h 0.219956 l 0.271711,0.34072 c 0.03019,0.0388 0.07332,0.069 0.133699,0.069 0.06901,0 0.133699,-0.0474 0.133699,-0.12507 0,-0.0431 -0.02156,-0.0733 -0.04744,-0.10782 l -0.189768,-0.23291 c 0.150951,-0.0604 0.250147,-0.18545 0.250147,-0.37953 v -0.004 c 0,-0.12076 -0.03882,-0.21564 -0.107822,-0.28896 -0.08194,-0.0819 -0.207018,-0.12507 -0.366594,-0.12507 h -0.4356 c -0.07763,0 -0.138012,0.0604 -0.138012,0.13801 z m 0.276024,-0.51754 v -0.35797 h 0.276024 c 0.133699,0 0.215643,0.0604 0.215643,0.17683 v 0.004 c 0,0.10782 -0.07763,0.17683 -0.211331,0.17683 z m 0,0"
id="path4539"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 81.273358,158.33242 c 0,0.0776 0.06038,0.13802 0.138012,0.13802 0.07763,0 0.138012,-0.0604 0.138012,-0.13802 v -1.00058 c 0,-0.0776 -0.06038,-0.13801 -0.138012,-0.13801 -0.07763,0 -0.138012,0.0604 -0.138012,0.13801 z m 0,0"
id="path4535"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path36629"
d="m 74.839789,156.82886 c 0,-0.43021 -0.351499,-0.78279 -0.782786,-0.78279 h -6.009987 c -0.430209,0 -0.782786,0.35258 -0.782786,0.78279 v 9.5239 c 0,0.43021 0.352577,0.78279 0.782786,0.78279 h 6.009987 c 0.431287,0 0.782786,-0.35258 0.782786,-0.78279 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:none;stroke-width:0.27602378"
d="m 70.008298,158.47906 c 0.267398,0 0.457164,-0.13801 0.457164,-0.38816 v -0.004 c 0,-0.21995 -0.142325,-0.31052 -0.396784,-0.37522 -0.215644,-0.0561 -0.271711,-0.0819 -0.271711,-0.1682 0,-0.0647 0.05607,-0.11213 0.163889,-0.11213 0.08626,0 0.172515,0.0302 0.263085,0.0863 0.02156,0.0129 0.04313,0.0172 0.06901,0.0172 0.07332,0 0.129386,-0.0561 0.129386,-0.12508 0,-0.0561 -0.03019,-0.0906 -0.06038,-0.11213 -0.112134,-0.069 -0.245833,-0.10782 -0.396783,-0.10782 -0.258773,0 -0.439913,0.15095 -0.439913,0.37522 v 0.004 c 0,0.25014 0.159576,0.31915 0.414035,0.38384 0.211331,0.0561 0.25446,0.0906 0.25446,0.15958 v 0.004 c 0,0.0733 -0.06901,0.12076 -0.181141,0.12076 -0.125073,0 -0.228582,-0.0431 -0.323465,-0.11645 -0.01725,-0.0129 -0.04313,-0.0216 -0.07763,-0.0216 -0.07332,0 -0.129387,0.0517 -0.129387,0.12507 0,0.0431 0.02156,0.0819 0.05175,0.10351 0.142325,0.10351 0.306214,0.15095 0.474416,0.15095 z m 0,0"
id="path4531"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 70.779266,158.33242 c 0,0.0776 0.06038,0.13802 0.138012,0.13802 0.07763,0 0.138011,-0.0604 0.138011,-0.13802 v -1.00058 c 0,-0.0776 -0.06038,-0.13801 -0.138011,-0.13801 -0.07763,0 -0.138012,0.0604 -0.138012,0.13801 z m 0,0"
id="path4527"
inkscape:connector-curvature="0" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 71.42837,158.33674 c 0,0.0733 0.06038,0.1337 0.138011,0.1337 0.07332,0 0.133699,-0.0604 0.133699,-0.1337 v -0.67281 l 0.552048,0.72456 c 0.03882,0.0474 0.07763,0.0819 0.146638,0.0819 h 0.0086 c 0.07763,0 0.138011,-0.0604 0.138011,-0.13801 v -1.00059 c 0,-0.0776 -0.06038,-0.13801 -0.138011,-0.13801 -0.07332,0 -0.138012,0.0604 -0.138012,0.13801 v 0.64693 l -0.530488,-0.69868 c -0.03882,-0.0474 -0.07763,-0.0819 -0.142325,-0.0819 h -0.03019 c -0.07763,0 -0.138012,0.0604 -0.138012,0.13801 z m 0,0"
id="path4523"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 95.695499,93.778432 c 0,0.06038 0.05175,0.107822 0.112136,0.107822 0.06038,0 0.112133,-0.04744 0.112133,-0.107822 v -0.431287 h 0.59949 v 0.431287 c 0,0.06038 0.04744,0.107822 0.107823,0.107822 0.06038,0 0.112133,-0.04744 0.112133,-0.107822 v -1.056654 c 0,-0.06038 -0.05175,-0.107821 -0.112133,-0.107821 -0.06038,0 -0.107823,0.04744 -0.107823,0.107821 v 0.422662 h -0.59949 v -0.422662 c 0,-0.06038 -0.05175,-0.107821 -0.112133,-0.107821 -0.06038,0 -0.112136,0.04744 -0.112136,0.107821 z m 0,0"
id="path4519"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 97.008682,93.782745 c 0,0.06038 0.04744,0.103509 0.10351,0.103509 0.04744,0 0.08626,-0.02588 0.103507,-0.06901 l 0.103508,-0.241521 h 0.612428 l 0.103511,0.232895 c 0.01725,0.04744 0.05175,0.07763 0.10782,0.07763 0.05607,0 0.10351,-0.04744 0.10351,-0.103509 0,-0.01725 -0.0043,-0.0345 -0.01294,-0.04744 l -0.465791,-1.043715 c -0.02588,-0.05175 -0.06901,-0.08626 -0.133699,-0.08626 h -0.0086 c -0.06469,0 -0.107823,0.0345 -0.1337,0.08626 l -0.465791,1.043715 c -0.0086,0.01725 -0.01725,0.0345 -0.01725,0.04744 z m 0.396785,-0.40541 0.219956,-0.504606 0.219956,0.504606 z m 0,0"
id="path4515"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 98.517701,93.778432 c 0,0.06038 0.05175,0.107822 0.112136,0.107822 0.06038,0 0.112133,-0.04744 0.112133,-0.107822 v -0.340717 h 0.276023 l 0.306216,0.392471 c 0.02588,0.0345 0.05607,0.05607 0.10782,0.05607 0.05176,0 0.103511,-0.03882 0.103511,-0.103509 0,-0.0345 -0.01294,-0.05607 -0.03451,-0.08194 l -0.241519,-0.301901 c 0.168201,-0.05607 0.284649,-0.176828 0.284649,-0.37522 v -0.0043 c 0,-0.112135 -0.0345,-0.202705 -0.10351,-0.271711 -0.07763,-0.07763 -0.202703,-0.125074 -0.362281,-0.125074 h -0.448537 c -0.06038,0 -0.112136,0.04744 -0.112136,0.112135 z m 0.224269,-0.534796 v -0.422662 h 0.319153 c 0.163888,0 0.258773,0.07332 0.258773,0.211331 0,0.129386 -0.0992,0.211331 -0.258773,0.211331 z m 0,0"
id="path4511"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 99.878209,93.765493 c 0,0.06469 0.05176,0.112135 0.112136,0.112135 h 0.357965 c 0.39679,0 0.6685,-0.276024 0.6685,-0.629679 0,-0.353656 -0.27171,-0.625367 -0.6685,-0.625367 h -0.357965 c -0.06038,0 -0.112136,0.04744 -0.112136,0.112135 z m 0.224271,-0.09057 v -0.853949 h 0.24583 c 0.26309,0 0.4356,0.181141 0.4356,0.426975 v 0.0043 c 0,0.245834 -0.17251,0.422662 -0.4356,0.422662 z m 0,0"
id="path4507"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 96.332769,103.78784 c 0.267396,0 0.448538,-0.13801 0.448538,-0.37522 v -0.004 c 0,-0.20701 -0.1337,-0.3019 -0.401098,-0.36659 -0.24152,-0.0561 -0.297588,-0.0992 -0.297588,-0.19839 0,-0.0863 0.07332,-0.15095 0.202706,-0.15095 0.09919,0 0.194079,0.0302 0.288962,0.0949 0.01725,0.0129 0.0345,0.0172 0.05607,0.0172 0.06038,0 0.107821,-0.0474 0.107821,-0.10351 0,-0.0431 -0.02588,-0.0733 -0.05175,-0.0863 -0.112135,-0.0776 -0.237209,-0.11645 -0.396785,-0.11645 -0.250147,0 -0.426974,0.14664 -0.426974,0.36229 v 0.004 c 0,0.23289 0.146638,0.31052 0.414036,0.37521 0.237207,0.0517 0.284649,0.10351 0.284649,0.18977 v 0.004 c 0,0.0949 -0.08626,0.15958 -0.219956,0.15958 -0.138012,0 -0.250147,-0.0474 -0.353655,-0.12939 -0.01294,-0.0129 -0.0345,-0.0216 -0.06469,-0.0216 -0.05607,0 -0.10351,0.0474 -0.10351,0.10351 0,0.0345 0.01725,0.0647 0.04313,0.0863 0.138012,0.10351 0.3019,0.15527 0.470104,0.15527 z m 0,0"
id="path4503"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 97.681869,103.79215 c 0.388157,0 0.659868,-0.29758 0.659868,-0.65124 0,-0.35365 -0.267398,-0.64693 -0.655555,-0.64693 -0.383847,0 -0.655556,0.29328 -0.655556,0.64693 v 0.004 c 0,0.35366 0.267396,0.64693 0.651243,0.64693 z m 0.0043,-0.2027 c -0.250148,0 -0.426974,-0.2027 -0.426974,-0.44854 0,-0.24583 0.176826,-0.44422 0.422661,-0.44422 0.250145,0 0.426974,0.2027 0.426974,0.44422 v 0.004 c 0,0.24584 -0.172514,0.44423 -0.422661,0.44423 z m 0,0"
id="path4499"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 98.663925,103.6714 c 0,0.0604 0.05176,0.10782 0.112136,0.10782 0.06038,0 0.112133,-0.0474 0.112133,-0.10782 v -0.41404 h 0.53911 c 0.05607,0 0.10351,-0.0431 0.10351,-0.0992 0,-0.0561 -0.04744,-0.0992 -0.10351,-0.0992 h -0.53911 v -0.34503 h 0.621054 c 0.05607,0 0.0992,-0.0431 0.0992,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.0992,-0.0992 h -0.733187 c -0.06038,0 -0.112136,0.0474 -0.112136,0.11214 z m 0,0"
id="path4495"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 100.23431,103.6714 c 0,0.0604 0.0518,0.10782 0.11213,0.10782 0.0604,0 0.11214,-0.0474 0.11214,-0.10782 v -0.95315 h 0.30621 c 0.0561,0 0.0992,-0.0474 0.0992,-0.0992 0,-0.0561 -0.0431,-0.10351 -0.0992,-0.10351 h -0.836696 c -0.05606,0 -0.0992,0.0474 -0.0992,0.10351 0,0.0517 0.04313,0.0992 0.0992,0.0992 h 0.306216 z m 0,0"
id="path4491"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 67.987595,93.7836 c 0,0.06038 0.04744,0.103508 0.103509,0.103508 0.04744,0 0.08626,-0.02588 0.103509,-0.069 l 0.103509,-0.241521 h 0.612428 l 0.103509,0.232895 c 0.01725,0.04744 0.05175,0.07763 0.107822,0.07763 0.05607,0 0.103509,-0.04744 0.103509,-0.103508 0,-0.01725 -0.0043,-0.0345 -0.01294,-0.04744 l -0.465791,-1.043721 c -0.02588,-0.05175 -0.06901,-0.08626 -0.133699,-0.08626 h -0.0086 c -0.06469,0 -0.107822,0.0345 -0.133699,0.08626 l -0.46579,1.043715 c -0.0086,0.01725 -0.01725,0.0345 -0.01725,0.04744 z m 0.396784,-0.40541 0.219957,-0.504606 0.219956,0.504606 z m 0,0"
id="path4487"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 69.497336,93.779287 c 0,0.06038 0.05175,0.107821 0.112135,0.107821 0.06038,0 0.107822,-0.04744 0.107822,-0.107821 v -0.797881 l 0.64693,0.836697 c 0.03019,0.03881 0.06038,0.069 0.112135,0.069 h 0.0086 c 0.06038,0 0.107822,-0.05175 0.107822,-0.112134 v -1.052341 c 0,-0.06038 -0.04744,-0.107822 -0.107822,-0.107822 -0.06038,0 -0.107822,0.04744 -0.107822,0.107822 v 0.772004 l -0.629683,-0.815128 c -0.03019,-0.03881 -0.06038,-0.06469 -0.112135,-0.06469 h -0.02588 c -0.06038,0 -0.112135,0.05175 -0.112135,0.112135 z m 0,0"
id="path4483"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 70.980204,93.766348 c 0,0.06469 0.05175,0.112135 0.112135,0.112135 h 0.67712 c 0.05607,0 0.103509,-0.04313 0.103509,-0.0992 0,-0.05607 -0.04744,-0.103509 -0.103509,-0.103509 h -0.564986 v -0.953145 c 0,-0.06038 -0.05175,-0.107822 -0.112134,-0.107822 -0.06038,0 -0.112135,0.04744 -0.112135,0.107822 z m 0,0"
id="path4479"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 72.682202,93.900047 c 0.185454,0 0.336404,-0.06469 0.444226,-0.138012 0.05175,-0.03019 0.07763,-0.07763 0.07763,-0.138012 v -0.336404 c 0,-0.06038 -0.04744,-0.112134 -0.112135,-0.112134 H 72.74258 c -0.05175,0 -0.0992,0.04313 -0.0992,0.0992 0,0.05175 0.04744,0.09488 0.0992,0.09488 h 0.250147 v 0.232895 c -0.07763,0.06038 -0.185453,0.09488 -0.306214,0.09488 -0.254459,0 -0.426974,-0.189766 -0.426974,-0.448538 0,-0.241521 0.176827,-0.444226 0.409723,-0.444226 0.133699,0 0.224269,0.03882 0.301901,0.0992 0.02156,0.01294 0.04313,0.02588 0.06901,0.02588 0.06038,0 0.112134,-0.05175 0.112134,-0.112134 0,-0.04313 -0.02588,-0.07332 -0.04744,-0.09057 -0.112134,-0.08194 -0.24152,-0.125073 -0.426974,-0.125073 -0.379533,0 -0.646931,0.297588 -0.646931,0.646931 v 0.0043 c 0,0.366594 0.25446,0.646931 0.651244,0.646931 z m 0,0"
id="path4475"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 68.730515,103.65932 c 0,0.0647 0.05175,0.11213 0.112134,0.11213 h 0.357969 c 0.396784,0 0.668495,-0.27602 0.668495,-0.62968 0,-0.35365 -0.271711,-0.62536 -0.668495,-0.62536 h -0.357969 c -0.06038,0 -0.112134,0.0474 -0.112134,0.11213 z m 0.224269,-0.0906 v -0.85395 h 0.245834 c 0.263085,0 0.4356,0.18114 0.4356,0.42697 v 0.004 c 0,0.24584 -0.172515,0.42266 -0.4356,0.42266 z m 0,0"
id="path4471"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 70.19313,103.67226 c 0,0.0604 0.05175,0.10782 0.112135,0.10782 0.06038,0 0.112134,-0.0474 0.112134,-0.10782 v -1.05666 c 0,-0.0604 -0.05175,-0.10782 -0.112134,-0.10782 -0.06038,0 -0.112135,0.0474 -0.112135,0.10782 z m 0,0"
id="path4467"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 71.395076,103.79301 c 0.185453,0 0.336404,-0.0647 0.444225,-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.112134,-0.11214 h -0.349343 c -0.05175,0 -0.0992,0.0431 -0.0992,0.0992 0,0.0517 0.04744,0.0949 0.0992,0.0949 H 71.7056 v 0.2329 c -0.07763,0.0604 -0.185453,0.0949 -0.306214,0.0949 -0.254459,0 -0.426974,-0.18977 -0.426974,-0.44854 0,-0.24152 0.176828,-0.44422 0.409723,-0.44422 0.133699,0 0.224269,0.0388 0.301901,0.0992 0.02156,0.0129 0.04313,0.0259 0.06901,0.0259 0.06038,0 0.112135,-0.0517 0.112135,-0.11214 0,-0.0431 -0.02588,-0.0733 -0.04744,-0.0906 -0.112135,-0.0819 -0.241521,-0.12507 -0.426975,-0.12507 -0.379532,0 -0.64693,0.29759 -0.64693,0.64693 v 0.004 c 0,0.36659 0.254459,0.64693 0.651243,0.64693 z m 0,0"
id="path4463"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 72.274169,103.67226 c 0,0.0604 0.05175,0.10782 0.112134,0.10782 0.06038,0 0.112135,-0.0474 0.112135,-0.10782 v -1.05666 c 0,-0.0604 -0.05175,-0.10782 -0.112135,-0.10782 -0.06038,0 -0.112134,0.0474 -0.112134,0.10782 z m 0,0"
id="path4459"
inkscape:connector-curvature="0" />
</g>
</svg>

+ 0
- 307
vst2_bin/plugins/Fundamental/res__OLD/VCO-2.svg View File

@@ -1,307 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="90.134254"
height="380"
viewBox="0 0 23.848022 100.54167"
version="1.1"
id="svg11003"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="VCO-2.svg">
<defs
id="defs10997" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="-213.83872"
inkscape:cy="134.93999"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1200"
inkscape:window-x="-12"
inkscape:window-y="139"
inkscape:window-maximized="0"
units="px" />
<metadata
id="metadata11000">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-61.822472,-54.305105)">
<path
inkscape:connector-curvature="0"
id="path33509"
d="M 61.895791,54.378424 H 85.597176 V 154.77453 H 61.895791 Z m 0,0"
style="fill:#e6e6e6;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 69.454238,61.823653 h 0.0345 c 0.138012,0 0.232897,-0.07332 0.284652,-0.198392 l 0.759063,-1.815719 c 0.01294,-0.03019 0.02588,-0.07332 0.02588,-0.112135 0,-0.142325 -0.112136,-0.245834 -0.250148,-0.245834 -0.120761,0 -0.21133,0.07763 -0.245832,0.159577 l -0.586552,1.518131 -0.577924,-1.50088 c -0.03882,-0.103509 -0.125074,-0.176828 -0.258773,-0.176828 -0.142325,0 -0.254458,0.107822 -0.254458,0.250147 0,0.04313 0.01294,0.08194 0.03019,0.125073 l 0.75044,1.798468 c 0.05175,0.125073 0.15095,0.198392 0.288962,0.198392 z m 0,0"
id="path6079"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 71.949338,61.827966 c 0.370906,0 0.616739,-0.107822 0.828069,-0.288963 0.04313,-0.04313 0.08626,-0.103509 0.08626,-0.185453 0,-0.129386 -0.112136,-0.232895 -0.241522,-0.232895 -0.06038,0 -0.112134,0.02156 -0.150951,0.05607 -0.146637,0.116448 -0.288962,0.181141 -0.504605,0.181141 -0.396785,0 -0.672809,-0.332091 -0.672809,-0.728876 v -0.0043 c 0,-0.396784 0.284649,-0.724563 0.672809,-0.724563 0.181139,0 0.332092,0.06038 0.474416,0.168202 0.03881,0.02156 0.08195,0.04744 0.150951,0.04744 0.142324,0 0.254457,-0.107822 0.254457,-0.245834 0,-0.09057 -0.04744,-0.163889 -0.0992,-0.202705 -0.194079,-0.142324 -0.426974,-0.237208 -0.776316,-0.237208 -0.711624,0 -1.207604,0.539109 -1.207604,1.198979 v 0.0086 c 0,0.664182 0.504606,1.190353 1.18604,1.190353 z m 0,0"
id="path6075"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.395864,61.827966 c 0.715936,0 1.233482,-0.539109 1.233482,-1.198979 v -0.0043 c 0,-0.65987 -0.513234,-1.194666 -1.22917,-1.194666 -0.715936,0 -1.233479,0.539109 -1.233479,1.198979 v 0.0086 c 0,0.65987 0.513231,1.190353 1.229167,1.190353 z m 0.0043,-0.470103 c -0.409723,0 -0.702998,-0.332091 -0.702998,-0.728876 v -0.0043 c 0,-0.396784 0.28465,-0.724563 0.698686,-0.724563 0.409723,0 0.698685,0.332091 0.698685,0.728876 v 0.0086 c 0,0.396784 -0.28465,0.72025 -0.694373,0.72025 z m 0,0"
id="path6071"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 76.315024,61.004207 h 0.573611 c 0.1337,0 0.245833,-0.107822 0.245833,-0.241521 0,-0.133699 -0.112133,-0.24152 -0.245833,-0.24152 h -0.573611 c -0.133699,0 -0.241522,0.107821 -0.241522,0.24152 0,0.133699 0.107823,0.241521 0.241522,0.241521 z m 0,0"
id="path6067"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 77.304674,61.547629 c 0,0.150951 0.116449,0.241521 0.276024,0.241521 h 1.259359 c 0.120761,0 0.219956,-0.09488 0.219956,-0.219956 0,-0.120761 -0.0992,-0.219957 -0.219956,-0.219957 h -0.810821 l 0.379534,-0.293275 c 0.409723,-0.31484 0.608116,-0.508919 0.608116,-0.897077 v -0.0043 c 0,-0.4356 -0.319154,-0.715937 -0.797883,-0.715937 -0.349343,0 -0.569299,0.125074 -0.754753,0.340717 -0.03881,0.04313 -0.06038,0.103509 -0.06038,0.159576 0,0.129386 0.10351,0.228582 0.232897,0.228582 0.07763,0 0.138012,-0.0345 0.172514,-0.06901 0.129386,-0.142324 0.232896,-0.202704 0.375221,-0.202704 0.185452,0 0.314838,0.103508 0.314838,0.3019 0,0.189767 -0.116448,0.319153 -0.401097,0.556361 l -0.659869,0.539109 c -0.08626,0.06901 -0.133699,0.155263 -0.133699,0.254459 z m 0,0"
id="path6063"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.828913,125.79607 c 0,0.0604 0.05175,0.10782 0.112135,0.10782 0.06038,0 0.112133,-0.0475 0.112133,-0.10782 v -0.41404 h 0.53911 c 0.05607,0 0.10351,-0.0431 0.10351,-0.0992 0,-0.0561 -0.04744,-0.0992 -0.10351,-0.0992 h -0.53911 v -0.34503 h 0.621054 c 0.05607,0 0.0992,-0.0431 0.0992,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.0992,-0.0992 h -0.733187 c -0.06038,0 -0.112135,0.0474 -0.112135,0.11213 z m 0,0"
id="path6059"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 68.043548,125.79607 c 0,0.0604 0.04744,0.10782 0.107823,0.10782 0.06469,0 0.112134,-0.0475 0.112134,-0.10782 v -0.75044 l 0.301902,0.45716 c 0.02588,0.0345 0.05607,0.0561 0.09488,0.0561 0.03882,0 0.06901,-0.0216 0.09057,-0.0561 l 0.306216,-0.46148 v 0.75476 c 0,0.0561 0.05175,0.10782 0.112133,0.10782 0.06038,0 0.112135,-0.0475 0.112135,-0.10782 v -1.05234 c 0,-0.0604 -0.05175,-0.11214 -0.112135,-0.11214 h -0.02588 c -0.04313,0 -0.07332,0.0216 -0.09919,0.0561 l -0.379534,0.59949 -0.383844,-0.59518 c -0.02156,-0.0345 -0.05175,-0.0604 -0.0992,-0.0604 h -0.02588 c -0.06038,0 -0.112136,0.0518 -0.112136,0.11214 z m 0,0"
id="path6055"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 77.391439,125.91251 c 0.267396,0 0.448538,-0.13801 0.448538,-0.37522 v -0.004 c 0,-0.20702 -0.1337,-0.3019 -0.401098,-0.36659 -0.24152,-0.0561 -0.297588,-0.0992 -0.297588,-0.1984 0,-0.0863 0.07332,-0.15095 0.202706,-0.15095 0.09919,0 0.194079,0.0302 0.288962,0.0949 0.01725,0.0129 0.0345,0.0172 0.05607,0.0172 0.06038,0 0.107821,-0.0474 0.107821,-0.10351 0,-0.0431 -0.02588,-0.0733 -0.05175,-0.0863 -0.112135,-0.0776 -0.237209,-0.11644 -0.396785,-0.11644 -0.250147,0 -0.426974,0.14663 -0.426974,0.36228 v 0.004 c 0,0.23289 0.146638,0.31052 0.414036,0.37522 0.237207,0.0517 0.28465,0.10351 0.28465,0.18976 v 0.004 c 0,0.0949 -0.08626,0.15957 -0.219957,0.15957 -0.138012,0 -0.250147,-0.0474 -0.353655,-0.12938 -0.01294,-0.0129 -0.0345,-0.0216 -0.06469,-0.0216 -0.05607,0 -0.10351,0.0474 -0.10351,0.10351 0,0.0345 0.01725,0.0647 0.04313,0.0863 0.138012,0.10351 0.3019,0.15527 0.470104,0.15527 z m 0,0"
id="path6051"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 78.502599,125.79607 c 0,0.0604 0.05175,0.10782 0.112136,0.10782 0.06038,0 0.112135,-0.0475 0.112135,-0.10782 v -0.39248 l 0.426974,-0.58655 c 0.01725,-0.0216 0.03019,-0.0517 0.03019,-0.0819 0,-0.0561 -0.04313,-0.10782 -0.10782,-0.10782 -0.04744,0 -0.07763,0.0302 -0.10351,0.069 l -0.357968,0.50461 -0.349343,-0.50461 c -0.02588,-0.0388 -0.06038,-0.0647 -0.107823,-0.0647 -0.06038,0 -0.112133,0.0474 -0.112133,0.10351 0,0.0302 0.01294,0.0561 0.02588,0.0776 l 0.431287,0.59518 z m 0,0"
id="path6047"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 79.444331,125.79607 c 0,0.0604 0.05175,0.10782 0.112135,0.10782 0.06038,0 0.107821,-0.0475 0.107821,-0.10782 v -0.79789 l 0.646932,0.8367 c 0.03019,0.0388 0.06038,0.069 0.112133,0.069 h 0.0086 c 0.06038,0 0.107823,-0.0518 0.107823,-0.11214 v -1.05234 c 0,-0.0604 -0.04744,-0.10782 -0.107823,-0.10782 -0.06038,0 -0.107821,0.0474 -0.107821,0.10782 v 0.77201 l -0.629679,-0.81514 c -0.03019,-0.0388 -0.06038,-0.0647 -0.112136,-0.0647 h -0.02588 c -0.06038,0 -0.112135,0.0518 -0.112135,0.11214 z m 0,0"
id="path6043"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 81.503704,125.91683 c 0.202706,0 0.336402,-0.0647 0.452851,-0.16821 0.02156,-0.0173 0.03882,-0.0474 0.03882,-0.0776 0,-0.0561 -0.05176,-0.10351 -0.107823,-0.10351 -0.02588,0 -0.04744,0.009 -0.06469,0.0259 -0.09057,0.0776 -0.181139,0.12076 -0.314838,0.12076 -0.23721,0 -0.414036,-0.20271 -0.414036,-0.44854 0,-0.24584 0.176826,-0.44423 0.414036,-0.44423 0.120759,0 0.215643,0.0431 0.3019,0.11214 0.01294,0.0129 0.0345,0.0216 0.06469,0.0216 0.06038,0 0.112136,-0.0474 0.112136,-0.10782 0,-0.0388 -0.02156,-0.069 -0.04313,-0.0863 -0.112135,-0.0863 -0.237206,-0.14232 -0.431286,-0.14232 -0.379534,0 -0.64693,0.29327 -0.64693,0.64693 v 0.004 c 0,0.36228 0.271708,0.64693 0.638304,0.64693 z m 0,0"
id="path6039"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path37525"
d="M 63.809628,122.02151 H 83.683339"
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 66.783071,89.5403 c 0.02588,0.069 0.07332,0.11213 0.142324,0.11213 h 0.02588 c 0.06469,0 0.116448,-0.0431 0.142324,-0.11213 l 0.34503,-1.00922 0.340717,1.00922 c 0.02588,0.069 0.07332,0.11213 0.142325,0.11213 h 0.02588 c 0.06469,0 0.116446,-0.0431 0.142325,-0.11213 l 0.457163,-1.28093 c 0.0043,-0.0173 0.01294,-0.0388 0.01294,-0.0561 0,-0.0733 -0.06469,-0.12939 -0.138012,-0.12939 -0.06469,0 -0.112133,0.0431 -0.129384,0.0992 l -0.357968,1.06096 -0.349342,-1.05665 c -0.01725,-0.0647 -0.06469,-0.10782 -0.1337,-0.10782 h -0.02156 c -0.06901,0 -0.116446,0.0431 -0.138012,0.10782 l -0.349343,1.05665 -0.353655,-1.06096 c -0.01725,-0.0561 -0.06901,-0.0992 -0.133699,-0.0992 -0.07763,0 -0.138012,0.0561 -0.138012,0.1337 0,0.0173 0.0043,0.0345 0.0086,0.0517 z m 0,0"
id="path6035"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 68.674299,89.51442 c 0,0.0733 0.05175,0.12938 0.125074,0.12938 0.05607,0 0.10351,-0.0345 0.125074,-0.0862 l 0.129386,-0.3019 h 0.750441 l 0.125071,0.29327 c 0.02588,0.0561 0.06901,0.0949 0.133699,0.0949 0.07332,0 0.129387,-0.0604 0.129387,-0.13369 0,-0.0173 -0.0043,-0.0345 -0.01725,-0.0561 L 69.60157,88.17316 c -0.03019,-0.069 -0.08195,-0.11214 -0.159579,-0.11214 h -0.01294 c -0.07763,0 -0.133699,0.0431 -0.163888,0.11214 l -0.573611,1.28092 c -0.01294,0.0216 -0.01725,0.0431 -0.01725,0.0604 z m 0.483042,-0.49598 0.271711,-0.62537 0.271712,0.62537 z m 0,0"
id="path6031"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 70.995793,89.65243 h 0.01294 c 0.07763,0 0.129387,-0.0431 0.159576,-0.10782 l 0.543422,-1.28092 c 0.0043,-0.0173 0.01294,-0.0388 0.01294,-0.0604 0,-0.0733 -0.06038,-0.12939 -0.133699,-0.12939 -0.06469,0 -0.116448,0.0431 -0.133699,0.0906 l -0.45285,1.12135 -0.444228,-1.11272 c -0.02156,-0.0604 -0.06901,-0.0992 -0.138012,-0.0992 -0.07763,0 -0.138012,0.0604 -0.138012,0.1337 0,0.0216 0.0086,0.0431 0.01725,0.0647 l 0.539107,1.2723 c 0.03019,0.0647 0.07763,0.10782 0.155263,0.10782 z m 0,0"
id="path6027"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 72.178425,89.63087 h 0.910016 c 0.06469,0 0.120761,-0.0518 0.120761,-0.12076 0,-0.069 -0.05607,-0.12076 -0.120761,-0.12076 H 72.312124 V 88.971 h 0.664181 c 0.06901,0 0.120761,-0.0518 0.120761,-0.11645 0,-0.069 -0.05175,-0.12507 -0.120761,-0.12507 h -0.664181 v -0.4011 h 0.763379 c 0.06901,0 0.120758,-0.0517 0.120758,-0.12076 0,-0.069 -0.05175,-0.12076 -0.120758,-0.12076 h -0.897078 c -0.07763,0 -0.138012,0.0561 -0.138012,0.1337 v 1.27229 c 0,0.0776 0.06038,0.13802 0.138012,0.13802 z m 0,0"
id="path6023"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.288297,106.72747 c 0,0.0776 0.06038,0.13801 0.138012,0.13801 0.07332,0 0.1337,-0.0604 0.1337,-0.13801 v -0.50461 h 0.668493 c 0.06901,0 0.120761,-0.0561 0.120761,-0.12507 0,-0.0647 -0.05175,-0.12076 -0.120761,-0.12076 h -0.668493 v -0.42266 H 67.3277 c 0.06901,0 0.120758,-0.0561 0.120758,-0.12507 0,-0.069 -0.05175,-0.12076 -0.120758,-0.12076 h -0.901391 c -0.07763,0 -0.138012,0.0561 -0.138012,0.13369 z m 0,0"
id="path6019"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 67.766458,106.73178 c 0,0.0733 0.05607,0.1337 0.1337,0.1337 0.07332,0 0.133699,-0.0604 0.133699,-0.1337 v -0.92726 l 0.375219,0.56498 c 0.03019,0.0431 0.06469,0.069 0.112135,0.069 0.05175,0 0.08626,-0.0259 0.116446,-0.069 l 0.375222,-0.5693 v 0.92727 c 0,0.0733 0.06469,0.13801 0.138012,0.13801 0.07763,0 0.133699,-0.0604 0.133699,-0.13801 v -1.29386 c 0,-0.0733 -0.05607,-0.1337 -0.133699,-0.1337 h -0.03019 c -0.05607,0 -0.09488,0.0216 -0.125074,0.069 l -0.470101,0.73318 -0.465791,-0.73318 c -0.02588,-0.0388 -0.06901,-0.069 -0.129387,-0.069 h -0.02588 c -0.07763,0 -0.138012,0.0604 -0.138012,0.1337 z m 0,0"
id="path6015"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 71.061558,106.87842 c 0.250148,0 0.418349,-0.0776 0.564986,-0.20702 0.02156,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12508 -0.129387,-0.12508 -0.0345,0 -0.06038,0.0129 -0.08194,0.0302 -0.112136,0.0949 -0.224269,0.15095 -0.383847,0.15095 -0.297587,0 -0.513231,-0.24583 -0.513231,-0.54773 v -0.004 c 0,-0.3019 0.215644,-0.54774 0.513231,-0.54774 0.146637,0 0.258773,0.0561 0.366596,0.14233 0.01725,0.0129 0.04313,0.0259 0.08194,0.0259 0.07332,0 0.1337,-0.0604 0.1337,-0.13369 0,-0.0474 -0.02156,-0.0863 -0.05176,-0.10783 -0.133699,-0.10351 -0.293274,-0.17683 -0.530484,-0.17683 -0.470101,0 -0.79788,0.36229 -0.79788,0.8022 v 0.004 c 0,0.44423 0.336404,0.79357 0.784942,0.79357 z m 0,0"
id="path6007"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 72.637363,106.87411 h 0.01294 c 0.07763,0 0.129387,-0.0431 0.159576,-0.10782 l 0.543422,-1.28093 c 0.0043,-0.0172 0.01294,-0.0388 0.01294,-0.0604 0,-0.0733 -0.06038,-0.12938 -0.1337,-0.12938 -0.06469,0 -0.116448,0.0431 -0.133699,0.0906 l -0.45285,1.12134 -0.444228,-1.11272 c -0.02156,-0.0604 -0.06901,-0.0992 -0.138012,-0.0992 -0.07763,0 -0.138012,0.0604 -0.138012,0.1337 0,0.0216 0.0086,0.0431 0.01725,0.0647 l 0.539107,1.2723 c 0.03019,0.0647 0.07763,0.10782 0.155263,0.10782 z m 0,0"
id="path6003"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 65.605389,137.56507 c 0.02156,0.0561 0.06038,0.0906 0.112133,0.0906 h 0.02156 c 0.05607,0 0.09488,-0.0345 0.116448,-0.0906 l 0.280337,-0.81945 0.280337,0.81945 c 0.01725,0.0561 0.05607,0.0906 0.112135,0.0906 h 0.02156 c 0.05175,0 0.09488,-0.0345 0.116448,-0.0906 l 0.370906,-1.03941 c 0.0043,-0.0129 0.0086,-0.0302 0.0086,-0.0474 0,-0.0561 -0.05175,-0.10351 -0.107821,-0.10351 -0.05607,0 -0.09057,0.0345 -0.107823,0.0776 l -0.288962,0.86688 -0.284649,-0.86257 c -0.01725,-0.0518 -0.05607,-0.0863 -0.112136,-0.0863 h -0.01294 c -0.05607,0 -0.09488,0.0345 -0.112136,0.0863 l -0.284649,0.86257 -0.288962,-0.86688 c -0.01294,-0.0431 -0.05607,-0.0776 -0.10782,-0.0776 -0.06038,0 -0.116449,0.0475 -0.116449,0.10782 0,0.0129 0.0043,0.0302 0.01294,0.0431 z m 0,0"
id="path5903"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 67.15295,137.5435 c 0,0.0604 0.04744,0.10351 0.103511,0.10351 0.04744,0 0.08626,-0.0259 0.103507,-0.069 l 0.103508,-0.24151 h 0.612428 l 0.103511,0.23289 c 0.01725,0.0474 0.05175,0.0776 0.10782,0.0776 0.05607,0 0.10351,-0.0474 0.10351,-0.10351 0,-0.0172 -0.0043,-0.0345 -0.01294,-0.0474 l -0.465791,-1.04371 c -0.02588,-0.0518 -0.06901,-0.0863 -0.133699,-0.0863 h -0.0086 c -0.06469,0 -0.107823,0.0345 -0.133699,0.0863 l -0.465791,1.04371 c -0.0086,0.0173 -0.01725,0.0345 -0.01725,0.0474 z m 0.396785,-0.40541 0.219956,-0.5046 0.219957,0.5046 z m 0,0"
id="path5899"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 69.058548,137.65564 h 0.01294 c 0.06038,0 0.103508,-0.0345 0.125072,-0.0906 l 0.444227,-1.03941 c 0.0043,-0.0129 0.0086,-0.0302 0.0086,-0.0474 0,-0.0561 -0.04744,-0.10351 -0.107823,-0.10351 -0.05176,0 -0.09057,0.0345 -0.107821,0.069 l -0.366596,0.91433 -0.362281,-0.9057 c -0.01725,-0.0474 -0.05607,-0.0776 -0.112133,-0.0776 -0.06469,0 -0.112135,0.0475 -0.112135,0.10782 0,0.0173 0.0043,0.0345 0.01294,0.0518 l 0.439915,1.03078 c 0.02156,0.0561 0.06469,0.0906 0.125071,0.0906 z m 0,0"
id="path5895"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 70.032165,137.63839 h 0.741815 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0992 0,-0.0518 -0.04744,-0.0992 -0.09919,-0.0992 h -0.629682 v -0.3364 h 0.53911 c 0.05175,0 0.0992,-0.0431 0.0992,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.0992,-0.10351 h -0.53911 v -0.32347 h 0.621054 c 0.05175,0 0.09488,-0.0431 0.09488,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09488,-0.0992 h -0.733187 c -0.06038,0 -0.112136,0.0474 -0.112136,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.112136,0.11214 z m 0,0"
id="path5891"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path37671"
d="m 83.225097,136.00599 c 0,-0.43021 -0.352576,-0.78278 -0.782786,-0.78278 h -6.009987 c -0.430207,0 -0.782785,0.35257 -0.782785,0.78278 v 9.5239 c 0,0.43021 0.352578,0.78279 0.782785,0.78279 h 6.009987 c 0.43021,0 0.782786,-0.35258 0.782786,-0.78279 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 78.119186,137.6605 c 0.388157,0 0.672806,-0.29327 0.672806,-0.65124 0,-0.35797 -0.280336,-0.64693 -0.668493,-0.64693 -0.38816,0 -0.668496,0.29328 -0.668496,0.64693 v 0.004 c 0,0.35797 0.280336,0.64693 0.664183,0.64693 z m 0.0043,-0.25445 c -0.219956,0 -0.379534,-0.18114 -0.379534,-0.39679 0,-0.21564 0.155265,-0.39247 0.375221,-0.39247 0.224269,0 0.383844,0.17683 0.383844,0.39247 v 0.004 c 0,0.21565 -0.155262,0.39248 -0.379531,0.39248 z m 0,0"
id="path5887"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 79.618786,137.6605 c 0.340717,0 0.552048,-0.18976 0.552048,-0.56929 v -0.58224 c 0,-0.0776 -0.06038,-0.13801 -0.138012,-0.13801 -0.07763,0 -0.138012,0.0604 -0.138012,0.13801 v 0.59517 c 0,0.1984 -0.10351,0.30191 -0.271711,0.30191 -0.168204,0 -0.271711,-0.10783 -0.271711,-0.31053 v -0.58655 c 0,-0.0776 -0.06038,-0.13801 -0.138012,-0.13801 -0.07332,0 -0.138012,0.0604 -0.138012,0.13801 v 0.59086 c 0,0.37091 0.207018,0.56067 0.543422,0.56067 z m 0,0"
id="path5883"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 80.796812,137.50955 c 0,0.0776 0.06038,0.13802 0.138012,0.13802 0.07763,0 0.138012,-0.0604 0.138012,-0.13802 v -0.87119 h 0.263085 c 0.07332,0 0.129387,-0.0561 0.129387,-0.12939 0,-0.069 -0.05607,-0.12507 -0.129387,-0.12507 h -0.806505 c -0.06901,0 -0.125074,0.0561 -0.125074,0.12507 0,0.0733 0.05607,0.12939 0.125074,0.12939 h 0.267396 z m 0,0"
id="path5879"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 69.973798,67.206917 c 0,0.09488 0.07332,0.168202 0.168201,0.168202 0.09488,0 0.1682,-0.07332 0.1682,-0.168202 v -0.629679 h 0.836698 c 0.08195,0 0.150952,-0.06901 0.150952,-0.155264 0,-0.08626 -0.06901,-0.155263 -0.150952,-0.155263 h -0.836698 v -0.52617 h 0.957459 c 0.08626,0 0.155263,-0.06901 0.155263,-0.155264 0,-0.08626 -0.06901,-0.155263 -0.155263,-0.155263 h -1.125659 c -0.09488,0 -0.168201,0.07332 -0.168201,0.172515 z m 0,0"
id="path5875"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 71.793618,67.206917 c 0,0.09488 0.07332,0.168202 0.168201,0.168202 0.09488,0 0.168201,-0.07332 0.168201,-0.168202 v -0.517545 h 0.431289 l 0.465788,0.59949 c 0.03882,0.05175 0.09057,0.08626 0.168204,0.08626 0.08194,0 0.159575,-0.06469 0.159575,-0.155263 0,-0.05175 -0.02156,-0.09057 -0.05175,-0.129387 L 72.93222,66.620369 c 0.258773,-0.07763 0.439912,-0.267398 0.439912,-0.573611 v -0.0086 c 0,-0.168202 -0.06038,-0.310527 -0.159575,-0.414036 -0.125074,-0.12076 -0.314841,-0.194079 -0.560674,-0.194079 h -0.690059 c -0.09488,0 -0.168201,0.07332 -0.168201,0.172515 z m 0.336402,-0.819446 v -0.64693 H 72.626 c 0.250147,0 0.401097,0.112134 0.401097,0.319152 v 0.0043 c 0,0.198392 -0.155263,0.323465 -0.396782,0.323465 z m 0,0"
id="path5871"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.007434,67.36218 h 1.138597 c 0.08195,0 0.15095,-0.06469 0.15095,-0.15095 0,-0.08194 -0.06901,-0.150951 -0.15095,-0.150951 h -0.970396 v -0.521857 h 0.832384 c 0.08195,0 0.150951,-0.06469 0.150951,-0.146638 0,-0.08626 -0.06901,-0.155263 -0.150951,-0.155263 h -0.832384 v -0.504606 h 0.957458 c 0.08194,0 0.15095,-0.06469 0.15095,-0.150951 0,-0.08194 -0.06901,-0.15095 -0.15095,-0.15095 h -1.125659 c -0.09488,0 -0.168201,0.07332 -0.168201,0.172515 v 1.587136 c 0,0.0992 0.07332,0.172515 0.168201,0.172515 z m 0,0"
id="path5867"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 76.59067,67.396683 c 0.224268,0 0.426974,-0.06901 0.590862,-0.185453 l 0.138012,0.125073 c 0.03019,0.03019 0.06901,0.05175 0.116448,0.05175 0.09057,0 0.159576,-0.07763 0.159576,-0.16389 0,-0.05607 -0.02156,-0.0992 -0.06038,-0.133699 l -0.125074,-0.0992 c 0.125074,-0.168202 0.19408,-0.37522 0.19408,-0.595176 v -0.0043 c 0,-0.543421 -0.414036,-0.996273 -1.004898,-0.996273 -0.595178,0 -1.013526,0.457165 -1.013526,1.000586 v 0.0043 c 0,0.543422 0.414036,0.996274 1.004901,0.996273 z m 0.09919,-0.608115 0.241522,0.202705 c -0.09489,0.05607 -0.207018,0.09057 -0.332092,0.09057 -0.383847,0 -0.659871,-0.310527 -0.659871,-0.685747 v -0.0043 c 0,-0.375219 0.267399,-0.681433 0.651246,-0.681433 0.383844,0 0.659868,0.310526 0.659868,0.685746 v 0.0043 c 0,0.138012 -0.0345,0.263085 -0.09488,0.366594 l -0.250145,-0.224268 c -0.03881,-0.0345 -0.06901,-0.05175 -0.116446,-0.05175 -0.09057,0 -0.159578,0.07763 -0.159578,0.16389 0,0.06038 0.02156,0.0992 0.06038,0.133698 z m 0,0"
id="path5863"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 77.569792,92.32874 c 0,0.0604 0.04744,0.10351 0.10351,0.10351 0.04744,0 0.08626,-0.0259 0.103508,-0.069 l 0.103508,-0.24152 h 0.612428 l 0.10351,0.23289 c 0.01725,0.0474 0.05175,0.0776 0.107821,0.0776 0.05607,0 0.10351,-0.0475 0.10351,-0.10351 0,-0.0173 -0.0043,-0.0345 -0.01294,-0.0474 l -0.465791,-1.04372 c -0.02588,-0.0517 -0.06901,-0.0863 -0.133699,-0.0863 h -0.0086 c -0.06469,0 -0.107823,0.0345 -0.133699,0.0863 l -0.465791,1.04372 c -0.0086,0.0173 -0.01725,0.0345 -0.01725,0.0474 z m 0.396785,-0.40541 0.219956,-0.50461 0.219956,0.50461 z m 0,0"
id="path5767"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 79.079531,92.32443 c 0,0.0604 0.05175,0.10782 0.112136,0.10782 0.06038,0 0.10782,-0.0475 0.10782,-0.10782 v -0.79789 l 0.646933,0.8367 c 0.03019,0.0388 0.06038,0.069 0.112133,0.069 h 0.0086 c 0.06038,0 0.107823,-0.0518 0.107823,-0.11214 v -1.05234 c 0,-0.0604 -0.04744,-0.10782 -0.107823,-0.10782 -0.06038,0 -0.10782,0.0474 -0.10782,0.10782 v 0.77201 l -0.629679,-0.81514 c -0.03019,-0.0388 -0.06038,-0.0647 -0.112136,-0.0647 h -0.02588 c -0.06038,0 -0.112136,0.0517 -0.112136,0.11214 z m 0,0"
id="path5763"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 80.562401,92.31148 c 0,0.0647 0.05176,0.11214 0.112136,0.11214 h 0.677122 c 0.05607,0 0.103508,-0.0431 0.103508,-0.0992 0,-0.0561 -0.04744,-0.10351 -0.103508,-0.10351 H 80.78667 v -0.95315 c 0,-0.0604 -0.05175,-0.10782 -0.112133,-0.10782 -0.06038,0 -0.112136,0.0474 -0.112136,0.10782 z m 0,0"
id="path5759"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 82.264403,92.44518 c 0.185454,0 0.336404,-0.0647 0.444224,-0.13801 0.05176,-0.0302 0.07763,-0.0776 0.07763,-0.13801 v -0.3364 c 0,-0.0604 -0.04744,-0.11214 -0.112133,-0.11214 h -0.349343 c -0.05175,0 -0.0992,0.0431 -0.0992,0.0992 0,0.0517 0.04744,0.0949 0.0992,0.0949 h 0.250145 v 0.2329 c -0.07763,0.0604 -0.185452,0.0949 -0.306213,0.0949 -0.25446,0 -0.426974,-0.18977 -0.426974,-0.44854 0,-0.24152 0.176827,-0.44422 0.409723,-0.44422 0.1337,0 0.224269,0.0388 0.301901,0.0992 0.02156,0.0129 0.04313,0.0259 0.06901,0.0259 0.06038,0 0.112135,-0.0517 0.112135,-0.11214 0,-0.0431 -0.02588,-0.0733 -0.04744,-0.0906 -0.112136,-0.082 -0.241522,-0.12508 -0.426974,-0.12508 -0.379534,0 -0.64693,0.29759 -0.64693,0.64693 v 0.004 c 0,0.3666 0.254458,0.64693 0.651243,0.64693 z m 0,0"
id="path5755"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 78.312716,102.20445 c 0,0.0647 0.05175,0.11214 0.112135,0.11214 h 0.357968 c 0.396785,0 0.668497,-0.27602 0.668497,-0.62968 0,-0.35365 -0.271712,-0.62537 -0.668497,-0.62537 h -0.357968 c -0.06038,0 -0.112135,0.0474 -0.112135,0.11214 z m 0.224268,-0.0906 v -0.85394 h 0.245835 c 0.263086,0 0.4356,0.18114 0.4356,0.42697 v 0.004 c 0,0.24584 -0.172514,0.42266 -0.4356,0.42266 z m 0,0"
id="path5751"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 79.775327,102.21739 c 0,0.0604 0.05175,0.10783 0.112136,0.10783 0.06038,0 0.112135,-0.0474 0.112135,-0.10783 v -1.05665 c 0,-0.0604 -0.05175,-0.10782 -0.112135,-0.10782 -0.06038,0 -0.112136,0.0474 -0.112136,0.10782 z m 0,0"
id="path5747"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 80.977271,102.33815 c 0.185454,0 0.336404,-0.0647 0.444225,-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.112133,-0.11214 H 81.03765 c -0.05175,0 -0.0992,0.0431 -0.0992,0.0992 0,0.0518 0.04744,0.0949 0.0992,0.0949 h 0.250145 v 0.2329 c -0.07763,0.0604 -0.185451,0.0949 -0.306212,0.0949 -0.254461,0 -0.426974,-0.18977 -0.426974,-0.44854 0,-0.24152 0.176826,-0.44422 0.409723,-0.44422 0.133699,0 0.224268,0.0388 0.3019,0.0992 0.02156,0.0129 0.04313,0.0259 0.06901,0.0259 0.06038,0 0.112136,-0.0518 0.112136,-0.11214 0,-0.0431 -0.02588,-0.0733 -0.04744,-0.0906 -0.112136,-0.0819 -0.241522,-0.12507 -0.426974,-0.12507 -0.379534,0 -0.64693,0.29759 -0.64693,0.64693 v 0.004 c 0,0.3666 0.254458,0.64693 0.651243,0.64693 z m 0,0"
id="path5743"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 81.856362,102.21739 c 0,0.0604 0.05175,0.10783 0.112136,0.10783 0.06038,0 0.112136,-0.0474 0.112136,-0.10783 v -1.05665 c 0,-0.0604 -0.05176,-0.10782 -0.112136,-0.10782 -0.06038,0 -0.112136,0.0474 -0.112136,0.10782 z m 0,0"
id="path5739"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 77.569932,109.54651 c 0,0.0604 0.05175,0.10782 0.112136,0.10782 0.06038,0 0.112133,-0.0474 0.112133,-0.10782 v -0.43129 h 0.59949 v 0.43129 c 0,0.0604 0.04744,0.10782 0.107823,0.10782 0.06038,0 0.112133,-0.0474 0.112133,-0.10782 v -1.05665 c 0,-0.0604 -0.05175,-0.10782 -0.112133,-0.10782 -0.06038,0 -0.107823,0.0474 -0.107823,0.10782 v 0.42266 h -0.59949 v -0.42266 c 0,-0.0604 -0.05175,-0.10782 -0.112133,-0.10782 -0.06038,0 -0.112136,0.0474 -0.112136,0.10782 z m 0,0"
id="path5735"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 78.88312,109.55082 c 0,0.0604 0.04744,0.10351 0.10351,0.10351 0.04744,0 0.08626,-0.0259 0.103508,-0.069 l 0.103508,-0.24152 h 0.612428 l 0.10351,0.23289 c 0.01725,0.0474 0.05175,0.0776 0.107821,0.0776 0.05607,0 0.10351,-0.0474 0.10351,-0.10351 0,-0.0173 -0.0043,-0.0345 -0.01294,-0.0474 l -0.465791,-1.04371 c -0.02588,-0.0518 -0.06901,-0.0863 -0.133699,-0.0863 h -0.0086 c -0.06469,0 -0.107823,0.0345 -0.133699,0.0863 l -0.465791,1.04371 c -0.0086,0.0173 -0.01725,0.0345 -0.01725,0.0474 z m 0.396785,-0.40541 0.219956,-0.5046 0.219956,0.5046 z m 0,0"
id="path5731"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 80.392134,109.54651 c 0,0.0604 0.05175,0.10782 0.112136,0.10782 0.06038,0 0.112133,-0.0474 0.112133,-0.10782 v -0.34072 h 0.276024 l 0.306215,0.39247 c 0.02588,0.0345 0.05607,0.0561 0.107821,0.0561 0.05175,0 0.10351,-0.0388 0.10351,-0.10351 0,-0.0345 -0.01294,-0.0561 -0.0345,-0.0819 l -0.24152,-0.3019 c 0.168201,-0.0561 0.284649,-0.17683 0.284649,-0.37522 v -0.004 c 0,-0.11214 -0.0345,-0.20271 -0.10351,-0.27172 -0.07763,-0.0776 -0.202702,-0.12507 -0.362281,-0.12507 h -0.448537 c -0.06038,0 -0.112136,0.0474 -0.112136,0.11214 z m 0.224269,-0.5348 v -0.42266 h 0.319154 c 0.163888,0 0.258773,0.0733 0.258773,0.21133 0,0.12939 -0.0992,0.21133 -0.258773,0.21133 z m 0,0"
id="path5727"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 81.752643,109.53357 c 0,0.0647 0.05175,0.11214 0.112136,0.11214 h 0.357968 c 0.396785,0 0.668496,-0.27603 0.668496,-0.62968 0,-0.35366 -0.271711,-0.62537 -0.668496,-0.62537 h -0.357968 c -0.06038,0 -0.112136,0.0474 -0.112136,0.11214 z m 0.224269,-0.0906 v -0.85395 h 0.245835 c 0.263085,0 0.435599,0.18114 0.435599,0.42698 v 0.004 c 0,0.24584 -0.172514,0.42266 -0.435599,0.42266 z m 0,0"
id="path5723"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 78.207205,119.55413 c 0.267396,0 0.448538,-0.13801 0.448538,-0.37522 v -0.004 c 0,-0.20702 -0.1337,-0.3019 -0.401098,-0.36659 -0.24152,-0.0561 -0.297588,-0.0992 -0.297588,-0.19839 0,-0.0863 0.07332,-0.15095 0.202706,-0.15095 0.09919,0 0.194079,0.0302 0.288962,0.0949 0.01725,0.0129 0.0345,0.0172 0.05607,0.0172 0.06038,0 0.107821,-0.0474 0.107821,-0.10351 0,-0.0431 -0.02588,-0.0733 -0.05175,-0.0863 -0.112135,-0.0776 -0.237209,-0.11644 -0.396785,-0.11644 -0.250147,0 -0.426974,0.14663 -0.426974,0.36228 v 0.004 c 0,0.23289 0.146638,0.31052 0.414036,0.37522 0.237207,0.0517 0.284649,0.10351 0.284649,0.18977 v 0.004 c 0,0.0949 -0.08626,0.15957 -0.219956,0.15957 -0.138012,0 -0.250147,-0.0474 -0.353655,-0.12938 -0.01294,-0.0129 -0.0345,-0.0216 -0.06469,-0.0216 -0.05607,0 -0.10351,0.0474 -0.10351,0.10351 0,0.0345 0.01725,0.0647 0.04313,0.0863 0.138012,0.10351 0.3019,0.15527 0.470104,0.15527 z m 0,0"
id="path5719"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 79.556307,119.55845 c 0.388157,0 0.659869,-0.29759 0.659869,-0.65125 0,-0.35365 -0.267399,-0.64693 -0.655556,-0.64693 -0.383847,0 -0.655555,0.29328 -0.655555,0.64693 v 0.004 c 0,0.35365 0.267396,0.64693 0.651242,0.64693 z m 0.0043,-0.20271 c -0.250147,0 -0.426974,-0.2027 -0.426974,-0.44854 0,-0.24583 0.176827,-0.44422 0.422661,-0.44422 0.250146,0 0.426974,0.2027 0.426974,0.44422 v 0.004 c 0,0.24583 -0.172513,0.44422 -0.422661,0.44422 z m 0,0"
id="path5715"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 80.538359,119.43769 c 0,0.0604 0.05175,0.10782 0.112136,0.10782 0.06038,0 0.112133,-0.0474 0.112133,-0.10782 v -0.41404 h 0.539109 c 0.05607,0 0.103511,-0.0431 0.103511,-0.0992 0,-0.0561 -0.04744,-0.0992 -0.103511,-0.0992 h -0.539109 v -0.34503 h 0.621053 c 0.05607,0 0.0992,-0.0431 0.0992,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.0992,-0.0992 h -0.733186 c -0.06038,0 -0.112136,0.0474 -0.112136,0.11213 z m 0,0"
id="path5711"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 82.108743,119.43769 c 0,0.0604 0.05175,0.10782 0.112133,0.10782 0.06038,0 0.112136,-0.0474 0.112136,-0.10782 v -0.95315 h 0.306213 c 0.05607,0 0.0992,-0.0474 0.0992,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.0992,-0.10351 h -0.836698 c -0.05607,0 -0.0992,0.0474 -0.0992,0.10351 0,0.0517 0.04313,0.0992 0.0992,0.0992 h 0.306216 z m 0,0"
id="path5707"
inkscape:connector-curvature="0" />
</g>
</svg>

+ 0
- 93
vst2_bin/plugins/Fundamental/res__OLD/fonts/OFL.txt View File

@@ -1,93 +0,0 @@
Sudo is Copyright (c) 2009-2016, Jens Kutilek (http://www.kutilek.de/).

This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL


-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------

PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.

The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.

DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.

"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).

"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).

"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.

"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.

PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:

1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.

2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.

3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.

4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.

5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.

TERMINATION
This license becomes null and void if any of the above conditions are
not met.

DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.

BIN
vst2_bin/plugins/Fundamental/res__OLD/fonts/Sudo.ttf View File


+ 0
- 82
vst2_bin/plugins/Fundamental/res__OLD/test.svg View File

@@ -1,82 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
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"
width="150.22649"
height="379.99997"
viewBox="0 0 39.747425 100.54166"
version="1.1"
id="svg11003"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="test.svg">
<defs
id="defs10997" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="55.002771"
inkscape:cy="148.56033"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1200"
inkscape:window-x="5"
inkscape:window-y="94"
inkscape:window-maximized="0"
units="px" />
<metadata
id="metadata11000">
<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
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-64.792954,-75.127975)">
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 73.031882,110.32866 c 0,0.0776 0.06038,0.13801 0.138012,0.13801 0.07332,0 0.133699,-0.0604 0.133699,-0.13801 v -0.5046 h 0.668495 c 0.06901,0 0.12076,-0.0561 0.12076,-0.12508 0,-0.0647 -0.05175,-0.12076 -0.12076,-0.12076 h -0.668495 v -0.42266 h 0.767691 c 0.06901,0 0.12076,-0.0561 0.12076,-0.12507 0,-0.069 -0.05175,-0.12076 -0.12076,-0.12076 h -0.90139 c -0.07763,0 -0.138012,0.0561 -0.138012,0.1337 z m 0,0"
id="path4647"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.519789,110.32866 c 0,0.0776 0.05607,0.13801 0.133699,0.13801 0.07763,0 0.138012,-0.0604 0.138012,-0.13801 v -1.29817 c 0,-0.0733 -0.06038,-0.1337 -0.138012,-0.1337 -0.07763,0 -0.133699,0.0604 -0.133699,0.1337 z m 0,0"
id="path4643"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 75.256633,110.33298 c 0,0.0733 0.06038,0.13369 0.133699,0.13369 0.07332,0 0.133699,-0.0604 0.133699,-0.13369 v -0.97903 l 0.793568,1.02647 c 0.03882,0.0474 0.07763,0.0819 0.142325,0.0819 h 0.01294 c 0.07332,0 0.129386,-0.0604 0.129386,-0.1337 v -1.29817 c 0,-0.0733 -0.05607,-0.1337 -0.133698,-0.1337 -0.07332,0 -0.133699,0.0604 -0.133699,0.1337 v 0.94883 l -0.772007,-1.00059 c -0.0345,-0.0474 -0.07332,-0.0776 -0.142324,-0.0776 h -0.02588 c -0.07763,0 -0.138012,0.0604 -0.138012,0.1337 z m 0,0"
id="path4639"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 77.203595,110.45374 h 0.910016 c 0.06469,0 0.120761,-0.0517 0.120761,-0.12076 0,-0.069 -0.05607,-0.12076 -0.120761,-0.12076 h -0.776317 v -0.41835 h 0.664183 c 0.06901,0 0.12076,-0.0518 0.12076,-0.11645 0,-0.069 -0.05175,-0.12507 -0.12076,-0.12507 h -0.664183 v -0.4011 h 0.763379 c 0.06901,0 0.12076,-0.0517 0.12076,-0.12076 0,-0.069 -0.05175,-0.12076 -0.12076,-0.12076 h -0.897078 c -0.07763,0 -0.138012,0.0561 -0.138012,0.1337 v 1.27229 c 0,0.0776 0.06038,0.13802 0.138012,0.13802 z m 0,0"
id="path4635"
inkscape:connector-curvature="0" />
</g>
</svg>

Loading…
Cancel
Save