@@ -23,7 +23,7 @@ Tested in | |||||
# Downloads | # Downloads | ||||
The current release can be found in the [vst2_bin/](vst2_bin/) folder. | The current release can be found in the [vst2_bin/](vst2_bin/) folder. | ||||
Here's a snapshot of it: [veeseevstrack_0_6_1_win64_bin-10Jul2018.7z](dist/veeseevstrack_0_6_1_win64_bin-10Jul2018.7z) (64bit) | |||||
Here's a snapshot of it: [veeseevstrack_0_6_1_win64_bin-11Jul2018.7z](dist/veeseevstrack_0_6_1_win64_bin-11Jul2018.7z) (64bit) | |||||
**WARNING: DON'T TRY TO USE THE INSTRUMENT AND EFFECT PLUGINS IN THE SAME PROJECT OR YOUR DAW WILL CRASH.** | **WARNING: DON'T TRY TO USE THE INSTRUMENT AND EFFECT PLUGINS IN THE SAME PROJECT OR YOUR DAW WILL CRASH.** | ||||
@@ -41,7 +41,7 @@ Here's a demo video of it: https://vimeo.com/277703414 | |||||
# Add-on modules | # Add-on modules | ||||
The following (441) add-on modules are statically linked with the VST plugin: | |||||
The following (459) add-on modules are statically linked with the VST plugin: | |||||
- Alikins.IdleSwitch | - Alikins.IdleSwitch | ||||
- Alikins.MomentaryOnButtons | - Alikins.MomentaryOnButtons | ||||
- Alikins.BigMuteButton | - Alikins.BigMuteButton | ||||
@@ -210,6 +210,11 @@ The following (441) add-on modules are statically linked with the VST plugin: | |||||
- DHE-Modules.Stage | - DHE-Modules.Stage | ||||
- DHE-Modules.Swave | - DHE-Modules.Swave | ||||
- DHE-Modules.Upstage | - DHE-Modules.Upstage | ||||
- DrumKit.BD9 | |||||
- DrumKit.Snare | |||||
- DrumKit.ClosedHH | |||||
- DrumKit.OpenHH | |||||
- DrumKit.DMX | |||||
- ESeries.E340 | - ESeries.E340 | ||||
- ErraticInstruments.MPEToCV | - ErraticInstruments.MPEToCV | ||||
- ErraticInstruments.QuadMPEToCV | - ErraticInstruments.QuadMPEToCV | ||||
@@ -286,6 +291,17 @@ The following (441) add-on modules are statically linked with the VST plugin: | |||||
- HetrickCV.Waveshape | - HetrickCV.Waveshape | ||||
- huaba.EQ3 | - huaba.EQ3 | ||||
- huaba.ABBus | - huaba.ABBus | ||||
- JW_Modules.Cat | |||||
- JW_Modules.BouncyBalls | |||||
- JW_Modules.FullScope | |||||
- JW_Modules.GridSeq | |||||
- JW_Modules.Quantizer | |||||
- JW_Modules.MinMax | |||||
- JW_Modules.NoteSeq | |||||
- JW_Modules.SimpleClock | |||||
- JW_Modules.ThingThing | |||||
- JW_Modules.WavHead | |||||
- JW_Modules.XYPad | |||||
- Koralfx.Beatovnik | - Koralfx.Beatovnik | ||||
- Koralfx.Mixovnik | - Koralfx.Mixovnik | ||||
- Koralfx.Nullovnik4 | - Koralfx.Nullovnik4 | ||||
@@ -471,6 +487,8 @@ The following (441) add-on modules are statically linked with the VST plugin: | |||||
- trowaSoft.OscCV | - trowaSoft.OscCV | ||||
- trowaSoft.MultiScope | - trowaSoft.MultiScope | ||||
- trowaSoft.MultiOscillator | - trowaSoft.MultiOscillator | ||||
- unless_modules.Piong | |||||
- unless_modules.Markov | |||||
- Valley.Topograph | - Valley.Topograph | ||||
- Valley.UGraph | - Valley.UGraph | ||||
- Valley.Dexter | - Valley.Dexter | ||||
@@ -136,13 +136,17 @@ You must implement this in your plugin | |||||
#define RACK_PLUGIN_INIT_ID_INTERNAL p->slug = TOSTRING(SLUG); p->version = TOSTRING(VERSION) | #define RACK_PLUGIN_INIT_ID_INTERNAL p->slug = TOSTRING(SLUG); p->version = TOSTRING(VERSION) | ||||
#ifdef USE_VST2 | #ifdef USE_VST2 | ||||
#define RACK_PLUGIN_DECLARE(pluginname) | #define RACK_PLUGIN_DECLARE(pluginname) | ||||
#define RACK_PLUGIN_INIT(pluginname) extern "C" void init_plugin_##pluginname##(rack::Plugin *p) | #define RACK_PLUGIN_INIT(pluginname) extern "C" void init_plugin_##pluginname##(rack::Plugin *p) | ||||
#define RACK_PLUGIN_INIT_ID() RACK_PLUGIN_INIT_ID_INTERNAL | #define RACK_PLUGIN_INIT_ID() RACK_PLUGIN_INIT_ID_INTERNAL | ||||
#else | #else | ||||
#define RACK_PLUGIN_DECLARE(pluginname) extern Plugin *plugin | #define RACK_PLUGIN_DECLARE(pluginname) extern Plugin *plugin | ||||
#define RACK_PLUGIN_INIT(pluginname) extern "C" RACK_PLUGIN_EXPORT void init(rack::Plugin *p) | #define RACK_PLUGIN_INIT(pluginname) extern "C" RACK_PLUGIN_EXPORT void init(rack::Plugin *p) | ||||
#define RACK_PLUGIN_INIT_ID() plugin = p; RACK_PLUGIN_INIT_ID_INTERNAL | #define RACK_PLUGIN_INIT_ID() plugin = p; RACK_PLUGIN_INIT_ID_INTERNAL | ||||
#endif // USE_VST2 | #endif // USE_VST2 | ||||
#define RACK_PLUGIN_INIT_WEBSITE(url) p->website = url | #define RACK_PLUGIN_INIT_WEBSITE(url) p->website = url | ||||
@@ -151,3 +155,40 @@ You must implement this in your plugin | |||||
#define RACK_PLUGIN_MODEL_DECLARE(pluginname, modelname) extern Model *create_model_##pluginname##_##modelname##(void) | #define RACK_PLUGIN_MODEL_DECLARE(pluginname, modelname) extern Model *create_model_##pluginname##_##modelname##(void) | ||||
#define RACK_PLUGIN_MODEL_INIT(pluginname, modelname) Model *create_model_##pluginname##_##modelname##(void) | #define RACK_PLUGIN_MODEL_INIT(pluginname, modelname) Model *create_model_##pluginname##_##modelname##(void) | ||||
#define RACK_PLUGIN_MODEL_ADD(pluginname, modelname) p->addModel(create_model_##pluginname##_##modelname##()) | #define RACK_PLUGIN_MODEL_ADD(pluginname, modelname) p->addModel(create_model_##pluginname##_##modelname##()) | ||||
// Access helpers for global UI vars | |||||
// | |||||
// (note) these avoid accessing the global rack vars directly | |||||
// (global TLS vars cannot be exported to dynamically loaded plugins) | |||||
// | |||||
// (note) please use the macros and do _not_ call the functions directly! | |||||
// | |||||
#include "global_pre.hpp" | |||||
#include "global_ui.hpp" | |||||
extern rack::RackScene *rack_plugin_ui_get_rackscene(void); | |||||
#define RACK_PLUGIN_UI_RACKSCENE rack_plugin_ui_get_rackscene() | |||||
extern rack::RackWidget *rack_plugin_ui_get_rackwidget(void); | |||||
#define RACK_PLUGIN_UI_RACKWIDGET rack_plugin_ui_get_rackwidget() | |||||
extern rack::Toolbar *rack_plugin_ui_get_toolbar(void); | |||||
#define RACK_PLUGIN_UI_TOOLBAR rack_plugin_ui_get_toolbar() | |||||
extern rack::Widget *rack_plugin_ui_get_hovered_widget(void); | |||||
#define RACK_PLUGIN_UI_HOVERED_WIDGET rack_plugin_ui_get_hovered_widget() | |||||
extern rack::Widget *rack_plugin_ui_get_dragged_widget(void); | |||||
#define RACK_PLUGIN_UI_DRAGGED_WIDGET rack_plugin_ui_get_dragged_widget() | |||||
extern void rack_plugin_ui_set_dragged_widget(rack::Widget *); | |||||
#define RACK_PLUGIN_UI_DRAGGED_WIDGET_SET(a) rack_plugin_ui_set_dragged_widget(a) | |||||
extern rack::Widget *rack_plugin_ui_get_draghovered_widget(void); | |||||
#define RACK_PLUGIN_UI_DRAGHOVERED_WIDGET rack_plugin_ui_get_draghovered_widget() | |||||
extern rack::Widget *rack_plugin_ui_get_focused_widget(void); | |||||
#define RACK_PLUGIN_UI_FOCUSED_WIDGET rack_plugin_ui_get_focused_widget() | |||||
extern void rack_plugin_ui_set_focused_widget(rack::Widget *); | |||||
#define RACK_PLUGIN_UI_FOCUSED_WIDGET_SET(a) rack_plugin_ui_set_focused_widget(a) |
@@ -1,13 +0,0 @@ | |||||
TARGET_BASENAME=$(SLUG) | |||||
EXTRAFLAGS+= -DVERSION=0.6.1 -DARCH_WIN -D_USE_MATH_DEFINES -DUSE_VST2 -DRACK_PLUGIN -DSLUG=$(SLUG) -I../../../../include/ -I../../../../dep/include -Idep/include | |||||
EXTRAFLAGS+= | |||||
EXTRALIBS+= | |||||
# ../../Rack.lib -LIBPATH:../../dep/lib/msvc/ glew.lib glfw.lib opengl32.lib gdi32.lib user32.lib kernel32.lib Comdlg32.lib Shell32.lib | |||||
PLAF_OBJ+= | |||||
# (note) " data with thread storage duration may not have dll interface" | |||||
#include ../../dep/yac/sharedlib_msvc.mk | |||||
include ../../../../dep/yac/staticlib_msvc.mk |
@@ -0,0 +1,5 @@ | |||||
EXTRAFLAGS+= -DARCH_WIN | |||||
EXTRAFLAGS+= | |||||
EXTRALIBS+= | |||||
# ../../Rack.lib -LIBPATH:../../dep/lib/msvc/ glew.lib glfw.lib opengl32.lib gdi32.lib user32.lib kernel32.lib Comdlg32.lib Shell32.lib |
@@ -0,0 +1,6 @@ | |||||
#ifdef ARCH_WIN | |||||
# (note) " data with thread storage duration may not have dll interface" | |||||
####include ../../dep/yac/sharedlib_msvc.mk | |||||
include ../../../../dep/yac/staticlib_msvc.mk | |||||
#endif |
@@ -0,0 +1,19 @@ | |||||
# called from plugin directory (plugins/community/repos/<pluginname>/) | |||||
# | |||||
#include ../../../../arch.mk | |||||
#ifdef ARCH_WIN | |||||
include ../../../../dep/yac/install_msvc.mk | |||||
#endif | |||||
TARGET_BASENAME=$(SLUG) | |||||
EXTRAFLAGS+= -DVERSION=0.6.1 -D_USE_MATH_DEFINES -DUSE_VST2 -DRACK_PLUGIN -DSLUG=$(SLUG) -I../../../../include/ -I../../../../dep/include -Idep/include | |||||
EXTRAFLAGS+= | |||||
EXTRALIBS+= | |||||
PLAF_OBJ+= | |||||
#ifdef ARCH_WIN | |||||
include ../../../build_plugin_msvc_pre.mk | |||||
#endif |
@@ -1,7 +1,7 @@ | |||||
SLUG=AS | SLUG=AS | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -1,7 +1,7 @@ | |||||
SLUG=Alikins | SLUG=Alikins | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -110,7 +110,7 @@ struct ColorPanelModuleResizeHandle : Widget { | |||||
} | } | ||||
void onDragStart(EventDragStart &e) override { | void onDragStart(EventDragStart &e) override { | ||||
dragX = rack::global_ui->app.gRackWidget->lastMousePos.x; | |||||
dragX = RACK_PLUGIN_UI_RACKWIDGET->lastMousePos.x; | |||||
ModuleWidget *m = getAncestorOfType<ModuleWidget>(); | ModuleWidget *m = getAncestorOfType<ModuleWidget>(); | ||||
originalBox = m->box; | originalBox = m->box; | ||||
} | } | ||||
@@ -118,7 +118,7 @@ struct ColorPanelModuleResizeHandle : Widget { | |||||
void onDragMove(EventDragMove &e) override { | void onDragMove(EventDragMove &e) override { | ||||
ModuleWidget *m = getAncestorOfType<ModuleWidget>(); | ModuleWidget *m = getAncestorOfType<ModuleWidget>(); | ||||
float newDragX = rack::global_ui->app.gRackWidget->lastMousePos.x; | |||||
float newDragX = RACK_PLUGIN_UI_RACKWIDGET->lastMousePos.x; | |||||
float deltaX = newDragX - dragX; | float deltaX = newDragX - dragX; | ||||
Rect newBox = originalBox; | Rect newBox = originalBox; | ||||
@@ -135,7 +135,7 @@ struct ColorPanelModuleResizeHandle : Widget { | |||||
newBox.size.x = roundf(newBox.size.x / RACK_GRID_WIDTH) * RACK_GRID_WIDTH; | newBox.size.x = roundf(newBox.size.x / RACK_GRID_WIDTH) * RACK_GRID_WIDTH; | ||||
newBox.pos.x = originalBox.pos.x + originalBox.size.x - newBox.size.x; | newBox.pos.x = originalBox.pos.x + originalBox.size.x - newBox.size.x; | ||||
} | } | ||||
rack::global_ui->app.gRackWidget->requestModuleBox(m, newBox); | |||||
RACK_PLUGIN_UI_RACKWIDGET->requestModuleBox(m, newBox); | |||||
} | } | ||||
}; | }; | ||||
@@ -177,7 +177,7 @@ std::string FloatField::voltsToText(float param_volts){ | |||||
void FloatField::onChange(EventChange &e) { | void FloatField::onChange(EventChange &e) { | ||||
//debug("FloatField onChange text=%s param=%f", text.c_str(), module->params[SpecificValue::VALUE1_PARAM].value); | //debug("FloatField onChange text=%s param=%f", text.c_str(), module->params[SpecificValue::VALUE1_PARAM].value); | ||||
if (this != rack::global_ui->widgets.gFocusedWidget) { | |||||
if (this != RACK_PLUGIN_UI_FOCUSED_WIDGET) { | |||||
std::string new_text = voltsToText(module->params[SpecificValue::VALUE1_PARAM].value); | std::string new_text = voltsToText(module->params[SpecificValue::VALUE1_PARAM].value); | ||||
setText(new_text); | setText(new_text); | ||||
} | } | ||||
@@ -236,7 +236,7 @@ void HZFloatField::onChange(EventChange &e) { | |||||
//TextField::onChange(e); | //TextField::onChange(e); | ||||
if (this != rack::global_ui->widgets.gFocusedWidget) | |||||
if (this != RACK_PLUGIN_UI_FOCUSED_WIDGET) | |||||
{ | { | ||||
std::string new_text = voltsToText(module->params[SpecificValue::VALUE1_PARAM].value); | std::string new_text = voltsToText(module->params[SpecificValue::VALUE1_PARAM].value); | ||||
setText(new_text); | setText(new_text); | ||||
@@ -292,7 +292,7 @@ void SecondsFloatField::onChange(EventChange &e) { | |||||
//TextField::onChange(e); | //TextField::onChange(e); | ||||
if (this != rack::global_ui->widgets.gFocusedWidget) | |||||
if (this != RACK_PLUGIN_UI_FOCUSED_WIDGET) | |||||
{ | { | ||||
std::string new_text = voltsToText(module->params[SpecificValue::VALUE1_PARAM].value); | std::string new_text = voltsToText(module->params[SpecificValue::VALUE1_PARAM].value); | ||||
setText(new_text); | setText(new_text); | ||||
@@ -332,7 +332,7 @@ void CentsField::onChange(EventChange &e) { | |||||
module->params[SpecificValue::OCTAVE_PARAM].value); | module->params[SpecificValue::OCTAVE_PARAM].value); | ||||
// debug("CentsField onChange cents: %f", cents); | // debug("CentsField onChange cents: %f", cents); | ||||
if (this != rack::global_ui->widgets.gFocusedWidget || fabs(cents) >= 0.50f) | |||||
if (this != RACK_PLUGIN_UI_FOCUSED_WIDGET || fabs(cents) >= 0.50f) | |||||
{ | { | ||||
float cents = volts_to_note_cents(module->params[SpecificValue::VALUE1_PARAM].value, | float cents = volts_to_note_cents(module->params[SpecificValue::VALUE1_PARAM].value, | ||||
module->params[SpecificValue::OCTAVE_PARAM].value); | module->params[SpecificValue::OCTAVE_PARAM].value); | ||||
@@ -379,7 +379,7 @@ void NoteNameField::onChange(EventChange &e) { | |||||
//TextField::onChange(e); | //TextField::onChange(e); | ||||
if (this != rack::global_ui->widgets.gFocusedWidget) | |||||
if (this != RACK_PLUGIN_UI_FOCUSED_WIDGET) | |||||
{ | { | ||||
float cv_volts = module->params[SpecificValue::VALUE1_PARAM].value; | float cv_volts = module->params[SpecificValue::VALUE1_PARAM].value; | ||||
int octave = volts_to_octave(cv_volts, module->params[SpecificValue::OCTAVE_PARAM].value); | int octave = volts_to_octave(cv_volts, module->params[SpecificValue::OCTAVE_PARAM].value); | ||||
@@ -454,7 +454,7 @@ void PurpleTrimpot::step() { | |||||
// paramId, this->initialized, initialized, this->value, value, module->params[paramId].value); | // paramId, this->initialized, initialized, this->value, value, module->params[paramId].value); | ||||
if (this->value != module->params[paramId].value) { | if (this->value != module->params[paramId].value) { | ||||
if (this != rack::global_ui->widgets.gHoveredWidget && this->initialized) { | |||||
if (this != RACK_PLUGIN_UI_HOVERED_WIDGET && this->initialized) { | |||||
// this->value = module->params[paramId].value; | // this->value = module->params[paramId].value; | ||||
setValue(module->params[paramId].value); | setValue(module->params[paramId].value); | ||||
} else { | } else { | ||||
@@ -1,10 +1,9 @@ | |||||
SLUG=AudibleInstruments | SLUG=AudibleInstruments | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
EXTRAFLAGS+= -Ieurorack/ -DTEST -Ieurorack/stmlib/third_party/STM -Ieurorack/stmlib/third_party/STM/STM32F0xx_StdPeriph_Driver/inc/ | EXTRAFLAGS+= -Ieurorack/ -DTEST -Ieurorack/stmlib/third_party/STM -Ieurorack/stmlib/third_party/STM/STM32F0xx_StdPeriph_Driver/inc/ | ||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -1,9 +1,9 @@ | |||||
SLUG=BaconMusic | SLUG=BaconMusic | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
EXTRAFLAGS+= -DBUILD_SORTACHORUS | EXTRAFLAGS+= -DBUILD_SORTACHORUS | ||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -1,7 +1,7 @@ | |||||
SLUG=Befaco | SLUG=Befaco | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -1,12 +1,12 @@ | |||||
SLUG=Bidoo | SLUG=Bidoo | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
EXTRAFLAGS=-DUSE_KISS_FFT -Idep/include -I./src/dep/audiofile -I./src/dep/filters -I./src/dep/freeverb \ | |||||
EXTRAFLAGS+= -DUSE_KISS_FFT -Idep/include -I./src/dep/audiofile -I./src/dep/filters -I./src/dep/freeverb \ | |||||
-I./src/dep/gist/libs/kiss_fft130 -I./src/dep/gist/src -I./src/dep/minimp3\ | -I./src/dep/gist/libs/kiss_fft130 -I./src/dep/gist/src -I./src/dep/minimp3\ | ||||
-I./src/dep/gist/src/mfcc -I./src/dep/gist/src/core -I./src/dep/gist/src/fft \ | -I./src/dep/gist/src/mfcc -I./src/dep/gist/src/core -I./src/dep/gist/src/fft \ | ||||
-I./src/dep/gist/src/onset-detection-functions -I./src/dep/gist/src/pitch | -I./src/dep/gist/src/onset-detection-functions -I./src/dep/gist/src/pitch | ||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -1274,14 +1274,14 @@ struct RandomizeMenuItem : MenuItem { | |||||
struct CloneMenuItem : MenuItem { | struct CloneMenuItem : MenuItem { | ||||
ModuleWidget *moduleWidget; | ModuleWidget *moduleWidget; | ||||
void onAction(EventAction &e) override { | void onAction(EventAction &e) override { | ||||
rack::global_ui->app.gRackWidget->cloneModule(moduleWidget); | |||||
RACK_PLUGIN_UI_RACKWIDGET->cloneModule(moduleWidget); | |||||
} | } | ||||
}; | }; | ||||
struct DeleteMenuItem : MenuItem { | struct DeleteMenuItem : MenuItem { | ||||
ModuleWidget *moduleWidget; | ModuleWidget *moduleWidget; | ||||
void onAction(EventAction &e) override { | void onAction(EventAction &e) override { | ||||
rack::global_ui->app.gRackWidget->deleteModule(moduleWidget); | |||||
RACK_PLUGIN_UI_RACKWIDGET->deleteModule(moduleWidget); | |||||
moduleWidget->finalizeEvents(); | moduleWidget->finalizeEvents(); | ||||
delete moduleWidget; | delete moduleWidget; | ||||
} | } | ||||
@@ -310,14 +310,14 @@ struct CLACOSDisplay : TransparentWidget { | |||||
CLACOSDisplay() {} | CLACOSDisplay() {} | ||||
void onDragStart(EventDragStart &e) override { | void onDragStart(EventDragStart &e) override { | ||||
dragX = rack::global_ui->app.gRackWidget->lastMousePos.x; | |||||
dragY = rack::global_ui->app.gRackWidget->lastMousePos.y; | |||||
dragX = RACK_PLUGIN_UI_RACKWIDGET->lastMousePos.x; | |||||
dragY = RACK_PLUGIN_UI_RACKWIDGET->lastMousePos.y; | |||||
} | } | ||||
void onDragMove(EventDragMove &e) override { | void onDragMove(EventDragMove &e) override { | ||||
if ((!module->inputs[CLACOS::DIST_X_INPUT + segmentNumber].active) && (!module->inputs[CLACOS::DIST_X_INPUT + segmentNumber].active)) { | if ((!module->inputs[CLACOS::DIST_X_INPUT + segmentNumber].active) && (!module->inputs[CLACOS::DIST_X_INPUT + segmentNumber].active)) { | ||||
float newDragX = rack::global_ui->app.gRackWidget->lastMousePos.x; | |||||
float newDragY = rack::global_ui->app.gRackWidget->lastMousePos.y; | |||||
float newDragX = RACK_PLUGIN_UI_RACKWIDGET->lastMousePos.x; | |||||
float newDragY = RACK_PLUGIN_UI_RACKWIDGET->lastMousePos.y; | |||||
module->phaseDistX[segmentNumber] = rescale(clamp(initX+(newDragX-dragX),0.0f,70.0f), 0.0f, 70.0f, 0.01f,0.99f); | module->phaseDistX[segmentNumber] = rescale(clamp(initX+(newDragX-dragX),0.0f,70.0f), 0.0f, 70.0f, 0.01f,0.99f); | ||||
module->phaseDistY[segmentNumber] = rescale(clamp(initY-(newDragY-dragY),0.0f,70.0f), 0.0f, 70.0f, 0.01f,0.99f); | module->phaseDistY[segmentNumber] = rescale(clamp(initY-(newDragY-dragY),0.0f,70.0f), 0.0f, 70.0f, 0.01f,0.99f); | ||||
} | } | ||||
@@ -1057,14 +1057,14 @@ struct RandomizeMenuItem : MenuItem { | |||||
struct CloneMenuItem : MenuItem { | struct CloneMenuItem : MenuItem { | ||||
ModuleWidget *moduleWidget; | ModuleWidget *moduleWidget; | ||||
void onAction(EventAction &e) override { | void onAction(EventAction &e) override { | ||||
rack::global_ui->app.gRackWidget->cloneModule(moduleWidget); | |||||
RACK_PLUGIN_UI_RACKWIDGET->cloneModule(moduleWidget); | |||||
} | } | ||||
}; | }; | ||||
struct DeleteMenuItem : MenuItem { | struct DeleteMenuItem : MenuItem { | ||||
ModuleWidget *moduleWidget; | ModuleWidget *moduleWidget; | ||||
void onAction(EventAction &e) override { | void onAction(EventAction &e) override { | ||||
rack::global_ui->app.gRackWidget->deleteModule(moduleWidget); | |||||
RACK_PLUGIN_UI_RACKWIDGET->deleteModule(moduleWidget); | |||||
moduleWidget->finalizeEvents(); | moduleWidget->finalizeEvents(); | ||||
delete moduleWidget; | delete moduleWidget; | ||||
} | } | ||||
@@ -286,14 +286,14 @@ struct TIAREDisplay : TransparentWidget { | |||||
TIAREDisplay() {} | TIAREDisplay() {} | ||||
void onDragStart(EventDragStart &e) override { | void onDragStart(EventDragStart &e) override { | ||||
dragX = rack::global_ui->app.gRackWidget->lastMousePos.x; | |||||
dragY = rack::global_ui->app.gRackWidget->lastMousePos.y; | |||||
dragX = RACK_PLUGIN_UI_RACKWIDGET->lastMousePos.x; | |||||
dragY = RACK_PLUGIN_UI_RACKWIDGET->lastMousePos.y; | |||||
} | } | ||||
void onDragMove(EventDragMove &e) override { | void onDragMove(EventDragMove &e) override { | ||||
if ((!module->inputs[TIARE::DIST_X_INPUT].active) && (!module->inputs[TIARE::DIST_X_INPUT].active)) { | if ((!module->inputs[TIARE::DIST_X_INPUT].active) && (!module->inputs[TIARE::DIST_X_INPUT].active)) { | ||||
float newDragX = rack::global_ui->app.gRackWidget->lastMousePos.x; | |||||
float newDragY = rack::global_ui->app.gRackWidget->lastMousePos.y; | |||||
float newDragX = RACK_PLUGIN_UI_RACKWIDGET->lastMousePos.x; | |||||
float newDragY = RACK_PLUGIN_UI_RACKWIDGET->lastMousePos.y; | |||||
module->phaseDistX = rescale(clamp(initX+(newDragX-dragX),0.0f,140.0f), 0.0f, 140.0f, 0.01f,0.98f); | module->phaseDistX = rescale(clamp(initX+(newDragX-dragX),0.0f,140.0f), 0.0f, 140.0f, 0.01f,0.98f); | ||||
module->phaseDistY = rescale(clamp(initY-(newDragY-dragY),0.0f,140.0f), 0.0f, 140.0f, 0.01f,1.0f); | module->phaseDistY = rescale(clamp(initY-(newDragY-dragY),0.0f,140.0f), 0.0f, 140.0f, 0.01f,1.0f); | ||||
} | } | ||||
@@ -1,9 +1,9 @@ | |||||
SLUG=Bogaudio | SLUG=Bogaudio | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
EXTRAFLAGS+= -Isrc/dsp/ | EXTRAFLAGS+= -Isrc/dsp/ | ||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -216,11 +216,7 @@ struct AnalyzerDisplay : TransparentWidget { | |||||
void AnalyzerDisplay::draw(NVGcontext* vg) { | void AnalyzerDisplay::draw(NVGcontext* vg) { | ||||
drawBackground(vg); | drawBackground(vg); | ||||
if (_module->_running) { | if (_module->_running) { | ||||
#ifdef USE_VST2 | |||||
float strokeWidth = std::max(1.0f, 3 - rack::global_ui->app.gRackScene->zoomWidget->zoom); | |||||
#else | |||||
float strokeWidth = std::max(1.0f, 3 - gRackScene->zoomWidget->zoom); | |||||
#endif // USE_VST2 | |||||
float strokeWidth = std::max(1.0f, 3 - RACK_PLUGIN_UI_RACKSCENE->zoomWidget->zoom); | |||||
nvgSave(vg); | nvgSave(vg); | ||||
nvgScissor(vg, _insetAround, _insetAround, _size.x - _insetAround, _size.y - _insetAround); | nvgScissor(vg, _insetAround, _insetAround, _size.x - _insetAround, _size.y - _insetAround); | ||||
drawHeader(vg); | drawHeader(vg); | ||||
@@ -1,9 +1,9 @@ | |||||
SLUG=DHE-Modules | SLUG=DHE-Modules | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
EXTRAFLAGS+= -Isrc/ | EXTRAFLAGS+= -Isrc/ | ||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -0,0 +1,121 @@ | |||||
Creative Commons Legal Code | |||||
CC0 1.0 Universal | |||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE | |||||
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN | |||||
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS | |||||
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES | |||||
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS | |||||
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM | |||||
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED | |||||
HEREUNDER. | |||||
Statement of Purpose | |||||
The laws of most jurisdictions throughout the world automatically confer | |||||
exclusive Copyright and Related Rights (defined below) upon the creator | |||||
and subsequent owner(s) (each and all, an "owner") of an original work of | |||||
authorship and/or a database (each, a "Work"). | |||||
Certain owners wish to permanently relinquish those rights to a Work for | |||||
the purpose of contributing to a commons of creative, cultural and | |||||
scientific works ("Commons") that the public can reliably and without fear | |||||
of later claims of infringement build upon, modify, incorporate in other | |||||
works, reuse and redistribute as freely as possible in any form whatsoever | |||||
and for any purposes, including without limitation commercial purposes. | |||||
These owners may contribute to the Commons to promote the ideal of a free | |||||
culture and the further production of creative, cultural and scientific | |||||
works, or to gain reputation or greater distribution for their Work in | |||||
part through the use and efforts of others. | |||||
For these and/or other purposes and motivations, and without any | |||||
expectation of additional consideration or compensation, the person | |||||
associating CC0 with a Work (the "Affirmer"), to the extent that he or she | |||||
is an owner of Copyright and Related Rights in the Work, voluntarily | |||||
elects to apply CC0 to the Work and publicly distribute the Work under its | |||||
terms, with knowledge of his or her Copyright and Related Rights in the | |||||
Work and the meaning and intended legal effect of CC0 on those rights. | |||||
1. Copyright and Related Rights. A Work made available under CC0 may be | |||||
protected by copyright and related or neighboring rights ("Copyright and | |||||
Related Rights"). Copyright and Related Rights include, but are not | |||||
limited to, the following: | |||||
i. the right to reproduce, adapt, distribute, perform, display, | |||||
communicate, and translate a Work; | |||||
ii. moral rights retained by the original author(s) and/or performer(s); | |||||
iii. publicity and privacy rights pertaining to a person's image or | |||||
likeness depicted in a Work; | |||||
iv. rights protecting against unfair competition in regards to a Work, | |||||
subject to the limitations in paragraph 4(a), below; | |||||
v. rights protecting the extraction, dissemination, use and reuse of data | |||||
in a Work; | |||||
vi. database rights (such as those arising under Directive 96/9/EC of the | |||||
European Parliament and of the Council of 11 March 1996 on the legal | |||||
protection of databases, and under any national implementation | |||||
thereof, including any amended or successor version of such | |||||
directive); and | |||||
vii. other similar, equivalent or corresponding rights throughout the | |||||
world based on applicable law or treaty, and any national | |||||
implementations thereof. | |||||
2. Waiver. To the greatest extent permitted by, but not in contravention | |||||
of, applicable law, Affirmer hereby overtly, fully, permanently, | |||||
irrevocably and unconditionally waives, abandons, and surrenders all of | |||||
Affirmer's Copyright and Related Rights and associated claims and causes | |||||
of action, whether now known or unknown (including existing as well as | |||||
future claims and causes of action), in the Work (i) in all territories | |||||
worldwide, (ii) for the maximum duration provided by applicable law or | |||||
treaty (including future time extensions), (iii) in any current or future | |||||
medium and for any number of copies, and (iv) for any purpose whatsoever, | |||||
including without limitation commercial, advertising or promotional | |||||
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each | |||||
member of the public at large and to the detriment of Affirmer's heirs and | |||||
successors, fully intending that such Waiver shall not be subject to | |||||
revocation, rescission, cancellation, termination, or any other legal or | |||||
equitable action to disrupt the quiet enjoyment of the Work by the public | |||||
as contemplated by Affirmer's express Statement of Purpose. | |||||
3. Public License Fallback. Should any part of the Waiver for any reason | |||||
be judged legally invalid or ineffective under applicable law, then the | |||||
Waiver shall be preserved to the maximum extent permitted taking into | |||||
account Affirmer's express Statement of Purpose. In addition, to the | |||||
extent the Waiver is so judged Affirmer hereby grants to each affected | |||||
person a royalty-free, non transferable, non sublicensable, non exclusive, | |||||
irrevocable and unconditional license to exercise Affirmer's Copyright and | |||||
Related Rights in the Work (i) in all territories worldwide, (ii) for the | |||||
maximum duration provided by applicable law or treaty (including future | |||||
time extensions), (iii) in any current or future medium and for any number | |||||
of copies, and (iv) for any purpose whatsoever, including without | |||||
limitation commercial, advertising or promotional purposes (the | |||||
"License"). The License shall be deemed effective as of the date CC0 was | |||||
applied by Affirmer to the Work. Should any part of the License for any | |||||
reason be judged legally invalid or ineffective under applicable law, such | |||||
partial invalidity or ineffectiveness shall not invalidate the remainder | |||||
of the License, and in such case Affirmer hereby affirms that he or she | |||||
will not (i) exercise any of his or her remaining Copyright and Related | |||||
Rights in the Work or (ii) assert any associated claims and causes of | |||||
action with respect to the Work, in either case contrary to Affirmer's | |||||
express Statement of Purpose. | |||||
4. Limitations and Disclaimers. | |||||
a. No trademark or patent rights held by Affirmer are waived, abandoned, | |||||
surrendered, licensed or otherwise affected by this document. | |||||
b. Affirmer offers the Work as-is and makes no representations or | |||||
warranties of any kind concerning the Work, express, implied, | |||||
statutory or otherwise, including without limitation warranties of | |||||
title, merchantability, fitness for a particular purpose, non | |||||
infringement, or the absence of latent or other defects, accuracy, or | |||||
the present or absence of errors, whether or not discoverable, all to | |||||
the greatest extent permissible under applicable law. | |||||
c. Affirmer disclaims responsibility for clearing rights of other persons | |||||
that may apply to the Work or any use thereof, including without | |||||
limitation any person's Copyright and Related Rights in the Work. | |||||
Further, Affirmer disclaims responsibility for obtaining any necessary | |||||
consents, permissions or other rights required for any use of the | |||||
Work. | |||||
d. Affirmer understands and acknowledges that Creative Commons is not a | |||||
party to this document and has no duty or obligation with respect to | |||||
this CC0 or use of the Work. |
@@ -0,0 +1,22 @@ | |||||
SLUG = DrumKit | |||||
VERSION = 0.6.0 | |||||
# FLAGS will be passed to both the C and C++ compiler | |||||
FLAGS += | |||||
CFLAGS += | |||||
CXXFLAGS += | |||||
# Careful about linking to libraries, since you can't assume much about the user's environment and library search path. | |||||
# Static libraries are fine. | |||||
LDFLAGS += | |||||
# Add .cpp and .c files to the build | |||||
SOURCES += $(wildcard src/*.cpp) $(wildcard deps/SynthDevKit/src/*.cpp) | |||||
# Add files to the ZIP package when running `make dist` | |||||
# The compiled plugin is automatically added. | |||||
DISTRIBUTABLES += $(wildcard LICENSE*) res | |||||
# Must include the VCV plugin Makefile framework | |||||
RACK_DIR ?= ../.. | |||||
include $(RACK_DIR)/plugin.mk |
@@ -0,0 +1,45 @@ | |||||
# DrumKit | |||||
Drum Modules for VCVRack. | |||||
A work in progress. | |||||
## Currently | |||||
### BD-9 | |||||
16 bass drums based on the TR909. | |||||
### Snare-N | |||||
16 snare drums based on the Novation Drumstation. | |||||
### Closed HiHats | |||||
15 closed high hats. | |||||
### Open HiHats | |||||
14 open high hats. | |||||
### DMX | |||||
Full DMX Kit, starting at Octave 5, C#, and continuing for 12 steps. | |||||
Anything above/below this will not trigger a note. If a note is triggered, it | |||||
will not trigger again until a note out of range is sent. | |||||
This is a very expiremental module. | |||||
## Building | |||||
Building requires [SynthDevKit](https://github.com/JerrySievert/SynthDevKit), | |||||
which will be checked out as part of the build initialization. | |||||
``` | |||||
$ git clone https://github.com/JerrySievert/DrumKit | |||||
$ cd DrumKit | |||||
$ git submodule init | |||||
$ git submodule update | |||||
$ make | |||||
``` |
@@ -0,0 +1 @@ | |||||
keep me |
@@ -0,0 +1,7 @@ | |||||
Copyright 2018 Jerry Sievert <code@legitimatesounding.com> | |||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@@ -0,0 +1,42 @@ | |||||
CXX=g++ | |||||
RM=rm -f | |||||
CD=cd | |||||
CPPFLAGS=-Wall -g | |||||
LDFLAGS=-g | |||||
SRCS=$(wildcard src/*.cpp) | |||||
OBJS=$(subst .cpp,.o,$(SRCS)) | |||||
TEST_SRCS=$(wildcard tests/*.cpp) | |||||
TEST_OBJS=$(subst .cpp,.o,$(TEST_SRCS)) | |||||
ifdef COV | |||||
CPPFLAGS += -fprofile-arcs -ftest-coverage | |||||
LDFLAGS += -fprofile-arcs -ftest-coverage | |||||
endif | |||||
all: test | |||||
test: $(OBJS) $(TEST_OBJS) | |||||
$(CXX) $(LDFLAGS) -o testrunner $(OBJS) $(TEST_OBJS) | |||||
depend: .depend | |||||
.depend: $(SRCS) $(TEST_SRCS) | |||||
$(RM) -f ./.depend | |||||
$(CXX) $(CPPFLAGS) -MM $^>>./.depend; | |||||
clean: | |||||
$(RM) $(OBJS) | |||||
$(RM) $(TEST_OBJS) | |||||
dist-clean: clean | |||||
$(RM) *~ .depend | |||||
docs: | |||||
doxygen | |||||
include .depend |
@@ -0,0 +1,41 @@ | |||||
# SynthDevKit | |||||
SynthDevKit is a set of utilities for development of software and hardware synthesizers. | |||||
All effort is made to test correctness and functionality. SynthDevKit is meant | |||||
to be a dependency, not a stand-alone project. | |||||
## Building and Testing | |||||
SynthDevKit lives on [GitHub](https://github.com/JerrySievert/SynthDevKit). | |||||
### Building | |||||
``` | |||||
$ git clone https://github.com/JerrySievert/SynthDevKit.git | |||||
$ cd SynthDevKit | |||||
$ make | |||||
``` | |||||
This will compile the source, ready for direct inclusion in your project. | |||||
### Testing | |||||
SynthDevKit includes tests that check the functionality of the modules. | |||||
Building the test runner is simple, and running with the `-s` flag will run the | |||||
tests in `spec` mode. | |||||
``` | |||||
$ make test | |||||
$ ./testrunner -s | |||||
``` | |||||
### Documentation | |||||
These modules live in the `SynthDevKit` namespace. | |||||
Documentation is available for the [CV](docs/CV.md) and [Clock](docs/Clock.md) | |||||
modules. | |||||
There are currently no examples, but you can see them in use in [SynthKit](https://github.com/JerrySievert/SynthKit/). |
@@ -0,0 +1,84 @@ | |||||
# SynthDevKit::CV | |||||
A trigger module that provides state management of triggers and trigger intervals | |||||
based on voltage. | |||||
## Methods | |||||
### CV(float threshold) | |||||
Constructor | |||||
#### Parameters | |||||
|Parameter|Type|Description| | |||||
|---------|----|-----------| | |||||
|threshold|`float`|threshold of voltage that a trigger fires at| | |||||
### void CV::update(float value) | |||||
Updates the state of the trigger manager, should be called with every step or | |||||
poll. | |||||
#### Parameters | |||||
|Parameter|Type|Description| | |||||
|---------|----|-----------| | |||||
|value|`float`|current voltage value| | |||||
### bool CV::newTrigger() | |||||
Returns a boolean value as to a new trigger event has occurred with the latest | |||||
update. | |||||
_Returns:_ | |||||
`bool` - whether a new trigger event has been detected | |||||
### void CV::reset() | |||||
Resets the engine to initial state. | |||||
### float CV::currentValue() | |||||
Returns the current value that the engine has processed. | |||||
_Returns:_ | |||||
`float` - most recent voltage value from `update` | |||||
### uint32_t CV::triggerInterval() | |||||
The number of steps between trigger events. This will only be available after | |||||
the second trigger has fired. This value is calculated on every trigger, and | |||||
will adjust to input changes, but will always be one trigger behind in its | |||||
calculations. | |||||
_Returns:_ | |||||
`uint32_t` - number of steps between the last two triggers | |||||
### uint32_t CV::triggerTotal() | |||||
The number of triggers that have been detected since instantiation or last | |||||
reset. | |||||
_Returns:_ | |||||
`uint32_t` - number of triggers detected | |||||
### bool CV::isHigh() | |||||
Whether a trigger event is still considered above the threshold. | |||||
_Returns:_ | |||||
`bool` - whether a trigger can still be considered active | |||||
### bool CV::isLow() | |||||
Whether a trigger event is no longer considered above the threshold. | |||||
_Returns:_ | |||||
`bool` - whether a trigger can no longer be considered active |
@@ -0,0 +1,68 @@ | |||||
# SynthDevKit::Clock | |||||
A clock module that handles a number of divisions up to `CLOCK_LIMIT` (currently | |||||
set at `1024`). | |||||
Division occurs as follows (for a clock with 8 divisions): | |||||
``` | |||||
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |||||
/1 x x x x x x x x x x x x x x x x | |||||
/2 x x x x x x x x | |||||
/3 x x x x x | |||||
/4 x x x x | |||||
/5 x x x | |||||
/6 x x | |||||
/7 x x | |||||
/8 x x | |||||
``` | |||||
One thing to note is that currently this module uses one half of a clock interval | |||||
to determine whether the clock should be `high` or `low`. | |||||
Input: | |||||
``` | |||||
________ ________ | |||||
|________| | | |||||
``` | |||||
Output: | |||||
``` | |||||
____ ____ | |||||
|____________| |____ | |||||
``` | |||||
## Methods | |||||
### Clock(uint16_t count, float threshold) | |||||
Constructor | |||||
#### Parameters | |||||
|Parameter|Type|Description| | |||||
|---------|----|-----------| | |||||
|count|`uint16_t`|number of divisions for the clock module| | |||||
|threshold|`float`|threshold of voltage that a trigger fires at| | |||||
### bool *Clock::update(float value) | |||||
Processes a clock update, and returns a pointer to an array of boolean results, | |||||
one for each division. These will be `true` if the division is `high`, and `false` | |||||
if the division is `low`. | |||||
#### Parameters | |||||
|Parameter|Type|Description| | |||||
|---------|----|-----------| | |||||
|value|`float`|current voltage value| | |||||
_Returns:_ | |||||
`bool *` - pointer to an array of `bool` values | |||||
### Clock::reset() | |||||
Resets the clock module to starting state. |
@@ -0,0 +1,76 @@ | |||||
#include "CV.hpp" | |||||
namespace SynthDevKit { | |||||
CV::CV (float threshold) { | |||||
this->threshold = threshold; | |||||
this->reset(); | |||||
} | |||||
bool CV::newTrigger ( ) { | |||||
// check to see if this is a status change, if so reset the states and return true | |||||
if (this->triggered == true && this->lastTriggered == false) { | |||||
this->lastTriggered = true; | |||||
return true; | |||||
} | |||||
this->lastTriggered = this->triggered; | |||||
return false; | |||||
} | |||||
void CV::update (float current) { | |||||
// set the last value to whatever the current value is | |||||
this->lastValue = current; | |||||
// increase the trigger interval count | |||||
this->triggerIntervalCount++; | |||||
// check the threshold, if it meets or is greater, then we make a change | |||||
if (current >= this->threshold) { | |||||
if (this->triggered == false) { | |||||
this->triggered = true; | |||||
// increment the total number of triggers fired | |||||
this->triggerCount++; | |||||
// set the last trigger interval to the interval | |||||
this->lastTriggerInterval = this->triggerIntervalCount; | |||||
// reset the count to 0 | |||||
this->triggerIntervalCount = 0; | |||||
} | |||||
} else { | |||||
this->triggered = false; | |||||
} | |||||
} | |||||
bool CV::isHigh ( ) { | |||||
return this->triggered; | |||||
} | |||||
bool CV::isLow ( ) { | |||||
return !this->triggered; | |||||
} | |||||
void CV::reset ( ) { | |||||
this->triggered = false; | |||||
this->lastTriggered = false; | |||||
this->lastValue = 0; | |||||
this->triggerCount = 0; | |||||
this->triggerIntervalCount = 0; | |||||
this->lastTriggerInterval = 0; | |||||
} | |||||
float CV::currentValue ( ) { | |||||
return this->lastValue; | |||||
} | |||||
uint32_t CV::triggerInterval ( ) { | |||||
return this->lastTriggerInterval; | |||||
} | |||||
uint32_t CV::triggerTotal ( ) { | |||||
return this->triggerCount; | |||||
} | |||||
} |
@@ -0,0 +1,26 @@ | |||||
#pragma once | |||||
#include <stdint.h> | |||||
namespace SynthDevKit { | |||||
class CV { | |||||
public: | |||||
CV (float); | |||||
bool newTrigger( ); | |||||
void update (float); | |||||
void reset ( ); | |||||
float currentValue ( ); | |||||
uint32_t triggerInterval ( ); | |||||
uint32_t triggerTotal ( ); | |||||
bool isHigh ( ); | |||||
bool isLow ( ); | |||||
private: | |||||
float threshold; | |||||
bool triggered; | |||||
bool lastTriggered; | |||||
float lastValue; | |||||
uint32_t triggerIntervalCount; | |||||
uint32_t lastTriggerInterval; | |||||
uint32_t triggerCount; | |||||
}; | |||||
} |
@@ -0,0 +1,68 @@ | |||||
#include "Clock.hpp" | |||||
namespace SynthDevKit { | |||||
Clock::Clock (uint16_t count, float threshold) { | |||||
if (count > CLOCK_LIMIT) { | |||||
throw CLK_ERROR_TOO_MANY; | |||||
} | |||||
triggerThreshold = threshold; | |||||
triggerCount = count; | |||||
current = 0; | |||||
ready = false; | |||||
step = 0; | |||||
cv = new CV(threshold); | |||||
for (uint16_t i = 0; i < CLOCK_LIMIT; i++) { | |||||
states[i] = false; | |||||
} | |||||
} | |||||
bool *Clock::update (float input) { | |||||
cv->update(input); | |||||
// only become ready after the first trigger has occurred. this allows for | |||||
// an interval to be set up | |||||
if (!ready) { | |||||
if (cv->newTrigger()) { | |||||
ready = true; | |||||
} | |||||
return states; | |||||
} | |||||
current++; | |||||
if (cv->newTrigger()) { | |||||
step++; | |||||
current = 0; | |||||
for (uint16_t i = 0; i < triggerCount; i++) { | |||||
states[i] = ((step % (i + 1)) == 0) ? true : false; | |||||
} | |||||
} else if (current >= cv->triggerInterval() / 2) { | |||||
for (uint16_t i = 0; i < triggerCount; i++) { | |||||
states[i] = false; | |||||
} | |||||
} | |||||
if (step >= triggerCount) { | |||||
step = 0; | |||||
} | |||||
return states; | |||||
} | |||||
void Clock::reset ( ) { | |||||
current = 0; | |||||
ready = false; | |||||
step = 0; | |||||
for (uint16_t i = 0; i < CLOCK_LIMIT; i++) { | |||||
states[i] = false; | |||||
} | |||||
cv->reset(); | |||||
} | |||||
} |
@@ -0,0 +1,26 @@ | |||||
#pragma once | |||||
#include <stdint.h> | |||||
#include "CV.hpp" | |||||
#define CLOCK_LIMIT 1024 | |||||
#define CLK_ERROR_TOO_MANY 1 | |||||
namespace SynthDevKit { | |||||
class Clock { | |||||
public: | |||||
Clock (uint16_t, float); | |||||
bool *update (float); | |||||
void reset ( ); | |||||
private: | |||||
CV *cv; | |||||
uint16_t triggerCount; | |||||
bool ready; | |||||
uint64_t current; | |||||
uint16_t step; | |||||
float triggerThreshold; | |||||
bool states[CLOCK_LIMIT]; | |||||
}; | |||||
} |
@@ -0,0 +1,56 @@ | |||||
#include "testrunner.hpp" | |||||
#include "../src/CV.hpp" | |||||
using namespace SynthDevKit; | |||||
uint8_t test_trigger_update ( ) { | |||||
CV *cv = new CV(1.5); | |||||
check(cv->newTrigger() == false, "no trigger before update"); | |||||
cv->update(0.1); | |||||
check(cv->newTrigger() == false, "no trigger if low"); | |||||
check(cv->currentValue() == 0.1f, "current value is correct"); | |||||
check(cv->triggerInterval() == 0, "trigger interval is correct"); | |||||
check(cv->triggerTotal() == 0, "trigger total is correct"); | |||||
cv->update(1.5); | |||||
check(cv->newTrigger() == true, "trigger is correct after going high"); | |||||
check(cv->currentValue() == 1.5f, "current value is correct"); | |||||
check(cv->triggerInterval() == 2, "trigger interval is correct"); | |||||
check(cv->triggerTotal() == 1, "trigger total is correct"); | |||||
cv->update(2.5); | |||||
check(cv->newTrigger() == false, "not a new trigger while still high"); | |||||
check(cv->currentValue() == 2.5f, "current value is correct"); | |||||
check(cv->triggerInterval() == 2, "trigger interval is correct"); | |||||
check(cv->triggerTotal() == 1, "trigger total is correct"); | |||||
cv->update(-1); | |||||
check(cv->newTrigger() == false, "trigger is correct after going low"); | |||||
check(cv->currentValue() == -1, "current value is correct"); | |||||
check(cv->triggerInterval() == 2, "trigger interval is correct"); | |||||
check(cv->triggerTotal() == 1, "trigger total is correct"); | |||||
done(); | |||||
} | |||||
uint8_t test_trigger_reset ( ) { | |||||
CV *cv = new CV(1.5); | |||||
check(cv->newTrigger() == false, "no trigger before update"); | |||||
cv->update(0.1); | |||||
check(cv->newTrigger() == false, "no trigger if low"); | |||||
check(cv->currentValue() == 0.1f, "current value is correct"); | |||||
check(cv->triggerInterval() == 0, "trigger interval is correct"); | |||||
check(cv->triggerTotal() == 0, "trigger total is correct"); | |||||
cv->reset(); | |||||
check(cv->newTrigger() == false, "no trigger after reset"); | |||||
check(cv->currentValue() == 0.0f, "current value is reset"); | |||||
check(cv->triggerInterval() == 0, "trigger interval is reset"); | |||||
check(cv->triggerTotal() == 0, "trigger total is reset"); | |||||
done(); | |||||
} |
@@ -0,0 +1,136 @@ | |||||
#include "testrunner.hpp" | |||||
#include "../src/Clock.hpp" | |||||
using namespace SynthDevKit; | |||||
uint8_t test_clock_exception ( ) { | |||||
bool has_exception = 0; | |||||
Clock *clock; | |||||
try { | |||||
clock = new Clock(CLOCK_LIMIT + 1, 1.5); | |||||
} catch (int err) { | |||||
has_exception = true; | |||||
} | |||||
check(clock, "clock is not null"); | |||||
check(has_exception, "exception is thrown"); | |||||
done(); | |||||
} | |||||
uint8_t test_clock_update ( ) { | |||||
Clock *clock = new Clock(4, 1.5); | |||||
bool *results; | |||||
results = clock->update(0); | |||||
for (uint16_t i = 0; i < 4; i++) { | |||||
check(results[i] == false, "not triggered before ready"); | |||||
} | |||||
results = clock->update(1.5); | |||||
for (uint16_t i = 0; i < 4; i++) { | |||||
check(results[i] == false, "not triggered on first trigger"); | |||||
} | |||||
results = clock->update(0); | |||||
results = clock->update(0); | |||||
results = clock->update(0); | |||||
results = clock->update(1.5); | |||||
check(results[0] == true, "first entry is triggered"); | |||||
check(results[1] == false, "second entry is not triggered"); | |||||
check(results[2] == false, "third entry is not triggered"); | |||||
check(results[3] == false, "fourth entry is not triggered"); | |||||
results = clock->update(0); | |||||
check(results[0] == true, "first entry is still triggered"); | |||||
check(results[1] == false, "second entry is still not triggered"); | |||||
check(results[2] == false, "third entry is still not triggered"); | |||||
check(results[3] == false, "fourth entry is still not triggered"); | |||||
results = clock->update(0); | |||||
check(results[0] == false, "first entry is now not triggered"); | |||||
check(results[1] == false, "second entry is still not triggered"); | |||||
check(results[2] == false, "third entry is still not triggered"); | |||||
check(results[3] == false, "fourth entry is still not triggered"); | |||||
results = clock->update(0); | |||||
check(results[0] == false, "first entry is still not triggered"); | |||||
check(results[1] == false, "second entry is still not triggered"); | |||||
check(results[2] == false, "third entry is still not triggered"); | |||||
check(results[3] == false, "fourth entry is still not triggered"); | |||||
results = clock->update(1.5); | |||||
check(results[0] == true, "first entry is triggered"); | |||||
check(results[1] == true, "second entry is triggered"); | |||||
check(results[2] == false, "third entry is not triggered"); | |||||
check(results[3] == false, "fourth entry is not triggered"); | |||||
clock->update(0); | |||||
clock->update(0); | |||||
clock->update(0); | |||||
results = clock->update(1.5); | |||||
check(results[0] == true, "first entry is triggered"); | |||||
check(results[1] == false, "second entry is not triggered"); | |||||
check(results[2] == true, "third entry is triggered"); | |||||
check(results[3] == false, "fourth entry is not triggered"); | |||||
clock->update(0); | |||||
clock->update(0); | |||||
clock->update(0); | |||||
results = clock->update(1.5); | |||||
check(results[0] == true, "first entry is triggered"); | |||||
check(results[1] == true, "second entry is triggered"); | |||||
check(results[2] == false, "third entry is not triggered"); | |||||
check(results[3] == true, "fourth entry is triggered"); | |||||
done(); | |||||
} | |||||
uint8_t test_clock_reset ( ) { | |||||
Clock *clock = new Clock(4, 1.5); | |||||
bool *results; | |||||
results = clock->update(0); | |||||
for (uint16_t i = 0; i < 4; i++) { | |||||
check(results[i] == false, "not triggered before ready"); | |||||
} | |||||
results = clock->update(1.5); | |||||
for (uint16_t i = 0; i < 4; i++) { | |||||
check(results[i] == false, "not triggered on first trigger"); | |||||
} | |||||
results = clock->update(0); | |||||
results = clock->update(0); | |||||
results = clock->update(0); | |||||
results = clock->update(1.5); | |||||
check(results[0] == true, "first entry is triggered"); | |||||
check(results[1] == false, "second entry is not triggered"); | |||||
check(results[2] == false, "third entry is not triggered"); | |||||
check(results[3] == false, "fourth entry is not triggered"); | |||||
clock->reset(); | |||||
results = clock->update(0); | |||||
for (uint16_t i = 0; i < 4; i++) { | |||||
check(results[i] == false, "not triggered before ready"); | |||||
} | |||||
results = clock->update(1.5); | |||||
for (uint16_t i = 0; i < 4; i++) { | |||||
check(results[i] == false, "not triggered on first trigger"); | |||||
} | |||||
done(); | |||||
} |
@@ -0,0 +1,49 @@ | |||||
#include <iostream> | |||||
#include <string.h> | |||||
#include "testrunner.hpp" | |||||
using namespace std; | |||||
uint8_t spec = 0; | |||||
uint16_t test_passed = 0; | |||||
uint16_t test_failed = 0; | |||||
void _test_pass (const char *message) { | |||||
if (spec) { | |||||
cout << " ✓ " << message << endl; | |||||
} else { | |||||
cout << "."; | |||||
} | |||||
} | |||||
void _test_fail (const char *message, const char *file, uint16_t line) { | |||||
if (spec) { | |||||
cout << " 𝙭 " << message << " (" << file << ":" << line << ")" << endl; | |||||
} else { | |||||
cout << "𝙭"; | |||||
} | |||||
} | |||||
void _test_start (const char *name) { | |||||
if (spec) { | |||||
cout << endl << name << endl; | |||||
} | |||||
} | |||||
int main (int argc, char **argv) { | |||||
if (argc > 1) { | |||||
if ((strcmp(argv[1], "--spec") == 0) || (strcmp(argv[1], "-s") == 0)) { | |||||
spec = 1; | |||||
} | |||||
} | |||||
test(test_trigger_update, "test trigger update"); | |||||
test(test_trigger_reset, "test trigger reset"); | |||||
test(test_clock_exception, "test clock exception"); | |||||
test(test_clock_update, "test clock update"); | |||||
cout << endl << "PASSED: " << test_passed << endl << "FAILED: " << test_failed << endl; | |||||
return (test_failed > 0 ? 1 : 0); | |||||
} |
@@ -0,0 +1,26 @@ | |||||
#pragma once | |||||
#include <stdint.h> | |||||
extern uint8_t spec; | |||||
extern uint16_t test_passed; | |||||
extern uint16_t test_failed; | |||||
void _test_fail (const char *, const char *, uint16_t); | |||||
void _test_pass (const char *); | |||||
void _test_start (const char *); | |||||
/* Successfull end of the test case */ | |||||
#define done() return 0 | |||||
/* Check single condition */ | |||||
#define check(cond, message) do { if (!(cond)) { _test_fail(message, __FILE__, __LINE__); test_failed++; } else { _test_pass(message); test_passed++; } } while (0) | |||||
/* Test runner */ | |||||
#define test(func, name) do { _test_start(name); func(); } while(0) | |||||
uint8_t test_trigger_update ( ); | |||||
uint8_t test_trigger_reset ( ); | |||||
uint8_t test_clock_exception ( ); | |||||
uint8_t test_clock_update ( ); | |||||
uint8_t test_clock_reset ( ); |
@@ -0,0 +1,10 @@ | |||||
ALL_OBJ= \ | |||||
deps/SynthDevKit/src/Clock.o \ | |||||
deps/SynthDevKit/src/CV.o \ | |||||
src/BD9.o \ | |||||
src/ClosedHH.o \ | |||||
src/DMX.o \ | |||||
src/DrumKit.o \ | |||||
src/DrumModule.o \ | |||||
src/OpenHH.o \ | |||||
src/Snare.o |
@@ -0,0 +1,7 @@ | |||||
SLUG=DrumKit | |||||
include ../../../build_plugin_pre.mk | |||||
include make.objects | |||||
include ../../../build_plugin_post.mk |
@@ -0,0 +1,279 @@ | |||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||||
<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" | |||||
id="SvgjsSvg1006" | |||||
width="45" | |||||
height="380" | |||||
version="1.1" | |||||
sodipodi:docname="BD9.svg" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||||
<metadata | |||||
id="metadata7215"> | |||||
<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> | |||||
<sodipodi:namedview | |||||
pagecolor="#ffffff" | |||||
bordercolor="#666666" | |||||
borderopacity="1" | |||||
objecttolerance="10" | |||||
gridtolerance="10" | |||||
guidetolerance="10" | |||||
inkscape:pageopacity="0" | |||||
inkscape:pageshadow="2" | |||||
inkscape:window-width="901" | |||||
inkscape:window-height="1006" | |||||
id="namedview7213" | |||||
showgrid="false" | |||||
inkscape:pagecheckerboard="true" | |||||
inkscape:zoom="2.0011122" | |||||
inkscape:cx="-4.074128" | |||||
inkscape:cy="266.34341" | |||||
inkscape:window-x="663" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
inkscape:current-layer="SvgjsSvg1006" /> | |||||
<defs | |||||
id="SvgjsDefs1007" /> | |||||
<path | |||||
style="fill:#f0f0f0;fill-opacity:1" | |||||
d="M 0,0 H 45 V 380 H 0 Z" | |||||
id="SvgjsRect1008" /> | |||||
<path | |||||
style="fill:#d05c10;fill-opacity:1" | |||||
d="M 7,33 H 38 V 186 H 7 Z" | |||||
id="SvgjsRect1009" /> | |||||
<g | |||||
aria-label="BD-9" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text976"> | |||||
<path | |||||
d="m 13.091299,21.899443 q 0,0.3125 -0.110677,0.670573 -0.104167,0.358073 -0.351563,0.664062 -0.240885,0.30599 -0.63151,0.514323 -0.390625,0.201823 -0.957031,0.201823 H 4.6147367 q -0.1822917,0 -0.3385417,-0.0651 -0.15625,-0.0651 -0.2734375,-0.175781 -0.1106771,-0.117188 -0.1757812,-0.273438 -0.065104,-0.15625 -0.065104,-0.338542 v -7.630208 q 0,-0.175781 0.065104,-0.332031 0.065104,-0.15625 0.1757812,-0.273438 0.1171875,-0.117187 0.2734375,-0.182291 0.15625,-0.0651 0.3385417,-0.0651 h 5.6640623 q 0.3125,0 0.670573,0.110677 0.358073,0.110677 0.664062,0.358073 0.3125,0.240885 0.514323,0.63151 0.208334,0.390625 0.208334,0.957031 v 0.319011 q 0,0.449218 -0.14974,0.970052 -0.14974,0.514323 -0.481771,0.976562 0.286459,0.175781 0.533854,0.423177 0.253907,0.247396 0.442709,0.572917 0.188802,0.325521 0.299479,0.735677 0.110677,0.410156 0.110677,0.904948 z m -1.692708,-0.325521 q 0,-0.332031 -0.104167,-0.592448 Q 11.190257,20.714547 11.001455,20.525745 10.812653,20.336943 10.545726,20.239287 10.278799,20.13512 9.9467678,20.13512 H 6.1316637 v -1.705729 h 3.0533854 q 0.3320312,0 0.5989583,-0.09766 0.2669266,-0.104166 0.4557296,-0.292968 0.188802,-0.188802 0.286458,-0.449219 0.104167,-0.266927 0.104167,-0.598958 v -0.319011 q 0,-0.364583 -0.351563,-0.364583 H 5.4545804 v 5.950521 h 5.5859376 q 0.04557,0 0.110677,-0.0065 0.0651,-0.0065 0.117187,-0.03906 0.05208,-0.03255 0.09115,-0.110677 0.03906,-0.07813 0.03906,-0.214844 z" | |||||
style="font-size:13.33333302px" | |||||
id="path1029" /> | |||||
<path | |||||
d="m 23.872549,20.043974 q 0,0.852865 -0.299479,1.56901 -0.292969,0.716146 -0.813802,1.23698 -0.520834,0.514322 -1.236979,0.807291 -0.716146,0.292969 -1.55599,0.292969 h -4.570312 q -0.182292,0 -0.338542,-0.0651 -0.15625,-0.0651 -0.273437,-0.175781 -0.110678,-0.117188 -0.175782,-0.273438 -0.0651,-0.15625 -0.0651,-0.338542 v -7.630208 q 0,-0.175781 0.0651,-0.332031 0.0651,-0.15625 0.175782,-0.273438 0.117187,-0.117187 0.273437,-0.182291 0.15625,-0.0651 0.338542,-0.0651 h 4.570312 q 0.839844,0 1.55599,0.292968 0.716145,0.292969 1.236979,0.813802 0.520833,0.514323 0.813802,1.23698 0.299479,0.716145 0.299479,1.5625 z m -1.692708,-1.523437 q 0,-0.494792 -0.162761,-0.904948 -0.15625,-0.410157 -0.449218,-0.696615 -0.292969,-0.292969 -0.703125,-0.449219 -0.403646,-0.16276 -0.898438,-0.16276 H 16.23583 v 5.950521 h 3.730469 q 0.494792,0 0.898438,-0.15625 0.410156,-0.162761 0.703125,-0.449219 0.292968,-0.292969 0.449218,-0.696615 0.162761,-0.410156 0.162761,-0.911458 z" | |||||
style="font-size:13.33333302px" | |||||
id="path1031" /> | |||||
<path | |||||
d="M 31.424631,20.043974 H 25.31786 v -1.523437 h 6.106771 z" | |||||
style="font-size:13.33333302px" | |||||
id="path1033" /> | |||||
<path | |||||
d="m 32.746246,17.752307 v -0.761718 q 0,-0.234375 0.05208,-0.501302 0.05859,-0.273438 0.175781,-0.533855 0.117188,-0.266927 0.30599,-0.507812 0.188802,-0.240885 0.449218,-0.423177 0.266927,-0.188802 0.61198,-0.299479 0.345052,-0.110677 0.78125,-0.110677 h 3.053385 q 0.3125,0 0.670573,0.07161 0.358073,0.07162 0.703125,0.234375 0.351562,0.15625 0.670573,0.403646 0.31901,0.247396 0.559895,0.598958 0.247396,0.345052 0.390625,0.800782 0.14974,0.455729 0.14974,1.028645 v 3.066407 q 0,0.572916 -0.14974,1.028645 -0.143229,0.45573 -0.390625,0.807292 -0.240885,0.345052 -0.559895,0.592448 -0.319011,0.240885 -0.670573,0.403646 -0.345052,0.15625 -0.703125,0.227864 -0.358073,0.07161 -0.670573,0.07161 h -4.22526 v -1.692708 h 4.22526 q 0.31901,-0.02604 0.579427,-0.130209 0.266927,-0.104166 0.455729,-0.279948 0.195313,-0.182291 0.299479,-0.436198 0.104167,-0.260416 0.104167,-0.592447 V 20.13512 h -4.492187 q -0.240886,0 -0.507813,-0.05208 -0.266927,-0.05859 -0.533854,-0.175782 -0.260417,-0.123698 -0.501302,-0.305989 -0.240886,-0.188802 -0.429688,-0.455729 -0.182291,-0.266928 -0.292968,-0.61198 -0.110678,-0.345052 -0.110678,-0.78125 z m 6.86849,0 q 0,-0.332031 -0.110677,-0.598958 -0.110677,-0.266927 -0.30599,-0.455729 -0.188802,-0.188802 -0.455729,-0.286458 -0.260417,-0.104167 -0.566406,-0.104167 h -3.053385 q -0.3125,0 -0.501303,0.195312 -0.182291,0.195313 -0.182291,0.488282 v 0.761718 q 0,0.332032 0.175781,0.507813 0.175781,0.169271 0.520833,0.169271 h 4.479167 z" | |||||
style="font-size:13.33333302px" | |||||
id="path1035" /> | |||||
</g> | |||||
<g | |||||
aria-label="DK" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text980"> | |||||
<path | |||||
d="m 20.520292,358.76279 q 0,1.36458 -0.479166,2.51041 -0.46875,1.14584 -1.302084,1.97917 -0.833333,0.82292 -1.979166,1.29167 -1.145834,0.46875 -2.489584,0.46875 H 6.9577921 q -0.2916667,0 -0.5416667,-0.10417 -0.25,-0.10417 -0.4375,-0.28125 -0.1770834,-0.1875 -0.2812501,-0.4375 -0.1041666,-0.25 -0.1041666,-0.54167 v -12.20833 q 0,-0.28125 0.1041666,-0.53125 0.1041667,-0.25 0.2812501,-0.4375 0.1875,-0.1875 0.4375,-0.29167 0.25,-0.10416 0.5416667,-0.10416 h 7.3124999 q 1.34375,0 2.489584,0.46875 1.145833,0.46875 1.979166,1.30208 0.833334,0.82292 1.302084,1.97917 0.479166,1.14583 0.479166,2.5 z m -2.708333,-2.4375 q 0,-0.79167 -0.260417,-1.44792 -0.25,-0.65625 -0.71875,-1.11458 -0.46875,-0.46875 -1.125,-0.71875 -0.645833,-0.26042 -1.4375,-0.26042 H 8.3015421 v 9.52083 h 5.9687499 q 0.791667,0 1.4375,-0.25 0.65625,-0.26041 1.125,-0.71875 0.46875,-0.46875 0.71875,-1.11458 0.260417,-0.65625 0.260417,-1.45833 z" | |||||
style="font-size:21.33333397px" | |||||
id="path1038" /> | |||||
<path | |||||
d="m 38.853626,365.01279 h -3.84375 l -6.09375,-6.10417 h -1.90625 v -2.72917 h 1.90625 l 6.09375,-6.10416 h 3.84375 l -7.677083,7.46875 z m -12.927083,0 h -2.708334 v -14.9375 h 2.708334 z" | |||||
style="font-size:21.33333397px" | |||||
id="path1040" /> | |||||
</g> | |||||
<g | |||||
aria-label="trigger" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text984"> | |||||
<path | |||||
d="M 10.850587,74.46331 H 9.0771494 v 3.207031 H 8.0498056 V 74.46331 H 6.7294931 v -1.015625 h 1.3203125 v -1.378906 h 1.0273438 v 1.378906 h 1.7734376 z" | |||||
style="font-size:8px" | |||||
id="path1043" /> | |||||
<path | |||||
d="m 15.206056,74.46331 h -2.285157 q -0.207031,0 -0.3125,0.105469 -0.105468,0.101562 -0.105468,0.300781 v 2.800781 H 11.487306 V 74.86956 q 0,-0.261719 0.06641,-0.46875 0.06641,-0.207031 0.175781,-0.363281 0.113281,-0.160156 0.257813,-0.269531 0.144531,-0.113282 0.300781,-0.183594 0.160156,-0.07031 0.320312,-0.101563 0.164063,-0.03516 0.304688,-0.03516 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1045" /> | |||||
<path | |||||
d="m 16.901368,72.580498 h -1.015625 v -0.917969 h 1.015625 z m 0,5.089843 h -1.015625 v -4.222656 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1047" /> | |||||
<path | |||||
d="m 22.463868,78.076591 q 0,0.261719 -0.06641,0.46875 -0.06641,0.210938 -0.175781,0.367188 -0.109375,0.160156 -0.253907,0.269531 -0.144531,0.113281 -0.304687,0.183594 -0.15625,0.07031 -0.320313,0.101562 -0.160156,0.03516 -0.304687,0.03516 h -1.832031 v -1.015625 h 1.832031 q 0.207031,0 0.308594,-0.105469 0.101562,-0.105469 0.101562,-0.304688 V 74.86956 q 0,-0.199219 -0.101562,-0.300781 -0.101563,-0.105469 -0.308594,-0.105469 h -1.832031 q -0.1875,0 -0.296875,0.117188 -0.109375,0.113281 -0.109375,0.289062 v 1.375 q 0,0.199219 0.105468,0.304688 0.105469,0.105468 0.308594,0.105468 h 1.824219 v 1.015625 h -1.832031 q -0.144532,0 -0.304688,-0.03125 -0.160156,-0.03516 -0.320312,-0.105468 -0.15625,-0.07031 -0.300782,-0.179688 -0.144531,-0.113281 -0.253906,-0.269531 -0.109375,-0.160156 -0.175781,-0.367188 -0.06641,-0.210937 -0.06641,-0.472656 v -1.375 q 0,-0.144531 0.03125,-0.304687 0.03516,-0.160157 0.105468,-0.316407 0.07031,-0.160156 0.179688,-0.304687 0.113281,-0.144531 0.269531,-0.253906 0.160156,-0.109375 0.367188,-0.175782 0.207031,-0.06641 0.46875,-0.06641 h 1.832031 q 0.144531,0 0.304687,0.03516 0.164063,0.03125 0.320313,0.101563 0.160156,0.07031 0.304687,0.183594 0.144532,0.109375 0.253907,0.269531 0.109375,0.15625 0.175781,0.363281 0.06641,0.207031 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1049" /> | |||||
<path | |||||
d="m 27.995118,78.076591 q 0,0.261719 -0.06641,0.46875 -0.06641,0.210938 -0.175781,0.367188 -0.109375,0.160156 -0.253907,0.269531 -0.144531,0.113281 -0.304687,0.183594 -0.15625,0.07031 -0.320313,0.101562 -0.160156,0.03516 -0.304687,0.03516 h -1.832031 v -1.015625 h 1.832031 q 0.207031,0 0.308594,-0.105469 0.101562,-0.105469 0.101562,-0.304688 V 74.86956 q 0,-0.199219 -0.101562,-0.300781 -0.101563,-0.105469 -0.308594,-0.105469 h -1.832031 q -0.1875,0 -0.296875,0.117188 -0.109375,0.113281 -0.109375,0.289062 v 1.375 q 0,0.199219 0.105468,0.304688 0.105469,0.105468 0.308594,0.105468 h 1.824219 v 1.015625 h -1.832031 q -0.144532,0 -0.304688,-0.03125 -0.160156,-0.03516 -0.320312,-0.105468 -0.15625,-0.07031 -0.300782,-0.179688 -0.144531,-0.113281 -0.253906,-0.269531 -0.109375,-0.160156 -0.175781,-0.367188 -0.06641,-0.210937 -0.06641,-0.472656 v -1.375 q 0,-0.144531 0.03125,-0.304687 0.03516,-0.160157 0.105468,-0.316407 0.07031,-0.160156 0.179688,-0.304687 0.113281,-0.144531 0.269531,-0.253906 0.160156,-0.109375 0.367188,-0.175782 0.207031,-0.06641 0.46875,-0.06641 h 1.832031 q 0.144531,0 0.304687,0.03516 0.164063,0.03125 0.320313,0.101563 0.160156,0.07031 0.304687,0.183594 0.144532,0.109375 0.253907,0.269531 0.109375,0.15625 0.175781,0.363281 0.06641,0.207031 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1051" /> | |||||
<path | |||||
d="m 33.475587,74.846123 q 0,0.210937 -0.07422,0.457031 -0.07422,0.242187 -0.242187,0.453125 -0.164063,0.207031 -0.433594,0.347656 -0.265625,0.140625 -0.648438,0.140625 h -1.832031 v -0.964844 h 1.832031 q 0.207032,0 0.320313,-0.125 0.113281,-0.128906 0.113281,-0.316406 0,-0.199219 -0.128906,-0.3125 -0.125,-0.113281 -0.304688,-0.113281 h -1.832031 q -0.207031,0 -0.320312,0.128906 -0.113282,0.125 -0.113282,0.3125 v 1.417969 q 0,0.203125 0.125,0.316406 0.128907,0.113281 0.316407,0.113281 h 1.824218 v 0.96875 h -1.832031 q -0.210937,0 -0.457031,-0.07422 -0.242188,-0.07422 -0.453125,-0.238282 -0.207031,-0.167968 -0.347656,-0.433593 -0.140625,-0.269532 -0.140625,-0.652344 v -1.425781 q 0,-0.210938 0.07422,-0.453125 0.07422,-0.246094 0.238282,-0.453125 0.167968,-0.210938 0.433593,-0.351563 0.269532,-0.140625 0.652344,-0.140625 h 1.832031 q 0.210938,0 0.453125,0.07422 0.246094,0.07422 0.453125,0.242187 0.210938,0.164063 0.351563,0.433594 0.140625,0.265625 0.140625,0.648438 z" | |||||
style="font-size:8px" | |||||
id="path1053" /> | |||||
<path | |||||
d="m 37.862306,74.46331 h -2.285157 q -0.207031,0 -0.3125,0.105469 -0.105468,0.101562 -0.105468,0.300781 v 2.800781 H 34.143556 V 74.86956 q 0,-0.261719 0.06641,-0.46875 0.06641,-0.207031 0.175781,-0.363281 0.113281,-0.160156 0.257813,-0.269531 0.144531,-0.113282 0.300781,-0.183594 0.160156,-0.07031 0.320312,-0.101563 0.164063,-0.03516 0.304688,-0.03516 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1055" /> | |||||
</g> | |||||
<g | |||||
aria-label="select" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text988"> | |||||
<path | |||||
d="m 13.335968,126.96858 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175781,0.36719 -0.109375,0.15625 -0.253907,0.26953 -0.144531,0.10937 -0.304687,0.17968 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 9.1601868 v -1.01562 h 2.7421872 q 0.207032,0 0.3125,-0.10547 0.105469,-0.10547 0.105469,-0.30469 -0.01953,-0.40625 -0.410156,-0.40625 h -1.574219 q -0.335937,0 -0.5703125,-0.11719 -0.234375,-0.11718 -0.3828125,-0.29296 -0.1445312,-0.17579 -0.2109375,-0.37891 -0.0625,-0.20313 -0.0625,-0.37891 0,-0.33984 0.1210938,-0.57031 0.1210937,-0.23437 0.3046875,-0.37891 0.1835937,-0.14453 0.3984375,-0.20703 0.2148437,-0.0664 0.4023437,-0.0664 h 2.496094 v 1.01562 h -2.488281 q -0.07813,0 -0.125,0.0195 -0.04297,0.0156 -0.06641,0.0469 -0.01953,0.0273 -0.02344,0.0625 -0.0039,0.0312 -0.0039,0.0625 0.0039,0.0625 0.02344,0.0977 0.01953,0.0352 0.04687,0.0508 0.03125,0.0156 0.06641,0.0195 0.03906,0 0.07422,0 h 1.574219 q 0.390625,0 0.664062,0.14062 0.273438,0.14063 0.441407,0.35547 0.167968,0.21094 0.242187,0.46094 0.07813,0.25 0.07813,0.46484 z" | |||||
style="font-size:8px" | |||||
id="path1058" /> | |||||
<path | |||||
d="m 18.593781,125.57014 q 0,0.21094 -0.07422,0.45704 -0.07422,0.24218 -0.242188,0.45312 -0.164062,0.20703 -0.433593,0.34766 -0.265625,0.14062 -0.648438,0.14062 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320313,-0.125 0.113281,-0.12891 0.113281,-0.31641 0,-0.19922 -0.128906,-0.3125 -0.125,-0.11328 -0.304688,-0.11328 h -1.832031 q -0.207031,0 -0.320313,0.12891 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20312 0.125,0.3164 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457031,-0.0742 -0.242188,-0.0742 -0.453125,-0.23828 -0.207032,-0.16797 -0.347657,-0.43359 -0.140625,-0.26953 -0.140625,-0.65234 v -1.42579 q 0,-0.21093 0.07422,-0.45312 0.07422,-0.24609 0.238281,-0.45313 0.167969,-0.21093 0.433594,-0.35156 0.269531,-0.14062 0.652344,-0.14062 h 1.832031 q 0.210938,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24218 0.210938,0.16407 0.351563,0.4336 0.140625,0.26562 0.140625,0.64843 z" | |||||
style="font-size:8px" | |||||
id="path1060" /> | |||||
<path | |||||
d="m 21.140656,128.39436 h -0.453125 q -0.21875,0 -0.46875,-0.0742 -0.246094,-0.0742 -0.460938,-0.24218 -0.214844,-0.17188 -0.355469,-0.44141 -0.140625,-0.27344 -0.140625,-0.66797 v -4.58203 h 1.015625 v 4.58203 q 0,0.1875 0.117188,0.30078 0.117187,0.10938 0.292969,0.10938 h 0.453125 z" | |||||
style="font-size:8px" | |||||
id="path1062" /> | |||||
<path | |||||
d="m 26.343781,125.57014 q 0,0.21094 -0.07422,0.45704 -0.07422,0.24218 -0.242188,0.45312 -0.164062,0.20703 -0.433593,0.34766 -0.265625,0.14062 -0.648438,0.14062 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320313,-0.125 0.113281,-0.12891 0.113281,-0.31641 0,-0.19922 -0.128906,-0.3125 -0.125,-0.11328 -0.304688,-0.11328 h -1.832031 q -0.207031,0 -0.320313,0.12891 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20312 0.125,0.3164 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457031,-0.0742 -0.242188,-0.0742 -0.453125,-0.23828 -0.207032,-0.16797 -0.347657,-0.43359 -0.140625,-0.26953 -0.140625,-0.65234 v -1.42579 q 0,-0.21093 0.07422,-0.45312 0.07422,-0.24609 0.238281,-0.45313 0.167969,-0.21093 0.433594,-0.35156 0.269531,-0.14062 0.652344,-0.14062 h 1.832031 q 0.210938,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24218 0.210938,0.16407 0.351563,0.4336 0.140625,0.26562 0.140625,0.64843 z" | |||||
style="font-size:8px" | |||||
id="path1064" /> | |||||
<path | |||||
d="m 31.125031,128.39436 h -2.753907 q -0.210937,0 -0.460937,-0.0742 -0.25,-0.0742 -0.464844,-0.24218 -0.210937,-0.17188 -0.355469,-0.44141 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179688,-0.30469 0.113281,-0.14453 0.269531,-0.25391 0.160156,-0.10937 0.367187,-0.17578 0.207032,-0.0664 0.46875,-0.0664 h 2.753907 v 1.01562 h -2.753907 q -0.199218,0 -0.304687,0.10156 -0.101563,0.10157 -0.101563,0.3125 v 1.36719 q 0,0.19922 0.105469,0.30469 0.105469,0.10547 0.308594,0.10547 h 2.746094 z" | |||||
style="font-size:8px" | |||||
id="path1066" /> | |||||
<path | |||||
d="m 35.812531,125.18733 h -1.773438 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01562 h 1.320312 v -1.37891 h 1.027344 v 1.37891 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1068" /> | |||||
</g> | |||||
<g | |||||
aria-label="output" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text992"> | |||||
<path | |||||
d="m 11.844351,179.93802 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175782,0.36718 -0.109375,0.15625 -0.253906,0.26953 -0.144531,0.10938 -0.304687,0.17969 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 8.5865383 q -0.2109375,0 -0.4609375,-0.0742 -0.25,-0.0742 -0.4648437,-0.24219 -0.2109375,-0.17187 -0.3554688,-0.4414 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.39063 0.140625,-0.66016 0.1445313,-0.27343 0.3554688,-0.4414 0.2148437,-0.17188 0.4648437,-0.2461 0.25,-0.0742 0.4609375,-0.0742 H 10.41857 q 0.390625,0 0.664062,0.14063 0.273438,0.14062 0.441406,0.35547 0.167969,0.21094 0.242188,0.46094 0.07813,0.25 0.07813,0.46484 z m -1.015625,-1.36719 q 0,-0.21094 -0.105469,-0.3125 -0.105469,-0.10156 -0.304687,-0.10156 H 8.5943508 q -0.203125,0 -0.3085937,0.10547 -0.1054688,0.10156 -0.1054688,0.30078 v 1.375 q 0,0.19922 0.1054688,0.30469 0.1054687,0.10547 0.3085937,0.10547 H 10.41857 q 0.207031,0 0.308593,-0.10547 0.101563,-0.10547 0.101563,-0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1071" /> | |||||
<path | |||||
d="m 17.320913,180.85208 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402344,-0.043 -0.210937,-0.043 -0.417968,-0.13672 -0.207032,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335938,-0.35547 -0.144531,-0.21094 -0.234375,-0.48438 -0.08594,-0.27344 -0.08594,-0.61719 v -2.34375 h 1.015625 v 2.34375 q 0,0.19922 0.06641,0.35938 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777343 v -3.20704 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1073" /> | |||||
<path | |||||
d="m 22.121695,178.15677 h -1.773438 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01563 h 1.320312 v -1.3789 h 1.027344 v 1.3789 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1075" /> | |||||
<path | |||||
d="m 27.438101,179.93802 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175782,0.36718 -0.109375,0.15625 -0.253906,0.26953 -0.144531,0.10938 -0.304687,0.17969 -0.15625,0.0703 -0.316407,0.10547 -0.160156,0.0312 -0.304687,0.0312 h -1.832031 v -1.01562 h 1.832031 q 0.203125,0 0.304687,-0.10547 0.101563,-0.10547 0.101563,-0.30469 v -1.36719 q 0,-0.21094 -0.105469,-0.3125 -0.101562,-0.10156 -0.300781,-0.10156 h -1.824219 q -0.207031,0 -0.3125,0.10547 -0.105469,0.10156 -0.105469,0.30078 v 4.12109 h -1.015625 v -4.12109 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113281,-0.16016 0.257812,-0.26953 0.144532,-0.11328 0.300782,-0.1836 0.160156,-0.0703 0.320312,-0.10156 0.164063,-0.0352 0.304688,-0.0352 h 1.832031 q 0.261719,0 0.46875,0.0664 0.207031,0.0664 0.363281,0.17578 0.160156,0.10938 0.269531,0.25391 0.113282,0.14453 0.183594,0.30469 0.07031,0.15625 0.101563,0.3164 0.03516,0.16016 0.03516,0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1077" /> | |||||
<path | |||||
d="m 32.930288,180.85208 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402344,-0.043 -0.210937,-0.043 -0.417968,-0.13672 -0.207032,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335938,-0.35547 -0.144531,-0.21094 -0.234375,-0.48438 -0.08594,-0.27344 -0.08594,-0.61719 v -2.34375 h 1.015625 v 2.34375 q 0,0.19922 0.06641,0.35938 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777343 v -3.20704 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1079" /> | |||||
<path | |||||
d="m 37.73107,178.15677 h -1.773438 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01563 h 1.320312 v -1.3789 h 1.027344 v 1.3789 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1081" /> | |||||
</g> | |||||
<path | |||||
style="fill:#d05c10;fill-opacity:1" | |||||
d="M 7.1530623,191.86212 H 38.153062 v 153 H 7.1530623 Z" | |||||
id="SvgjsRect1009-7" /> | |||||
<g | |||||
aria-label="trigger" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text984-9"> | |||||
<path | |||||
d="M 11.003649,233.32544 H 9.2302117 v 3.20703 H 8.202868 v -3.20703 H 6.8825555 v -1.01563 H 8.202868 v -1.3789 h 1.0273437 v 1.3789 h 1.7734373 z" | |||||
style="font-size:8px" | |||||
id="path1085" /> | |||||
<path | |||||
d="m 15.359118,233.32544 h -2.285156 q -0.207032,0 -0.3125,0.10547 -0.105469,0.10156 -0.105469,0.30078 v 2.80078 h -1.015625 v -2.80078 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113282,-0.16016 0.257813,-0.26953 0.144531,-0.11328 0.300781,-0.1836 0.160156,-0.0703 0.320313,-0.10156 0.164062,-0.0352 0.304687,-0.0352 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1087" /> | |||||
<path | |||||
d="m 17.05443,231.44263 h -1.015625 v -0.91797 h 1.015625 z m 0,5.08984 h -1.015625 v -4.22266 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1089" /> | |||||
<path | |||||
d="m 22.61693,236.93872 q 0,0.26172 -0.06641,0.46875 -0.06641,0.21094 -0.175781,0.36719 -0.109375,0.16015 -0.253906,0.26953 -0.144532,0.11328 -0.304688,0.18359 -0.15625,0.0703 -0.320312,0.10157 -0.160157,0.0351 -0.304688,0.0351 h -1.832031 v -1.01562 h 1.832031 q 0.207031,0 0.308594,-0.10547 0.101562,-0.10547 0.101562,-0.30469 v -3.20703 q 0,-0.19922 -0.101562,-0.30078 -0.101563,-0.10547 -0.308594,-0.10547 h -1.832031 q -0.1875,0 -0.296875,0.11719 -0.109375,0.11328 -0.109375,0.28906 v 1.375 q 0,0.19922 0.105469,0.30469 0.105468,0.10547 0.308593,0.10547 h 1.824219 v 1.01562 h -1.832031 q -0.144531,0 -0.304688,-0.0312 -0.160156,-0.0352 -0.320312,-0.10547 -0.15625,-0.0703 -0.300781,-0.17969 -0.144532,-0.11328 -0.253907,-0.26953 -0.109375,-0.16015 -0.175781,-0.36718 -0.06641,-0.21094 -0.06641,-0.47266 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179687,-0.30469 0.113281,-0.14453 0.269531,-0.25391 0.160157,-0.10937 0.367188,-0.17578 0.207031,-0.0664 0.46875,-0.0664 h 1.832031 q 0.144531,0 0.304688,0.0352 0.164062,0.0312 0.320312,0.10156 0.160156,0.0703 0.304688,0.1836 0.144531,0.10937 0.253906,0.26953 0.109375,0.15625 0.175781,0.36328 0.06641,0.20703 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1091" /> | |||||
<path | |||||
d="m 28.14818,236.93872 q 0,0.26172 -0.06641,0.46875 -0.06641,0.21094 -0.175781,0.36719 -0.109375,0.16015 -0.253906,0.26953 -0.144532,0.11328 -0.304688,0.18359 -0.15625,0.0703 -0.320312,0.10157 -0.160157,0.0351 -0.304688,0.0351 h -1.832031 v -1.01562 h 1.832031 q 0.207031,0 0.308594,-0.10547 0.101562,-0.10547 0.101562,-0.30469 v -3.20703 q 0,-0.19922 -0.101562,-0.30078 -0.101563,-0.10547 -0.308594,-0.10547 h -1.832031 q -0.1875,0 -0.296875,0.11719 -0.109375,0.11328 -0.109375,0.28906 v 1.375 q 0,0.19922 0.105469,0.30469 0.105468,0.10547 0.308593,0.10547 h 1.824219 v 1.01562 h -1.832031 q -0.144531,0 -0.304688,-0.0312 -0.160156,-0.0352 -0.320312,-0.10547 -0.15625,-0.0703 -0.300781,-0.17969 -0.144532,-0.11328 -0.253907,-0.26953 -0.109375,-0.16015 -0.175781,-0.36718 -0.06641,-0.21094 -0.06641,-0.47266 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179687,-0.30469 0.113281,-0.14453 0.269531,-0.25391 0.160157,-0.10937 0.367188,-0.17578 0.207031,-0.0664 0.46875,-0.0664 h 1.832031 q 0.144531,0 0.304688,0.0352 0.164062,0.0312 0.320312,0.10156 0.160156,0.0703 0.304688,0.1836 0.144531,0.10937 0.253906,0.26953 0.109375,0.15625 0.175781,0.36328 0.06641,0.20703 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1093" /> | |||||
<path | |||||
d="m 33.628649,233.70825 q 0,0.21094 -0.07422,0.45703 -0.07422,0.24219 -0.242187,0.45313 -0.164063,0.20703 -0.433594,0.34765 -0.265625,0.14063 -0.648437,0.14063 H 30.39818 v -0.96484 h 1.832032 q 0.207031,0 0.320312,-0.125 0.113281,-0.12891 0.113281,-0.31641 0,-0.19922 -0.128906,-0.3125 -0.125,-0.11328 -0.304687,-0.11328 H 30.39818 q -0.207031,0 -0.320312,0.1289 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20313 0.125,0.31641 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 H 30.39818 q -0.210937,0 -0.457031,-0.0742 -0.242187,-0.0742 -0.453125,-0.23828 -0.207031,-0.16797 -0.347656,-0.43359 -0.140625,-0.26953 -0.140625,-0.65235 v -1.42578 q 0,-0.21094 0.07422,-0.45312 0.07422,-0.2461 0.238281,-0.45313 0.167969,-0.21094 0.433594,-0.35156 0.269531,-0.14063 0.652343,-0.14063 h 1.832032 q 0.210937,0 0.453125,0.0742 0.246093,0.0742 0.453125,0.24219 0.210937,0.16406 0.351562,0.43359 0.140625,0.26563 0.140625,0.64844 z" | |||||
style="font-size:8px" | |||||
id="path1095" /> | |||||
<path | |||||
d="m 38.015368,233.32544 h -2.285156 q -0.207032,0 -0.3125,0.10547 -0.105469,0.10156 -0.105469,0.30078 v 2.80078 h -1.015625 v -2.80078 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113282,-0.16016 0.257813,-0.26953 0.144531,-0.11328 0.300781,-0.1836 0.160156,-0.0703 0.320313,-0.10156 0.164062,-0.0352 0.304687,-0.0352 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1097" /> | |||||
</g> | |||||
<g | |||||
aria-label="select" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text988-8"> | |||||
<path | |||||
d="m 13.48903,285.83072 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175782,0.36718 -0.109375,0.15625 -0.253906,0.26953 -0.144531,0.10938 -0.304687,0.17969 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 9.3132486 v -1.01562 h 2.7421874 q 0.207031,0 0.3125,-0.10547 0.105469,-0.10547 0.105469,-0.30469 -0.01953,-0.40625 -0.410156,-0.40625 H 10.48903 q -0.335938,0 -0.5703126,-0.11719 -0.234375,-0.11719 -0.3828125,-0.29297 -0.1445313,-0.17578 -0.2109375,-0.3789 -0.0625,-0.20313 -0.0625,-0.37891 0,-0.33984 0.1210937,-0.57031 0.1210938,-0.23438 0.3046875,-0.37891 0.1835938,-0.14453 0.3984374,-0.20703 0.214844,-0.0664 0.402344,-0.0664 h 2.496094 v 1.01563 h -2.488282 q -0.07813,0 -0.125,0.0195 -0.04297,0.0156 -0.06641,0.0469 -0.01953,0.0273 -0.02344,0.0625 -0.0039,0.0312 -0.0039,0.0625 0.0039,0.0625 0.02344,0.0976 0.01953,0.0352 0.04687,0.0508 0.03125,0.0156 0.06641,0.0195 0.03906,0 0.07422,0 h 1.574219 q 0.390625,0 0.664062,0.14063 0.273438,0.14062 0.441406,0.35547 0.167969,0.21094 0.242188,0.46094 0.07813,0.25 0.07813,0.46484 z" | |||||
style="font-size:8px" | |||||
id="path1100" /> | |||||
<path | |||||
d="m 18.746842,284.43228 q 0,0.21094 -0.07422,0.45703 -0.07422,0.24219 -0.242188,0.45313 -0.164062,0.20703 -0.433594,0.34765 -0.265625,0.14063 -0.648437,0.14063 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320312,-0.125 0.113282,-0.12891 0.113282,-0.31641 0,-0.19922 -0.128907,-0.3125 -0.125,-0.11328 -0.304687,-0.11328 h -1.832031 q -0.207032,0 -0.320313,0.1289 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20313 0.125,0.31641 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457032,-0.0742 -0.242187,-0.0742 -0.453125,-0.23828 -0.207031,-0.16797 -0.347656,-0.43359 -0.140625,-0.26953 -0.140625,-0.65235 v -1.42578 q 0,-0.21094 0.07422,-0.45312 0.07422,-0.2461 0.238281,-0.45313 0.167969,-0.21094 0.433594,-0.35156 0.269531,-0.14063 0.652344,-0.14063 h 1.832031 q 0.210937,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24219 0.210937,0.16406 0.351562,0.43359 0.140625,0.26563 0.140625,0.64844 z" | |||||
style="font-size:8px" | |||||
id="path1102" /> | |||||
<path | |||||
d="m 21.293717,287.2565 h -0.453125 q -0.21875,0 -0.46875,-0.0742 -0.246093,-0.0742 -0.460937,-0.24219 -0.214844,-0.17187 -0.355469,-0.4414 -0.140625,-0.27344 -0.140625,-0.66797 v -4.58203 h 1.015625 v 4.58203 q 0,0.1875 0.117188,0.30078 0.117187,0.10938 0.292968,0.10938 h 0.453125 z" | |||||
style="font-size:8px" | |||||
id="path1104" /> | |||||
<path | |||||
d="m 26.496842,284.43228 q 0,0.21094 -0.07422,0.45703 -0.07422,0.24219 -0.242188,0.45313 -0.164062,0.20703 -0.433594,0.34765 -0.265625,0.14063 -0.648437,0.14063 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320312,-0.125 0.113282,-0.12891 0.113282,-0.31641 0,-0.19922 -0.128907,-0.3125 -0.125,-0.11328 -0.304687,-0.11328 h -1.832031 q -0.207032,0 -0.320313,0.1289 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20313 0.125,0.31641 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457032,-0.0742 -0.242187,-0.0742 -0.453125,-0.23828 -0.207031,-0.16797 -0.347656,-0.43359 -0.140625,-0.26953 -0.140625,-0.65235 v -1.42578 q 0,-0.21094 0.07422,-0.45312 0.07422,-0.2461 0.238281,-0.45313 0.167969,-0.21094 0.433594,-0.35156 0.269531,-0.14063 0.652344,-0.14063 h 1.832031 q 0.210937,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24219 0.210937,0.16406 0.351562,0.43359 0.140625,0.26563 0.140625,0.64844 z" | |||||
style="font-size:8px" | |||||
id="path1106" /> | |||||
<path | |||||
d="m 31.278092,287.2565 h -2.753906 q -0.210937,0 -0.460937,-0.0742 -0.25,-0.0742 -0.464844,-0.24219 -0.210938,-0.17187 -0.355469,-0.4414 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179687,-0.30469 0.113282,-0.14453 0.269532,-0.25391 0.160156,-0.10937 0.367187,-0.17578 0.207031,-0.0664 0.46875,-0.0664 h 2.753906 v 1.01563 h -2.753906 q -0.199219,0 -0.304687,0.10156 -0.101563,0.10156 -0.101563,0.3125 v 1.36719 q 0,0.19922 0.105469,0.30469 0.105469,0.10547 0.308594,0.10547 h 2.746093 z" | |||||
style="font-size:8px" | |||||
id="path1108" /> | |||||
<path | |||||
d="m 35.965592,284.04947 h -1.773437 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01563 h 1.320312 v -1.3789 h 1.027344 v 1.3789 h 1.773437 z" | |||||
style="font-size:8px" | |||||
id="path1110" /> | |||||
</g> | |||||
<g | |||||
aria-label="output" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text992-2"> | |||||
<path | |||||
d="m 11.467377,338.80017 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175781,0.36718 -0.109375,0.15625 -0.253907,0.26954 -0.144531,0.10937 -0.304687,0.17968 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 8.2095647 q -0.2109375,0 -0.4609375,-0.0742 -0.25,-0.0742 -0.4648438,-0.24218 -0.2109375,-0.17188 -0.3554687,-0.44141 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.39062 0.140625,-0.66016 0.1445312,-0.27343 0.3554687,-0.4414 0.2148438,-0.17188 0.4648438,-0.2461 0.25,-0.0742 0.4609375,-0.0742 h 1.8320313 q 0.390625,0 0.664062,0.14062 0.273438,0.14063 0.441407,0.35547 0.167968,0.21094 0.242187,0.46094 0.07813,0.25 0.07813,0.46484 z m -1.015625,-1.36719 q 0,-0.21093 -0.105469,-0.3125 -0.105468,-0.10156 -0.304687,-0.10156 H 8.2173772 q -0.203125,0 -0.3085938,0.10547 -0.1054687,0.10156 -0.1054687,0.30078 v 1.375 q 0,0.19922 0.1054687,0.30469 0.1054688,0.10547 0.3085938,0.10547 h 1.8242188 q 0.207031,0 0.308594,-0.10547 0.101562,-0.10547 0.101562,-0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1113" /> | |||||
<path | |||||
d="m 16.94394,339.71423 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402343,-0.043 -0.210938,-0.043 -0.417969,-0.13672 -0.207031,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335937,-0.35547 -0.144532,-0.21094 -0.234375,-0.48438 -0.08594,-0.27343 -0.08594,-0.61718 v -2.34375 h 1.015625 v 2.34375 q 0,0.19921 0.06641,0.35937 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777344 v -3.20703 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1115" /> | |||||
<path | |||||
d="m 21.744721,337.01892 h -1.773438 v 3.20703 H 18.94394 v -3.20703 h -1.320313 v -1.01562 h 1.320313 v -1.37891 h 1.027343 v 1.37891 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1117" /> | |||||
<path | |||||
d="m 27.061127,338.80017 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175781,0.36718 -0.109375,0.15625 -0.253907,0.26954 -0.144531,0.10937 -0.304687,0.17968 -0.15625,0.0703 -0.316406,0.10547 -0.160157,0.0312 -0.304688,0.0312 h -1.832031 v -1.01562 h 1.832031 q 0.203125,0 0.304688,-0.10547 0.101562,-0.10547 0.101562,-0.30469 v -1.36719 q 0,-0.21093 -0.105469,-0.3125 -0.101562,-0.10156 -0.300781,-0.10156 h -1.824219 q -0.207031,0 -0.3125,0.10547 -0.105468,0.10156 -0.105468,0.30078 v 4.12109 H 22.38144 v -4.12109 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113281,-0.16016 0.257813,-0.26953 0.144531,-0.11328 0.300781,-0.1836 0.160156,-0.0703 0.320312,-0.10156 0.164063,-0.0351 0.304688,-0.0351 h 1.832031 q 0.261719,0 0.46875,0.0664 0.207031,0.0664 0.363281,0.17578 0.160157,0.10938 0.269532,0.25391 0.113281,0.14453 0.183593,0.30469 0.07031,0.15625 0.101563,0.3164 0.03516,0.16016 0.03516,0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1119" /> | |||||
<path | |||||
d="m 32.553315,339.71423 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402343,-0.043 -0.210938,-0.043 -0.417969,-0.13672 -0.207031,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335937,-0.35547 -0.144532,-0.21094 -0.234375,-0.48438 -0.08594,-0.27343 -0.08594,-0.61718 v -2.34375 h 1.015625 v 2.34375 q 0,0.19921 0.06641,0.35937 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777344 v -3.20703 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1121" /> | |||||
<path | |||||
d="m 37.354096,337.01892 h -1.773438 v 3.20703 h -1.027343 v -3.20703 h -1.320313 v -1.01562 h 1.320313 v -1.37891 h 1.027343 v 1.37891 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1123" /> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,299 @@ | |||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||||
<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" | |||||
id="SvgjsSvg1006" | |||||
width="45" | |||||
height="380" | |||||
version="1.1" | |||||
sodipodi:docname="ClosedHH.svg" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||||
<metadata | |||||
id="metadata7215"> | |||||
<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> | |||||
<sodipodi:namedview | |||||
pagecolor="#ffffff" | |||||
bordercolor="#666666" | |||||
borderopacity="1" | |||||
objecttolerance="10" | |||||
gridtolerance="10" | |||||
guidetolerance="10" | |||||
inkscape:pageopacity="0" | |||||
inkscape:pageshadow="2" | |||||
inkscape:window-width="901" | |||||
inkscape:window-height="1006" | |||||
id="namedview7213" | |||||
showgrid="false" | |||||
inkscape:pagecheckerboard="true" | |||||
inkscape:zoom="2.0011122" | |||||
inkscape:cx="-4.074128" | |||||
inkscape:cy="266.34341" | |||||
inkscape:window-x="0" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
inkscape:current-layer="SvgjsSvg1006" /> | |||||
<defs | |||||
id="SvgjsDefs1007" /> | |||||
<path | |||||
style="fill:#f0f0f0;fill-opacity:1" | |||||
d="M 0,0 H 45 V 380 H 0 Z" | |||||
id="SvgjsRect1008" /> | |||||
<path | |||||
style="fill:#d3aba0;fill-opacity:1" | |||||
d="M 7,33 H 38 V 186 H 7 Z" | |||||
id="SvgjsRect1009" /> | |||||
<g | |||||
aria-label="DK" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text980"> | |||||
<path | |||||
d="m 20.520292,358.76279 q 0,1.36458 -0.479166,2.51041 -0.46875,1.14584 -1.302084,1.97917 -0.833333,0.82292 -1.979166,1.29167 -1.145834,0.46875 -2.489584,0.46875 H 6.9577921 q -0.2916667,0 -0.5416667,-0.10417 -0.25,-0.10417 -0.4375,-0.28125 -0.1770834,-0.1875 -0.2812501,-0.4375 -0.1041666,-0.25 -0.1041666,-0.54167 v -12.20833 q 0,-0.28125 0.1041666,-0.53125 0.1041667,-0.25 0.2812501,-0.4375 0.1875,-0.1875 0.4375,-0.29167 0.25,-0.10416 0.5416667,-0.10416 h 7.3124999 q 1.34375,0 2.489584,0.46875 1.145833,0.46875 1.979166,1.30208 0.833334,0.82292 1.302084,1.97917 0.479166,1.14583 0.479166,2.5 z m -2.708333,-2.4375 q 0,-0.79167 -0.260417,-1.44792 -0.25,-0.65625 -0.71875,-1.11458 -0.46875,-0.46875 -1.125,-0.71875 -0.645833,-0.26042 -1.4375,-0.26042 H 8.3015421 v 9.52083 h 5.9687499 q 0.791667,0 1.4375,-0.25 0.65625,-0.26041 1.125,-0.71875 0.46875,-0.46875 0.71875,-1.11458 0.260417,-0.65625 0.260417,-1.45833 z" | |||||
style="font-size:21.33333397px" | |||||
id="path1038" /> | |||||
<path | |||||
d="m 38.853626,365.01279 h -3.84375 l -6.09375,-6.10417 h -1.90625 v -2.72917 h 1.90625 l 6.09375,-6.10416 h 3.84375 l -7.677083,7.46875 z m -12.927083,0 h -2.708334 v -14.9375 h 2.708334 z" | |||||
style="font-size:21.33333397px" | |||||
id="path1040" /> | |||||
</g> | |||||
<g | |||||
aria-label="trigger" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text984"> | |||||
<path | |||||
d="M 10.850587,74.46331 H 9.0771494 v 3.207031 H 8.0498056 V 74.46331 H 6.7294931 v -1.015625 h 1.3203125 v -1.378906 h 1.0273438 v 1.378906 h 1.7734376 z" | |||||
style="font-size:8px" | |||||
id="path1043" /> | |||||
<path | |||||
d="m 15.206056,74.46331 h -2.285157 q -0.207031,0 -0.3125,0.105469 -0.105468,0.101562 -0.105468,0.300781 v 2.800781 H 11.487306 V 74.86956 q 0,-0.261719 0.06641,-0.46875 0.06641,-0.207031 0.175781,-0.363281 0.113281,-0.160156 0.257813,-0.269531 0.144531,-0.113282 0.300781,-0.183594 0.160156,-0.07031 0.320312,-0.101563 0.164063,-0.03516 0.304688,-0.03516 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1045" /> | |||||
<path | |||||
d="m 16.901368,72.580498 h -1.015625 v -0.917969 h 1.015625 z m 0,5.089843 h -1.015625 v -4.222656 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1047" /> | |||||
<path | |||||
d="m 22.463868,78.076591 q 0,0.261719 -0.06641,0.46875 -0.06641,0.210938 -0.175781,0.367188 -0.109375,0.160156 -0.253907,0.269531 -0.144531,0.113281 -0.304687,0.183594 -0.15625,0.07031 -0.320313,0.101562 -0.160156,0.03516 -0.304687,0.03516 h -1.832031 v -1.015625 h 1.832031 q 0.207031,0 0.308594,-0.105469 0.101562,-0.105469 0.101562,-0.304688 V 74.86956 q 0,-0.199219 -0.101562,-0.300781 -0.101563,-0.105469 -0.308594,-0.105469 h -1.832031 q -0.1875,0 -0.296875,0.117188 -0.109375,0.113281 -0.109375,0.289062 v 1.375 q 0,0.199219 0.105468,0.304688 0.105469,0.105468 0.308594,0.105468 h 1.824219 v 1.015625 h -1.832031 q -0.144532,0 -0.304688,-0.03125 -0.160156,-0.03516 -0.320312,-0.105468 -0.15625,-0.07031 -0.300782,-0.179688 -0.144531,-0.113281 -0.253906,-0.269531 -0.109375,-0.160156 -0.175781,-0.367188 -0.06641,-0.210937 -0.06641,-0.472656 v -1.375 q 0,-0.144531 0.03125,-0.304687 0.03516,-0.160157 0.105468,-0.316407 0.07031,-0.160156 0.179688,-0.304687 0.113281,-0.144531 0.269531,-0.253906 0.160156,-0.109375 0.367188,-0.175782 0.207031,-0.06641 0.46875,-0.06641 h 1.832031 q 0.144531,0 0.304687,0.03516 0.164063,0.03125 0.320313,0.101563 0.160156,0.07031 0.304687,0.183594 0.144532,0.109375 0.253907,0.269531 0.109375,0.15625 0.175781,0.363281 0.06641,0.207031 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1049" /> | |||||
<path | |||||
d="m 27.995118,78.076591 q 0,0.261719 -0.06641,0.46875 -0.06641,0.210938 -0.175781,0.367188 -0.109375,0.160156 -0.253907,0.269531 -0.144531,0.113281 -0.304687,0.183594 -0.15625,0.07031 -0.320313,0.101562 -0.160156,0.03516 -0.304687,0.03516 h -1.832031 v -1.015625 h 1.832031 q 0.207031,0 0.308594,-0.105469 0.101562,-0.105469 0.101562,-0.304688 V 74.86956 q 0,-0.199219 -0.101562,-0.300781 -0.101563,-0.105469 -0.308594,-0.105469 h -1.832031 q -0.1875,0 -0.296875,0.117188 -0.109375,0.113281 -0.109375,0.289062 v 1.375 q 0,0.199219 0.105468,0.304688 0.105469,0.105468 0.308594,0.105468 h 1.824219 v 1.015625 h -1.832031 q -0.144532,0 -0.304688,-0.03125 -0.160156,-0.03516 -0.320312,-0.105468 -0.15625,-0.07031 -0.300782,-0.179688 -0.144531,-0.113281 -0.253906,-0.269531 -0.109375,-0.160156 -0.175781,-0.367188 -0.06641,-0.210937 -0.06641,-0.472656 v -1.375 q 0,-0.144531 0.03125,-0.304687 0.03516,-0.160157 0.105468,-0.316407 0.07031,-0.160156 0.179688,-0.304687 0.113281,-0.144531 0.269531,-0.253906 0.160156,-0.109375 0.367188,-0.175782 0.207031,-0.06641 0.46875,-0.06641 h 1.832031 q 0.144531,0 0.304687,0.03516 0.164063,0.03125 0.320313,0.101563 0.160156,0.07031 0.304687,0.183594 0.144532,0.109375 0.253907,0.269531 0.109375,0.15625 0.175781,0.363281 0.06641,0.207031 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1051" /> | |||||
<path | |||||
d="m 33.475587,74.846123 q 0,0.210937 -0.07422,0.457031 -0.07422,0.242187 -0.242187,0.453125 -0.164063,0.207031 -0.433594,0.347656 -0.265625,0.140625 -0.648438,0.140625 h -1.832031 v -0.964844 h 1.832031 q 0.207032,0 0.320313,-0.125 0.113281,-0.128906 0.113281,-0.316406 0,-0.199219 -0.128906,-0.3125 -0.125,-0.113281 -0.304688,-0.113281 h -1.832031 q -0.207031,0 -0.320312,0.128906 -0.113282,0.125 -0.113282,0.3125 v 1.417969 q 0,0.203125 0.125,0.316406 0.128907,0.113281 0.316407,0.113281 h 1.824218 v 0.96875 h -1.832031 q -0.210937,0 -0.457031,-0.07422 -0.242188,-0.07422 -0.453125,-0.238282 -0.207031,-0.167968 -0.347656,-0.433593 -0.140625,-0.269532 -0.140625,-0.652344 v -1.425781 q 0,-0.210938 0.07422,-0.453125 0.07422,-0.246094 0.238282,-0.453125 0.167968,-0.210938 0.433593,-0.351563 0.269532,-0.140625 0.652344,-0.140625 h 1.832031 q 0.210938,0 0.453125,0.07422 0.246094,0.07422 0.453125,0.242187 0.210938,0.164063 0.351563,0.433594 0.140625,0.265625 0.140625,0.648438 z" | |||||
style="font-size:8px" | |||||
id="path1053" /> | |||||
<path | |||||
d="m 37.862306,74.46331 h -2.285157 q -0.207031,0 -0.3125,0.105469 -0.105468,0.101562 -0.105468,0.300781 v 2.800781 H 34.143556 V 74.86956 q 0,-0.261719 0.06641,-0.46875 0.06641,-0.207031 0.175781,-0.363281 0.113281,-0.160156 0.257813,-0.269531 0.144531,-0.113282 0.300781,-0.183594 0.160156,-0.07031 0.320312,-0.101563 0.164063,-0.03516 0.304688,-0.03516 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1055" /> | |||||
</g> | |||||
<g | |||||
aria-label="select" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text988"> | |||||
<path | |||||
d="m 13.335968,126.96858 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175781,0.36719 -0.109375,0.15625 -0.253907,0.26953 -0.144531,0.10937 -0.304687,0.17968 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 9.1601868 v -1.01562 h 2.7421872 q 0.207032,0 0.3125,-0.10547 0.105469,-0.10547 0.105469,-0.30469 -0.01953,-0.40625 -0.410156,-0.40625 h -1.574219 q -0.335937,0 -0.5703125,-0.11719 -0.234375,-0.11718 -0.3828125,-0.29296 -0.1445312,-0.17579 -0.2109375,-0.37891 -0.0625,-0.20313 -0.0625,-0.37891 0,-0.33984 0.1210938,-0.57031 0.1210937,-0.23437 0.3046875,-0.37891 0.1835937,-0.14453 0.3984375,-0.20703 0.2148437,-0.0664 0.4023437,-0.0664 h 2.496094 v 1.01562 h -2.488281 q -0.07813,0 -0.125,0.0195 -0.04297,0.0156 -0.06641,0.0469 -0.01953,0.0273 -0.02344,0.0625 -0.0039,0.0312 -0.0039,0.0625 0.0039,0.0625 0.02344,0.0977 0.01953,0.0352 0.04687,0.0508 0.03125,0.0156 0.06641,0.0195 0.03906,0 0.07422,0 h 1.574219 q 0.390625,0 0.664062,0.14062 0.273438,0.14063 0.441407,0.35547 0.167968,0.21094 0.242187,0.46094 0.07813,0.25 0.07813,0.46484 z" | |||||
style="font-size:8px" | |||||
id="path1058" /> | |||||
<path | |||||
d="m 18.593781,125.57014 q 0,0.21094 -0.07422,0.45704 -0.07422,0.24218 -0.242188,0.45312 -0.164062,0.20703 -0.433593,0.34766 -0.265625,0.14062 -0.648438,0.14062 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320313,-0.125 0.113281,-0.12891 0.113281,-0.31641 0,-0.19922 -0.128906,-0.3125 -0.125,-0.11328 -0.304688,-0.11328 h -1.832031 q -0.207031,0 -0.320313,0.12891 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20312 0.125,0.3164 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457031,-0.0742 -0.242188,-0.0742 -0.453125,-0.23828 -0.207032,-0.16797 -0.347657,-0.43359 -0.140625,-0.26953 -0.140625,-0.65234 v -1.42579 q 0,-0.21093 0.07422,-0.45312 0.07422,-0.24609 0.238281,-0.45313 0.167969,-0.21093 0.433594,-0.35156 0.269531,-0.14062 0.652344,-0.14062 h 1.832031 q 0.210938,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24218 0.210938,0.16407 0.351563,0.4336 0.140625,0.26562 0.140625,0.64843 z" | |||||
style="font-size:8px" | |||||
id="path1060" /> | |||||
<path | |||||
d="m 21.140656,128.39436 h -0.453125 q -0.21875,0 -0.46875,-0.0742 -0.246094,-0.0742 -0.460938,-0.24218 -0.214844,-0.17188 -0.355469,-0.44141 -0.140625,-0.27344 -0.140625,-0.66797 v -4.58203 h 1.015625 v 4.58203 q 0,0.1875 0.117188,0.30078 0.117187,0.10938 0.292969,0.10938 h 0.453125 z" | |||||
style="font-size:8px" | |||||
id="path1062" /> | |||||
<path | |||||
d="m 26.343781,125.57014 q 0,0.21094 -0.07422,0.45704 -0.07422,0.24218 -0.242188,0.45312 -0.164062,0.20703 -0.433593,0.34766 -0.265625,0.14062 -0.648438,0.14062 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320313,-0.125 0.113281,-0.12891 0.113281,-0.31641 0,-0.19922 -0.128906,-0.3125 -0.125,-0.11328 -0.304688,-0.11328 h -1.832031 q -0.207031,0 -0.320313,0.12891 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20312 0.125,0.3164 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457031,-0.0742 -0.242188,-0.0742 -0.453125,-0.23828 -0.207032,-0.16797 -0.347657,-0.43359 -0.140625,-0.26953 -0.140625,-0.65234 v -1.42579 q 0,-0.21093 0.07422,-0.45312 0.07422,-0.24609 0.238281,-0.45313 0.167969,-0.21093 0.433594,-0.35156 0.269531,-0.14062 0.652344,-0.14062 h 1.832031 q 0.210938,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24218 0.210938,0.16407 0.351563,0.4336 0.140625,0.26562 0.140625,0.64843 z" | |||||
style="font-size:8px" | |||||
id="path1064" /> | |||||
<path | |||||
d="m 31.125031,128.39436 h -2.753907 q -0.210937,0 -0.460937,-0.0742 -0.25,-0.0742 -0.464844,-0.24218 -0.210937,-0.17188 -0.355469,-0.44141 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179688,-0.30469 0.113281,-0.14453 0.269531,-0.25391 0.160156,-0.10937 0.367187,-0.17578 0.207032,-0.0664 0.46875,-0.0664 h 2.753907 v 1.01562 h -2.753907 q -0.199218,0 -0.304687,0.10156 -0.101563,0.10157 -0.101563,0.3125 v 1.36719 q 0,0.19922 0.105469,0.30469 0.105469,0.10547 0.308594,0.10547 h 2.746094 z" | |||||
style="font-size:8px" | |||||
id="path1066" /> | |||||
<path | |||||
d="m 35.812531,125.18733 h -1.773438 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01562 h 1.320312 v -1.37891 h 1.027344 v 1.37891 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1068" /> | |||||
</g> | |||||
<g | |||||
aria-label="output" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text992"> | |||||
<path | |||||
d="m 11.844351,179.93802 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175782,0.36718 -0.109375,0.15625 -0.253906,0.26953 -0.144531,0.10938 -0.304687,0.17969 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 8.5865383 q -0.2109375,0 -0.4609375,-0.0742 -0.25,-0.0742 -0.4648437,-0.24219 -0.2109375,-0.17187 -0.3554688,-0.4414 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.39063 0.140625,-0.66016 0.1445313,-0.27343 0.3554688,-0.4414 0.2148437,-0.17188 0.4648437,-0.2461 0.25,-0.0742 0.4609375,-0.0742 H 10.41857 q 0.390625,0 0.664062,0.14063 0.273438,0.14062 0.441406,0.35547 0.167969,0.21094 0.242188,0.46094 0.07813,0.25 0.07813,0.46484 z m -1.015625,-1.36719 q 0,-0.21094 -0.105469,-0.3125 -0.105469,-0.10156 -0.304687,-0.10156 H 8.5943508 q -0.203125,0 -0.3085937,0.10547 -0.1054688,0.10156 -0.1054688,0.30078 v 1.375 q 0,0.19922 0.1054688,0.30469 0.1054687,0.10547 0.3085937,0.10547 H 10.41857 q 0.207031,0 0.308593,-0.10547 0.101563,-0.10547 0.101563,-0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1071" /> | |||||
<path | |||||
d="m 17.320913,180.85208 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402344,-0.043 -0.210937,-0.043 -0.417968,-0.13672 -0.207032,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335938,-0.35547 -0.144531,-0.21094 -0.234375,-0.48438 -0.08594,-0.27344 -0.08594,-0.61719 v -2.34375 h 1.015625 v 2.34375 q 0,0.19922 0.06641,0.35938 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777343 v -3.20704 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1073" /> | |||||
<path | |||||
d="m 22.121695,178.15677 h -1.773438 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01563 h 1.320312 v -1.3789 h 1.027344 v 1.3789 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1075" /> | |||||
<path | |||||
d="m 27.438101,179.93802 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175782,0.36718 -0.109375,0.15625 -0.253906,0.26953 -0.144531,0.10938 -0.304687,0.17969 -0.15625,0.0703 -0.316407,0.10547 -0.160156,0.0312 -0.304687,0.0312 h -1.832031 v -1.01562 h 1.832031 q 0.203125,0 0.304687,-0.10547 0.101563,-0.10547 0.101563,-0.30469 v -1.36719 q 0,-0.21094 -0.105469,-0.3125 -0.101562,-0.10156 -0.300781,-0.10156 h -1.824219 q -0.207031,0 -0.3125,0.10547 -0.105469,0.10156 -0.105469,0.30078 v 4.12109 h -1.015625 v -4.12109 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113281,-0.16016 0.257812,-0.26953 0.144532,-0.11328 0.300782,-0.1836 0.160156,-0.0703 0.320312,-0.10156 0.164063,-0.0352 0.304688,-0.0352 h 1.832031 q 0.261719,0 0.46875,0.0664 0.207031,0.0664 0.363281,0.17578 0.160156,0.10938 0.269531,0.25391 0.113282,0.14453 0.183594,0.30469 0.07031,0.15625 0.101563,0.3164 0.03516,0.16016 0.03516,0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1077" /> | |||||
<path | |||||
d="m 32.930288,180.85208 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402344,-0.043 -0.210937,-0.043 -0.417968,-0.13672 -0.207032,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335938,-0.35547 -0.144531,-0.21094 -0.234375,-0.48438 -0.08594,-0.27344 -0.08594,-0.61719 v -2.34375 h 1.015625 v 2.34375 q 0,0.19922 0.06641,0.35938 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777343 v -3.20704 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1079" /> | |||||
<path | |||||
d="m 37.73107,178.15677 h -1.773438 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01563 h 1.320312 v -1.3789 h 1.027344 v 1.3789 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1081" /> | |||||
</g> | |||||
<path | |||||
style="fill:#d3aba0;fill-opacity:1" | |||||
d="M 7.1530623,191.86212 H 38.153062 v 153 H 7.1530623 Z" | |||||
id="SvgjsRect1009-7" /> | |||||
<g | |||||
aria-label="trigger" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text984-9"> | |||||
<path | |||||
d="M 11.003649,233.32544 H 9.2302117 v 3.20703 H 8.202868 v -3.20703 H 6.8825555 v -1.01563 H 8.202868 v -1.3789 h 1.0273437 v 1.3789 h 1.7734373 z" | |||||
style="font-size:8px" | |||||
id="path1085" /> | |||||
<path | |||||
d="m 15.359118,233.32544 h -2.285156 q -0.207032,0 -0.3125,0.10547 -0.105469,0.10156 -0.105469,0.30078 v 2.80078 h -1.015625 v -2.80078 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113282,-0.16016 0.257813,-0.26953 0.144531,-0.11328 0.300781,-0.1836 0.160156,-0.0703 0.320313,-0.10156 0.164062,-0.0352 0.304687,-0.0352 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1087" /> | |||||
<path | |||||
d="m 17.05443,231.44263 h -1.015625 v -0.91797 h 1.015625 z m 0,5.08984 h -1.015625 v -4.22266 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1089" /> | |||||
<path | |||||
d="m 22.61693,236.93872 q 0,0.26172 -0.06641,0.46875 -0.06641,0.21094 -0.175781,0.36719 -0.109375,0.16015 -0.253906,0.26953 -0.144532,0.11328 -0.304688,0.18359 -0.15625,0.0703 -0.320312,0.10157 -0.160157,0.0351 -0.304688,0.0351 h -1.832031 v -1.01562 h 1.832031 q 0.207031,0 0.308594,-0.10547 0.101562,-0.10547 0.101562,-0.30469 v -3.20703 q 0,-0.19922 -0.101562,-0.30078 -0.101563,-0.10547 -0.308594,-0.10547 h -1.832031 q -0.1875,0 -0.296875,0.11719 -0.109375,0.11328 -0.109375,0.28906 v 1.375 q 0,0.19922 0.105469,0.30469 0.105468,0.10547 0.308593,0.10547 h 1.824219 v 1.01562 h -1.832031 q -0.144531,0 -0.304688,-0.0312 -0.160156,-0.0352 -0.320312,-0.10547 -0.15625,-0.0703 -0.300781,-0.17969 -0.144532,-0.11328 -0.253907,-0.26953 -0.109375,-0.16015 -0.175781,-0.36718 -0.06641,-0.21094 -0.06641,-0.47266 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179687,-0.30469 0.113281,-0.14453 0.269531,-0.25391 0.160157,-0.10937 0.367188,-0.17578 0.207031,-0.0664 0.46875,-0.0664 h 1.832031 q 0.144531,0 0.304688,0.0352 0.164062,0.0312 0.320312,0.10156 0.160156,0.0703 0.304688,0.1836 0.144531,0.10937 0.253906,0.26953 0.109375,0.15625 0.175781,0.36328 0.06641,0.20703 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1091" /> | |||||
<path | |||||
d="m 28.14818,236.93872 q 0,0.26172 -0.06641,0.46875 -0.06641,0.21094 -0.175781,0.36719 -0.109375,0.16015 -0.253906,0.26953 -0.144532,0.11328 -0.304688,0.18359 -0.15625,0.0703 -0.320312,0.10157 -0.160157,0.0351 -0.304688,0.0351 h -1.832031 v -1.01562 h 1.832031 q 0.207031,0 0.308594,-0.10547 0.101562,-0.10547 0.101562,-0.30469 v -3.20703 q 0,-0.19922 -0.101562,-0.30078 -0.101563,-0.10547 -0.308594,-0.10547 h -1.832031 q -0.1875,0 -0.296875,0.11719 -0.109375,0.11328 -0.109375,0.28906 v 1.375 q 0,0.19922 0.105469,0.30469 0.105468,0.10547 0.308593,0.10547 h 1.824219 v 1.01562 h -1.832031 q -0.144531,0 -0.304688,-0.0312 -0.160156,-0.0352 -0.320312,-0.10547 -0.15625,-0.0703 -0.300781,-0.17969 -0.144532,-0.11328 -0.253907,-0.26953 -0.109375,-0.16015 -0.175781,-0.36718 -0.06641,-0.21094 -0.06641,-0.47266 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179687,-0.30469 0.113281,-0.14453 0.269531,-0.25391 0.160157,-0.10937 0.367188,-0.17578 0.207031,-0.0664 0.46875,-0.0664 h 1.832031 q 0.144531,0 0.304688,0.0352 0.164062,0.0312 0.320312,0.10156 0.160156,0.0703 0.304688,0.1836 0.144531,0.10937 0.253906,0.26953 0.109375,0.15625 0.175781,0.36328 0.06641,0.20703 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1093" /> | |||||
<path | |||||
d="m 33.628649,233.70825 q 0,0.21094 -0.07422,0.45703 -0.07422,0.24219 -0.242187,0.45313 -0.164063,0.20703 -0.433594,0.34765 -0.265625,0.14063 -0.648437,0.14063 H 30.39818 v -0.96484 h 1.832032 q 0.207031,0 0.320312,-0.125 0.113281,-0.12891 0.113281,-0.31641 0,-0.19922 -0.128906,-0.3125 -0.125,-0.11328 -0.304687,-0.11328 H 30.39818 q -0.207031,0 -0.320312,0.1289 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20313 0.125,0.31641 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 H 30.39818 q -0.210937,0 -0.457031,-0.0742 -0.242187,-0.0742 -0.453125,-0.23828 -0.207031,-0.16797 -0.347656,-0.43359 -0.140625,-0.26953 -0.140625,-0.65235 v -1.42578 q 0,-0.21094 0.07422,-0.45312 0.07422,-0.2461 0.238281,-0.45313 0.167969,-0.21094 0.433594,-0.35156 0.269531,-0.14063 0.652343,-0.14063 h 1.832032 q 0.210937,0 0.453125,0.0742 0.246093,0.0742 0.453125,0.24219 0.210937,0.16406 0.351562,0.43359 0.140625,0.26563 0.140625,0.64844 z" | |||||
style="font-size:8px" | |||||
id="path1095" /> | |||||
<path | |||||
d="m 38.015368,233.32544 h -2.285156 q -0.207032,0 -0.3125,0.10547 -0.105469,0.10156 -0.105469,0.30078 v 2.80078 h -1.015625 v -2.80078 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113282,-0.16016 0.257813,-0.26953 0.144531,-0.11328 0.300781,-0.1836 0.160156,-0.0703 0.320313,-0.10156 0.164062,-0.0352 0.304687,-0.0352 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1097" /> | |||||
</g> | |||||
<g | |||||
aria-label="select" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text988-8"> | |||||
<path | |||||
d="m 13.48903,285.83072 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175782,0.36718 -0.109375,0.15625 -0.253906,0.26953 -0.144531,0.10938 -0.304687,0.17969 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 9.3132486 v -1.01562 h 2.7421874 q 0.207031,0 0.3125,-0.10547 0.105469,-0.10547 0.105469,-0.30469 -0.01953,-0.40625 -0.410156,-0.40625 H 10.48903 q -0.335938,0 -0.5703126,-0.11719 -0.234375,-0.11719 -0.3828125,-0.29297 -0.1445313,-0.17578 -0.2109375,-0.3789 -0.0625,-0.20313 -0.0625,-0.37891 0,-0.33984 0.1210937,-0.57031 0.1210938,-0.23438 0.3046875,-0.37891 0.1835938,-0.14453 0.3984374,-0.20703 0.214844,-0.0664 0.402344,-0.0664 h 2.496094 v 1.01563 h -2.488282 q -0.07813,0 -0.125,0.0195 -0.04297,0.0156 -0.06641,0.0469 -0.01953,0.0273 -0.02344,0.0625 -0.0039,0.0312 -0.0039,0.0625 0.0039,0.0625 0.02344,0.0976 0.01953,0.0352 0.04687,0.0508 0.03125,0.0156 0.06641,0.0195 0.03906,0 0.07422,0 h 1.574219 q 0.390625,0 0.664062,0.14063 0.273438,0.14062 0.441406,0.35547 0.167969,0.21094 0.242188,0.46094 0.07813,0.25 0.07813,0.46484 z" | |||||
style="font-size:8px" | |||||
id="path1100" /> | |||||
<path | |||||
d="m 18.746842,284.43228 q 0,0.21094 -0.07422,0.45703 -0.07422,0.24219 -0.242188,0.45313 -0.164062,0.20703 -0.433594,0.34765 -0.265625,0.14063 -0.648437,0.14063 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320312,-0.125 0.113282,-0.12891 0.113282,-0.31641 0,-0.19922 -0.128907,-0.3125 -0.125,-0.11328 -0.304687,-0.11328 h -1.832031 q -0.207032,0 -0.320313,0.1289 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20313 0.125,0.31641 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457032,-0.0742 -0.242187,-0.0742 -0.453125,-0.23828 -0.207031,-0.16797 -0.347656,-0.43359 -0.140625,-0.26953 -0.140625,-0.65235 v -1.42578 q 0,-0.21094 0.07422,-0.45312 0.07422,-0.2461 0.238281,-0.45313 0.167969,-0.21094 0.433594,-0.35156 0.269531,-0.14063 0.652344,-0.14063 h 1.832031 q 0.210937,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24219 0.210937,0.16406 0.351562,0.43359 0.140625,0.26563 0.140625,0.64844 z" | |||||
style="font-size:8px" | |||||
id="path1102" /> | |||||
<path | |||||
d="m 21.293717,287.2565 h -0.453125 q -0.21875,0 -0.46875,-0.0742 -0.246093,-0.0742 -0.460937,-0.24219 -0.214844,-0.17187 -0.355469,-0.4414 -0.140625,-0.27344 -0.140625,-0.66797 v -4.58203 h 1.015625 v 4.58203 q 0,0.1875 0.117188,0.30078 0.117187,0.10938 0.292968,0.10938 h 0.453125 z" | |||||
style="font-size:8px" | |||||
id="path1104" /> | |||||
<path | |||||
d="m 26.496842,284.43228 q 0,0.21094 -0.07422,0.45703 -0.07422,0.24219 -0.242188,0.45313 -0.164062,0.20703 -0.433594,0.34765 -0.265625,0.14063 -0.648437,0.14063 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320312,-0.125 0.113282,-0.12891 0.113282,-0.31641 0,-0.19922 -0.128907,-0.3125 -0.125,-0.11328 -0.304687,-0.11328 h -1.832031 q -0.207032,0 -0.320313,0.1289 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20313 0.125,0.31641 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457032,-0.0742 -0.242187,-0.0742 -0.453125,-0.23828 -0.207031,-0.16797 -0.347656,-0.43359 -0.140625,-0.26953 -0.140625,-0.65235 v -1.42578 q 0,-0.21094 0.07422,-0.45312 0.07422,-0.2461 0.238281,-0.45313 0.167969,-0.21094 0.433594,-0.35156 0.269531,-0.14063 0.652344,-0.14063 h 1.832031 q 0.210937,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24219 0.210937,0.16406 0.351562,0.43359 0.140625,0.26563 0.140625,0.64844 z" | |||||
style="font-size:8px" | |||||
id="path1106" /> | |||||
<path | |||||
d="m 31.278092,287.2565 h -2.753906 q -0.210937,0 -0.460937,-0.0742 -0.25,-0.0742 -0.464844,-0.24219 -0.210938,-0.17187 -0.355469,-0.4414 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179687,-0.30469 0.113282,-0.14453 0.269532,-0.25391 0.160156,-0.10937 0.367187,-0.17578 0.207031,-0.0664 0.46875,-0.0664 h 2.753906 v 1.01563 h -2.753906 q -0.199219,0 -0.304687,0.10156 -0.101563,0.10156 -0.101563,0.3125 v 1.36719 q 0,0.19922 0.105469,0.30469 0.105469,0.10547 0.308594,0.10547 h 2.746093 z" | |||||
style="font-size:8px" | |||||
id="path1108" /> | |||||
<path | |||||
d="m 35.965592,284.04947 h -1.773437 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01563 h 1.320312 v -1.3789 h 1.027344 v 1.3789 h 1.773437 z" | |||||
style="font-size:8px" | |||||
id="path1110" /> | |||||
</g> | |||||
<g | |||||
aria-label="output" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text992-2"> | |||||
<path | |||||
d="m 11.467377,338.80017 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175781,0.36718 -0.109375,0.15625 -0.253907,0.26954 -0.144531,0.10937 -0.304687,0.17968 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 8.2095647 q -0.2109375,0 -0.4609375,-0.0742 -0.25,-0.0742 -0.4648438,-0.24218 -0.2109375,-0.17188 -0.3554687,-0.44141 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.39062 0.140625,-0.66016 0.1445312,-0.27343 0.3554687,-0.4414 0.2148438,-0.17188 0.4648438,-0.2461 0.25,-0.0742 0.4609375,-0.0742 h 1.8320313 q 0.390625,0 0.664062,0.14062 0.273438,0.14063 0.441407,0.35547 0.167968,0.21094 0.242187,0.46094 0.07813,0.25 0.07813,0.46484 z m -1.015625,-1.36719 q 0,-0.21093 -0.105469,-0.3125 -0.105468,-0.10156 -0.304687,-0.10156 H 8.2173772 q -0.203125,0 -0.3085938,0.10547 -0.1054687,0.10156 -0.1054687,0.30078 v 1.375 q 0,0.19922 0.1054687,0.30469 0.1054688,0.10547 0.3085938,0.10547 h 1.8242188 q 0.207031,0 0.308594,-0.10547 0.101562,-0.10547 0.101562,-0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1113" /> | |||||
<path | |||||
d="m 16.94394,339.71423 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402343,-0.043 -0.210938,-0.043 -0.417969,-0.13672 -0.207031,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335937,-0.35547 -0.144532,-0.21094 -0.234375,-0.48438 -0.08594,-0.27343 -0.08594,-0.61718 v -2.34375 h 1.015625 v 2.34375 q 0,0.19921 0.06641,0.35937 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777344 v -3.20703 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1115" /> | |||||
<path | |||||
d="m 21.744721,337.01892 h -1.773438 v 3.20703 H 18.94394 v -3.20703 h -1.320313 v -1.01562 h 1.320313 v -1.37891 h 1.027343 v 1.37891 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1117" /> | |||||
<path | |||||
d="m 27.061127,338.80017 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175781,0.36718 -0.109375,0.15625 -0.253907,0.26954 -0.144531,0.10937 -0.304687,0.17968 -0.15625,0.0703 -0.316406,0.10547 -0.160157,0.0312 -0.304688,0.0312 h -1.832031 v -1.01562 h 1.832031 q 0.203125,0 0.304688,-0.10547 0.101562,-0.10547 0.101562,-0.30469 v -1.36719 q 0,-0.21093 -0.105469,-0.3125 -0.101562,-0.10156 -0.300781,-0.10156 h -1.824219 q -0.207031,0 -0.3125,0.10547 -0.105468,0.10156 -0.105468,0.30078 v 4.12109 H 22.38144 v -4.12109 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113281,-0.16016 0.257813,-0.26953 0.144531,-0.11328 0.300781,-0.1836 0.160156,-0.0703 0.320312,-0.10156 0.164063,-0.0351 0.304688,-0.0351 h 1.832031 q 0.261719,0 0.46875,0.0664 0.207031,0.0664 0.363281,0.17578 0.160157,0.10938 0.269532,0.25391 0.113281,0.14453 0.183593,0.30469 0.07031,0.15625 0.101563,0.3164 0.03516,0.16016 0.03516,0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1119" /> | |||||
<path | |||||
d="m 32.553315,339.71423 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402343,-0.043 -0.210938,-0.043 -0.417969,-0.13672 -0.207031,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335937,-0.35547 -0.144532,-0.21094 -0.234375,-0.48438 -0.08594,-0.27343 -0.08594,-0.61718 v -2.34375 h 1.015625 v 2.34375 q 0,0.19921 0.06641,0.35937 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777344 v -3.20703 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1121" /> | |||||
<path | |||||
d="m 37.354096,337.01892 h -1.773438 v 3.20703 h -1.027343 v -3.20703 h -1.320313 v -1.01562 h 1.320313 v -1.37891 h 1.027343 v 1.37891 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1123" /> | |||||
</g> | |||||
<g | |||||
aria-label="Closed-HH" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text66"> | |||||
<path | |||||
d="M 4.1374271,20.700916 H 0.47336459 q -0.140625,0 -0.3046875,-0.03125 -0.16015625,-0.03516 -0.3203125,-0.105468 -0.15625,-0.07031 -0.30078125,-0.179688 -0.14453125,-0.113281 -0.2578125,-0.269531 -0.109375,-0.160156 -0.17578125,-0.367188 -0.0664063,-0.210937 -0.0664063,-0.472656 v -2.75 q 0,-0.140625 0.03125,-0.300781 0.0351563,-0.164063 0.10546875,-0.320313 0.0703125,-0.160156 0.18359375,-0.304687 0.11328125,-0.144531 0.26953125,-0.253906 0.16015625,-0.113282 0.3671875,-0.179688 0.20703125,-0.06641 0.46875,-0.06641 H 4.1374271 v 1.015625 H 0.47336459 q -0.19921875,0 -0.3046875,0.105469 -0.10546875,0.105468 -0.10546875,0.3125 v 2.742187 q 0,0.195313 0.10546875,0.304688 0.109375,0.105468 0.3046875,0.105468 H 4.1374271 Z" | |||||
style="font-size:8px" | |||||
id="path68" /> | |||||
<path | |||||
d="m 6.8483646,20.700916 h -0.453125 q -0.21875,0 -0.46875,-0.07422 Q 5.6803958,20.552479 5.4655521,20.38451 5.2507083,20.212635 5.1100833,19.943104 4.9694583,19.669666 4.9694583,19.275135 v -4.582031 h 1.015625 v 4.582031 q 0,0.1875 0.1171875,0.300781 0.1171875,0.109375 0.2929688,0.109375 h 0.453125 z" | |||||
style="font-size:8px" | |||||
id="path70" /> | |||||
<path | |||||
d="m 12.102271,19.275135 q 0,0.261719 -0.06641,0.472656 -0.06641,0.207032 -0.175782,0.367188 -0.109375,0.15625 -0.253906,0.269531 -0.144531,0.109375 -0.304687,0.179688 -0.15625,0.07031 -0.320313,0.105468 -0.160156,0.03125 -0.304687,0.03125 H 8.8444583 q -0.2109375,0 -0.4609375,-0.07422 -0.25,-0.07422 -0.4648437,-0.242188 -0.2109375,-0.171875 -0.3554688,-0.441406 -0.140625,-0.273438 -0.140625,-0.667969 v -1.375 q 0,-0.390625 0.140625,-0.660156 0.1445313,-0.273438 0.3554688,-0.441406 0.2148437,-0.171875 0.4648437,-0.246094 0.25,-0.07422 0.4609375,-0.07422 H 10.67649 q 0.390625,0 0.664062,0.140625 0.273438,0.140625 0.441406,0.355469 0.167969,0.210937 0.242188,0.460937 0.07813,0.25 0.07813,0.464844 z m -1.015625,-1.367187 q 0,-0.210938 -0.105469,-0.3125 -0.105469,-0.101563 -0.304687,-0.101563 H 8.8522708 q -0.203125,0 -0.3085937,0.105469 -0.1054688,0.101562 -0.1054688,0.300781 v 1.375 q 0,0.199219 0.1054688,0.304688 0.1054687,0.105468 0.3085937,0.105468 H 10.67649 q 0.207031,0 0.308593,-0.105468 0.101563,-0.105469 0.101563,-0.304688 z" | |||||
style="font-size:8px" | |||||
id="path72" /> | |||||
<path | |||||
d="m 17.043677,19.275135 q 0,0.261719 -0.06641,0.472656 -0.06641,0.207032 -0.175781,0.367188 -0.109375,0.15625 -0.253907,0.269531 -0.144531,0.109375 -0.304687,0.179688 -0.15625,0.07031 -0.320313,0.105468 -0.160156,0.03125 -0.304687,0.03125 h -2.75 v -1.015625 h 2.742187 q 0.207032,0 0.3125,-0.105468 0.105469,-0.105469 0.105469,-0.304688 -0.01953,-0.40625 -0.410156,-0.40625 h -1.574219 q -0.335937,0 -0.570312,-0.117187 -0.234375,-0.117188 -0.382813,-0.292969 -0.144531,-0.175781 -0.210937,-0.378906 -0.0625,-0.203125 -0.0625,-0.378907 0,-0.339843 0.121093,-0.570312 0.121094,-0.234375 0.304688,-0.378906 0.183594,-0.144532 0.398437,-0.207032 0.214844,-0.06641 0.402344,-0.06641 h 2.496094 v 1.015625 H 14.05149 q -0.07813,0 -0.125,0.01953 -0.04297,0.01563 -0.06641,0.04687 -0.01953,0.02734 -0.02344,0.0625 -0.0039,0.03125 -0.0039,0.0625 0.0039,0.0625 0.02344,0.09766 0.01953,0.03516 0.04687,0.05078 0.03125,0.01563 0.06641,0.01953 0.03906,0 0.07422,0 h 1.574219 q 0.390625,0 0.664062,0.140625 0.273438,0.140625 0.441407,0.355469 0.167968,0.210937 0.242187,0.460937 0.07813,0.25 0.07813,0.464844 z" | |||||
style="font-size:8px" | |||||
id="path74" /> | |||||
<path | |||||
d="m 22.30149,17.876698 q 0,0.210937 -0.07422,0.457031 -0.07422,0.242187 -0.242188,0.453125 -0.164062,0.207031 -0.433593,0.347656 -0.265625,0.140625 -0.648438,0.140625 h -1.832031 v -0.964844 h 1.832031 q 0.207031,0 0.320313,-0.125 0.113281,-0.128906 0.113281,-0.316406 0,-0.199219 -0.128906,-0.3125 -0.125,-0.113281 -0.304688,-0.113281 h -1.832031 q -0.207031,0 -0.320313,0.128906 -0.113281,0.125 -0.113281,0.3125 v 1.417969 q 0,0.203125 0.125,0.316406 0.128906,0.113281 0.316406,0.113281 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457031,-0.07422 -0.242188,-0.07422 -0.453125,-0.238282 -0.207032,-0.167968 -0.347657,-0.433593 -0.140625,-0.269532 -0.140625,-0.652344 v -1.425781 q 0,-0.210938 0.07422,-0.453125 0.07422,-0.246094 0.238281,-0.453125 0.167969,-0.210938 0.433594,-0.351563 0.269531,-0.140625 0.652344,-0.140625 h 1.832031 q 0.210938,0 0.453125,0.07422 0.246094,0.07422 0.453125,0.242187 0.210938,0.164063 0.351563,0.433594 0.140625,0.265625 0.140625,0.648438 z" | |||||
style="font-size:8px" | |||||
id="path76" /> | |||||
<path | |||||
d="m 27.625708,19.275135 q 0,0.261719 -0.06641,0.472656 -0.06641,0.207032 -0.175781,0.367188 -0.109375,0.15625 -0.253906,0.269531 -0.144532,0.109375 -0.304688,0.179688 -0.15625,0.07031 -0.320312,0.105468 -0.160157,0.03125 -0.304688,0.03125 h -1.832031 q -0.261719,0 -0.46875,-0.06641 -0.207031,-0.06641 -0.367188,-0.175781 -0.15625,-0.113281 -0.269531,-0.257813 -0.109375,-0.144531 -0.179687,-0.300781 -0.07031,-0.160156 -0.105469,-0.320312 -0.03125,-0.164063 -0.03125,-0.304688 v -1.375 q 0,-0.390625 0.140625,-0.660156 0.144531,-0.273438 0.355469,-0.441406 0.214843,-0.171875 0.464843,-0.246094 0.25,-0.07422 0.460938,-0.07422 h 1.832031 v 1.015625 h -1.824219 q -0.203125,0 -0.308593,0.105469 -0.105469,0.101562 -0.105469,0.300781 v 1.367188 q 0,0.207031 0.101562,0.3125 0.105469,0.105468 0.304688,0.105468 h 1.832031 q 0.207031,0 0.308594,-0.105468 0.101562,-0.105469 0.101562,-0.304688 v -4.582031 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path78" /> | |||||
<path | |||||
d="m 32.242896,18.357166 h -3.664063 v -0.914062 h 3.664063 z" | |||||
style="font-size:8px" | |||||
id="path80" /> | |||||
<path | |||||
d="m 34.317115,17.388416 h 3.566406 v -2.289062 h 1.015625 v 5.601562 h -1.015625 v -2.289062 h -3.566406 v 2.289062 H 33.30149 v -5.601562 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path82" /> | |||||
<path | |||||
d="m 41.11399,17.388416 h 3.566406 v -2.289062 h 1.015625 v 5.601562 H 44.680396 V 18.411854 H 41.11399 v 2.289062 h -1.015625 v -5.601562 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path84" /> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,139 @@ | |||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||||
<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" | |||||
id="SvgjsSvg1006" | |||||
width="45" | |||||
height="380" | |||||
version="1.1" | |||||
sodipodi:docname="DMX.svg" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||||
<metadata | |||||
id="metadata7215"> | |||||
<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> | |||||
<sodipodi:namedview | |||||
pagecolor="#ffffff" | |||||
bordercolor="#666666" | |||||
borderopacity="1" | |||||
objecttolerance="10" | |||||
gridtolerance="10" | |||||
guidetolerance="10" | |||||
inkscape:pageopacity="0" | |||||
inkscape:pageshadow="2" | |||||
inkscape:window-width="901" | |||||
inkscape:window-height="1006" | |||||
id="namedview7213" | |||||
showgrid="false" | |||||
inkscape:pagecheckerboard="true" | |||||
inkscape:zoom="2.0011122" | |||||
inkscape:cx="-4.074128" | |||||
inkscape:cy="186.38787" | |||||
inkscape:window-x="0" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
inkscape:current-layer="SvgjsSvg1006" /> | |||||
<defs | |||||
id="SvgjsDefs1007" /> | |||||
<path | |||||
style="fill:#f0f0f0;fill-opacity:1" | |||||
d="M 0,0 H 45 V 380 H 0 Z" | |||||
id="SvgjsRect1008" /> | |||||
<g | |||||
aria-label="DK" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text980"> | |||||
<path | |||||
d="m 20.520292,358.76279 q 0,1.36458 -0.479166,2.51041 -0.46875,1.14584 -1.302084,1.97917 -0.833333,0.82292 -1.979166,1.29167 -1.145834,0.46875 -2.489584,0.46875 H 6.9577921 q -0.2916667,0 -0.5416667,-0.10417 -0.25,-0.10417 -0.4375,-0.28125 -0.1770834,-0.1875 -0.2812501,-0.4375 -0.1041666,-0.25 -0.1041666,-0.54167 v -12.20833 q 0,-0.28125 0.1041666,-0.53125 0.1041667,-0.25 0.2812501,-0.4375 0.1875,-0.1875 0.4375,-0.29167 0.25,-0.10416 0.5416667,-0.10416 h 7.3124999 q 1.34375,0 2.489584,0.46875 1.145833,0.46875 1.979166,1.30208 0.833334,0.82292 1.302084,1.97917 0.479166,1.14583 0.479166,2.5 z m -2.708333,-2.4375 q 0,-0.79167 -0.260417,-1.44792 -0.25,-0.65625 -0.71875,-1.11458 -0.46875,-0.46875 -1.125,-0.71875 -0.645833,-0.26042 -1.4375,-0.26042 H 8.3015421 v 9.52083 h 5.9687499 q 0.791667,0 1.4375,-0.25 0.65625,-0.26041 1.125,-0.71875 0.46875,-0.46875 0.71875,-1.11458 0.260417,-0.65625 0.260417,-1.45833 z" | |||||
style="font-size:21.33333397px" | |||||
id="path1038" /> | |||||
<path | |||||
d="m 38.853626,365.01279 h -3.84375 l -6.09375,-6.10417 h -1.90625 v -2.72917 h 1.90625 l 6.09375,-6.10416 h 3.84375 l -7.677083,7.46875 z m -12.927083,0 h -2.708334 v -14.9375 h 2.708334 z" | |||||
style="font-size:21.33333397px" | |||||
id="path1040" /> | |||||
</g> | |||||
<g | |||||
aria-label="DMX" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#141414;fill-opacity:1;stroke:none" | |||||
id="text1000"> | |||||
<path | |||||
d="m 14.821429,17.793001 q 0,0.852865 -0.299479,1.569011 -0.292969,0.716145 -0.813803,1.236979 -0.520833,0.514323 -1.236979,0.807291 -0.716145,0.292969 -1.555989,0.292969 H 6.3448664 q -0.1822917,0 -0.3385417,-0.0651 -0.15625,-0.0651 -0.2734375,-0.175781 -0.110677,-0.117188 -0.1757812,-0.273438 -0.065104,-0.15625 -0.065104,-0.338541 v -7.630209 q 0,-0.175781 0.065104,-0.332031 0.065104,-0.15625 0.1757812,-0.273437 0.1171875,-0.117188 0.2734375,-0.182292 0.15625,-0.0651 0.3385417,-0.0651 h 4.5703126 q 0.839844,0 1.555989,0.292969 0.716146,0.292968 1.236979,0.813802 0.520834,0.514323 0.813803,1.236979 0.299479,0.716146 0.299479,1.5625 z M 13.12872,16.269564 q 0,-0.494792 -0.16276,-0.904948 Q 12.80971,14.95446 12.516741,14.668001 12.223773,14.375033 11.813616,14.218783 11.40997,14.056022 10.915179,14.056022 H 7.1847101 v 5.950521 h 3.7304689 q 0.494791,0 0.898437,-0.15625 0.410157,-0.162761 0.703125,-0.449219 0.292969,-0.292969 0.449219,-0.696614 0.16276,-0.410157 0.16276,-0.911459 z" | |||||
style="font-size:13.33333302px;fill:#141414;fill-opacity:1" | |||||
id="path1058" /> | |||||
<path | |||||
d="m 27.360491,21.699251 h -1.705729 v -5.559896 l -3.001302,5.279948 q -0.110677,0.201823 -0.3125,0.30599 -0.195313,0.104167 -0.423177,0.104167 -0.221355,0 -0.416667,-0.104167 -0.188802,-0.104167 -0.299479,-0.30599 l -3.014323,-5.279948 v 5.559896 H 16.494606 V 13.08597 q 0,-0.292969 0.169271,-0.520833 0.175781,-0.227865 0.455729,-0.30599 0.136718,-0.03255 0.273437,-0.01953 0.136719,0.0065 0.260417,0.05859 0.130208,0.04557 0.234375,0.136718 0.104166,0.08464 0.175781,0.208334 l 3.854167,6.699218 3.854166,-6.699218 q 0.14974,-0.247396 0.410156,-0.351563 0.266928,-0.104166 0.553386,-0.03255 0.273437,0.07813 0.449219,0.30599 0.175781,0.227864 0.175781,0.520833 z" | |||||
style="font-size:13.33333302px;fill:#141414;fill-opacity:1" | |||||
id="path1060" /> | |||||
<path | |||||
d="m 33.59747,15.696647 2.851563,-3.333333 h 2.311198 l -4.016927,4.680989 3.990885,4.654948 H 36.436012 L 33.59747,18.39196 30.77195,21.699251 h -2.304688 l 3.984375,-4.654948 -3.997396,-4.680989 h 2.291667 z" | |||||
style="font-size:13.33333302px;fill:#141414;fill-opacity:1" | |||||
id="path1062" /> | |||||
</g> | |||||
<g | |||||
aria-label="v/oct" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#141414;fill-opacity:1;stroke:none" | |||||
id="text1004"> | |||||
<path | |||||
d="m 12.873342,72.537646 q -0.229166,0.713541 -0.536458,1.40625 -0.307292,0.692708 -0.708333,1.322917 -0.395834,0.625 -0.890625,1.161458 -0.489584,0.53125 -1.088542,0.921875 -0.59375,0.385417 -1.2968751,0.609375 -0.6979166,0.21875 -1.515625,0.21875 -0.140625,0 -0.265625,-0.05208 -0.125,-0.05208 -0.21875,-0.140625 -0.09375,-0.09375 -0.1458334,-0.213542 -0.052083,-0.125 -0.052083,-0.265625 v -4.96875 h 1.3541667 v 4.234375 q 0.4947917,0 0.9479167,-0.213542 0.4583334,-0.213541 0.8645834,-0.5625 0.40625,-0.354166 0.75,-0.802083 0.348958,-0.447917 0.619792,-0.916667 0.270833,-0.473958 0.458333,-0.927083 0.192708,-0.453125 0.286458,-0.8125 z" | |||||
style="" | |||||
id="path1065" /> | |||||
<path | |||||
d="m 18.941051,70.699104 -4.713542,7.46875 h -1.453125 l 4.71875,-7.46875 z" | |||||
style="" | |||||
id="path1067" /> | |||||
<path | |||||
d="m 25.842092,76.266813 q 0,0.348958 -0.08854,0.630208 -0.08854,0.276042 -0.234375,0.489583 -0.145834,0.208334 -0.338542,0.359375 -0.192708,0.145834 -0.40625,0.239584 -0.208333,0.09375 -0.427083,0.140625 -0.213542,0.04167 -0.40625,0.04167 h -2.442709 q -0.28125,0 -0.614583,-0.09896 -0.333333,-0.09896 -0.619792,-0.322917 -0.28125,-0.229166 -0.473958,-0.588541 -0.1875,-0.364584 -0.1875,-0.890625 v -1.833334 q 0,-0.520833 0.1875,-0.880208 0.192708,-0.364584 0.473958,-0.588542 0.286459,-0.229167 0.619792,-0.328125 0.333333,-0.09896 0.614583,-0.09896 h 2.442709 q 0.520833,0 0.885416,0.1875 0.364584,0.1875 0.588542,0.473958 0.223958,0.28125 0.322917,0.614584 0.104166,0.333333 0.104166,0.619791 z m -1.354166,-1.822917 q 0,-0.28125 -0.140625,-0.416667 -0.140625,-0.135416 -0.40625,-0.135416 h -2.432292 q -0.270833,0 -0.411458,0.140625 -0.140625,0.135416 -0.140625,0.401041 v 1.833334 q 0,0.265625 0.140625,0.40625 0.140625,0.140625 0.411458,0.140625 h 2.432292 q 0.276041,0 0.411458,-0.140625 0.135417,-0.140625 0.135417,-0.40625 z" | |||||
style="" | |||||
id="path1069" /> | |||||
<path | |||||
d="m 32.441051,78.167854 h -3.671875 q -0.28125,0 -0.614583,-0.09896 -0.333333,-0.09896 -0.619792,-0.322917 -0.28125,-0.229166 -0.473958,-0.588541 -0.1875,-0.364584 -0.1875,-0.890625 v -1.833334 q 0,-0.192708 0.04167,-0.40625 0.04687,-0.213541 0.140625,-0.421875 0.09375,-0.213541 0.239583,-0.40625 0.151042,-0.192708 0.359375,-0.338542 0.213542,-0.145833 0.489583,-0.234375 0.276042,-0.08854 0.625,-0.08854 h 3.671875 v 1.354167 h -3.671875 q -0.265625,0 -0.40625,0.135416 -0.135416,0.135417 -0.135416,0.416667 v 1.822917 q 0,0.265625 0.140625,0.40625 0.140625,0.140625 0.411458,0.140625 h 3.661458 z" | |||||
style="" | |||||
id="path1071" /> | |||||
<path | |||||
d="m 38.691052,73.891813 h -2.364583 v 4.276041 H 34.956677 V 73.891813 H 33.19626 v -1.354167 h 1.760417 v -1.838542 h 1.369792 v 1.838542 h 2.364583 z" | |||||
style="" | |||||
id="path1073" /> | |||||
</g> | |||||
<g | |||||
aria-label="output" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text1008"> | |||||
<path | |||||
d="m 7.7820882,127.23847 q 0,0.34896 -0.088542,0.63021 -0.088542,0.27604 -0.234375,0.48958 -0.1458334,0.20833 -0.3385417,0.35938 -0.1927083,0.14583 -0.40625,0.23958 -0.2083333,0.0937 -0.4270833,0.14062 -0.2135417,0.0417 -0.4062501,0.0417 H 3.438338 q -0.28125,0 -0.6145833,-0.099 -0.3333334,-0.099 -0.6197917,-0.32291 -0.28125,-0.22917 -0.4739584,-0.58855 -0.1875,-0.36458 -0.1875,-0.89062 v -1.83333 q 0,-0.52084 0.1875,-0.88021 0.1927084,-0.36459 0.4739584,-0.58854 0.2864583,-0.22917 0.6197917,-0.32813 0.3333333,-0.099 0.6145833,-0.099 h 2.4427084 q 0.5208334,0 0.8854167,0.1875 0.3645834,0.1875 0.5885417,0.47396 0.2239584,0.28125 0.3229167,0.61458 0.1041667,0.33334 0.1041667,0.6198 z m -1.3541667,-1.82292 q 0,-0.28125 -0.140625,-0.41666 -0.1406251,-0.13542 -0.4062501,-0.13542 H 3.4487547 q -0.2708333,0 -0.4114583,0.14062 -0.140625,0.13542 -0.140625,0.40105 v 1.83333 q 0,0.26562 0.140625,0.40625 0.140625,0.14062 0.4114583,0.14062 h 2.4322917 q 0.2760417,0 0.4114584,-0.14062 0.1354167,-0.14063 0.1354167,-0.40625 z" | |||||
style="" | |||||
id="path1076" /> | |||||
<path | |||||
d="m 15.084172,128.45722 q 0,0.14583 -0.05208,0.27083 -0.05208,0.125 -0.145833,0.21875 -0.08854,0.0885 -0.213542,0.14063 -0.119791,0.0521 -0.260416,0.0521 h -3.0625 q -0.25,0 -0.536459,-0.0573 -0.28125,-0.0573 -0.557291,-0.18229 -0.2760422,-0.13021 -0.5364588,-0.32292 -0.2552084,-0.19792 -0.4479167,-0.47396 -0.1927084,-0.28125 -0.3125,-0.64583 -0.1145834,-0.36458 -0.1145834,-0.82292 v -3.125 h 1.3541669 v 3.125 q 0,0.26563 0.08854,0.47917 0.09375,0.20833 0.25,0.35937 0.15625,0.15105 0.364583,0.23438 0.213542,0.0781 0.458333,0.0781 h 2.369792 v -4.27604 h 1.354167 z" | |||||
style="" | |||||
id="path1078" /> | |||||
<path | |||||
d="M 21.485214,124.86347 H 19.12063 v 4.27604 h -1.369791 v -4.27604 h -1.760417 v -1.35417 h 1.760417 v -1.83854 h 1.369791 v 1.83854 h 2.364584 z" | |||||
style="" | |||||
id="path1080" /> | |||||
<path | |||||
d="m 28.573755,127.23847 q 0,0.34896 -0.08854,0.63021 -0.08854,0.27604 -0.234375,0.48958 -0.145834,0.20833 -0.338542,0.35938 -0.192708,0.14583 -0.40625,0.23958 -0.208333,0.0937 -0.421875,0.14062 -0.213542,0.0417 -0.40625,0.0417 h -2.442708 v -1.35417 h 2.442708 q 0.270833,0 0.40625,-0.14062 0.135417,-0.14063 0.135417,-0.40625 v -1.82292 q 0,-0.28125 -0.140625,-0.41666 -0.135417,-0.13542 -0.401042,-0.13542 H 24.24563 q -0.276041,0 -0.416666,0.14062 -0.140625,0.13542 -0.140625,0.40105 v 5.49479 h -1.354167 v -5.49479 q 0,-0.34896 0.08854,-0.625 0.08854,-0.27605 0.234375,-0.48438 0.151041,-0.21354 0.34375,-0.35937 0.192708,-0.15105 0.401041,-0.2448 0.213542,-0.0937 0.427084,-0.13541 0.21875,-0.0469 0.40625,-0.0469 h 2.442708 q 0.348958,0 0.625,0.0885 0.276042,0.0885 0.484375,0.23438 0.213542,0.14583 0.359375,0.33854 0.151042,0.19271 0.244792,0.40625 0.09375,0.20833 0.135416,0.42188 0.04687,0.21354 0.04687,0.40625 z" | |||||
style="" | |||||
id="path1082" /> | |||||
<path | |||||
d="m 35.896672,128.45722 q 0,0.14583 -0.05208,0.27083 -0.05208,0.125 -0.145834,0.21875 -0.08854,0.0885 -0.213541,0.14063 -0.119792,0.0521 -0.260417,0.0521 h -3.0625 q -0.25,0 -0.536458,-0.0573 -0.28125,-0.0573 -0.557292,-0.18229 -0.276042,-0.13021 -0.536458,-0.32292 -0.255209,-0.19792 -0.447917,-0.47396 -0.192708,-0.28125 -0.3125,-0.64583 -0.114583,-0.36458 -0.114583,-0.82292 v -3.125 h 1.354166 v 3.125 q 0,0.26563 0.08854,0.47917 0.09375,0.20833 0.25,0.35937 0.15625,0.15105 0.364583,0.23438 0.213542,0.0781 0.458334,0.0781 h 2.369791 v -4.27604 h 1.354167 z" | |||||
style="" | |||||
id="path1084" /> | |||||
<path | |||||
d="m 42.297712,124.86347 h -2.364584 v 4.27604 h -1.369791 v -4.27604 H 36.80292 v -1.35417 h 1.760417 v -1.83854 h 1.369791 v 1.83854 h 2.364584 z" | |||||
style="" | |||||
id="path1086" /> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,291 @@ | |||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||||
<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" | |||||
id="SvgjsSvg1006" | |||||
width="45" | |||||
height="380" | |||||
version="1.1" | |||||
sodipodi:docname="OpenHH.svg" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||||
<metadata | |||||
id="metadata7215"> | |||||
<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> | |||||
<sodipodi:namedview | |||||
pagecolor="#ffffff" | |||||
bordercolor="#666666" | |||||
borderopacity="1" | |||||
objecttolerance="10" | |||||
gridtolerance="10" | |||||
guidetolerance="10" | |||||
inkscape:pageopacity="0" | |||||
inkscape:pageshadow="2" | |||||
inkscape:window-width="901" | |||||
inkscape:window-height="1006" | |||||
id="namedview7213" | |||||
showgrid="false" | |||||
inkscape:pagecheckerboard="true" | |||||
inkscape:zoom="2.0011122" | |||||
inkscape:cx="-4.074128" | |||||
inkscape:cy="186.38787" | |||||
inkscape:window-x="0" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
inkscape:current-layer="SvgjsSvg1006" /> | |||||
<defs | |||||
id="SvgjsDefs1007" /> | |||||
<path | |||||
style="fill:#f0f0f0;fill-opacity:1" | |||||
d="M 0,0 H 45 V 380 H 0 Z" | |||||
id="SvgjsRect1008" /> | |||||
<path | |||||
style="fill:#d3abd6;fill-opacity:1" | |||||
d="M 7,33 H 38 V 186 H 7 Z" | |||||
id="SvgjsRect1009" /> | |||||
<g | |||||
aria-label="DK" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text980"> | |||||
<path | |||||
d="m 20.520292,358.76279 q 0,1.36458 -0.479166,2.51041 -0.46875,1.14584 -1.302084,1.97917 -0.833333,0.82292 -1.979166,1.29167 -1.145834,0.46875 -2.489584,0.46875 H 6.9577921 q -0.2916667,0 -0.5416667,-0.10417 -0.25,-0.10417 -0.4375,-0.28125 -0.1770834,-0.1875 -0.2812501,-0.4375 -0.1041666,-0.25 -0.1041666,-0.54167 v -12.20833 q 0,-0.28125 0.1041666,-0.53125 0.1041667,-0.25 0.2812501,-0.4375 0.1875,-0.1875 0.4375,-0.29167 0.25,-0.10416 0.5416667,-0.10416 h 7.3124999 q 1.34375,0 2.489584,0.46875 1.145833,0.46875 1.979166,1.30208 0.833334,0.82292 1.302084,1.97917 0.479166,1.14583 0.479166,2.5 z m -2.708333,-2.4375 q 0,-0.79167 -0.260417,-1.44792 -0.25,-0.65625 -0.71875,-1.11458 -0.46875,-0.46875 -1.125,-0.71875 -0.645833,-0.26042 -1.4375,-0.26042 H 8.3015421 v 9.52083 h 5.9687499 q 0.791667,0 1.4375,-0.25 0.65625,-0.26041 1.125,-0.71875 0.46875,-0.46875 0.71875,-1.11458 0.260417,-0.65625 0.260417,-1.45833 z" | |||||
style="font-size:21.33333397px" | |||||
id="path1038" /> | |||||
<path | |||||
d="m 38.853626,365.01279 h -3.84375 l -6.09375,-6.10417 h -1.90625 v -2.72917 h 1.90625 l 6.09375,-6.10416 h 3.84375 l -7.677083,7.46875 z m -12.927083,0 h -2.708334 v -14.9375 h 2.708334 z" | |||||
style="font-size:21.33333397px" | |||||
id="path1040" /> | |||||
</g> | |||||
<g | |||||
aria-label="trigger" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text984"> | |||||
<path | |||||
d="M 10.850587,74.46331 H 9.0771494 v 3.207031 H 8.0498056 V 74.46331 H 6.7294931 v -1.015625 h 1.3203125 v -1.378906 h 1.0273438 v 1.378906 h 1.7734376 z" | |||||
style="font-size:8px" | |||||
id="path1043" /> | |||||
<path | |||||
d="m 15.206056,74.46331 h -2.285157 q -0.207031,0 -0.3125,0.105469 -0.105468,0.101562 -0.105468,0.300781 v 2.800781 H 11.487306 V 74.86956 q 0,-0.261719 0.06641,-0.46875 0.06641,-0.207031 0.175781,-0.363281 0.113281,-0.160156 0.257813,-0.269531 0.144531,-0.113282 0.300781,-0.183594 0.160156,-0.07031 0.320312,-0.101563 0.164063,-0.03516 0.304688,-0.03516 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1045" /> | |||||
<path | |||||
d="m 16.901368,72.580498 h -1.015625 v -0.917969 h 1.015625 z m 0,5.089843 h -1.015625 v -4.222656 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1047" /> | |||||
<path | |||||
d="m 22.463868,78.076591 q 0,0.261719 -0.06641,0.46875 -0.06641,0.210938 -0.175781,0.367188 -0.109375,0.160156 -0.253907,0.269531 -0.144531,0.113281 -0.304687,0.183594 -0.15625,0.07031 -0.320313,0.101562 -0.160156,0.03516 -0.304687,0.03516 h -1.832031 v -1.015625 h 1.832031 q 0.207031,0 0.308594,-0.105469 0.101562,-0.105469 0.101562,-0.304688 V 74.86956 q 0,-0.199219 -0.101562,-0.300781 -0.101563,-0.105469 -0.308594,-0.105469 h -1.832031 q -0.1875,0 -0.296875,0.117188 -0.109375,0.113281 -0.109375,0.289062 v 1.375 q 0,0.199219 0.105468,0.304688 0.105469,0.105468 0.308594,0.105468 h 1.824219 v 1.015625 h -1.832031 q -0.144532,0 -0.304688,-0.03125 -0.160156,-0.03516 -0.320312,-0.105468 -0.15625,-0.07031 -0.300782,-0.179688 -0.144531,-0.113281 -0.253906,-0.269531 -0.109375,-0.160156 -0.175781,-0.367188 -0.06641,-0.210937 -0.06641,-0.472656 v -1.375 q 0,-0.144531 0.03125,-0.304687 0.03516,-0.160157 0.105468,-0.316407 0.07031,-0.160156 0.179688,-0.304687 0.113281,-0.144531 0.269531,-0.253906 0.160156,-0.109375 0.367188,-0.175782 0.207031,-0.06641 0.46875,-0.06641 h 1.832031 q 0.144531,0 0.304687,0.03516 0.164063,0.03125 0.320313,0.101563 0.160156,0.07031 0.304687,0.183594 0.144532,0.109375 0.253907,0.269531 0.109375,0.15625 0.175781,0.363281 0.06641,0.207031 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1049" /> | |||||
<path | |||||
d="m 27.995118,78.076591 q 0,0.261719 -0.06641,0.46875 -0.06641,0.210938 -0.175781,0.367188 -0.109375,0.160156 -0.253907,0.269531 -0.144531,0.113281 -0.304687,0.183594 -0.15625,0.07031 -0.320313,0.101562 -0.160156,0.03516 -0.304687,0.03516 h -1.832031 v -1.015625 h 1.832031 q 0.207031,0 0.308594,-0.105469 0.101562,-0.105469 0.101562,-0.304688 V 74.86956 q 0,-0.199219 -0.101562,-0.300781 -0.101563,-0.105469 -0.308594,-0.105469 h -1.832031 q -0.1875,0 -0.296875,0.117188 -0.109375,0.113281 -0.109375,0.289062 v 1.375 q 0,0.199219 0.105468,0.304688 0.105469,0.105468 0.308594,0.105468 h 1.824219 v 1.015625 h -1.832031 q -0.144532,0 -0.304688,-0.03125 -0.160156,-0.03516 -0.320312,-0.105468 -0.15625,-0.07031 -0.300782,-0.179688 -0.144531,-0.113281 -0.253906,-0.269531 -0.109375,-0.160156 -0.175781,-0.367188 -0.06641,-0.210937 -0.06641,-0.472656 v -1.375 q 0,-0.144531 0.03125,-0.304687 0.03516,-0.160157 0.105468,-0.316407 0.07031,-0.160156 0.179688,-0.304687 0.113281,-0.144531 0.269531,-0.253906 0.160156,-0.109375 0.367188,-0.175782 0.207031,-0.06641 0.46875,-0.06641 h 1.832031 q 0.144531,0 0.304687,0.03516 0.164063,0.03125 0.320313,0.101563 0.160156,0.07031 0.304687,0.183594 0.144532,0.109375 0.253907,0.269531 0.109375,0.15625 0.175781,0.363281 0.06641,0.207031 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1051" /> | |||||
<path | |||||
d="m 33.475587,74.846123 q 0,0.210937 -0.07422,0.457031 -0.07422,0.242187 -0.242187,0.453125 -0.164063,0.207031 -0.433594,0.347656 -0.265625,0.140625 -0.648438,0.140625 h -1.832031 v -0.964844 h 1.832031 q 0.207032,0 0.320313,-0.125 0.113281,-0.128906 0.113281,-0.316406 0,-0.199219 -0.128906,-0.3125 -0.125,-0.113281 -0.304688,-0.113281 h -1.832031 q -0.207031,0 -0.320312,0.128906 -0.113282,0.125 -0.113282,0.3125 v 1.417969 q 0,0.203125 0.125,0.316406 0.128907,0.113281 0.316407,0.113281 h 1.824218 v 0.96875 h -1.832031 q -0.210937,0 -0.457031,-0.07422 -0.242188,-0.07422 -0.453125,-0.238282 -0.207031,-0.167968 -0.347656,-0.433593 -0.140625,-0.269532 -0.140625,-0.652344 v -1.425781 q 0,-0.210938 0.07422,-0.453125 0.07422,-0.246094 0.238282,-0.453125 0.167968,-0.210938 0.433593,-0.351563 0.269532,-0.140625 0.652344,-0.140625 h 1.832031 q 0.210938,0 0.453125,0.07422 0.246094,0.07422 0.453125,0.242187 0.210938,0.164063 0.351563,0.433594 0.140625,0.265625 0.140625,0.648438 z" | |||||
style="font-size:8px" | |||||
id="path1053" /> | |||||
<path | |||||
d="m 37.862306,74.46331 h -2.285157 q -0.207031,0 -0.3125,0.105469 -0.105468,0.101562 -0.105468,0.300781 v 2.800781 H 34.143556 V 74.86956 q 0,-0.261719 0.06641,-0.46875 0.06641,-0.207031 0.175781,-0.363281 0.113281,-0.160156 0.257813,-0.269531 0.144531,-0.113282 0.300781,-0.183594 0.160156,-0.07031 0.320312,-0.101563 0.164063,-0.03516 0.304688,-0.03516 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1055" /> | |||||
</g> | |||||
<g | |||||
aria-label="select" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text988"> | |||||
<path | |||||
d="m 13.335968,126.96858 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175781,0.36719 -0.109375,0.15625 -0.253907,0.26953 -0.144531,0.10937 -0.304687,0.17968 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 9.1601868 v -1.01562 h 2.7421872 q 0.207032,0 0.3125,-0.10547 0.105469,-0.10547 0.105469,-0.30469 -0.01953,-0.40625 -0.410156,-0.40625 h -1.574219 q -0.335937,0 -0.5703125,-0.11719 -0.234375,-0.11718 -0.3828125,-0.29296 -0.1445312,-0.17579 -0.2109375,-0.37891 -0.0625,-0.20313 -0.0625,-0.37891 0,-0.33984 0.1210938,-0.57031 0.1210937,-0.23437 0.3046875,-0.37891 0.1835937,-0.14453 0.3984375,-0.20703 0.2148437,-0.0664 0.4023437,-0.0664 h 2.496094 v 1.01562 h -2.488281 q -0.07813,0 -0.125,0.0195 -0.04297,0.0156 -0.06641,0.0469 -0.01953,0.0273 -0.02344,0.0625 -0.0039,0.0312 -0.0039,0.0625 0.0039,0.0625 0.02344,0.0977 0.01953,0.0352 0.04687,0.0508 0.03125,0.0156 0.06641,0.0195 0.03906,0 0.07422,0 h 1.574219 q 0.390625,0 0.664062,0.14062 0.273438,0.14063 0.441407,0.35547 0.167968,0.21094 0.242187,0.46094 0.07813,0.25 0.07813,0.46484 z" | |||||
style="font-size:8px" | |||||
id="path1058" /> | |||||
<path | |||||
d="m 18.593781,125.57014 q 0,0.21094 -0.07422,0.45704 -0.07422,0.24218 -0.242188,0.45312 -0.164062,0.20703 -0.433593,0.34766 -0.265625,0.14062 -0.648438,0.14062 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320313,-0.125 0.113281,-0.12891 0.113281,-0.31641 0,-0.19922 -0.128906,-0.3125 -0.125,-0.11328 -0.304688,-0.11328 h -1.832031 q -0.207031,0 -0.320313,0.12891 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20312 0.125,0.3164 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457031,-0.0742 -0.242188,-0.0742 -0.453125,-0.23828 -0.207032,-0.16797 -0.347657,-0.43359 -0.140625,-0.26953 -0.140625,-0.65234 v -1.42579 q 0,-0.21093 0.07422,-0.45312 0.07422,-0.24609 0.238281,-0.45313 0.167969,-0.21093 0.433594,-0.35156 0.269531,-0.14062 0.652344,-0.14062 h 1.832031 q 0.210938,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24218 0.210938,0.16407 0.351563,0.4336 0.140625,0.26562 0.140625,0.64843 z" | |||||
style="font-size:8px" | |||||
id="path1060" /> | |||||
<path | |||||
d="m 21.140656,128.39436 h -0.453125 q -0.21875,0 -0.46875,-0.0742 -0.246094,-0.0742 -0.460938,-0.24218 -0.214844,-0.17188 -0.355469,-0.44141 -0.140625,-0.27344 -0.140625,-0.66797 v -4.58203 h 1.015625 v 4.58203 q 0,0.1875 0.117188,0.30078 0.117187,0.10938 0.292969,0.10938 h 0.453125 z" | |||||
style="font-size:8px" | |||||
id="path1062" /> | |||||
<path | |||||
d="m 26.343781,125.57014 q 0,0.21094 -0.07422,0.45704 -0.07422,0.24218 -0.242188,0.45312 -0.164062,0.20703 -0.433593,0.34766 -0.265625,0.14062 -0.648438,0.14062 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320313,-0.125 0.113281,-0.12891 0.113281,-0.31641 0,-0.19922 -0.128906,-0.3125 -0.125,-0.11328 -0.304688,-0.11328 h -1.832031 q -0.207031,0 -0.320313,0.12891 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20312 0.125,0.3164 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457031,-0.0742 -0.242188,-0.0742 -0.453125,-0.23828 -0.207032,-0.16797 -0.347657,-0.43359 -0.140625,-0.26953 -0.140625,-0.65234 v -1.42579 q 0,-0.21093 0.07422,-0.45312 0.07422,-0.24609 0.238281,-0.45313 0.167969,-0.21093 0.433594,-0.35156 0.269531,-0.14062 0.652344,-0.14062 h 1.832031 q 0.210938,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24218 0.210938,0.16407 0.351563,0.4336 0.140625,0.26562 0.140625,0.64843 z" | |||||
style="font-size:8px" | |||||
id="path1064" /> | |||||
<path | |||||
d="m 31.125031,128.39436 h -2.753907 q -0.210937,0 -0.460937,-0.0742 -0.25,-0.0742 -0.464844,-0.24218 -0.210937,-0.17188 -0.355469,-0.44141 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179688,-0.30469 0.113281,-0.14453 0.269531,-0.25391 0.160156,-0.10937 0.367187,-0.17578 0.207032,-0.0664 0.46875,-0.0664 h 2.753907 v 1.01562 h -2.753907 q -0.199218,0 -0.304687,0.10156 -0.101563,0.10157 -0.101563,0.3125 v 1.36719 q 0,0.19922 0.105469,0.30469 0.105469,0.10547 0.308594,0.10547 h 2.746094 z" | |||||
style="font-size:8px" | |||||
id="path1066" /> | |||||
<path | |||||
d="m 35.812531,125.18733 h -1.773438 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01562 h 1.320312 v -1.37891 h 1.027344 v 1.37891 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1068" /> | |||||
</g> | |||||
<g | |||||
aria-label="output" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text992"> | |||||
<path | |||||
d="m 11.844351,179.93802 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175782,0.36718 -0.109375,0.15625 -0.253906,0.26953 -0.144531,0.10938 -0.304687,0.17969 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 8.5865383 q -0.2109375,0 -0.4609375,-0.0742 -0.25,-0.0742 -0.4648437,-0.24219 -0.2109375,-0.17187 -0.3554688,-0.4414 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.39063 0.140625,-0.66016 0.1445313,-0.27343 0.3554688,-0.4414 0.2148437,-0.17188 0.4648437,-0.2461 0.25,-0.0742 0.4609375,-0.0742 H 10.41857 q 0.390625,0 0.664062,0.14063 0.273438,0.14062 0.441406,0.35547 0.167969,0.21094 0.242188,0.46094 0.07813,0.25 0.07813,0.46484 z m -1.015625,-1.36719 q 0,-0.21094 -0.105469,-0.3125 -0.105469,-0.10156 -0.304687,-0.10156 H 8.5943508 q -0.203125,0 -0.3085937,0.10547 -0.1054688,0.10156 -0.1054688,0.30078 v 1.375 q 0,0.19922 0.1054688,0.30469 0.1054687,0.10547 0.3085937,0.10547 H 10.41857 q 0.207031,0 0.308593,-0.10547 0.101563,-0.10547 0.101563,-0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1071" /> | |||||
<path | |||||
d="m 17.320913,180.85208 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402344,-0.043 -0.210937,-0.043 -0.417968,-0.13672 -0.207032,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335938,-0.35547 -0.144531,-0.21094 -0.234375,-0.48438 -0.08594,-0.27344 -0.08594,-0.61719 v -2.34375 h 1.015625 v 2.34375 q 0,0.19922 0.06641,0.35938 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777343 v -3.20704 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1073" /> | |||||
<path | |||||
d="m 22.121695,178.15677 h -1.773438 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01563 h 1.320312 v -1.3789 h 1.027344 v 1.3789 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1075" /> | |||||
<path | |||||
d="m 27.438101,179.93802 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175782,0.36718 -0.109375,0.15625 -0.253906,0.26953 -0.144531,0.10938 -0.304687,0.17969 -0.15625,0.0703 -0.316407,0.10547 -0.160156,0.0312 -0.304687,0.0312 h -1.832031 v -1.01562 h 1.832031 q 0.203125,0 0.304687,-0.10547 0.101563,-0.10547 0.101563,-0.30469 v -1.36719 q 0,-0.21094 -0.105469,-0.3125 -0.101562,-0.10156 -0.300781,-0.10156 h -1.824219 q -0.207031,0 -0.3125,0.10547 -0.105469,0.10156 -0.105469,0.30078 v 4.12109 h -1.015625 v -4.12109 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113281,-0.16016 0.257812,-0.26953 0.144532,-0.11328 0.300782,-0.1836 0.160156,-0.0703 0.320312,-0.10156 0.164063,-0.0352 0.304688,-0.0352 h 1.832031 q 0.261719,0 0.46875,0.0664 0.207031,0.0664 0.363281,0.17578 0.160156,0.10938 0.269531,0.25391 0.113282,0.14453 0.183594,0.30469 0.07031,0.15625 0.101563,0.3164 0.03516,0.16016 0.03516,0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1077" /> | |||||
<path | |||||
d="m 32.930288,180.85208 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402344,-0.043 -0.210937,-0.043 -0.417968,-0.13672 -0.207032,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335938,-0.35547 -0.144531,-0.21094 -0.234375,-0.48438 -0.08594,-0.27344 -0.08594,-0.61719 v -2.34375 h 1.015625 v 2.34375 q 0,0.19922 0.06641,0.35938 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777343 v -3.20704 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1079" /> | |||||
<path | |||||
d="m 37.73107,178.15677 h -1.773438 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01563 h 1.320312 v -1.3789 h 1.027344 v 1.3789 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1081" /> | |||||
</g> | |||||
<path | |||||
style="fill:#d3abd6;fill-opacity:1" | |||||
d="M 7.1530623,191.86212 H 38.153062 v 153 H 7.1530623 Z" | |||||
id="SvgjsRect1009-7" /> | |||||
<g | |||||
aria-label="trigger" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text984-9"> | |||||
<path | |||||
d="M 11.003649,233.32544 H 9.2302117 v 3.20703 H 8.202868 v -3.20703 H 6.8825555 v -1.01563 H 8.202868 v -1.3789 h 1.0273437 v 1.3789 h 1.7734373 z" | |||||
style="font-size:8px" | |||||
id="path1085" /> | |||||
<path | |||||
d="m 15.359118,233.32544 h -2.285156 q -0.207032,0 -0.3125,0.10547 -0.105469,0.10156 -0.105469,0.30078 v 2.80078 h -1.015625 v -2.80078 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113282,-0.16016 0.257813,-0.26953 0.144531,-0.11328 0.300781,-0.1836 0.160156,-0.0703 0.320313,-0.10156 0.164062,-0.0352 0.304687,-0.0352 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1087" /> | |||||
<path | |||||
d="m 17.05443,231.44263 h -1.015625 v -0.91797 h 1.015625 z m 0,5.08984 h -1.015625 v -4.22266 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1089" /> | |||||
<path | |||||
d="m 22.61693,236.93872 q 0,0.26172 -0.06641,0.46875 -0.06641,0.21094 -0.175781,0.36719 -0.109375,0.16015 -0.253906,0.26953 -0.144532,0.11328 -0.304688,0.18359 -0.15625,0.0703 -0.320312,0.10157 -0.160157,0.0351 -0.304688,0.0351 h -1.832031 v -1.01562 h 1.832031 q 0.207031,0 0.308594,-0.10547 0.101562,-0.10547 0.101562,-0.30469 v -3.20703 q 0,-0.19922 -0.101562,-0.30078 -0.101563,-0.10547 -0.308594,-0.10547 h -1.832031 q -0.1875,0 -0.296875,0.11719 -0.109375,0.11328 -0.109375,0.28906 v 1.375 q 0,0.19922 0.105469,0.30469 0.105468,0.10547 0.308593,0.10547 h 1.824219 v 1.01562 h -1.832031 q -0.144531,0 -0.304688,-0.0312 -0.160156,-0.0352 -0.320312,-0.10547 -0.15625,-0.0703 -0.300781,-0.17969 -0.144532,-0.11328 -0.253907,-0.26953 -0.109375,-0.16015 -0.175781,-0.36718 -0.06641,-0.21094 -0.06641,-0.47266 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179687,-0.30469 0.113281,-0.14453 0.269531,-0.25391 0.160157,-0.10937 0.367188,-0.17578 0.207031,-0.0664 0.46875,-0.0664 h 1.832031 q 0.144531,0 0.304688,0.0352 0.164062,0.0312 0.320312,0.10156 0.160156,0.0703 0.304688,0.1836 0.144531,0.10937 0.253906,0.26953 0.109375,0.15625 0.175781,0.36328 0.06641,0.20703 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1091" /> | |||||
<path | |||||
d="m 28.14818,236.93872 q 0,0.26172 -0.06641,0.46875 -0.06641,0.21094 -0.175781,0.36719 -0.109375,0.16015 -0.253906,0.26953 -0.144532,0.11328 -0.304688,0.18359 -0.15625,0.0703 -0.320312,0.10157 -0.160157,0.0351 -0.304688,0.0351 h -1.832031 v -1.01562 h 1.832031 q 0.207031,0 0.308594,-0.10547 0.101562,-0.10547 0.101562,-0.30469 v -3.20703 q 0,-0.19922 -0.101562,-0.30078 -0.101563,-0.10547 -0.308594,-0.10547 h -1.832031 q -0.1875,0 -0.296875,0.11719 -0.109375,0.11328 -0.109375,0.28906 v 1.375 q 0,0.19922 0.105469,0.30469 0.105468,0.10547 0.308593,0.10547 h 1.824219 v 1.01562 h -1.832031 q -0.144531,0 -0.304688,-0.0312 -0.160156,-0.0352 -0.320312,-0.10547 -0.15625,-0.0703 -0.300781,-0.17969 -0.144532,-0.11328 -0.253907,-0.26953 -0.109375,-0.16015 -0.175781,-0.36718 -0.06641,-0.21094 -0.06641,-0.47266 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179687,-0.30469 0.113281,-0.14453 0.269531,-0.25391 0.160157,-0.10937 0.367188,-0.17578 0.207031,-0.0664 0.46875,-0.0664 h 1.832031 q 0.144531,0 0.304688,0.0352 0.164062,0.0312 0.320312,0.10156 0.160156,0.0703 0.304688,0.1836 0.144531,0.10937 0.253906,0.26953 0.109375,0.15625 0.175781,0.36328 0.06641,0.20703 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1093" /> | |||||
<path | |||||
d="m 33.628649,233.70825 q 0,0.21094 -0.07422,0.45703 -0.07422,0.24219 -0.242187,0.45313 -0.164063,0.20703 -0.433594,0.34765 -0.265625,0.14063 -0.648437,0.14063 H 30.39818 v -0.96484 h 1.832032 q 0.207031,0 0.320312,-0.125 0.113281,-0.12891 0.113281,-0.31641 0,-0.19922 -0.128906,-0.3125 -0.125,-0.11328 -0.304687,-0.11328 H 30.39818 q -0.207031,0 -0.320312,0.1289 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20313 0.125,0.31641 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 H 30.39818 q -0.210937,0 -0.457031,-0.0742 -0.242187,-0.0742 -0.453125,-0.23828 -0.207031,-0.16797 -0.347656,-0.43359 -0.140625,-0.26953 -0.140625,-0.65235 v -1.42578 q 0,-0.21094 0.07422,-0.45312 0.07422,-0.2461 0.238281,-0.45313 0.167969,-0.21094 0.433594,-0.35156 0.269531,-0.14063 0.652343,-0.14063 h 1.832032 q 0.210937,0 0.453125,0.0742 0.246093,0.0742 0.453125,0.24219 0.210937,0.16406 0.351562,0.43359 0.140625,0.26563 0.140625,0.64844 z" | |||||
style="font-size:8px" | |||||
id="path1095" /> | |||||
<path | |||||
d="m 38.015368,233.32544 h -2.285156 q -0.207032,0 -0.3125,0.10547 -0.105469,0.10156 -0.105469,0.30078 v 2.80078 h -1.015625 v -2.80078 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113282,-0.16016 0.257813,-0.26953 0.144531,-0.11328 0.300781,-0.1836 0.160156,-0.0703 0.320313,-0.10156 0.164062,-0.0352 0.304687,-0.0352 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1097" /> | |||||
</g> | |||||
<g | |||||
aria-label="select" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text988-8"> | |||||
<path | |||||
d="m 13.48903,285.83072 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175782,0.36718 -0.109375,0.15625 -0.253906,0.26953 -0.144531,0.10938 -0.304687,0.17969 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 9.3132486 v -1.01562 h 2.7421874 q 0.207031,0 0.3125,-0.10547 0.105469,-0.10547 0.105469,-0.30469 -0.01953,-0.40625 -0.410156,-0.40625 H 10.48903 q -0.335938,0 -0.5703126,-0.11719 -0.234375,-0.11719 -0.3828125,-0.29297 -0.1445313,-0.17578 -0.2109375,-0.3789 -0.0625,-0.20313 -0.0625,-0.37891 0,-0.33984 0.1210937,-0.57031 0.1210938,-0.23438 0.3046875,-0.37891 0.1835938,-0.14453 0.3984374,-0.20703 0.214844,-0.0664 0.402344,-0.0664 h 2.496094 v 1.01563 h -2.488282 q -0.07813,0 -0.125,0.0195 -0.04297,0.0156 -0.06641,0.0469 -0.01953,0.0273 -0.02344,0.0625 -0.0039,0.0312 -0.0039,0.0625 0.0039,0.0625 0.02344,0.0976 0.01953,0.0352 0.04687,0.0508 0.03125,0.0156 0.06641,0.0195 0.03906,0 0.07422,0 h 1.574219 q 0.390625,0 0.664062,0.14063 0.273438,0.14062 0.441406,0.35547 0.167969,0.21094 0.242188,0.46094 0.07813,0.25 0.07813,0.46484 z" | |||||
style="font-size:8px" | |||||
id="path1100" /> | |||||
<path | |||||
d="m 18.746842,284.43228 q 0,0.21094 -0.07422,0.45703 -0.07422,0.24219 -0.242188,0.45313 -0.164062,0.20703 -0.433594,0.34765 -0.265625,0.14063 -0.648437,0.14063 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320312,-0.125 0.113282,-0.12891 0.113282,-0.31641 0,-0.19922 -0.128907,-0.3125 -0.125,-0.11328 -0.304687,-0.11328 h -1.832031 q -0.207032,0 -0.320313,0.1289 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20313 0.125,0.31641 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457032,-0.0742 -0.242187,-0.0742 -0.453125,-0.23828 -0.207031,-0.16797 -0.347656,-0.43359 -0.140625,-0.26953 -0.140625,-0.65235 v -1.42578 q 0,-0.21094 0.07422,-0.45312 0.07422,-0.2461 0.238281,-0.45313 0.167969,-0.21094 0.433594,-0.35156 0.269531,-0.14063 0.652344,-0.14063 h 1.832031 q 0.210937,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24219 0.210937,0.16406 0.351562,0.43359 0.140625,0.26563 0.140625,0.64844 z" | |||||
style="font-size:8px" | |||||
id="path1102" /> | |||||
<path | |||||
d="m 21.293717,287.2565 h -0.453125 q -0.21875,0 -0.46875,-0.0742 -0.246093,-0.0742 -0.460937,-0.24219 -0.214844,-0.17187 -0.355469,-0.4414 -0.140625,-0.27344 -0.140625,-0.66797 v -4.58203 h 1.015625 v 4.58203 q 0,0.1875 0.117188,0.30078 0.117187,0.10938 0.292968,0.10938 h 0.453125 z" | |||||
style="font-size:8px" | |||||
id="path1104" /> | |||||
<path | |||||
d="m 26.496842,284.43228 q 0,0.21094 -0.07422,0.45703 -0.07422,0.24219 -0.242188,0.45313 -0.164062,0.20703 -0.433594,0.34765 -0.265625,0.14063 -0.648437,0.14063 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320312,-0.125 0.113282,-0.12891 0.113282,-0.31641 0,-0.19922 -0.128907,-0.3125 -0.125,-0.11328 -0.304687,-0.11328 h -1.832031 q -0.207032,0 -0.320313,0.1289 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20313 0.125,0.31641 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457032,-0.0742 -0.242187,-0.0742 -0.453125,-0.23828 -0.207031,-0.16797 -0.347656,-0.43359 -0.140625,-0.26953 -0.140625,-0.65235 v -1.42578 q 0,-0.21094 0.07422,-0.45312 0.07422,-0.2461 0.238281,-0.45313 0.167969,-0.21094 0.433594,-0.35156 0.269531,-0.14063 0.652344,-0.14063 h 1.832031 q 0.210937,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24219 0.210937,0.16406 0.351562,0.43359 0.140625,0.26563 0.140625,0.64844 z" | |||||
style="font-size:8px" | |||||
id="path1106" /> | |||||
<path | |||||
d="m 31.278092,287.2565 h -2.753906 q -0.210937,0 -0.460937,-0.0742 -0.25,-0.0742 -0.464844,-0.24219 -0.210938,-0.17187 -0.355469,-0.4414 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179687,-0.30469 0.113282,-0.14453 0.269532,-0.25391 0.160156,-0.10937 0.367187,-0.17578 0.207031,-0.0664 0.46875,-0.0664 h 2.753906 v 1.01563 h -2.753906 q -0.199219,0 -0.304687,0.10156 -0.101563,0.10156 -0.101563,0.3125 v 1.36719 q 0,0.19922 0.105469,0.30469 0.105469,0.10547 0.308594,0.10547 h 2.746093 z" | |||||
style="font-size:8px" | |||||
id="path1108" /> | |||||
<path | |||||
d="m 35.965592,284.04947 h -1.773437 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01563 h 1.320312 v -1.3789 h 1.027344 v 1.3789 h 1.773437 z" | |||||
style="font-size:8px" | |||||
id="path1110" /> | |||||
</g> | |||||
<g | |||||
aria-label="output" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text992-2"> | |||||
<path | |||||
d="m 11.467377,338.80017 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175781,0.36718 -0.109375,0.15625 -0.253907,0.26954 -0.144531,0.10937 -0.304687,0.17968 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 8.2095647 q -0.2109375,0 -0.4609375,-0.0742 -0.25,-0.0742 -0.4648438,-0.24218 -0.2109375,-0.17188 -0.3554687,-0.44141 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.39062 0.140625,-0.66016 0.1445312,-0.27343 0.3554687,-0.4414 0.2148438,-0.17188 0.4648438,-0.2461 0.25,-0.0742 0.4609375,-0.0742 h 1.8320313 q 0.390625,0 0.664062,0.14062 0.273438,0.14063 0.441407,0.35547 0.167968,0.21094 0.242187,0.46094 0.07813,0.25 0.07813,0.46484 z m -1.015625,-1.36719 q 0,-0.21093 -0.105469,-0.3125 -0.105468,-0.10156 -0.304687,-0.10156 H 8.2173772 q -0.203125,0 -0.3085938,0.10547 -0.1054687,0.10156 -0.1054687,0.30078 v 1.375 q 0,0.19922 0.1054687,0.30469 0.1054688,0.10547 0.3085938,0.10547 h 1.8242188 q 0.207031,0 0.308594,-0.10547 0.101562,-0.10547 0.101562,-0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1113" /> | |||||
<path | |||||
d="m 16.94394,339.71423 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402343,-0.043 -0.210938,-0.043 -0.417969,-0.13672 -0.207031,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335937,-0.35547 -0.144532,-0.21094 -0.234375,-0.48438 -0.08594,-0.27343 -0.08594,-0.61718 v -2.34375 h 1.015625 v 2.34375 q 0,0.19921 0.06641,0.35937 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777344 v -3.20703 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1115" /> | |||||
<path | |||||
d="m 21.744721,337.01892 h -1.773438 v 3.20703 H 18.94394 v -3.20703 h -1.320313 v -1.01562 h 1.320313 v -1.37891 h 1.027343 v 1.37891 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1117" /> | |||||
<path | |||||
d="m 27.061127,338.80017 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175781,0.36718 -0.109375,0.15625 -0.253907,0.26954 -0.144531,0.10937 -0.304687,0.17968 -0.15625,0.0703 -0.316406,0.10547 -0.160157,0.0312 -0.304688,0.0312 h -1.832031 v -1.01562 h 1.832031 q 0.203125,0 0.304688,-0.10547 0.101562,-0.10547 0.101562,-0.30469 v -1.36719 q 0,-0.21093 -0.105469,-0.3125 -0.101562,-0.10156 -0.300781,-0.10156 h -1.824219 q -0.207031,0 -0.3125,0.10547 -0.105468,0.10156 -0.105468,0.30078 v 4.12109 H 22.38144 v -4.12109 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113281,-0.16016 0.257813,-0.26953 0.144531,-0.11328 0.300781,-0.1836 0.160156,-0.0703 0.320312,-0.10156 0.164063,-0.0351 0.304688,-0.0351 h 1.832031 q 0.261719,0 0.46875,0.0664 0.207031,0.0664 0.363281,0.17578 0.160157,0.10938 0.269532,0.25391 0.113281,0.14453 0.183593,0.30469 0.07031,0.15625 0.101563,0.3164 0.03516,0.16016 0.03516,0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1119" /> | |||||
<path | |||||
d="m 32.553315,339.71423 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402343,-0.043 -0.210938,-0.043 -0.417969,-0.13672 -0.207031,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335937,-0.35547 -0.144532,-0.21094 -0.234375,-0.48438 -0.08594,-0.27343 -0.08594,-0.61718 v -2.34375 h 1.015625 v 2.34375 q 0,0.19921 0.06641,0.35937 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777344 v -3.20703 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1121" /> | |||||
<path | |||||
d="m 37.354096,337.01892 h -1.773438 v 3.20703 h -1.027343 v -3.20703 h -1.320313 v -1.01562 h 1.320313 v -1.37891 h 1.027343 v 1.37891 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1123" /> | |||||
</g> | |||||
<g | |||||
aria-label="Open-HH" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text981"> | |||||
<path | |||||
d="m 7.9957058,17.936684 q 0,0.511718 -0.1757812,0.941406 -0.1757813,0.429687 -0.4882813,0.742187 -0.3125,0.3125 -0.7421875,0.488282 -0.4257812,0.171875 -0.9296875,0.171875 h -1.375 q -0.5039062,0 -0.9335937,-0.171875 -0.4296875,-0.175782 -0.7421875,-0.488282 -0.3125,-0.3125 -0.4921875,-0.742187 -0.1757813,-0.429688 -0.1757813,-0.941406 v -1.070313 q 0,-0.507812 0.1757813,-0.9375 0.1796875,-0.433594 0.4921875,-0.742187 0.3125,-0.3125 0.7421875,-0.488282 0.4296875,-0.175781 0.9335937,-0.175781 h 1.375 q 0.5039063,0 0.9296875,0.175781 0.4296875,0.175782 0.7421875,0.488282 0.3125,0.308593 0.4882813,0.742187 0.1757812,0.429688 0.1757812,0.9375 z m -1.015625,-1.070313 q 0,-0.300781 -0.097656,-0.542969 -0.09375,-0.246093 -0.2695313,-0.417968 -0.171875,-0.175782 -0.4179687,-0.269532 -0.2421875,-0.09766 -0.5351563,-0.09766 h -1.375 q -0.296875,0 -0.5429687,0.09766 -0.2421875,0.09375 -0.4179688,0.269532 -0.1757812,0.171875 -0.2734375,0.417968 -0.09375,0.242188 -0.09375,0.542969 v 1.070313 q 0,0.300781 0.09375,0.546875 0.097656,0.242187 0.2734375,0.417968 0.1757813,0.171875 0.4179688,0.269532 0.2460937,0.09375 0.5429687,0.09375 h 1.3671875 q 0.296875,0 0.5390625,-0.09375 0.2460938,-0.09766 0.421875,-0.269532 0.1757813,-0.175781 0.2695313,-0.417968 0.097656,-0.246094 0.097656,-0.546875 z" | |||||
style="font-size:8px" | |||||
id="path983" /> | |||||
<path | |||||
d="m 13.534768,18.776527 q 0,0.261719 -0.06641,0.472657 -0.06641,0.207031 -0.175781,0.367187 -0.109375,0.15625 -0.253906,0.269531 -0.144532,0.109375 -0.304688,0.179688 -0.15625,0.07031 -0.316406,0.105469 -0.160156,0.03125 -0.304688,0.03125 h -1.832031 v -1.015625 h 1.832031 q 0.203125,0 0.304688,-0.105469 0.101562,-0.105469 0.101562,-0.304688 V 17.40934 q 0,-0.210938 -0.105468,-0.3125 -0.101563,-0.101563 -0.300782,-0.101563 h -1.824218 q -0.207032,0 -0.3125004,0.105469 -0.1054688,0.101563 -0.1054688,0.300781 v 4.121094 h -1.015625 v -4.121094 q 0,-0.261718 0.066406,-0.46875 0.066406,-0.207031 0.1757812,-0.363281 0.1132813,-0.160156 0.2578125,-0.269531 0.1445313,-0.113281 0.3007813,-0.183594 0.1601562,-0.07031 0.3203125,-0.101562 0.1640624,-0.03516 0.3046874,-0.03516 h 1.832031 q 0.261719,0 0.46875,0.06641 0.207032,0.06641 0.363282,0.175781 0.160156,0.109375 0.269531,0.253906 0.113281,0.144531 0.183594,0.304688 0.07031,0.15625 0.101562,0.316406 0.03516,0.160156 0.03516,0.304687 z" | |||||
style="font-size:8px" | |||||
id="path985" /> | |||||
<path | |||||
d="m 18.952737,17.37809 q 0,0.210937 -0.07422,0.457031 -0.07422,0.242188 -0.242187,0.453125 -0.164063,0.207031 -0.433594,0.347656 -0.265625,0.140625 -0.648437,0.140625 H 15.722268 V 17.811684 H 17.5543 q 0.207031,0 0.320312,-0.125 0.113281,-0.128907 0.113281,-0.316407 0,-0.199218 -0.128906,-0.3125 -0.125,-0.113281 -0.304687,-0.113281 h -1.832032 q -0.207031,0 -0.320312,0.128906 -0.113281,0.125 -0.113281,0.3125 v 1.417969 q 0,0.203125 0.125,0.316406 0.128906,0.113282 0.316406,0.113282 H 17.5543 v 0.96875 h -1.832032 q -0.210937,0 -0.457031,-0.07422 -0.242187,-0.07422 -0.453125,-0.238281 -0.207031,-0.167969 -0.347656,-0.433594 -0.140625,-0.269531 -0.140625,-0.652344 V 17.37809 q 0,-0.210938 0.07422,-0.453125 0.07422,-0.246094 0.238281,-0.453125 0.167969,-0.210938 0.433594,-0.351563 0.269531,-0.140625 0.652343,-0.140625 H 17.5543 q 0.210937,0 0.453125,0.07422 0.246093,0.07422 0.453125,0.242188 0.210937,0.164062 0.351562,0.433593 0.140625,0.265625 0.140625,0.648438 z" | |||||
style="font-size:8px" | |||||
id="path987" /> | |||||
<path | |||||
d="m 24.323831,20.202309 h -1.015625 v -2.34375 q 0,-0.199219 -0.07031,-0.355469 -0.06641,-0.160156 -0.183593,-0.273438 -0.117188,-0.113281 -0.277344,-0.171875 -0.15625,-0.0625 -0.339844,-0.0625 h -1.777344 v 3.207032 h -1.015625 v -3.71875 q 0,-0.105469 0.03906,-0.195313 0.03906,-0.09375 0.109375,-0.160156 0.07031,-0.07031 0.164062,-0.109375 0.09375,-0.03906 0.199219,-0.03906 h 2.289063 q 0.191406,0 0.402343,0.04297 0.214844,0.04297 0.421875,0.140625 0.210938,0.09375 0.398438,0.242188 0.191406,0.144531 0.335937,0.355468 0.148438,0.207032 0.234375,0.480469 0.08594,0.273438 0.08594,0.617188 z" | |||||
style="font-size:8px" | |||||
id="path989" /> | |||||
<path | |||||
d="m 28.862893,17.858559 h -3.664062 v -0.914063 h 3.664062 z" | |||||
style="font-size:8px" | |||||
id="path991" /> | |||||
<path | |||||
d="m 30.937112,16.889809 h 3.566406 v -2.289063 h 1.015625 v 5.601563 h -1.015625 v -2.289063 h -3.566406 v 2.289063 h -1.015625 v -5.601563 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path993" /> | |||||
<path | |||||
d="m 37.733987,16.889809 h 3.566406 v -2.289063 h 1.015625 v 5.601563 h -1.015625 v -2.289063 h -3.566406 v 2.289063 h -1.015625 v -5.601563 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path995" /> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,291 @@ | |||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||||
<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" | |||||
id="SvgjsSvg1006" | |||||
width="45" | |||||
height="380" | |||||
version="1.1" | |||||
sodipodi:docname="Snare.svg" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||||
<metadata | |||||
id="metadata7215"> | |||||
<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> | |||||
<sodipodi:namedview | |||||
pagecolor="#ffffff" | |||||
bordercolor="#666666" | |||||
borderopacity="1" | |||||
objecttolerance="10" | |||||
gridtolerance="10" | |||||
guidetolerance="10" | |||||
inkscape:pageopacity="0" | |||||
inkscape:pageshadow="2" | |||||
inkscape:window-width="901" | |||||
inkscape:window-height="1006" | |||||
id="namedview7213" | |||||
showgrid="false" | |||||
inkscape:pagecheckerboard="true" | |||||
inkscape:zoom="2.0011122" | |||||
inkscape:cx="-4.074128" | |||||
inkscape:cy="266.34341" | |||||
inkscape:window-x="663" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
inkscape:current-layer="SvgjsSvg1006" /> | |||||
<defs | |||||
id="SvgjsDefs1007" /> | |||||
<path | |||||
style="fill:#f0f0f0;fill-opacity:1" | |||||
d="M 0,0 H 45 V 380 H 0 Z" | |||||
id="SvgjsRect1008" /> | |||||
<path | |||||
style="fill:#d7ab10;fill-opacity:1" | |||||
d="M 7,33 H 38 V 186 H 7 Z" | |||||
id="SvgjsRect1009" /> | |||||
<g | |||||
aria-label="DK" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text980"> | |||||
<path | |||||
d="m 20.520292,358.76279 q 0,1.36458 -0.479166,2.51041 -0.46875,1.14584 -1.302084,1.97917 -0.833333,0.82292 -1.979166,1.29167 -1.145834,0.46875 -2.489584,0.46875 H 6.9577921 q -0.2916667,0 -0.5416667,-0.10417 -0.25,-0.10417 -0.4375,-0.28125 -0.1770834,-0.1875 -0.2812501,-0.4375 -0.1041666,-0.25 -0.1041666,-0.54167 v -12.20833 q 0,-0.28125 0.1041666,-0.53125 0.1041667,-0.25 0.2812501,-0.4375 0.1875,-0.1875 0.4375,-0.29167 0.25,-0.10416 0.5416667,-0.10416 h 7.3124999 q 1.34375,0 2.489584,0.46875 1.145833,0.46875 1.979166,1.30208 0.833334,0.82292 1.302084,1.97917 0.479166,1.14583 0.479166,2.5 z m -2.708333,-2.4375 q 0,-0.79167 -0.260417,-1.44792 -0.25,-0.65625 -0.71875,-1.11458 -0.46875,-0.46875 -1.125,-0.71875 -0.645833,-0.26042 -1.4375,-0.26042 H 8.3015421 v 9.52083 h 5.9687499 q 0.791667,0 1.4375,-0.25 0.65625,-0.26041 1.125,-0.71875 0.46875,-0.46875 0.71875,-1.11458 0.260417,-0.65625 0.260417,-1.45833 z" | |||||
style="font-size:21.33333397px" | |||||
id="path1038" /> | |||||
<path | |||||
d="m 38.853626,365.01279 h -3.84375 l -6.09375,-6.10417 h -1.90625 v -2.72917 h 1.90625 l 6.09375,-6.10416 h 3.84375 l -7.677083,7.46875 z m -12.927083,0 h -2.708334 v -14.9375 h 2.708334 z" | |||||
style="font-size:21.33333397px" | |||||
id="path1040" /> | |||||
</g> | |||||
<g | |||||
aria-label="trigger" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text984"> | |||||
<path | |||||
d="M 10.850587,74.46331 H 9.0771494 v 3.207031 H 8.0498056 V 74.46331 H 6.7294931 v -1.015625 h 1.3203125 v -1.378906 h 1.0273438 v 1.378906 h 1.7734376 z" | |||||
style="font-size:8px" | |||||
id="path1043" /> | |||||
<path | |||||
d="m 15.206056,74.46331 h -2.285157 q -0.207031,0 -0.3125,0.105469 -0.105468,0.101562 -0.105468,0.300781 v 2.800781 H 11.487306 V 74.86956 q 0,-0.261719 0.06641,-0.46875 0.06641,-0.207031 0.175781,-0.363281 0.113281,-0.160156 0.257813,-0.269531 0.144531,-0.113282 0.300781,-0.183594 0.160156,-0.07031 0.320312,-0.101563 0.164063,-0.03516 0.304688,-0.03516 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1045" /> | |||||
<path | |||||
d="m 16.901368,72.580498 h -1.015625 v -0.917969 h 1.015625 z m 0,5.089843 h -1.015625 v -4.222656 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1047" /> | |||||
<path | |||||
d="m 22.463868,78.076591 q 0,0.261719 -0.06641,0.46875 -0.06641,0.210938 -0.175781,0.367188 -0.109375,0.160156 -0.253907,0.269531 -0.144531,0.113281 -0.304687,0.183594 -0.15625,0.07031 -0.320313,0.101562 -0.160156,0.03516 -0.304687,0.03516 h -1.832031 v -1.015625 h 1.832031 q 0.207031,0 0.308594,-0.105469 0.101562,-0.105469 0.101562,-0.304688 V 74.86956 q 0,-0.199219 -0.101562,-0.300781 -0.101563,-0.105469 -0.308594,-0.105469 h -1.832031 q -0.1875,0 -0.296875,0.117188 -0.109375,0.113281 -0.109375,0.289062 v 1.375 q 0,0.199219 0.105468,0.304688 0.105469,0.105468 0.308594,0.105468 h 1.824219 v 1.015625 h -1.832031 q -0.144532,0 -0.304688,-0.03125 -0.160156,-0.03516 -0.320312,-0.105468 -0.15625,-0.07031 -0.300782,-0.179688 -0.144531,-0.113281 -0.253906,-0.269531 -0.109375,-0.160156 -0.175781,-0.367188 -0.06641,-0.210937 -0.06641,-0.472656 v -1.375 q 0,-0.144531 0.03125,-0.304687 0.03516,-0.160157 0.105468,-0.316407 0.07031,-0.160156 0.179688,-0.304687 0.113281,-0.144531 0.269531,-0.253906 0.160156,-0.109375 0.367188,-0.175782 0.207031,-0.06641 0.46875,-0.06641 h 1.832031 q 0.144531,0 0.304687,0.03516 0.164063,0.03125 0.320313,0.101563 0.160156,0.07031 0.304687,0.183594 0.144532,0.109375 0.253907,0.269531 0.109375,0.15625 0.175781,0.363281 0.06641,0.207031 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1049" /> | |||||
<path | |||||
d="m 27.995118,78.076591 q 0,0.261719 -0.06641,0.46875 -0.06641,0.210938 -0.175781,0.367188 -0.109375,0.160156 -0.253907,0.269531 -0.144531,0.113281 -0.304687,0.183594 -0.15625,0.07031 -0.320313,0.101562 -0.160156,0.03516 -0.304687,0.03516 h -1.832031 v -1.015625 h 1.832031 q 0.207031,0 0.308594,-0.105469 0.101562,-0.105469 0.101562,-0.304688 V 74.86956 q 0,-0.199219 -0.101562,-0.300781 -0.101563,-0.105469 -0.308594,-0.105469 h -1.832031 q -0.1875,0 -0.296875,0.117188 -0.109375,0.113281 -0.109375,0.289062 v 1.375 q 0,0.199219 0.105468,0.304688 0.105469,0.105468 0.308594,0.105468 h 1.824219 v 1.015625 h -1.832031 q -0.144532,0 -0.304688,-0.03125 -0.160156,-0.03516 -0.320312,-0.105468 -0.15625,-0.07031 -0.300782,-0.179688 -0.144531,-0.113281 -0.253906,-0.269531 -0.109375,-0.160156 -0.175781,-0.367188 -0.06641,-0.210937 -0.06641,-0.472656 v -1.375 q 0,-0.144531 0.03125,-0.304687 0.03516,-0.160157 0.105468,-0.316407 0.07031,-0.160156 0.179688,-0.304687 0.113281,-0.144531 0.269531,-0.253906 0.160156,-0.109375 0.367188,-0.175782 0.207031,-0.06641 0.46875,-0.06641 h 1.832031 q 0.144531,0 0.304687,0.03516 0.164063,0.03125 0.320313,0.101563 0.160156,0.07031 0.304687,0.183594 0.144532,0.109375 0.253907,0.269531 0.109375,0.15625 0.175781,0.363281 0.06641,0.207031 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1051" /> | |||||
<path | |||||
d="m 33.475587,74.846123 q 0,0.210937 -0.07422,0.457031 -0.07422,0.242187 -0.242187,0.453125 -0.164063,0.207031 -0.433594,0.347656 -0.265625,0.140625 -0.648438,0.140625 h -1.832031 v -0.964844 h 1.832031 q 0.207032,0 0.320313,-0.125 0.113281,-0.128906 0.113281,-0.316406 0,-0.199219 -0.128906,-0.3125 -0.125,-0.113281 -0.304688,-0.113281 h -1.832031 q -0.207031,0 -0.320312,0.128906 -0.113282,0.125 -0.113282,0.3125 v 1.417969 q 0,0.203125 0.125,0.316406 0.128907,0.113281 0.316407,0.113281 h 1.824218 v 0.96875 h -1.832031 q -0.210937,0 -0.457031,-0.07422 -0.242188,-0.07422 -0.453125,-0.238282 -0.207031,-0.167968 -0.347656,-0.433593 -0.140625,-0.269532 -0.140625,-0.652344 v -1.425781 q 0,-0.210938 0.07422,-0.453125 0.07422,-0.246094 0.238282,-0.453125 0.167968,-0.210938 0.433593,-0.351563 0.269532,-0.140625 0.652344,-0.140625 h 1.832031 q 0.210938,0 0.453125,0.07422 0.246094,0.07422 0.453125,0.242187 0.210938,0.164063 0.351563,0.433594 0.140625,0.265625 0.140625,0.648438 z" | |||||
style="font-size:8px" | |||||
id="path1053" /> | |||||
<path | |||||
d="m 37.862306,74.46331 h -2.285157 q -0.207031,0 -0.3125,0.105469 -0.105468,0.101562 -0.105468,0.300781 v 2.800781 H 34.143556 V 74.86956 q 0,-0.261719 0.06641,-0.46875 0.06641,-0.207031 0.175781,-0.363281 0.113281,-0.160156 0.257813,-0.269531 0.144531,-0.113282 0.300781,-0.183594 0.160156,-0.07031 0.320312,-0.101563 0.164063,-0.03516 0.304688,-0.03516 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1055" /> | |||||
</g> | |||||
<g | |||||
aria-label="select" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text988"> | |||||
<path | |||||
d="m 13.335968,126.96858 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175781,0.36719 -0.109375,0.15625 -0.253907,0.26953 -0.144531,0.10937 -0.304687,0.17968 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 9.1601868 v -1.01562 h 2.7421872 q 0.207032,0 0.3125,-0.10547 0.105469,-0.10547 0.105469,-0.30469 -0.01953,-0.40625 -0.410156,-0.40625 h -1.574219 q -0.335937,0 -0.5703125,-0.11719 -0.234375,-0.11718 -0.3828125,-0.29296 -0.1445312,-0.17579 -0.2109375,-0.37891 -0.0625,-0.20313 -0.0625,-0.37891 0,-0.33984 0.1210938,-0.57031 0.1210937,-0.23437 0.3046875,-0.37891 0.1835937,-0.14453 0.3984375,-0.20703 0.2148437,-0.0664 0.4023437,-0.0664 h 2.496094 v 1.01562 h -2.488281 q -0.07813,0 -0.125,0.0195 -0.04297,0.0156 -0.06641,0.0469 -0.01953,0.0273 -0.02344,0.0625 -0.0039,0.0312 -0.0039,0.0625 0.0039,0.0625 0.02344,0.0977 0.01953,0.0352 0.04687,0.0508 0.03125,0.0156 0.06641,0.0195 0.03906,0 0.07422,0 h 1.574219 q 0.390625,0 0.664062,0.14062 0.273438,0.14063 0.441407,0.35547 0.167968,0.21094 0.242187,0.46094 0.07813,0.25 0.07813,0.46484 z" | |||||
style="font-size:8px" | |||||
id="path1058" /> | |||||
<path | |||||
d="m 18.593781,125.57014 q 0,0.21094 -0.07422,0.45704 -0.07422,0.24218 -0.242188,0.45312 -0.164062,0.20703 -0.433593,0.34766 -0.265625,0.14062 -0.648438,0.14062 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320313,-0.125 0.113281,-0.12891 0.113281,-0.31641 0,-0.19922 -0.128906,-0.3125 -0.125,-0.11328 -0.304688,-0.11328 h -1.832031 q -0.207031,0 -0.320313,0.12891 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20312 0.125,0.3164 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457031,-0.0742 -0.242188,-0.0742 -0.453125,-0.23828 -0.207032,-0.16797 -0.347657,-0.43359 -0.140625,-0.26953 -0.140625,-0.65234 v -1.42579 q 0,-0.21093 0.07422,-0.45312 0.07422,-0.24609 0.238281,-0.45313 0.167969,-0.21093 0.433594,-0.35156 0.269531,-0.14062 0.652344,-0.14062 h 1.832031 q 0.210938,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24218 0.210938,0.16407 0.351563,0.4336 0.140625,0.26562 0.140625,0.64843 z" | |||||
style="font-size:8px" | |||||
id="path1060" /> | |||||
<path | |||||
d="m 21.140656,128.39436 h -0.453125 q -0.21875,0 -0.46875,-0.0742 -0.246094,-0.0742 -0.460938,-0.24218 -0.214844,-0.17188 -0.355469,-0.44141 -0.140625,-0.27344 -0.140625,-0.66797 v -4.58203 h 1.015625 v 4.58203 q 0,0.1875 0.117188,0.30078 0.117187,0.10938 0.292969,0.10938 h 0.453125 z" | |||||
style="font-size:8px" | |||||
id="path1062" /> | |||||
<path | |||||
d="m 26.343781,125.57014 q 0,0.21094 -0.07422,0.45704 -0.07422,0.24218 -0.242188,0.45312 -0.164062,0.20703 -0.433593,0.34766 -0.265625,0.14062 -0.648438,0.14062 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320313,-0.125 0.113281,-0.12891 0.113281,-0.31641 0,-0.19922 -0.128906,-0.3125 -0.125,-0.11328 -0.304688,-0.11328 h -1.832031 q -0.207031,0 -0.320313,0.12891 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20312 0.125,0.3164 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457031,-0.0742 -0.242188,-0.0742 -0.453125,-0.23828 -0.207032,-0.16797 -0.347657,-0.43359 -0.140625,-0.26953 -0.140625,-0.65234 v -1.42579 q 0,-0.21093 0.07422,-0.45312 0.07422,-0.24609 0.238281,-0.45313 0.167969,-0.21093 0.433594,-0.35156 0.269531,-0.14062 0.652344,-0.14062 h 1.832031 q 0.210938,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24218 0.210938,0.16407 0.351563,0.4336 0.140625,0.26562 0.140625,0.64843 z" | |||||
style="font-size:8px" | |||||
id="path1064" /> | |||||
<path | |||||
d="m 31.125031,128.39436 h -2.753907 q -0.210937,0 -0.460937,-0.0742 -0.25,-0.0742 -0.464844,-0.24218 -0.210937,-0.17188 -0.355469,-0.44141 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179688,-0.30469 0.113281,-0.14453 0.269531,-0.25391 0.160156,-0.10937 0.367187,-0.17578 0.207032,-0.0664 0.46875,-0.0664 h 2.753907 v 1.01562 h -2.753907 q -0.199218,0 -0.304687,0.10156 -0.101563,0.10157 -0.101563,0.3125 v 1.36719 q 0,0.19922 0.105469,0.30469 0.105469,0.10547 0.308594,0.10547 h 2.746094 z" | |||||
style="font-size:8px" | |||||
id="path1066" /> | |||||
<path | |||||
d="m 35.812531,125.18733 h -1.773438 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01562 h 1.320312 v -1.37891 h 1.027344 v 1.37891 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1068" /> | |||||
</g> | |||||
<g | |||||
aria-label="output" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text992"> | |||||
<path | |||||
d="m 11.844351,179.93802 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175782,0.36718 -0.109375,0.15625 -0.253906,0.26953 -0.144531,0.10938 -0.304687,0.17969 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 8.5865383 q -0.2109375,0 -0.4609375,-0.0742 -0.25,-0.0742 -0.4648437,-0.24219 -0.2109375,-0.17187 -0.3554688,-0.4414 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.39063 0.140625,-0.66016 0.1445313,-0.27343 0.3554688,-0.4414 0.2148437,-0.17188 0.4648437,-0.2461 0.25,-0.0742 0.4609375,-0.0742 H 10.41857 q 0.390625,0 0.664062,0.14063 0.273438,0.14062 0.441406,0.35547 0.167969,0.21094 0.242188,0.46094 0.07813,0.25 0.07813,0.46484 z m -1.015625,-1.36719 q 0,-0.21094 -0.105469,-0.3125 -0.105469,-0.10156 -0.304687,-0.10156 H 8.5943508 q -0.203125,0 -0.3085937,0.10547 -0.1054688,0.10156 -0.1054688,0.30078 v 1.375 q 0,0.19922 0.1054688,0.30469 0.1054687,0.10547 0.3085937,0.10547 H 10.41857 q 0.207031,0 0.308593,-0.10547 0.101563,-0.10547 0.101563,-0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1071" /> | |||||
<path | |||||
d="m 17.320913,180.85208 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402344,-0.043 -0.210937,-0.043 -0.417968,-0.13672 -0.207032,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335938,-0.35547 -0.144531,-0.21094 -0.234375,-0.48438 -0.08594,-0.27344 -0.08594,-0.61719 v -2.34375 h 1.015625 v 2.34375 q 0,0.19922 0.06641,0.35938 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777343 v -3.20704 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1073" /> | |||||
<path | |||||
d="m 22.121695,178.15677 h -1.773438 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01563 h 1.320312 v -1.3789 h 1.027344 v 1.3789 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1075" /> | |||||
<path | |||||
d="m 27.438101,179.93802 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175782,0.36718 -0.109375,0.15625 -0.253906,0.26953 -0.144531,0.10938 -0.304687,0.17969 -0.15625,0.0703 -0.316407,0.10547 -0.160156,0.0312 -0.304687,0.0312 h -1.832031 v -1.01562 h 1.832031 q 0.203125,0 0.304687,-0.10547 0.101563,-0.10547 0.101563,-0.30469 v -1.36719 q 0,-0.21094 -0.105469,-0.3125 -0.101562,-0.10156 -0.300781,-0.10156 h -1.824219 q -0.207031,0 -0.3125,0.10547 -0.105469,0.10156 -0.105469,0.30078 v 4.12109 h -1.015625 v -4.12109 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113281,-0.16016 0.257812,-0.26953 0.144532,-0.11328 0.300782,-0.1836 0.160156,-0.0703 0.320312,-0.10156 0.164063,-0.0352 0.304688,-0.0352 h 1.832031 q 0.261719,0 0.46875,0.0664 0.207031,0.0664 0.363281,0.17578 0.160156,0.10938 0.269531,0.25391 0.113282,0.14453 0.183594,0.30469 0.07031,0.15625 0.101563,0.3164 0.03516,0.16016 0.03516,0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1077" /> | |||||
<path | |||||
d="m 32.930288,180.85208 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402344,-0.043 -0.210937,-0.043 -0.417968,-0.13672 -0.207032,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335938,-0.35547 -0.144531,-0.21094 -0.234375,-0.48438 -0.08594,-0.27344 -0.08594,-0.61719 v -2.34375 h 1.015625 v 2.34375 q 0,0.19922 0.06641,0.35938 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777343 v -3.20704 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1079" /> | |||||
<path | |||||
d="m 37.73107,178.15677 h -1.773438 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01563 h 1.320312 v -1.3789 h 1.027344 v 1.3789 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1081" /> | |||||
</g> | |||||
<path | |||||
style="fill:#d0ab10;fill-opacity:1" | |||||
d="M 7.1530623,191.86212 H 38.153062 v 153 H 7.1530623 Z" | |||||
id="SvgjsRect1009-7" /> | |||||
<g | |||||
aria-label="trigger" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text984-9"> | |||||
<path | |||||
d="M 11.003649,233.32544 H 9.2302117 v 3.20703 H 8.202868 v -3.20703 H 6.8825555 v -1.01563 H 8.202868 v -1.3789 h 1.0273437 v 1.3789 h 1.7734373 z" | |||||
style="font-size:8px" | |||||
id="path1085" /> | |||||
<path | |||||
d="m 15.359118,233.32544 h -2.285156 q -0.207032,0 -0.3125,0.10547 -0.105469,0.10156 -0.105469,0.30078 v 2.80078 h -1.015625 v -2.80078 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113282,-0.16016 0.257813,-0.26953 0.144531,-0.11328 0.300781,-0.1836 0.160156,-0.0703 0.320313,-0.10156 0.164062,-0.0352 0.304687,-0.0352 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1087" /> | |||||
<path | |||||
d="m 17.05443,231.44263 h -1.015625 v -0.91797 h 1.015625 z m 0,5.08984 h -1.015625 v -4.22266 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1089" /> | |||||
<path | |||||
d="m 22.61693,236.93872 q 0,0.26172 -0.06641,0.46875 -0.06641,0.21094 -0.175781,0.36719 -0.109375,0.16015 -0.253906,0.26953 -0.144532,0.11328 -0.304688,0.18359 -0.15625,0.0703 -0.320312,0.10157 -0.160157,0.0351 -0.304688,0.0351 h -1.832031 v -1.01562 h 1.832031 q 0.207031,0 0.308594,-0.10547 0.101562,-0.10547 0.101562,-0.30469 v -3.20703 q 0,-0.19922 -0.101562,-0.30078 -0.101563,-0.10547 -0.308594,-0.10547 h -1.832031 q -0.1875,0 -0.296875,0.11719 -0.109375,0.11328 -0.109375,0.28906 v 1.375 q 0,0.19922 0.105469,0.30469 0.105468,0.10547 0.308593,0.10547 h 1.824219 v 1.01562 h -1.832031 q -0.144531,0 -0.304688,-0.0312 -0.160156,-0.0352 -0.320312,-0.10547 -0.15625,-0.0703 -0.300781,-0.17969 -0.144532,-0.11328 -0.253907,-0.26953 -0.109375,-0.16015 -0.175781,-0.36718 -0.06641,-0.21094 -0.06641,-0.47266 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179687,-0.30469 0.113281,-0.14453 0.269531,-0.25391 0.160157,-0.10937 0.367188,-0.17578 0.207031,-0.0664 0.46875,-0.0664 h 1.832031 q 0.144531,0 0.304688,0.0352 0.164062,0.0312 0.320312,0.10156 0.160156,0.0703 0.304688,0.1836 0.144531,0.10937 0.253906,0.26953 0.109375,0.15625 0.175781,0.36328 0.06641,0.20703 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1091" /> | |||||
<path | |||||
d="m 28.14818,236.93872 q 0,0.26172 -0.06641,0.46875 -0.06641,0.21094 -0.175781,0.36719 -0.109375,0.16015 -0.253906,0.26953 -0.144532,0.11328 -0.304688,0.18359 -0.15625,0.0703 -0.320312,0.10157 -0.160157,0.0351 -0.304688,0.0351 h -1.832031 v -1.01562 h 1.832031 q 0.207031,0 0.308594,-0.10547 0.101562,-0.10547 0.101562,-0.30469 v -3.20703 q 0,-0.19922 -0.101562,-0.30078 -0.101563,-0.10547 -0.308594,-0.10547 h -1.832031 q -0.1875,0 -0.296875,0.11719 -0.109375,0.11328 -0.109375,0.28906 v 1.375 q 0,0.19922 0.105469,0.30469 0.105468,0.10547 0.308593,0.10547 h 1.824219 v 1.01562 h -1.832031 q -0.144531,0 -0.304688,-0.0312 -0.160156,-0.0352 -0.320312,-0.10547 -0.15625,-0.0703 -0.300781,-0.17969 -0.144532,-0.11328 -0.253907,-0.26953 -0.109375,-0.16015 -0.175781,-0.36718 -0.06641,-0.21094 -0.06641,-0.47266 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179687,-0.30469 0.113281,-0.14453 0.269531,-0.25391 0.160157,-0.10937 0.367188,-0.17578 0.207031,-0.0664 0.46875,-0.0664 h 1.832031 q 0.144531,0 0.304688,0.0352 0.164062,0.0312 0.320312,0.10156 0.160156,0.0703 0.304688,0.1836 0.144531,0.10937 0.253906,0.26953 0.109375,0.15625 0.175781,0.36328 0.06641,0.20703 0.06641,0.46875 z" | |||||
style="font-size:8px" | |||||
id="path1093" /> | |||||
<path | |||||
d="m 33.628649,233.70825 q 0,0.21094 -0.07422,0.45703 -0.07422,0.24219 -0.242187,0.45313 -0.164063,0.20703 -0.433594,0.34765 -0.265625,0.14063 -0.648437,0.14063 H 30.39818 v -0.96484 h 1.832032 q 0.207031,0 0.320312,-0.125 0.113281,-0.12891 0.113281,-0.31641 0,-0.19922 -0.128906,-0.3125 -0.125,-0.11328 -0.304687,-0.11328 H 30.39818 q -0.207031,0 -0.320312,0.1289 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20313 0.125,0.31641 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 H 30.39818 q -0.210937,0 -0.457031,-0.0742 -0.242187,-0.0742 -0.453125,-0.23828 -0.207031,-0.16797 -0.347656,-0.43359 -0.140625,-0.26953 -0.140625,-0.65235 v -1.42578 q 0,-0.21094 0.07422,-0.45312 0.07422,-0.2461 0.238281,-0.45313 0.167969,-0.21094 0.433594,-0.35156 0.269531,-0.14063 0.652343,-0.14063 h 1.832032 q 0.210937,0 0.453125,0.0742 0.246093,0.0742 0.453125,0.24219 0.210937,0.16406 0.351562,0.43359 0.140625,0.26563 0.140625,0.64844 z" | |||||
style="font-size:8px" | |||||
id="path1095" /> | |||||
<path | |||||
d="m 38.015368,233.32544 h -2.285156 q -0.207032,0 -0.3125,0.10547 -0.105469,0.10156 -0.105469,0.30078 v 2.80078 h -1.015625 v -2.80078 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113282,-0.16016 0.257813,-0.26953 0.144531,-0.11328 0.300781,-0.1836 0.160156,-0.0703 0.320313,-0.10156 0.164062,-0.0352 0.304687,-0.0352 h 2.292969 z" | |||||
style="font-size:8px" | |||||
id="path1097" /> | |||||
</g> | |||||
<g | |||||
aria-label="select" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text988-8"> | |||||
<path | |||||
d="m 13.48903,285.83072 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175782,0.36718 -0.109375,0.15625 -0.253906,0.26953 -0.144531,0.10938 -0.304687,0.17969 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 9.3132486 v -1.01562 h 2.7421874 q 0.207031,0 0.3125,-0.10547 0.105469,-0.10547 0.105469,-0.30469 -0.01953,-0.40625 -0.410156,-0.40625 H 10.48903 q -0.335938,0 -0.5703126,-0.11719 -0.234375,-0.11719 -0.3828125,-0.29297 -0.1445313,-0.17578 -0.2109375,-0.3789 -0.0625,-0.20313 -0.0625,-0.37891 0,-0.33984 0.1210937,-0.57031 0.1210938,-0.23438 0.3046875,-0.37891 0.1835938,-0.14453 0.3984374,-0.20703 0.214844,-0.0664 0.402344,-0.0664 h 2.496094 v 1.01563 h -2.488282 q -0.07813,0 -0.125,0.0195 -0.04297,0.0156 -0.06641,0.0469 -0.01953,0.0273 -0.02344,0.0625 -0.0039,0.0312 -0.0039,0.0625 0.0039,0.0625 0.02344,0.0976 0.01953,0.0352 0.04687,0.0508 0.03125,0.0156 0.06641,0.0195 0.03906,0 0.07422,0 h 1.574219 q 0.390625,0 0.664062,0.14063 0.273438,0.14062 0.441406,0.35547 0.167969,0.21094 0.242188,0.46094 0.07813,0.25 0.07813,0.46484 z" | |||||
style="font-size:8px" | |||||
id="path1100" /> | |||||
<path | |||||
d="m 18.746842,284.43228 q 0,0.21094 -0.07422,0.45703 -0.07422,0.24219 -0.242188,0.45313 -0.164062,0.20703 -0.433594,0.34765 -0.265625,0.14063 -0.648437,0.14063 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320312,-0.125 0.113282,-0.12891 0.113282,-0.31641 0,-0.19922 -0.128907,-0.3125 -0.125,-0.11328 -0.304687,-0.11328 h -1.832031 q -0.207032,0 -0.320313,0.1289 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20313 0.125,0.31641 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457032,-0.0742 -0.242187,-0.0742 -0.453125,-0.23828 -0.207031,-0.16797 -0.347656,-0.43359 -0.140625,-0.26953 -0.140625,-0.65235 v -1.42578 q 0,-0.21094 0.07422,-0.45312 0.07422,-0.2461 0.238281,-0.45313 0.167969,-0.21094 0.433594,-0.35156 0.269531,-0.14063 0.652344,-0.14063 h 1.832031 q 0.210937,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24219 0.210937,0.16406 0.351562,0.43359 0.140625,0.26563 0.140625,0.64844 z" | |||||
style="font-size:8px" | |||||
id="path1102" /> | |||||
<path | |||||
d="m 21.293717,287.2565 h -0.453125 q -0.21875,0 -0.46875,-0.0742 -0.246093,-0.0742 -0.460937,-0.24219 -0.214844,-0.17187 -0.355469,-0.4414 -0.140625,-0.27344 -0.140625,-0.66797 v -4.58203 h 1.015625 v 4.58203 q 0,0.1875 0.117188,0.30078 0.117187,0.10938 0.292968,0.10938 h 0.453125 z" | |||||
style="font-size:8px" | |||||
id="path1104" /> | |||||
<path | |||||
d="m 26.496842,284.43228 q 0,0.21094 -0.07422,0.45703 -0.07422,0.24219 -0.242188,0.45313 -0.164062,0.20703 -0.433594,0.34765 -0.265625,0.14063 -0.648437,0.14063 h -1.832031 v -0.96484 h 1.832031 q 0.207031,0 0.320312,-0.125 0.113282,-0.12891 0.113282,-0.31641 0,-0.19922 -0.128907,-0.3125 -0.125,-0.11328 -0.304687,-0.11328 h -1.832031 q -0.207032,0 -0.320313,0.1289 -0.113281,0.125 -0.113281,0.3125 v 1.41797 q 0,0.20313 0.125,0.31641 0.128906,0.11328 0.316406,0.11328 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457032,-0.0742 -0.242187,-0.0742 -0.453125,-0.23828 -0.207031,-0.16797 -0.347656,-0.43359 -0.140625,-0.26953 -0.140625,-0.65235 v -1.42578 q 0,-0.21094 0.07422,-0.45312 0.07422,-0.2461 0.238281,-0.45313 0.167969,-0.21094 0.433594,-0.35156 0.269531,-0.14063 0.652344,-0.14063 h 1.832031 q 0.210937,0 0.453125,0.0742 0.246094,0.0742 0.453125,0.24219 0.210937,0.16406 0.351562,0.43359 0.140625,0.26563 0.140625,0.64844 z" | |||||
style="font-size:8px" | |||||
id="path1106" /> | |||||
<path | |||||
d="m 31.278092,287.2565 h -2.753906 q -0.210937,0 -0.460937,-0.0742 -0.25,-0.0742 -0.464844,-0.24219 -0.210938,-0.17187 -0.355469,-0.4414 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.14453 0.03125,-0.30469 0.03516,-0.16015 0.105469,-0.3164 0.07031,-0.16016 0.179687,-0.30469 0.113282,-0.14453 0.269532,-0.25391 0.160156,-0.10937 0.367187,-0.17578 0.207031,-0.0664 0.46875,-0.0664 h 2.753906 v 1.01563 h -2.753906 q -0.199219,0 -0.304687,0.10156 -0.101563,0.10156 -0.101563,0.3125 v 1.36719 q 0,0.19922 0.105469,0.30469 0.105469,0.10547 0.308594,0.10547 h 2.746093 z" | |||||
style="font-size:8px" | |||||
id="path1108" /> | |||||
<path | |||||
d="m 35.965592,284.04947 h -1.773437 v 3.20703 h -1.027344 v -3.20703 h -1.320312 v -1.01563 h 1.320312 v -1.3789 h 1.027344 v 1.3789 h 1.773437 z" | |||||
style="font-size:8px" | |||||
id="path1110" /> | |||||
</g> | |||||
<g | |||||
aria-label="output" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text992-2"> | |||||
<path | |||||
d="m 11.467377,338.80017 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175781,0.36718 -0.109375,0.15625 -0.253907,0.26954 -0.144531,0.10937 -0.304687,0.17968 -0.15625,0.0703 -0.320313,0.10547 -0.160156,0.0312 -0.304687,0.0312 H 8.2095647 q -0.2109375,0 -0.4609375,-0.0742 -0.25,-0.0742 -0.4648438,-0.24218 -0.2109375,-0.17188 -0.3554687,-0.44141 -0.140625,-0.27344 -0.140625,-0.66797 v -1.375 q 0,-0.39062 0.140625,-0.66016 0.1445312,-0.27343 0.3554687,-0.4414 0.2148438,-0.17188 0.4648438,-0.2461 0.25,-0.0742 0.4609375,-0.0742 h 1.8320313 q 0.390625,0 0.664062,0.14062 0.273438,0.14063 0.441407,0.35547 0.167968,0.21094 0.242187,0.46094 0.07813,0.25 0.07813,0.46484 z m -1.015625,-1.36719 q 0,-0.21093 -0.105469,-0.3125 -0.105468,-0.10156 -0.304687,-0.10156 H 8.2173772 q -0.203125,0 -0.3085938,0.10547 -0.1054687,0.10156 -0.1054687,0.30078 v 1.375 q 0,0.19922 0.1054687,0.30469 0.1054688,0.10547 0.3085938,0.10547 h 1.8242188 q 0.207031,0 0.308594,-0.10547 0.101562,-0.10547 0.101562,-0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1113" /> | |||||
<path | |||||
d="m 16.94394,339.71423 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402343,-0.043 -0.210938,-0.043 -0.417969,-0.13672 -0.207031,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335937,-0.35547 -0.144532,-0.21094 -0.234375,-0.48438 -0.08594,-0.27343 -0.08594,-0.61718 v -2.34375 h 1.015625 v 2.34375 q 0,0.19921 0.06641,0.35937 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777344 v -3.20703 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1115" /> | |||||
<path | |||||
d="m 21.744721,337.01892 h -1.773438 v 3.20703 H 18.94394 v -3.20703 h -1.320313 v -1.01562 h 1.320313 v -1.37891 h 1.027343 v 1.37891 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1117" /> | |||||
<path | |||||
d="m 27.061127,338.80017 q 0,0.26172 -0.06641,0.47266 -0.06641,0.20703 -0.175781,0.36718 -0.109375,0.15625 -0.253907,0.26954 -0.144531,0.10937 -0.304687,0.17968 -0.15625,0.0703 -0.316406,0.10547 -0.160157,0.0312 -0.304688,0.0312 h -1.832031 v -1.01562 h 1.832031 q 0.203125,0 0.304688,-0.10547 0.101562,-0.10547 0.101562,-0.30469 v -1.36719 q 0,-0.21093 -0.105469,-0.3125 -0.101562,-0.10156 -0.300781,-0.10156 h -1.824219 q -0.207031,0 -0.3125,0.10547 -0.105468,0.10156 -0.105468,0.30078 v 4.12109 H 22.38144 v -4.12109 q 0,-0.26172 0.06641,-0.46875 0.06641,-0.20703 0.175781,-0.36328 0.113281,-0.16016 0.257813,-0.26953 0.144531,-0.11328 0.300781,-0.1836 0.160156,-0.0703 0.320312,-0.10156 0.164063,-0.0351 0.304688,-0.0351 h 1.832031 q 0.261719,0 0.46875,0.0664 0.207031,0.0664 0.363281,0.17578 0.160157,0.10938 0.269532,0.25391 0.113281,0.14453 0.183593,0.30469 0.07031,0.15625 0.101563,0.3164 0.03516,0.16016 0.03516,0.30469 z" | |||||
style="font-size:8px" | |||||
id="path1119" /> | |||||
<path | |||||
d="m 32.553315,339.71423 q 0,0.10938 -0.03906,0.20313 -0.03906,0.0937 -0.109375,0.16406 -0.06641,0.0664 -0.160156,0.10547 -0.08984,0.0391 -0.195313,0.0391 h -2.296875 q -0.1875,0 -0.402343,-0.043 -0.210938,-0.043 -0.417969,-0.13672 -0.207031,-0.0977 -0.402344,-0.24218 -0.191406,-0.14844 -0.335937,-0.35547 -0.144532,-0.21094 -0.234375,-0.48438 -0.08594,-0.27343 -0.08594,-0.61718 v -2.34375 h 1.015625 v 2.34375 q 0,0.19921 0.06641,0.35937 0.07031,0.15625 0.1875,0.26953 0.117188,0.11328 0.273438,0.17578 0.160156,0.0586 0.34375,0.0586 h 1.777344 v -3.20703 h 1.015625 z" | |||||
style="font-size:8px" | |||||
id="path1121" /> | |||||
<path | |||||
d="m 37.354096,337.01892 h -1.773438 v 3.20703 h -1.027343 v -3.20703 h -1.320313 v -1.01562 h 1.320313 v -1.37891 h 1.027343 v 1.37891 h 1.773438 z" | |||||
style="font-size:8px" | |||||
id="path1123" /> | |||||
</g> | |||||
<g | |||||
aria-label="Snare-N" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.33333349px;line-height:1.25;font-family:Audiowide;-inkscape-font-specification:Audiowide;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" | |||||
id="text1128"> | |||||
<path | |||||
d="m 9.5162845,20.053036 q 0,0.300781 -0.078125,0.542968 -0.074219,0.238282 -0.1992188,0.421875 -0.125,0.183594 -0.2929687,0.3125 -0.1679688,0.128907 -0.3476563,0.210938 -0.1796875,0.08203 -0.3671875,0.121094 -0.1835937,0.03906 -0.3476562,0.03906 H 3.9655032 V 20.685848 H 7.883472 q 0.2929687,0 0.453125,-0.171875 0.1640625,-0.171875 0.1640625,-0.460937 0,-0.140625 -0.042969,-0.257813 -0.042969,-0.117187 -0.125,-0.203125 Q 8.2545657,19.506161 8.1373782,19.459286 8.024097,19.412411 7.883472,19.412411 H 5.5475345 q -0.2460938,0 -0.53125,-0.08594 -0.2851563,-0.08984 -0.53125,-0.285156 -0.2421875,-0.195313 -0.40625,-0.511719 -0.1601563,-0.316406 -0.1601563,-0.773437 0,-0.457032 0.1601563,-0.769532 0.1640625,-0.316406 0.40625,-0.511718 0.2460937,-0.199219 0.53125,-0.285157 0.2851562,-0.08984 0.53125,-0.08984 h 3.4570312 v 1.015625 H 5.5475345 q -0.2890625,0 -0.453125,0.175781 -0.1601563,0.175781 -0.1601563,0.464844 0,0.292968 0.1601563,0.464843 0.1640625,0.167969 0.453125,0.167969 h 2.3359375 0.00781 q 0.1640625,0.0039 0.3476562,0.04687 0.1835938,0.03906 0.3632813,0.125 0.1835937,0.08594 0.3476562,0.21875 0.1640625,0.128906 0.2890625,0.3125 0.1289063,0.183594 0.203125,0.421875 0.074219,0.238281 0.074219,0.539063 z" | |||||
style="font-size:8px;fill:#141414;fill-opacity:1" | |||||
id="path1130" /> | |||||
<path | |||||
d="m 14.934253,21.701473 h -1.015625 v -2.34375 q 0,-0.199219 -0.07031,-0.355469 -0.06641,-0.160156 -0.183594,-0.273437 -0.117188,-0.113281 -0.277344,-0.171875 -0.15625,-0.0625 -0.339844,-0.0625 h -1.777343 v 3.207031 h -1.015625 v -3.71875 q 0,-0.105469 0.03906,-0.195312 0.03906,-0.09375 0.109375,-0.160157 0.07031,-0.07031 0.164063,-0.109375 0.09375,-0.03906 0.199218,-0.03906 h 2.289063 q 0.191406,0 0.402344,0.04297 0.214843,0.04297 0.421875,0.140625 0.210937,0.09375 0.398437,0.242187 0.191406,0.144531 0.335938,0.355469 0.148437,0.207031 0.234375,0.480469 0.08594,0.273437 0.08594,0.617187 z" | |||||
style="font-size:8px;fill:#141414;fill-opacity:1" | |||||
id="path1132" /> | |||||
<path | |||||
d="m 20.192066,20.303036 q 0,0.210937 -0.07422,0.457031 -0.07422,0.242187 -0.242188,0.453125 -0.164062,0.207031 -0.433593,0.347656 -0.265625,0.140625 -0.648438,0.140625 h -1.832031 q -0.210938,0 -0.457031,-0.07422 -0.242188,-0.07422 -0.453125,-0.238281 -0.207032,-0.167969 -0.347657,-0.433594 -0.140625,-0.269531 -0.140625,-0.652343 0,-0.210938 0.07422,-0.457032 0.07422,-0.246093 0.238281,-0.453125 0.167969,-0.210937 0.433594,-0.351562 0.269531,-0.140625 0.652344,-0.140625 h 1.832031 v 0.96875 h -1.832031 q -0.207031,0 -0.320313,0.128906 -0.113281,0.125 -0.113281,0.3125 0,0.199219 0.128906,0.3125 0.132813,0.109375 0.3125,0.109375 h 1.824219 q 0.207031,0 0.320313,-0.125 0.113281,-0.125 0.113281,-0.3125 v -1.417969 q 0,-0.199218 -0.125,-0.316406 -0.121094,-0.117187 -0.308594,-0.117187 h -2.230469 v -0.964844 h 2.230469 q 0.210938,0 0.453125,0.07422 0.246094,0.07422 0.453125,0.242187 0.210938,0.164063 0.351563,0.433594 0.140625,0.265625 0.140625,0.648437 z" | |||||
style="font-size:8px;fill:#141414;fill-opacity:1" | |||||
id="path1134" /> | |||||
<path | |||||
d="m 24.762378,18.494442 h -2.285156 q -0.207031,0 -0.3125,0.105469 -0.105469,0.101562 -0.105469,0.300781 v 2.800781 h -1.015625 v -2.800781 q 0,-0.261719 0.06641,-0.46875 0.06641,-0.207031 0.175782,-0.363281 0.113281,-0.160157 0.257812,-0.269532 0.144531,-0.113281 0.300781,-0.183593 0.160157,-0.07031 0.320313,-0.101563 0.164062,-0.03516 0.304687,-0.03516 h 2.292969 z" | |||||
style="font-size:8px;fill:#141414;fill-opacity:1" | |||||
id="path1136" /> | |||||
<path | |||||
d="m 29.953784,18.877254 q 0,0.210938 -0.07422,0.457032 -0.07422,0.242187 -0.242188,0.453125 -0.164062,0.207031 -0.433594,0.347656 -0.265625,0.140625 -0.648437,0.140625 h -1.832031 v -0.964844 h 1.832031 q 0.207031,0 0.320312,-0.125 0.113282,-0.128906 0.113282,-0.316406 0,-0.199219 -0.128907,-0.3125 -0.125,-0.113281 -0.304687,-0.113281 h -1.832031 q -0.207032,0 -0.320313,0.128906 -0.113281,0.125 -0.113281,0.3125 v 1.417969 q 0,0.203125 0.125,0.316406 0.128906,0.113281 0.316406,0.113281 h 1.824219 v 0.96875 h -1.832031 q -0.210938,0 -0.457032,-0.07422 -0.242187,-0.07422 -0.453125,-0.238281 -0.207031,-0.167969 -0.347656,-0.433594 -0.140625,-0.269531 -0.140625,-0.652343 v -1.425782 q 0,-0.210937 0.07422,-0.453125 0.07422,-0.246093 0.238281,-0.453125 0.167969,-0.210937 0.433594,-0.351562 0.269531,-0.140625 0.652344,-0.140625 h 1.832031 q 0.210937,0 0.453125,0.07422 0.246094,0.07422 0.453125,0.242187 0.210937,0.164063 0.351562,0.433594 0.140625,0.265625 0.140625,0.648437 z" | |||||
style="font-size:8px;fill:#141414;fill-opacity:1" | |||||
id="path1138" /> | |||||
<path | |||||
d="m 34.285816,19.357723 h -3.664063 v -0.914062 h 3.664063 z" | |||||
style="font-size:8px;fill:#141414;fill-opacity:1" | |||||
id="path1140" /> | |||||
<path | |||||
d="m 40.934253,21.267879 q 0,0.109375 -0.04297,0.203125 -0.03906,0.09375 -0.109375,0.164063 -0.06641,0.06641 -0.160156,0.105469 -0.09375,0.03906 -0.199219,0.03906 -0.09375,0 -0.191406,-0.03516 -0.09375,-0.03516 -0.167969,-0.113281 l -3.710937,-3.875 v 3.945312 h -1.015625 v -5.167969 q 0,-0.15625 0.08594,-0.28125 0.08984,-0.128906 0.226563,-0.191406 0.144531,-0.05859 0.296875,-0.02734 0.152344,0.02734 0.261719,0.140625 l 3.710937,3.871094 v -3.945312 h 1.015625 z" | |||||
style="font-size:8px;fill:#141414;fill-opacity:1" | |||||
id="path1142" /> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,76 @@ | |||||
#include <stdint.h> | |||||
#include "../deps/SynthDevKit/src/CV.hpp" | |||||
#include "DrumKit.hpp" | |||||
#include "DrumModule.hpp" | |||||
#include "kick.h" | |||||
namespace rack_plugin_DrumKit { | |||||
struct BD9Module : DrumModule { | |||||
void setupSamples( ) override; | |||||
}; | |||||
void BD9Module::setupSamples( ) { | |||||
samples[0] = { (float *)kick1, kick1_len }; | |||||
samples[1] = { (float *)kick2, kick2_len }; | |||||
samples[2] = { (float *)kick3, kick3_len }; | |||||
samples[3] = { (float *)kick4, kick4_len }; | |||||
samples[4] = { (float *)kick5, kick5_len }; | |||||
samples[5] = { (float *)kick6, kick6_len }; | |||||
samples[6] = { (float *)kick7, kick7_len }; | |||||
samples[7] = { (float *)kick8, kick8_len }; | |||||
samples[8] = { (float *)kick9, kick9_len }; | |||||
samples[9] = { (float *)kick10, kick10_len }; | |||||
samples[10] = { (float *)kick11, kick11_len }; | |||||
samples[11] = { (float *)kick12, kick12_len }; | |||||
samples[12] = { (float *)kick13, kick13_len }; | |||||
samples[13] = { (float *)kick14, kick14_len }; | |||||
samples[14] = { (float *)kick15, kick15_len }; | |||||
samples[15] = { (float *)kick16, kick16_len }; | |||||
numSamples = 16; | |||||
} | |||||
struct BD9Widget : ModuleWidget { | |||||
BD9Widget(BD9Module *module); | |||||
}; | |||||
BD9Widget::BD9Widget(BD9Module *module) : ModuleWidget(module) { | |||||
box.size = Vec(3 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT); | |||||
{ | |||||
SVGPanel *panel = new SVGPanel( ); | |||||
panel->box.size = box.size; | |||||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/BD9.svg"))); | |||||
addChild(panel); | |||||
} | |||||
addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0))); | |||||
addChild(Widget::create<ScrewSilver>( | |||||
Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH))); | |||||
addInput( | |||||
Port::create<PJ301MPort>(Vec(10, 45), Port::INPUT, module, BD9Module::CLOCK1_INPUT)); | |||||
addParam(ParamWidget::create<RoundBlackSnapKnob>( | |||||
Vec(8, 92), module, BD9Module::DRUM1_PARAM, 1.0, 16.0, 8.0)); | |||||
addOutput( | |||||
Port::create<PJ301MPort>(Vec(10, 149), Port::OUTPUT, module, BD9Module::AUDIO1_OUTPUT)); | |||||
addInput( | |||||
Port::create<PJ301MPort>(Vec(10, 205), Port::INPUT, module, BD9Module::CLOCK2_INPUT)); | |||||
addParam(ParamWidget::create<RoundBlackSnapKnob>( | |||||
Vec(8, 252), module, BD9Module::DRUM2_PARAM, 1.0, 16.0, 8.0)); | |||||
addOutput( | |||||
Port::create<PJ301MPort>(Vec(10, 308), Port::OUTPUT, module, BD9Module::AUDIO2_OUTPUT)); | |||||
} | |||||
} // namespace rack_plugin_DrumKit | |||||
using namespace rack_plugin_DrumKit; | |||||
RACK_PLUGIN_MODEL_INIT(DrumKit, BD9) { | |||||
Model *modelBD9 = Model::create<BD9Module, BD9Widget>("DrumKit", "Bass Drum 9", "Bass Drum 9", DRUM_TAG); | |||||
return modelBD9; | |||||
} |
@@ -0,0 +1,76 @@ | |||||
#include <stdint.h> | |||||
#include "../deps/SynthDevKit/src/CV.hpp" | |||||
#include "DrumKit.hpp" | |||||
#include "DrumModule.hpp" | |||||
#include "closedhh.h" | |||||
namespace rack_plugin_DrumKit { | |||||
struct ClosedHHModule : DrumModule { | |||||
void setupSamples( ) override; | |||||
}; | |||||
void ClosedHHModule::setupSamples( ) { | |||||
samples[0] = { (float *)closedhh1, closedhh1_len }; | |||||
samples[1] = { (float *)closedhh2, closedhh2_len }; | |||||
samples[2] = { (float *)closedhh3, closedhh3_len }; | |||||
samples[3] = { (float *)closedhh4, closedhh4_len }; | |||||
samples[4] = { (float *)closedhh5, closedhh5_len }; | |||||
samples[5] = { (float *)closedhh6, closedhh6_len }; | |||||
samples[6] = { (float *)closedhh7, closedhh7_len }; | |||||
samples[7] = { (float *)closedhh8, closedhh8_len }; | |||||
samples[8] = { (float *)closedhh9, closedhh9_len }; | |||||
samples[9] = { (float *)closedhh10, closedhh10_len }; | |||||
samples[10] = { (float *)closedhh11, closedhh11_len }; | |||||
samples[11] = { (float *)closedhh12, closedhh12_len }; | |||||
samples[12] = { (float *)closedhh13, closedhh13_len }; | |||||
samples[13] = { (float *)closedhh14, closedhh14_len }; | |||||
samples[14] = { (float *)closedhh15, closedhh15_len }; | |||||
numSamples = 15; | |||||
} | |||||
struct ClosedHHWidget : ModuleWidget { | |||||
ClosedHHWidget(ClosedHHModule *module); | |||||
}; | |||||
ClosedHHWidget::ClosedHHWidget(ClosedHHModule *module) : ModuleWidget(module) { | |||||
box.size = Vec(3 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT); | |||||
{ | |||||
SVGPanel *panel = new SVGPanel( ); | |||||
panel->box.size = box.size; | |||||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/ClosedHH.svg"))); | |||||
addChild(panel); | |||||
} | |||||
addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0))); | |||||
addChild(Widget::create<ScrewSilver>( | |||||
Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH))); | |||||
addInput(Port::create<PJ301MPort>(Vec(10, 45), Port::INPUT, module, | |||||
ClosedHHModule::CLOCK1_INPUT)); | |||||
addParam(ParamWidget::create<RoundBlackSnapKnob>( | |||||
Vec(8, 92), module, ClosedHHModule::DRUM1_PARAM, 1.0, 15.0, 8.0)); | |||||
addOutput(Port::create<PJ301MPort>(Vec(10, 149), Port::OUTPUT, module, | |||||
ClosedHHModule::AUDIO1_OUTPUT)); | |||||
addInput(Port::create<PJ301MPort>(Vec(10, 205), Port::INPUT, module, | |||||
ClosedHHModule::CLOCK2_INPUT)); | |||||
addParam(ParamWidget::create<RoundBlackSnapKnob>( | |||||
Vec(8, 252), module, ClosedHHModule::DRUM2_PARAM, 1.0, 15.0, 8.0)); | |||||
addOutput(Port::create<PJ301MPort>(Vec(10, 308), Port::OUTPUT, module, | |||||
ClosedHHModule::AUDIO2_OUTPUT)); | |||||
} | |||||
} // namespace rack_plugin_DrumKit | |||||
using namespace rack_plugin_DrumKit; | |||||
RACK_PLUGIN_MODEL_INIT(DrumKit, ClosedHH) { | |||||
Model *modelClosedHH = Model::create<ClosedHHModule, ClosedHHWidget>("DrumKit", "Closed HiHat", "Closed HiHat", DRUM_TAG); | |||||
return modelClosedHH; | |||||
} |
@@ -0,0 +1,117 @@ | |||||
#include <stdint.h> | |||||
#include "DrumKit.hpp" | |||||
#include "dmx.h" | |||||
namespace rack_plugin_DrumKit { | |||||
struct DMXContainer { | |||||
float *sample; | |||||
unsigned int length; | |||||
int current; | |||||
}; | |||||
struct DMXContainer dmxsamples[ 12 ] = { | |||||
{ (float *)dmx1, dmx1_len, 0 }, | |||||
{ (float *)dmx2, dmx2_len, 1 }, | |||||
{ (float *)dmx3, dmx3_len, 2 }, | |||||
{ (float *)dmx4, dmx4_len, 3 }, | |||||
{ (float *)dmx5, dmx5_len, 4 }, | |||||
{ (float *)dmx6, dmx6_len, 5 }, | |||||
{ (float *)dmx7, dmx7_len, 6 }, | |||||
{ (float *)dmx8, dmx8_len, 7 }, | |||||
{ (float *)dmx9, dmx9_len, 8 }, | |||||
{ (float *)dmx10, dmx10_len, 9 }, | |||||
{ (float *)dmx11, dmx11_len, 10 }, | |||||
{ (float *)dmx12, dmx12_len, 11 }, | |||||
}; | |||||
float dmxnotes[12] = { 0.08, 0.17, 0.25, 0.33, 0.42, 0.5, 0.58, 0.67, 0.75, 0.83, 0.92, 1.0 }; | |||||
struct DMXContainer *getNote(float current) { | |||||
for (int i = 0; i < 12; i++) { | |||||
if ((dmxnotes[i] - 0.02) <= current && (dmxnotes[i] + 0.02) >= current) { | |||||
return &dmxsamples[i]; | |||||
} | |||||
} | |||||
return NULL; | |||||
} | |||||
struct DMXModule : Module { | |||||
enum ParamIds { NUM_PARAMS }; | |||||
enum InputIds { NOTE1_INPUT, NUM_INPUTS }; | |||||
enum OutputIds { AUDIO1_OUTPUT, NUM_OUTPUTS }; | |||||
enum LightIds { NUM_LIGHTS }; | |||||
DMXModule( ) : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) { | |||||
currentStep = 0; | |||||
last = -1; | |||||
} | |||||
void step( ) override; | |||||
uint32_t currentStep; | |||||
int last; | |||||
}; | |||||
void DMXModule::step( ) { | |||||
float in1 = inputs[ NOTE1_INPUT ].value; | |||||
struct DMXContainer *note; | |||||
// check the first note | |||||
note = getNote(in1); | |||||
if (note == NULL) { | |||||
currentStep = 0; | |||||
outputs[ AUDIO1_OUTPUT ].value = 0; | |||||
last = -1; | |||||
} else { | |||||
if (last != note->current) { | |||||
last = note->current; | |||||
currentStep = 0; | |||||
} | |||||
if (currentStep >= note->length) { | |||||
outputs[ AUDIO1_OUTPUT ].value = 0; | |||||
} else { | |||||
outputs[ AUDIO1_OUTPUT ].value = note->sample[currentStep]; | |||||
currentStep++; | |||||
} | |||||
} | |||||
} | |||||
struct DMXWidget : ModuleWidget { | |||||
DMXWidget(DMXModule *module); | |||||
}; | |||||
DMXWidget::DMXWidget(DMXModule *module) : ModuleWidget(module) { | |||||
box.size = Vec(3 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT); | |||||
{ | |||||
SVGPanel *panel = new SVGPanel( ); | |||||
panel->box.size = box.size; | |||||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/DMX.svg"))); | |||||
addChild(panel); | |||||
} | |||||
addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0))); | |||||
addChild(Widget::create<ScrewSilver>( | |||||
Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH))); | |||||
addInput(Port::create<PJ301MPort>(Vec(10, 45), Port::INPUT, module, | |||||
DMXModule::NOTE1_INPUT)); | |||||
addOutput(Port::create<PJ301MPort>(Vec(10, 92), Port::OUTPUT, module, | |||||
DMXModule::AUDIO1_OUTPUT)); | |||||
} | |||||
} // namespace rack_plugin_DrumKit | |||||
using namespace rack_plugin_DrumKit; | |||||
RACK_PLUGIN_MODEL_INIT(DrumKit, DMX) { | |||||
Model *modelDMX = Model::create<DMXModule, DMXWidget>("DrumKit", "DMX", "DMX", DRUM_TAG); | |||||
return modelDMX; | |||||
} |
@@ -0,0 +1,20 @@ | |||||
#include "DrumKit.hpp" | |||||
RACK_PLUGIN_MODEL_DECLARE(DrumKit, BD9); | |||||
RACK_PLUGIN_MODEL_DECLARE(DrumKit, Snare); | |||||
RACK_PLUGIN_MODEL_DECLARE(DrumKit, ClosedHH); | |||||
RACK_PLUGIN_MODEL_DECLARE(DrumKit, OpenHH); | |||||
RACK_PLUGIN_MODEL_DECLARE(DrumKit, DMX); | |||||
RACK_PLUGIN_INIT(DrumKit) { | |||||
RACK_PLUGIN_INIT_ID(); | |||||
RACK_PLUGIN_INIT_WEBSITE("https://github.com/JerrySievert/DrumKit"); | |||||
RACK_PLUGIN_INIT_MANUAL("https://github.com/JerrySievert/DrumKit/blob/master/README.md"); | |||||
RACK_PLUGIN_MODEL_ADD(DrumKit, BD9); | |||||
RACK_PLUGIN_MODEL_ADD(DrumKit, Snare); | |||||
RACK_PLUGIN_MODEL_ADD(DrumKit, ClosedHH); | |||||
RACK_PLUGIN_MODEL_ADD(DrumKit, OpenHH); | |||||
RACK_PLUGIN_MODEL_ADD(DrumKit, DMX); | |||||
} |
@@ -0,0 +1,11 @@ | |||||
#pragma once | |||||
#include "rack.hpp" | |||||
using namespace rack; | |||||
RACK_PLUGIN_DECLARE(DrumKit); | |||||
#ifdef USE_VST2 | |||||
#define plugin "DrumKit" | |||||
#endif // USE_VST2 |
@@ -0,0 +1,78 @@ | |||||
#include <stdint.h> | |||||
#include "../deps/SynthDevKit/src/CV.hpp" | |||||
#include "DrumKit.hpp" | |||||
#include "DrumModule.hpp" | |||||
namespace rack_plugin_DrumKit { | |||||
DrumModule::DrumModule( ) : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) { | |||||
cv1 = new SynthDevKit::CV(1.7f); | |||||
cv2 = new SynthDevKit::CV(1.7f); | |||||
currentStep1 = 0; | |||||
currentStep2 = 0; | |||||
ready1 = false; | |||||
ready2 = false; | |||||
numSamples = 0; | |||||
} | |||||
struct DrumContainer *DrumModule::getSample(float current) { | |||||
if (numSamples == 0) { | |||||
setupSamples(); | |||||
} | |||||
if (current < 1 || current >= numSamples) { | |||||
return &samples[ 0 ]; | |||||
} | |||||
return &samples[ (int)current - 1 ]; | |||||
} | |||||
void DrumModule::step( ) { | |||||
float in1 = inputs[ CLOCK1_INPUT ].value; | |||||
cv1->update(in1); | |||||
if (cv1->newTrigger( )) { | |||||
if (!ready1) { | |||||
ready1 = true; | |||||
} | |||||
currentStep1 = 0; | |||||
} | |||||
float current1 = params[ DRUM1_PARAM ].value; | |||||
struct DrumContainer *c = getSample(current1); | |||||
if (currentStep1 >= c->length) { | |||||
outputs[ AUDIO1_OUTPUT ].value = 0; | |||||
} else { | |||||
outputs[ AUDIO1_OUTPUT ].value = c->sample[ currentStep1 ]; | |||||
currentStep1++; | |||||
} | |||||
float in2 = inputs[ CLOCK2_INPUT ].value; | |||||
cv2->update(in2); | |||||
if (cv2->newTrigger( )) { | |||||
if (!ready2) { | |||||
ready2 = true; | |||||
} | |||||
currentStep2 = 0; | |||||
} | |||||
float current2 = params[ DRUM2_PARAM ].value; | |||||
c = getSample(current2); | |||||
if (currentStep2 >= c->length) { | |||||
outputs[ AUDIO2_OUTPUT ].value = 0; | |||||
} else { | |||||
outputs[ AUDIO2_OUTPUT ].value = c->sample[ currentStep2 ]; | |||||
currentStep2++; | |||||
} | |||||
} | |||||
void DrumModule::setupSamples( ) { } | |||||
} // namespace rack_plugin_DrumKit | |||||
@@ -0,0 +1,34 @@ | |||||
#pragma once | |||||
#include <cstdint> | |||||
#include "DrumKit.hpp" | |||||
namespace rack_plugin_DrumKit { | |||||
struct DrumContainer { | |||||
float *sample; | |||||
unsigned int length; | |||||
}; | |||||
struct DrumModule : Module { | |||||
enum ParamIds { DRUM1_PARAM, DRUM2_PARAM, NUM_PARAMS }; | |||||
enum InputIds { CLOCK1_INPUT, CLOCK2_INPUT, NUM_INPUTS }; | |||||
enum OutputIds { AUDIO1_OUTPUT, AUDIO2_OUTPUT, NUM_OUTPUTS }; | |||||
enum LightIds { NUM_LIGHTS }; | |||||
DrumModule( ); | |||||
void step( ) override; | |||||
virtual void setupSamples( ); | |||||
struct DrumContainer *getSample(float); | |||||
SynthDevKit::CV *cv1; | |||||
uint32_t currentStep1; | |||||
bool ready1; | |||||
SynthDevKit::CV *cv2; | |||||
uint32_t currentStep2; | |||||
bool ready2; | |||||
struct DrumContainer samples[32]; | |||||
uint8_t numSamples; | |||||
}; | |||||
} // namespace rack_plugin_DrumKit |
@@ -0,0 +1,75 @@ | |||||
#include <stdint.h> | |||||
#include "../deps/SynthDevKit/src/CV.hpp" | |||||
#include "DrumKit.hpp" | |||||
#include "DrumModule.hpp" | |||||
#include "openhh.h" | |||||
namespace rack_plugin_DrumKit { | |||||
struct OpenHHModule : DrumModule { | |||||
void setupSamples( ) override; | |||||
}; | |||||
void OpenHHModule::setupSamples( ) { | |||||
samples[0] = { (float *)openhh1, openhh1_len }; | |||||
samples[1] = { (float *)openhh2, openhh2_len }; | |||||
samples[2] = { (float *)openhh3, openhh3_len }; | |||||
samples[3] = { (float *)openhh4, openhh4_len }; | |||||
samples[4] = { (float *)openhh5, openhh5_len }; | |||||
samples[5] = { (float *)openhh6, openhh6_len }; | |||||
samples[6] = { (float *)openhh7, openhh7_len }; | |||||
samples[7] = { (float *)openhh8, openhh8_len }; | |||||
samples[8] = { (float *)openhh9, openhh9_len }; | |||||
samples[9] = { (float *)openhh10, openhh10_len }; | |||||
samples[10] = { (float *)openhh11, openhh11_len }; | |||||
samples[11] = { (float *)openhh12, openhh12_len }; | |||||
samples[12] = { (float *)openhh13, openhh13_len }; | |||||
samples[13] = { (float *)openhh14, openhh14_len }; | |||||
numSamples = 14; | |||||
} | |||||
struct OpenHHWidget : ModuleWidget { | |||||
OpenHHWidget(OpenHHModule *module); | |||||
}; | |||||
OpenHHWidget::OpenHHWidget(OpenHHModule *module) : ModuleWidget(module) { | |||||
box.size = Vec(3 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT); | |||||
{ | |||||
SVGPanel *panel = new SVGPanel( ); | |||||
panel->box.size = box.size; | |||||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/OpenHH.svg"))); | |||||
addChild(panel); | |||||
} | |||||
addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0))); | |||||
addChild(Widget::create<ScrewSilver>( | |||||
Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH))); | |||||
addInput(Port::create<PJ301MPort>(Vec(10, 45), Port::INPUT, module, | |||||
OpenHHModule::CLOCK1_INPUT)); | |||||
addParam(ParamWidget::create<RoundBlackSnapKnob>( | |||||
Vec(8, 92), module, OpenHHModule::DRUM1_PARAM, 1.0, 14.0, 7.0)); | |||||
addOutput(Port::create<PJ301MPort>(Vec(10, 149), Port::OUTPUT, module, | |||||
OpenHHModule::AUDIO1_OUTPUT)); | |||||
addInput(Port::create<PJ301MPort>(Vec(10, 205), Port::INPUT, module, | |||||
OpenHHModule::CLOCK2_INPUT)); | |||||
addParam(ParamWidget::create<RoundBlackSnapKnob>( | |||||
Vec(8, 252), module, OpenHHModule::DRUM2_PARAM, 1.0, 14.0, 7.0)); | |||||
addOutput(Port::create<PJ301MPort>(Vec(10, 308), Port::OUTPUT, module, | |||||
OpenHHModule::AUDIO2_OUTPUT)); | |||||
} | |||||
} // namespace rack_plugin_DrumKit | |||||
using namespace rack_plugin_DrumKit; | |||||
RACK_PLUGIN_MODEL_INIT(DrumKit, OpenHH) { | |||||
Model *modelOpenHH = Model::create<OpenHHModule, OpenHHWidget>("DrumKit", "Open HiHat", "Open HiHat", DRUM_TAG); | |||||
return modelOpenHH; | |||||
} |
@@ -0,0 +1,77 @@ | |||||
#include <stdint.h> | |||||
#include "../deps/SynthDevKit/src/CV.hpp" | |||||
#include "DrumKit.hpp" | |||||
#include "DrumModule.hpp" | |||||
#include "snare.h" | |||||
namespace rack_plugin_DrumKit { | |||||
struct SnareModule : DrumModule { | |||||
void setupSamples( ) override; | |||||
}; | |||||
void SnareModule::setupSamples( ) { | |||||
samples[0] = { (float *)snare1, snare1_len }; | |||||
samples[1] = { (float *)snare2, snare2_len }; | |||||
samples[2] = { (float *)snare3, snare3_len }; | |||||
samples[3] = { (float *)snare4, snare4_len }; | |||||
samples[4] = { (float *)snare5, snare5_len }; | |||||
samples[5] = { (float *)snare6, snare6_len }; | |||||
samples[6] = { (float *)snare7, snare7_len }; | |||||
samples[7] = { (float *)snare8, snare8_len }; | |||||
samples[8] = { (float *)snare9, snare9_len }; | |||||
samples[9] = { (float *)snare10, snare10_len }; | |||||
samples[10] = { (float *)snare11, snare11_len }; | |||||
samples[11] = { (float *)snare12, snare12_len }; | |||||
samples[12] = { (float *)snare13, snare13_len }; | |||||
samples[13] = { (float *)snare14, snare14_len }; | |||||
samples[14] = { (float *)snare15, snare15_len }; | |||||
samples[15] = { (float *)snare16, snare16_len }; | |||||
numSamples = 16; | |||||
} | |||||
struct SnareWidget : ModuleWidget { | |||||
SnareWidget(SnareModule *module); | |||||
}; | |||||
SnareWidget::SnareWidget(SnareModule *module) : ModuleWidget(module) { | |||||
box.size = Vec(3 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT); | |||||
{ | |||||
SVGPanel *panel = new SVGPanel( ); | |||||
panel->box.size = box.size; | |||||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/Snare.svg"))); | |||||
addChild(panel); | |||||
} | |||||
addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0))); | |||||
addChild(Widget::create<ScrewSilver>( | |||||
Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH))); | |||||
addInput( | |||||
Port::create<PJ301MPort>(Vec(10, 45), Port::INPUT, module, SnareModule::CLOCK1_INPUT)); | |||||
addParam(ParamWidget::create<RoundBlackSnapKnob>( | |||||
Vec(8, 92), module, SnareModule::DRUM1_PARAM, 1.0, 16.0, 8.0)); | |||||
addOutput(Port::create<PJ301MPort>(Vec(10, 149), Port::OUTPUT, module, | |||||
SnareModule::AUDIO1_OUTPUT)); | |||||
addInput( | |||||
Port::create<PJ301MPort>(Vec(10, 205), Port::INPUT, module, SnareModule::CLOCK2_INPUT)); | |||||
addParam(ParamWidget::create<RoundBlackSnapKnob>( | |||||
Vec(8, 252), module, SnareModule::DRUM2_PARAM, 1.0, 16.0, 8.0)); | |||||
addOutput(Port::create<PJ301MPort>(Vec(10, 308), Port::OUTPUT, module, | |||||
SnareModule::AUDIO2_OUTPUT)); | |||||
} | |||||
} // namespace rack_plugin_DrumKit | |||||
using namespace rack_plugin_DrumKit; | |||||
RACK_PLUGIN_MODEL_INIT(DrumKit, Snare) { | |||||
Model *modelSnare = Model::create<SnareModule, SnareWidget>("DrumKit", "Snare Drum N", "Snare Drum N", DRUM_TAG); | |||||
return modelSnare; | |||||
} |
@@ -1,7 +1,7 @@ | |||||
SLUG=ESeries | SLUG=ESeries | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -1,7 +1,7 @@ | |||||
SLUG=ErraticInstruments | SLUG=ErraticInstruments | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -1,5 +1,7 @@ | |||||
#include "rack.hpp" | #include "rack.hpp" | ||||
// #define Ddebug if(0);else debug | |||||
#define Ddebug if(1);else debug | |||||
using namespace rack; | using namespace rack; | ||||
@@ -11,7 +11,7 @@ MPEToCV::MPEToCV() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS) { | |||||
void MPEToCV::step() { | void MPEToCV::step() { | ||||
MidiMessage msg; | MidiMessage msg; | ||||
while (midiInput.shift(&msg)) { | while (midiInput.shift(&msg)) { | ||||
debug("Processmsg"); | |||||
Ddebug("Processmsg"); | |||||
processMessage(msg); | processMessage(msg); | ||||
} | } | ||||
@@ -65,9 +65,9 @@ void MPEToCV::step() { | |||||
// 1/V incorporates pitch wheel changes | // 1/V incorporates pitch wheel changes | ||||
if (pitchWheel.changed && gate) { | if (pitchWheel.changed && gate) { | ||||
outputs[PITCH_OUTPUT].value = (((note - 60)) / 12.0) + ((pitchWheel.val - 8192 ) / 8192.0 / 12.0 * (float)bendRange ) ; | outputs[PITCH_OUTPUT].value = (((note - 60)) / 12.0) + ((pitchWheel.val - 8192 ) / 8192.0 / 12.0 * (float)bendRange ) ; | ||||
debug("%d",(pitchWheel.val - 8192 )); | |||||
debug("note=%d, pitchWheel.val=%d, bendRange=%d",note, pitchWheel.val, bendRange ); | |||||
debug("outputs[PITCH_OUTPUT].value is %f",outputs[PITCH_OUTPUT].value); | |||||
Ddebug("%d",(pitchWheel.val - 8192 )); | |||||
Ddebug("note=%d, pitchWheel.val=%d, bendRange=%d",note, pitchWheel.val, bendRange ); | |||||
Ddebug("outputs[PITCH_OUTPUT].value is %f",outputs[PITCH_OUTPUT].value); | |||||
pitchWheel.changed = false; | pitchWheel.changed = false; | ||||
this->newNote = false; | this->newNote = false; | ||||
} | } | ||||
@@ -97,7 +97,7 @@ void MPEToCV::releaseNote(int note) { | |||||
gate = false; | gate = false; | ||||
if (noteOffReset) { | if (noteOffReset) { | ||||
debug("We execute the note off reset"); | |||||
Ddebug("We execute the note off reset"); | |||||
resetNoteNow = true; | resetNoteNow = true; | ||||
afterTouch.val = 0; | afterTouch.val = 0; | ||||
afterTouch.changed = true; | afterTouch.changed = true; | ||||
@@ -126,7 +126,7 @@ void MPEToCV::releaseNote(int note) { | |||||
} | } | ||||
void MPEToCV::processMessage(MidiMessage msg) { | void MPEToCV::processMessage(MidiMessage msg) { | ||||
//debug("MIDI: %01x %01x %02x %02x", msg.status(), msg.channel(), msg.data1, msg.data2); | |||||
//Ddebug("MIDI: %01x %01x %02x %02x", msg.status(), msg.channel(), msg.data1, msg.data2); | |||||
int8_t channel = msg.channel(); | int8_t channel = msg.channel(); | ||||
int8_t status = msg.status(); | int8_t status = msg.status(); | ||||
int8_t data1 = msg.data1; | int8_t data1 = msg.data1; | ||||
@@ -203,7 +203,7 @@ void MPEToCV::processMessage(MidiMessage msg) { | |||||
// we don't need to shift the first byte because it's 7 bit (always starts with 0) | // we don't need to shift the first byte because it's 7 bit (always starts with 0) | ||||
twoBytes = ( (uint16_t)msg.data2 << 7) | ( (uint16_t)msg.data1 ) ; | twoBytes = ( (uint16_t)msg.data2 << 7) | ( (uint16_t)msg.data1 ) ; | ||||
pitchWheel.val = twoBytes; | pitchWheel.val = twoBytes; | ||||
debug("pitchWheel.val=%d",pitchWheel.val); | |||||
Ddebug("pitchWheel.val=%d",pitchWheel.val); | |||||
pitchWheel.changed = true; | pitchWheel.changed = true; | ||||
} | } | ||||
break; | break; | ||||
@@ -235,7 +235,7 @@ struct MPEToCVWidget : ModuleWidget { | |||||
MPEToCV *module; | MPEToCV *module; | ||||
bool resetNoteBool; | bool resetNoteBool; | ||||
void onAction(EventAction &e) override { | void onAction(EventAction &e) override { | ||||
//debug("Set resetNoteBool to %d",!resetNoteBool); | |||||
//Ddebug("Set resetNoteBool to %d",!resetNoteBool); | |||||
module->noteOffReset = ! resetNoteBool; | module->noteOffReset = ! resetNoteBool; | ||||
} | } | ||||
}; | }; | ||||
@@ -1,6 +1,6 @@ | |||||
SLUG=FrozenWasteland | SLUG=FrozenWasteland | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
EXTRAFLAGS+= \ | EXTRAFLAGS+= \ | ||||
-DTEST \ | -DTEST \ | ||||
@@ -10,4 +10,4 @@ EXTRAFLAGS+= \ | |||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -1,8 +1,7 @@ | |||||
SLUG=Fundamental | SLUG=Fundamental | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -1,7 +1,7 @@ | |||||
SLUG=Gratrix | SLUG=Gratrix | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -1,7 +1,7 @@ | |||||
SLUG=HetrickCV | SLUG=HetrickCV | ||||
include ../../../../dep/yac/install_msvc.mk | |||||
include ../../../build_plugin_pre.mk | |||||
include make.objects | include make.objects | ||||
include ../../../build_plugin.mk | |||||
include ../../../build_plugin_post.mk |
@@ -0,0 +1,3 @@ | |||||
plugin.* | |||||
build | |||||
dist |
@@ -0,0 +1,29 @@ | |||||
BSD 3-Clause License | |||||
Copyright (c) 2017, Jeremy Wentworth | |||||
All rights reserved. | |||||
Redistribution and use in source and binary forms, with or without | |||||
modification, are permitted provided that the following conditions are met: | |||||
* Redistributions of source code must retain the above copyright notice, this | |||||
list of conditions and the following disclaimer. | |||||
* Redistributions in binary form must reproduce the above copyright notice, | |||||
this list of conditions and the following disclaimer in the documentation | |||||
and/or other materials provided with the distribution. | |||||
* Neither the name of the copyright holder nor the names of its | |||||
contributors may be used to endorse or promote products derived from | |||||
this software without specific prior written permission. | |||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | |||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | |||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | |||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
@@ -0,0 +1,20 @@ | |||||
SLUG = JW-Modules | |||||
VERSION = 0.6.1 | |||||
DISTRIBUTABLES += $(wildcard LICENSE*) res | |||||
RACK_DIR ?= ../.. | |||||
# FLAGS will be passed to both the C and C++ compiler | |||||
FLAGS += | |||||
CFLAGS += | |||||
CXXFLAGS += | |||||
# Careful about linking to libraries, since you can't assume much about the user's environment and library search path. | |||||
# Static libraries are fine. | |||||
LDFLAGS += | |||||
# Add .cpp and .c files to the build | |||||
SOURCES = $(wildcard src/*.cpp) | |||||
# Must include the VCV plugin Makefile framework | |||||
include $(RACK_DIR)/plugin.mk |
@@ -0,0 +1,288 @@ | |||||
# JW-Modules | |||||
` d(-_-)b Useful, Musical, and Fun ¯\_(ツ)_/¯` | |||||
Modules for [VCV Rack](https://vcvrack.com/) by Jeremy Wentworth (http://jeremywentworth.com) | |||||
Add JW-Modules through [the plugin manager](https://vcvrack.com/plugins.html) or download latest [release from here](https://github.com/jeremywen/JW-Modules/releases) and manually install it. You can see these modules used in [my youtube videos here](https://www.youtube.com/user/jeremywen/videos). | |||||
Donations: [Paypal](https://www.paypal.me/jeremywen) | |||||
 | |||||
## Thing Thing | |||||
 | |||||
* inputs 1 through 4 are +/-5v | |||||
* 5th input and knob are the BALL size uh huh huh :) | |||||
* 6th input and knob zoOM in | |||||
* pairs well with the angle outputs on [Vult Modules Caudal](https://modlfo.github.io/VultModules/caudal/) | |||||
## NoteSeq | |||||
 | |||||
#### Basics | |||||
* Left side of module is for sequencer control, generation, and modification. | |||||
* Right side of module is mainly for controlling the outputs. | |||||
* You can click and drag cells in the grid to toggle them on and off. | |||||
* Here is a video of a [patch from init](https://www.youtube.com/watch?v=P6cNFfb0w1s) | |||||
#### Left | |||||
* **Clock Input:** when source sends a trigger, the sequence moves to the next step | |||||
* **Step Button:** when clicked, the sequence moves to the next step | |||||
* **Length Knob:** the sequence length indicated by the vertical purple line | |||||
* **Mode:** the play mode changes how it moved through a sequence | |||||
* **Reset Input and Button:** resets to first step in sequence (based on the play mode) | |||||
* **Clear Input and Button:** clears the grid | |||||
* **RND Mode:** changes what happens when you trigger the random input or button | |||||
* **Random Trig Input and Button:** clears the grid and generates random notes (based on the rnd mode) | |||||
* **Random Amount Input and Knob:** determines how full the grid will be when generating random notes | |||||
* **Shift Up Trig Input and Button:** moves the cells in the grid up one row (notes wrap around to the bottom) | |||||
* **Shift Down Trig Input and Button:** moves the cells in the grid down one row (notes wrap around to the top) | |||||
* **Rotate Right Input and Button:** rotates the cells in the grid clockwise 90 degrees | |||||
* **Rotate Left Input and Button:** rotates the cells in the grid counter-clockwise 90 degrees | |||||
* **Flip Horiz Input and Button:** flips the cells in the grid right to left | |||||
* **Flip Vert Input and Button:** flips the cells in the grid top to bottom | |||||
* **Life Switch:** when switched to the right this turns on [conway's game of life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) | |||||
* **Life Speed Knob:** determines how fast to iterate the game of life (clock divided based on clock input) | |||||
#### Right | |||||
* **Poly Outputs:** Send out the lowest 16 active notes up from the 'Lowest Note' OR send out the lowest 16 rows up from the 'Lowest Note'. This is based on the 'Include Inactive Switch' (See Below). The lights indicate which outputs are sending out values. | |||||
* **Mono Outputs:** can be used to select one note from a column of many notes. | |||||
* **Highest Note Knob:** will set the orange line right above the highest note sent out the poly outputs. | |||||
* **Lowest Note Knob:** will set the yellow line right below the lowest note sent out the poly outputs. | |||||
* **Include Inactive Switch:** [Demo Video](https://www.youtube.com/watch?v=EkFzYxhhn-g) When switched to the right, even if the note isn't 'active'(turned on) then the outputs still directly line up to the 16 lowest notes. | |||||
So for example, you can program a drum beat with a kick at the lowest note and a snare on the 4th row up then connect your outputs to the lowest output and the 4th | |||||
output row up and they will work more like a midi sequencer. When 'Include Inactive' is switched to the left it grabs the 16 lowest notes which are 'active'. | |||||
* **Octave Knob:** octave for the lowest note in the grid | |||||
* **Note Knob:** root note if scaling pitch sent to "OUT" | |||||
* **Scale Knob:** current musical scale or none if turned up all the way to the last value | |||||
## Bouncy Balls | |||||
 | |||||
#### Basics | |||||
* The top section contains all the inputs. | |||||
* The bottom sections contains all the outputs. | |||||
* The colors of the inputs/outputs correspond to the ball colors. | |||||
* The top two rows have buttons next to the inputs to for manually triggering. | |||||
* The next three rows have knobs next to the inputs for manually controlling the values. | |||||
* Click in the dark area to lock/unlock the paddle. | |||||
* Click the 'ON' button to toggle the paddle visibilty. | |||||
#### Inputs | |||||
* **RST:** starts ball back at center with initial velocity | |||||
* **TRIG:** speeds up ball based on velocity settings | |||||
* **VELX:** velocity in the x direction, to the right is positive (towards east), to the left is negative (towards west) | |||||
* **VELY:** velocity in the y direction, to the right is positive (towards south), to the left is negative (towards north) | |||||
* **MULT:** velocity multiplier | |||||
#### Outputs | |||||
* **X:** x position for each ball | |||||
* **Y:** y position for each ball | |||||
* **N:** (north) trigger out for each ball that hits the top | |||||
* **E:** (east) trigger out for each ball that hits the right side | |||||
* **S:** (south) trigger out for each ball that hits the bottom | |||||
* **W:** (west) trigger out for each ball that hits the left side | |||||
* **EDGE:** trigger out for each ball that hits any side | |||||
* **PAD:** trigger out for each ball that hits the white pad | |||||
#### Modifying the Output Signal | |||||
* **X Scale Knob:** multiplies x output by a value between 0.01 and 1.0 | |||||
* **Y Scale Knob:** multiplies y output by a value between 0.01 and 1.0 | |||||
* **X Offset Knob:** +/- 5v added to X Output | |||||
* **Y Offset Knob:** +/- 5v added to Y Output | |||||
## GridSeq | |||||
 | |||||
[Video](https://www.youtube.com/watch?v=Bnxzqi5jwcU) | |||||
[Example Patch](./doc/gridseq-example-patch-1.png) | |||||
#### 16 Step Sequencer | |||||
When a direction input is sent a trigger and a cell is entered, a pitch will be sent to the OUT port if the cell's gate is on. | |||||
#### Top Direction Inputs | |||||
* **Right Input:** on trigger move right one cell and send out value if gate is on for that cell | |||||
* **Left Input:** on trigger move left one cell and send out value if gate is on for that cell | |||||
* **Down Input:** on trigger move down one cell and send out value if gate is on for that cell | |||||
* **Up Input:** on trigger move up one cell and send out value if gate is on for that cell | |||||
* **RND:** on trigger move one cell in a random direction and send out value if gate is on for that cell | |||||
* **REPEAT:** stay on current cell and send out value if gate is on for that cell | |||||
**NOTE 1:** You can click the arrows or words above the inputs to trigger them. | |||||
#### Left | |||||
* **RUN:** values are sent to outputs if running | |||||
* **RESET Button:** move to top left cell on click | |||||
* **RESET Input:** move to top left cell on trigger | |||||
* **GATE OUT:** sends out gate if current cell gate is on and sequencer is running | |||||
* **OUT:** sends out the current value (pitch knob) for the current cell if the gate is on and sequencer is running | |||||
#### Bottom | |||||
* **ROOT Knob:** root note if scaling pitch sent to "OUT" | |||||
* **SCALE Knob:** current musical scale or none if turned up all the way to the last value | |||||
* **RND GATES Button** randomize gate only for each cell | |||||
* **RND GATES Input** on trigger randomize gate only for each cell | |||||
* **RND NOTES Button** randomize pitch only for each cell | |||||
* **RND NOTES Input** on trigger, randomize pitch only for each cell (NOTE: knobs don't update on 'random notes' cv in. If you want knobs to update after cv into 'random notes', right click the random notes button.) | |||||
#### Right Click Context Menu | |||||
 | |||||
* **Trigger:** same as SEQ3 | |||||
* **Retrigger:** same as SEQ3 | |||||
* **Continuous:** same as SEQ3 | |||||
* **Ignore Gate for V/OCT Out:** If you want the pitch to continue changing even if the gates are not on, you can right click the module and check | |||||
'Ignore Gate for V/OCT Out'. This can create interesting effects, for example, when gate is triggering an envelope with a long release. | |||||
## XY Pad | |||||
 | |||||
[Video](https://www.youtube.com/watch?v=SF0lwKFIXqo) | |||||
Draw your own LFO. The recorded path is saved and opened. | |||||
#### Top | |||||
* **Rnd Left Button:** will cycle through different types of designs and generate random ones | |||||
* **Rnd Right Button:** random variation of the last design will be generated (so click the left button until you find one you like, then click the right button to make a variation of that one.) | |||||
* **X Scale Knob:** multiplies x output by a value between 0.01 and 1.0 | |||||
* **Y Scale Knob:** multiplies y output by a value between 0.01 and 1.0 | |||||
* **X Offset Knob:** +/- 5v added to X Output | |||||
* **Y Offset Knob:** +/- 5v added to Y Output | |||||
#### Bottom | |||||
* **Gate In:** plays recorded path while gate is high, retriggers on new gate | |||||
* **Auto:** loops playback of the recorded path right after releasing the mouse button | |||||
* Or if you just performed a motion while Auto was off, turning it on will play it back | |||||
* Or if Auto is on and you want to stop playback, turn Auto off | |||||
* **Speed:** plays recorded path from 1x up to 10x faster | |||||
* **Mult:** multiplies the current speed by larger amounts | |||||
* **X Output:** +/- 5v based on x position | |||||
* **Y Output:** +/- 5v based on y position | |||||
* **-X:** +/- 5v based on inverted x position (darker crosshairs) | |||||
* **-Y:** +/- 5v based on inverted y position (darker crosshairs) | |||||
* **Gate Out:** 10v gate out while mouse pressed | |||||
#### Right Click Context Menu | |||||
Change the playback mode by right clicking the module and selecting of of the playback options: | |||||
 | |||||
## SimpleClock | |||||
 | |||||
[Video](https://www.youtube.com/watch?v=DCustAy7xVc) | |||||
_Outputs 1/4 notes because this was like vcv rack standard er something at first but I don't agree. Working on a module with optional note divisions..._ | |||||
#### Knobs | |||||
* **Clock knob:** determines speed of clock | |||||
* **Random Reset knob:** If down all the way, this does nothing. If turned up, the chances of sending out a reset trigger on a clock step is increased. | |||||
#### Outputs | |||||
* **Clock output:** Clock sends out a trigger at a certain interval based on the clock knob position. | |||||
* **Reset output:** trigger is sent out when the clock is started by clicking 'run' or if random reset knob is turned up | |||||
* **/4 output:** clock divided by 4 ticks | |||||
* **/8 output:** clock divided by 8 ticks | |||||
* **/16 output:** clock divided by 16 ticks | |||||
* **/32 output:** clock divided by 32 ticks | |||||
## Quantizer | |||||
 | |||||
* **Root Knob:** root note if scaling pitch sent to "OUT" | |||||
* **Scale Knob:** current musical scale or none if turned up all the way to the last value | |||||
## FullScope | |||||
Scope in lissajous mode which takes up the full width and height of the module. Credit goes to Andrew Belt for the [Fundamental:Scope](https://github.com/VCVRack/Fundamental/blob/v0.4.0/src/Scope.cpp) code. I just modied that code slightly. | |||||
 | |||||
Drag the right side of the module to resize it! | |||||
* Inputs in bottom left corner | |||||
* X input (same as Fundamental Scope) | |||||
* Y input (same as Fundamental Scope) | |||||
* Color input | |||||
* Rotation input | |||||
* Time input | |||||
* Knobs in bottom right corner (same knobs exist in Fundamental Scope) | |||||
* X Position | |||||
* Y Position | |||||
* X Scale | |||||
* Y Scale | |||||
* Rotation | |||||
* Time | |||||
#### Right Click Context Menu | |||||
Change to the normal scope by unchecking lissajous mode. | |||||
 | |||||
## MinMax | |||||
Created to show minumum and maximum voltages in a larger font than the Fundamental Scope | |||||
 | |||||
## WaveHead | |||||
Move WavHead up and down based on voltage in. | |||||
 | |||||
Right click to: | |||||
* invert direction | |||||
* change to bidirectional -5 to +5 volts. | |||||
* change to snow mode | |||||
 | |||||
## Other goofy crap | |||||
 | |||||
## Building | |||||
Compile Rack from source, following the instructions at https://github.com/VCVRack/Rack. | |||||
Check out JW-Modules into the `plugins/` directory | |||||
Then run: | |||||
make | |||||
To make plugin zip: | |||||
make dist | |||||
SEE ALSO [Dev FAQ for VCV Rack](https://github.com/jeremywen/JW-Modules/wiki/Dev-FAQ-for-VCV-Rack) |
@@ -0,0 +1,14 @@ | |||||
ALL_OBJ= \ | |||||
src/BouncyBalls.o \ | |||||
src/Cat.o \ | |||||
src/FullScope.o \ | |||||
src/GridSeq.o \ | |||||
src/JWModules.o \ | |||||
src/MinMax.o \ | |||||
src/NoteSeq.o \ | |||||
src/Quantizer.o \ | |||||
src/QuantizeUtils.o \ | |||||
src/SimpleClock.o \ | |||||
src/ThingThing.o \ | |||||
src/WavHead.o \ | |||||
src/XYPad.o |
@@ -0,0 +1,7 @@ | |||||
SLUG=JW-Modules | |||||
include ../../../build_plugin_pre.mk | |||||
include make.objects | |||||
include ../../../build_plugin_post.mk |
@@ -0,0 +1,127 @@ | |||||
<?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="180" | |||||
height="380" | |||||
viewBox="0 0 47.625 100.54166" | |||||
version="1.1" | |||||
id="svg12553" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06" | |||||
sodipodi:docname="BlankPanelLarge.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="-11.696429" | |||||
inkscape:cy="126.02668" | |||||
inkscape:document-units="px" | |||||
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="1417" | |||||
inkscape:window-height="962" | |||||
inkscape:window-x="0" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
inkscape:snap-global="false"> | |||||
<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></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.543497,161.45211 h 47.624998 v 100.3961 H 26.543497 Z m 0,0" | |||||
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20387411" /> | |||||
<g | |||||
transform="matrix(3.520614,0,0,3.520614,-66.128573,-679.94446)" | |||||
id="layer1-8" | |||||
inkscape:label="Layer 1"> | |||||
<rect | |||||
y="256.12662" | |||||
x="29.52006" | |||||
height="1.6536458" | |||||
width="7.2760415" | |||||
id="rect823" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.71059781;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<rect | |||||
y="256.57309" | |||||
x="28.643627" | |||||
height="0.51248246" | |||||
width="9.0803432" | |||||
id="rect821" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.17694761;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<ellipse | |||||
ry="5.8699069" | |||||
rx="6.1973119" | |||||
cy="250.78661" | |||||
cx="33.068214" | |||||
id="path817" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.29476252;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<rect | |||||
y="257.08557" | |||||
x="28.265131" | |||||
height="4.3030396" | |||||
width="9.541522" | |||||
id="rect819" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.23695372;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<path | |||||
style="fill:#54b6fc;stroke-width:0.43423772" | |||||
d="m 28.040353,261.67777 c -0.05624,-0.1049 -0.09132,-1.05343 -0.09132,-2.46939 0,-2.62823 -0.06483,-2.41007 0.868669,-2.92327 0.298327,-0.16393 0.542417,-0.32331 0.542417,-0.35402 0,-0.0309 -0.162318,-0.16826 -0.360716,-0.30583 -1.028016,-0.71241 -2.013971,-2.17766 -2.338877,-3.47584 -0.201325,-0.80442 -0.134174,-2.39054 0.13451,-3.17721 1.033244,-3.02511 4.386038,-4.85502 7.661927,-4.18175 2.136444,0.4391 3.832748,1.7715 4.690824,3.6846 0.361925,0.8069 0.484002,1.41362 0.481552,2.39329 -0.0043,1.76252 -0.804317,3.40089 -2.221636,4.55038 -0.254647,0.20641 -0.463011,0.4065 -0.463011,0.44439 0,0.038 0.188503,0.17638 0.418915,0.30774 0.88078,0.5022 0.815782,0.26078 0.815782,3.02947 0,1.77735 -0.02862,2.465 -0.105831,2.54221 -0.07977,0.0796 -1.316324,0.10568 -5.023888,0.10568 -4.772077,0 -4.920765,-0.006 -5.009351,-0.17069 z m 4.778272,-1.34136 c 0.02029,-0.72066 0.0537,-0.91258 0.172084,-0.98706 0.106484,-0.067 0.185415,-0.0605 0.286623,0.0243 0.110188,0.0915 0.139673,0.2998 0.139673,0.98705 v 0.87111 h 2.031202 c 1.725502,0 2.038854,-0.0189 2.082046,-0.13248 0.118689,-0.30933 -0.0843,-0.54865 -1.048716,-1.23644 -0.806681,-0.57531 -0.992,-0.74828 -0.992,-0.92603 0,-0.17285 0.05069,-0.22425 0.242529,-0.24644 l 0.242526,-0.0279 v -0.72694 c 0,-0.82266 0.11329,-1.0851 0.425635,-0.98597 0.182308,0.0579 0.191777,0.11143 0.193075,1.09112 6.9e-4,0.56673 0.03051,1.07216 0.06615,1.12322 0.107317,0.15365 0.691445,0.5686 0.80071,0.5686 0.07253,0 0.101903,-0.37768 0.101903,-1.30922 0,-1.48548 0.04525,-1.38286 -0.823095,-1.86798 l -0.514419,-0.28745 -0.896236,0.29918 c -0.869904,0.29041 -0.937695,0.2992 -2.307746,0.29891 -1.355532,-2.1e-4 -1.441911,-0.0113 -2.177833,-0.27426 l -0.766317,-0.27401 -0.710913,0.40097 -0.710915,0.40096 v 1.35053 c 0,0.7428 0.02272,1.35058 0.05046,1.35058 0.02775,0 0.226187,-0.10309 0.440962,-0.22887 l 0.390524,-0.22887 0.0014,-0.89557 c 0.0016,-1.14751 0.206306,-1.60144 0.561721,-1.24599 0.108544,0.1085 0.142513,0.31853 0.142513,0.88028 v 0.7378 l 0.290718,-0.0471 c 0.315025,-0.0511 0.543194,0.11558 0.458905,0.33517 -0.02597,0.0676 -0.562393,0.43193 -1.192126,0.80964 -1.113533,0.66789 -1.144968,0.69508 -1.144968,0.9907 v 0.30396 h 2.069441 2.069444 z m 2.265337,-4.35748 c 1.820054,-0.60937 3.301106,-2.14018 3.754405,-3.88051 0.141672,-0.5439 0.182494,-2.03256 0.06101,-2.22398 -0.0547,-0.0862 -0.514454,-0.10647 -1.993182,-0.0881 l -1.922097,0.0243 -0.285943,0.79373 c -0.250451,0.69526 -0.311823,0.79372 -0.494567,0.79372 -0.193669,0 -0.219614,-0.0593 -0.361764,-0.82692 -0.233437,-1.26061 -0.264438,-1.24093 -0.550459,0.34982 -0.250913,1.39568 -0.282965,1.49134 -0.499452,1.49134 -0.208819,0 -0.19843,0.0455 -0.591264,-2.59459 -0.179846,-1.20877 -0.366691,-2.21079 -0.415197,-2.22673 -0.04851,-0.0164 -0.346157,0.47702 -0.661443,1.09535 l -0.573255,1.12428 -1.649981,0.0244 -1.649981,0.0243 -0.05961,0.3176 c -0.100912,0.53789 0.02055,1.63287 0.25608,2.31038 0.480987,1.38307 1.462121,2.47313 2.838905,3.15409 1.070426,0.52942 1.68831,0.6568 2.998555,0.61816 0.870867,-0.027 1.189545,-0.0752 1.799239,-0.27931 z m -2.582339,-0.34598 c -0.501349,-0.14204 -0.612279,-0.23104 -0.568647,-0.45582 0.02803,-0.14447 0.130451,-0.16555 0.868148,-0.17909 0.460004,-0.008 0.975273,-0.0281 1.145044,-0.0441 0.276178,-0.0243 0.311494,-0.006 0.335474,0.20237 0.023,0.19722 -0.02543,0.25187 -0.329357,0.37355 -0.522805,0.20913 -0.965587,0.24078 -1.450662,0.1031 z m -1.6422,-2.07469 c -0.09701,-0.0972 -0.176384,-0.25567 -0.176384,-0.35282 0,-0.24453 0.308426,-0.52913 0.573253,-0.52913 0.264818,0 0.573252,0.28468 0.573252,0.52913 0,0.24455 -0.308429,0.52918 -0.573252,0.52918 -0.121275,0 -0.299857,-0.0793 -0.396869,-0.17636 z m 3.439517,-0.0882 c -0.232761,-0.23267 -0.222508,-0.40285 0.0401,-0.66546 0.243582,-0.24345 0.329798,-0.25996 0.605107,-0.11502 0.242042,0.12748 0.321863,0.24591 0.323575,0.48022 0.0031,0.43406 -0.63668,0.63239 -0.968767,0.30029 z m -1.151475,-4.27736 c 0.296559,-1.78581 0.575578,-1.83207 0.874871,-0.14501 0.09772,0.55084 0.197295,1.02113 0.221263,1.04511 0.08271,0.0828 0.212362,-0.0613 0.273139,-0.30344 0.117052,-0.46642 0.107419,-0.46436 2.176972,-0.46436 2.188984,0 2.146871,0.0162 1.845872,-0.66529 -0.655344,-1.4815 -2.160669,-2.71162 -3.887876,-3.17706 -0.773684,-0.20858 -2.314597,-0.21425 -3.086746,-0.0113 -1.862761,0.48917 -3.433992,1.84034 -4.06194,3.49292 l -0.172218,0.45328 1.47768,-0.0243 1.477684,-0.0244 0.705541,-1.38465 c 0.388047,-0.76156 0.755433,-1.43456 0.816413,-1.4955 0.244962,-0.24482 0.364055,0.12518 0.643002,1.99713 0.151683,1.01798 0.296644,1.88465 0.322123,1.92588 0.102882,0.16637 0.192723,-0.12627 0.374219,-1.21922 z" | |||||
id="path4012-0" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#a0a0a0;stroke-width:0.43423772" | |||||
d="m 28.040353,261.67777 c -0.05624,-0.1049 -0.09132,-1.05343 -0.09132,-2.46939 0,-2.62823 -0.06483,-2.41007 0.868669,-2.92327 0.298327,-0.16393 0.542417,-0.32331 0.542417,-0.35402 0,-0.0309 -0.162318,-0.16826 -0.360716,-0.30583 -1.028016,-0.71241 -2.013971,-2.17766 -2.338877,-3.47584 -0.201325,-0.80442 -0.134174,-2.39054 0.13451,-3.17721 1.033244,-3.02511 4.386038,-4.85502 7.661927,-4.18175 2.136444,0.4391 3.832748,1.7715 4.690824,3.6846 0.361925,0.8069 0.484002,1.41362 0.481552,2.39329 -0.0043,1.76252 -0.804317,3.40089 -2.221636,4.55038 -0.254647,0.20641 -0.463011,0.4065 -0.463011,0.44439 0,0.038 0.188503,0.17638 0.418915,0.30774 0.88078,0.5022 0.815782,0.26078 0.815782,3.02947 0,1.77735 -0.02862,2.465 -0.105831,2.54221 -0.07977,0.0796 -1.316324,0.10568 -5.023888,0.10568 -4.772077,0 -4.920765,-0.006 -5.009351,-0.17069 z m 4.778272,-1.34136 c 0.02029,-0.72066 0.0537,-0.91258 0.172084,-0.98706 0.106484,-0.067 0.185415,-0.0605 0.286623,0.0243 0.110188,0.0915 0.139673,0.2998 0.139673,0.98705 v 0.87111 h 2.031202 c 1.725502,0 2.038854,-0.0189 2.082046,-0.13248 0.118689,-0.30933 -0.0843,-0.54865 -1.048716,-1.23644 -0.806681,-0.57531 -0.992,-0.74828 -0.992,-0.92603 0,-0.17285 0.05069,-0.22425 0.242529,-0.24644 l 0.242526,-0.0279 v -0.72694 c 0,-0.82266 0.11329,-1.0851 0.425635,-0.98597 0.182308,0.0579 0.191777,0.11143 0.193075,1.09112 6.9e-4,0.56673 0.03051,1.07216 0.06615,1.12322 0.107317,0.15365 0.691445,0.5686 0.80071,0.5686 0.07253,0 0.101903,-0.37768 0.101903,-1.30922 0,-1.48548 0.04525,-1.38286 -0.823095,-1.86798 l -0.514419,-0.28745 -0.896236,0.29918 c -0.869904,0.29041 -0.937695,0.2992 -2.307746,0.29891 -1.355532,-2.1e-4 -1.441911,-0.0113 -2.177833,-0.27426 l -0.766317,-0.27401 -0.710913,0.40097 -0.710915,0.40096 v 1.35053 c 0,0.7428 0.02272,1.35058 0.05046,1.35058 0.02775,0 0.226187,-0.10309 0.440962,-0.22887 l 0.390524,-0.22887 0.0014,-0.89557 c 0.0016,-1.14751 0.206306,-1.60144 0.561721,-1.24599 0.108544,0.1085 0.142513,0.31853 0.142513,0.88028 v 0.7378 l 0.290718,-0.0471 c 0.315025,-0.0511 0.543194,0.11558 0.458905,0.33517 -0.02597,0.0676 -0.562393,0.43193 -1.192126,0.80964 -1.113533,0.66789 -1.144968,0.69508 -1.144968,0.9907 v 0.30396 h 2.069441 2.069444 z m 2.265337,-4.35748 c 1.403562,-0.46993 2.640938,-1.50058 3.294283,-2.74387 0.429067,-0.81653 0.595175,-1.49004 0.593708,-2.40729 -0.002,-1.2675 0.205601,-1.15 -2.032309,-1.15 -1.442955,0 -1.942613,0.0275 -1.996101,0.11041 -0.03924,0.0606 -0.191398,0.42737 -0.338104,0.81498 -0.382438,1.0104 -0.497129,0.9789 -0.708436,-0.1945 -0.249425,-1.38497 -0.369803,-1.31205 -0.674781,0.40874 -0.236279,1.33315 -0.338408,1.62908 -0.50309,1.45776 -0.04428,-0.0461 -0.22394,-1.07598 -0.399194,-2.28859 -0.378048,-2.61568 -0.375281,-2.60172 -0.515638,-2.60172 -0.06054,0 -0.377093,0.53579 -0.703448,1.19062 l -0.593372,1.1906 h -1.626578 -1.626579 l -0.06131,0.40891 c -0.234007,1.5605 0.483321,3.42764 1.761718,4.58559 0.632883,0.57328 1.868907,1.21483 2.698432,1.40062 0.933964,0.20911 2.512332,0.12546 3.430809,-0.18205 z m -2.582339,-0.34598 c -0.501349,-0.14204 -0.612279,-0.23104 -0.568647,-0.45582 0.02803,-0.14447 0.130451,-0.16555 0.868148,-0.17909 0.460004,-0.008 0.975273,-0.0281 1.145044,-0.0441 0.276178,-0.0243 0.311494,-0.006 0.335474,0.20237 0.023,0.19722 -0.02543,0.25187 -0.329357,0.37355 -0.522805,0.20913 -0.965587,0.24078 -1.450662,0.1031 z m -1.6422,-2.07469 c -0.09701,-0.0972 -0.176384,-0.25567 -0.176384,-0.35282 0,-0.24453 0.308426,-0.52913 0.573253,-0.52913 0.264818,0 0.573252,0.28468 0.573252,0.52913 0,0.24455 -0.308429,0.52918 -0.573252,0.52918 -0.121275,0 -0.299857,-0.0793 -0.396869,-0.17636 z m 3.439517,-0.0882 c -0.232761,-0.23267 -0.222508,-0.40285 0.0401,-0.66546 0.243582,-0.24345 0.329798,-0.25996 0.605107,-0.11502 0.242042,0.12748 0.321863,0.24591 0.323575,0.48022 0.0031,0.43406 -0.63668,0.63239 -0.968767,0.30029 z m -1.097809,-4.10189 c 0.211607,-1.21013 0.333943,-1.55258 0.494567,-1.38443 0.03281,0.0344 0.152225,0.57839 0.265306,1.20896 0.232869,1.29834 0.343523,1.42064 0.618496,0.68352 l 0.172705,-0.46302 h 1.972971 c 1.085132,0 1.99242,-0.0315 2.016195,-0.0698 0.08023,-0.12991 -0.357483,-1.05886 -0.773608,-1.642 -0.728041,-1.02028 -1.981677,-1.859 -3.316077,-2.21859 -0.773686,-0.20857 -2.314601,-0.21426 -3.086747,-0.0113 -1.084749,0.28486 -1.999152,0.80872 -2.786328,1.59624 -0.677355,0.67767 -1.19903,1.50881 -1.403089,2.23545 l -0.05574,0.19856 1.439077,-9.8e-4 c 0.791494,-6.2e-4 1.483847,-0.0306 1.538565,-0.0662 0.05473,-0.0355 0.422055,-0.70973 0.816304,-1.49793 0.672478,-1.34451 0.811339,-1.54707 0.929474,-1.35595 0.02624,0.0426 0.169945,0.92549 0.319337,1.9623 0.278277,1.93132 0.382411,2.3719 0.526552,2.22775 0.04457,-0.0447 0.184959,-0.67541 0.312001,-1.40192 z" | |||||
id="path4010-4" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#179cfd;stroke-width:0.43423772" | |||||
d="m 28.084301,261.62139 c -0.09334,-0.2432 -0.06068,-4.53422 0.03585,-4.71459 0.04932,-0.0922 0.366818,-0.32942 0.705541,-0.52725 0.338727,-0.19778 0.615865,-0.39635 0.615865,-0.44114 0,-0.0449 -0.225402,-0.25131 -0.5009,-0.45914 -1.007366,-0.75955 -1.863496,-2.05429 -2.182561,-3.30077 -0.176274,-0.68859 -0.179006,-2.04001 -0.0054,-2.72476 0.07324,-0.28909 0.298305,-0.86296 0.500144,-1.27526 0.293281,-0.59912 0.51896,-0.90166 1.123813,-1.50667 0.628099,-0.62825 0.899287,-0.82698 1.594434,-1.16847 1.206772,-0.59277 1.759323,-0.7188 3.130615,-0.71416 0.806735,0.002 1.311968,0.0495 1.704825,0.15746 3.200698,0.88036 5.194794,3.81447 4.65392,6.84772 -0.248316,1.39251 -1.241594,2.98286 -2.337264,3.74216 -0.198811,0.13767 -0.36148,0.28303 -0.36148,0.3228 0,0.0398 0.277437,0.23428 0.616524,0.43238 0.393273,0.22968 0.633784,0.4307 0.664178,0.55509 0.02625,0.10714 0.03649,1.24673 0.02299,2.53213 l -0.02488,2.33712 -4.951132,0.0216 c -4.457619,0.0215 -4.956494,0.008 -5.004941,-0.11734 z m 4.796794,-1.27231 c 0.04062,-0.85254 0.0581,-0.92604 0.220478,-0.92604 0.162399,0 0.179874,0.0735 0.22048,0.92604 l 0.0441,0.92602 h 2.11542 c 1.979416,0 2.117418,-0.0113 2.146485,-0.16124 0.07415,-0.38501 -0.08786,-0.58193 -1.039039,-1.26279 -0.5321,-0.38086 -0.988888,-0.74572 -1.015085,-0.81071 -0.07133,-0.17694 0.02596,-0.27867 0.266821,-0.27867 0.212067,0 0.215285,-0.0113 0.215285,-0.78294 0,-0.57789 0.03363,-0.81084 0.12842,-0.88952 0.247505,-0.20531 0.312538,-0.006 0.312538,0.96492 0,0.5267 0.02407,1.0201 0.05321,1.09639 0.07569,0.19722 0.895628,0.78122 1.003392,0.71461 0.137026,-0.0848 0.118488,-2.70962 -0.02028,-2.88339 -0.06062,-0.0761 -0.366131,-0.28527 -0.678882,-0.46529 -0.638192,-0.36731 -0.664782,-0.36715 -1.680277,0.0113 -0.620191,0.23022 -0.749452,0.24593 -2.072528,0.24835 -1.367516,0.002 -1.436372,-0.006 -2.229991,-0.28332 l -0.818897,-0.286 -0.707163,0.41086 c -0.388942,0.22589 -0.744718,0.48108 -0.790616,0.56686 -0.04592,0.0857 -0.08344,0.71537 -0.08344,1.39919 0,0.99797 0.02488,1.25279 0.126404,1.29174 0.157447,0.0603 0.905595,-0.36921 1.022127,-0.58694 0.04739,-0.0885 0.0862,-0.57804 0.0862,-1.08767 0,-0.95796 0.0901,-1.20675 0.322052,-0.88956 0.07719,0.10547 0.118894,0.4201 0.118894,0.89644 v 0.73386 l 0.360543,-0.0576 c 0.341277,-0.0546 0.358954,-0.0466 0.330725,0.14961 -0.02299,0.16068 -0.280994,0.35508 -1.148549,0.86561 -1.145685,0.67416 -1.30229,0.84178 -1.171412,1.25421 0.05178,0.16311 0.145382,0.16933 2.186334,0.14688 l 2.132238,-0.0243 z m 2.160723,-4.26226 c 1.769875,-0.57963 3.167996,-1.90262 3.76078,-3.55863 0.192048,-0.53652 0.328288,-2.18171 0.217288,-2.62393 l -0.05685,-0.22641 h -1.977453 c -1.485114,0 -1.995217,0.0273 -2.0488,0.11041 -0.03924,0.0605 -0.191399,0.42736 -0.338105,0.81497 -0.382437,1.0104 -0.497129,0.97892 -0.708437,-0.1945 -0.249424,-1.38497 -0.369803,-1.31205 -0.674782,0.40873 -0.236276,1.33315 -0.338406,1.62909 -0.503087,1.45777 -0.04428,-0.046 -0.223941,-1.07597 -0.399196,-2.28861 -0.378048,-2.61567 -0.375282,-2.6017 -0.515636,-2.6017 -0.06054,0 -0.377094,0.53578 -0.703448,1.19062 l -0.593373,1.19063 h -1.628884 c -1.902339,0 -1.81147,-0.0499 -1.81147,0.99426 0,0.80431 0.255081,1.83651 0.632916,2.56111 0.424332,0.81377 1.610253,1.95985 2.460638,2.37796 1.097382,0.53952 1.794389,0.68665 3.07994,0.64999 0.892825,-0.0244 1.23655,-0.0755 1.807954,-0.26241 z m -2.425303,-0.51429 c -0.478805,-0.10703 -0.703657,-0.2876 -0.549872,-0.44139 0.07642,-0.0766 0.231706,-0.0808 0.585546,-0.0162 0.356597,0.0647 0.599579,0.0571 0.936494,-0.0291 0.48231,-0.12329 0.615302,-0.0987 0.615302,0.11422 0,0.28859 -0.958357,0.51378 -1.58747,0.37302 z m -1.706091,-2.08738 c -0.189693,-0.20965 -0.184796,-0.3936 0.01543,-0.57471 0.232894,-0.21073 0.518062,-0.17963 0.684657,0.0743 0.133834,0.20423 0.133834,0.23669 0,0.44096 -0.171756,0.26213 -0.491832,0.2892 -0.699982,0.0593 z m 3.421615,-0.14148 c -0.271481,-0.41435 0.198702,-0.82027 0.625904,-0.54036 0.247452,0.16205 0.279238,0.41467 0.07757,0.61634 -0.207737,0.20776 -0.541169,0.17179 -0.703478,-0.0761 z m -1.137669,-3.97553 c 0.211606,-1.21013 0.333942,-1.55259 0.494569,-1.38441 0.03282,0.0344 0.152224,0.57837 0.265305,1.20895 0.23276,1.29772 0.34355,1.42057 0.617887,0.68512 l 0.172107,-0.46134 2.000835,-0.0243 c 2.352706,-0.0279 2.281076,0.0162 1.723959,-1.05794 -0.429635,-0.82824 -1.435244,-1.8525 -2.279603,-2.32184 -3.036046,-1.6875 -6.967182,-0.61741 -8.490501,2.31125 -0.205682,0.39548 -0.373989,0.82207 -0.373989,0.94808 v 0.22911 l 1.433135,-9.7e-4 c 0.788221,-6e-4 1.477901,-0.0306 1.53262,-0.0663 0.05473,-0.0355 0.422054,-0.7097 0.816303,-1.49792 0.672479,-1.34449 0.811342,-1.54706 0.929474,-1.35594 0.02625,0.0425 0.169945,0.9255 0.319337,1.96229 0.278278,1.93132 0.382411,2.37191 0.526555,2.22776 0.04455,-0.0447 0.184956,-0.67543 0.311999,-1.40192 z" | |||||
id="path4008-5" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#050505;fill-opacity:1;stroke-width:0.43423772" | |||||
d="m 28.084301,261.62139 c -0.09334,-0.2432 -0.06068,-4.53422 0.03585,-4.71459 0.04932,-0.0922 0.366818,-0.32942 0.705541,-0.52725 0.338727,-0.19778 0.615865,-0.39635 0.615865,-0.44114 0,-0.0449 -0.225402,-0.25131 -0.5009,-0.45914 -1.007366,-0.75955 -1.863496,-2.05429 -2.182561,-3.30077 -0.176274,-0.68859 -0.179006,-2.04001 -0.0054,-2.72476 0.07324,-0.28909 0.298305,-0.86296 0.500144,-1.27526 0.293281,-0.59912 0.51896,-0.90166 1.123813,-1.50667 0.628099,-0.62825 0.899287,-0.82698 1.594434,-1.16847 1.206772,-0.59277 1.759323,-0.7188 3.130615,-0.71416 0.806735,0.002 1.311968,0.0495 1.704825,0.15746 3.200698,0.88036 5.194794,3.81447 4.65392,6.84772 -0.248316,1.39251 -1.241594,2.98286 -2.337264,3.74216 -0.198811,0.13767 -0.36148,0.28303 -0.36148,0.3228 0,0.0398 0.277437,0.23428 0.616524,0.43238 0.393273,0.22968 0.633784,0.4307 0.664178,0.55509 0.02625,0.10714 0.03649,1.24673 0.02299,2.53213 l -0.02488,2.33712 -4.951132,0.0216 c -4.457619,0.0215 -4.956494,0.008 -5.004941,-0.11734 z m 4.796794,-1.27231 c 0.04062,-0.85254 0.0581,-0.92604 0.220478,-0.92604 0.162399,0 0.179874,0.0735 0.22048,0.92604 l 0.0441,0.92602 h 2.11542 c 1.979416,0 2.117418,-0.0113 2.146485,-0.16124 0.07415,-0.38501 -0.08786,-0.58193 -1.039039,-1.26279 -0.5321,-0.38086 -0.988888,-0.74572 -1.015085,-0.81071 -0.07133,-0.17694 0.02596,-0.27867 0.266821,-0.27867 0.212067,0 0.215285,-0.0113 0.215285,-0.78294 0,-0.57789 0.03363,-0.81084 0.12842,-0.88952 0.247505,-0.20531 0.312538,-0.006 0.312538,0.96492 0,0.5267 0.02407,1.0201 0.05321,1.09639 0.07569,0.19722 0.895628,0.78122 1.003392,0.71461 0.137026,-0.0848 0.118488,-2.70962 -0.02028,-2.88339 -0.06062,-0.0761 -0.366131,-0.28527 -0.678882,-0.46529 -0.638192,-0.36731 -0.664782,-0.36715 -1.680277,0.0113 -0.620191,0.23022 -0.749452,0.24593 -2.072528,0.24835 -1.367516,0.002 -1.436372,-0.006 -2.229991,-0.28332 l -0.818897,-0.286 -0.707163,0.41086 c -0.388942,0.22589 -0.744718,0.48108 -0.790616,0.56686 -0.04592,0.0857 -0.08344,0.71537 -0.08344,1.39919 0,0.99797 0.02488,1.25279 0.126404,1.29174 0.157447,0.0603 0.905595,-0.36921 1.022127,-0.58694 0.04739,-0.0885 0.0862,-0.57804 0.0862,-1.08767 0,-0.95796 0.0901,-1.20675 0.322052,-0.88956 0.07719,0.10547 0.118894,0.4201 0.118894,0.89644 v 0.73386 l 0.360543,-0.0576 c 0.341277,-0.0546 0.358954,-0.0466 0.330725,0.14961 -0.02299,0.16068 -0.280994,0.35508 -1.148549,0.86561 -1.145685,0.67416 -1.30229,0.84178 -1.171412,1.25421 0.05178,0.16311 0.145382,0.16933 2.186334,0.14688 l 2.132238,-0.0243 z m 2.160723,-4.26226 c 1.798336,-0.58895 3.232202,-1.974 3.804655,-3.6751 0.213148,-0.63339 0.221914,-2.36663 0.01569,-3.09953 -0.356769,-1.26779 -1.453375,-2.62144 -2.672695,-3.2992 -2.477562,-1.37709 -5.596645,-0.9588 -7.541693,1.01144 -1.633552,1.65471 -2.027872,4.11443 -0.994473,6.2034 0.44418,0.89788 1.576714,2.0172 2.500652,2.47147 1.097382,0.53953 1.794387,0.68664 3.079941,0.64999 0.892823,-0.0243 1.236549,-0.0756 1.807951,-0.26241 z m -2.425303,-0.51429 c -0.478805,-0.10703 -0.703657,-0.2876 -0.549872,-0.44139 0.07642,-0.0766 0.231706,-0.0808 0.585546,-0.0162 0.356597,0.0647 0.599579,0.0571 0.936494,-0.0291 0.48231,-0.12329 0.615302,-0.0987 0.615302,0.11422 0,0.28859 -0.958357,0.51378 -1.58747,0.37302 z m -1.706091,-2.08738 c -0.189693,-0.20965 -0.184796,-0.3936 0.01543,-0.57471 0.232894,-0.21073 0.518062,-0.17963 0.684657,0.0743 0.133834,0.20423 0.133834,0.23669 0,0.44096 -0.171756,0.26213 -0.491832,0.2892 -0.699982,0.0593 z m 3.421615,-0.14148 c -0.271481,-0.41435 0.198702,-0.82027 0.625904,-0.54036 0.247452,0.16205 0.279238,0.41467 0.07757,0.61634 -0.207737,0.20776 -0.541169,0.17179 -0.703478,-0.0761 z" | |||||
id="path4006-7" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,127 @@ | |||||
<?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" | |||||
height="380" | |||||
viewBox="0 0 23.8125 100.54166" | |||||
version="1.1" | |||||
id="svg12553" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06" | |||||
sodipodi:docname="BlankPanelMedium.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="-11.696429" | |||||
inkscape:cy="126.02668" | |||||
inkscape:document-units="px" | |||||
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="1417" | |||||
inkscape:window-height="962" | |||||
inkscape:window-x="0" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
inkscape:snap-global="false"> | |||||
<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></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.543497,161.45211 h 23.812499 v 100.3961 H 26.543497 Z m 0,0" | |||||
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.14416076" /> | |||||
<g | |||||
transform="matrix(1.6864622,0,0,1.6864622,-17.349277,-215.44597)" | |||||
id="layer1-8" | |||||
inkscape:label="Layer 1"> | |||||
<rect | |||||
y="256.12662" | |||||
x="29.52006" | |||||
height="1.6536458" | |||||
width="7.2760415" | |||||
id="rect823" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.71059781;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<rect | |||||
y="256.57309" | |||||
x="28.643627" | |||||
height="0.51248246" | |||||
width="9.0803432" | |||||
id="rect821" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.17694761;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<ellipse | |||||
ry="5.8699069" | |||||
rx="6.1973119" | |||||
cy="250.78661" | |||||
cx="33.068214" | |||||
id="path817" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.29476252;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<rect | |||||
y="257.08557" | |||||
x="28.265131" | |||||
height="4.3030396" | |||||
width="9.541522" | |||||
id="rect819" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.23695372;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<path | |||||
style="fill:#54b6fc;stroke-width:0.43423772" | |||||
d="m 28.040353,261.67777 c -0.05624,-0.1049 -0.09132,-1.05343 -0.09132,-2.46939 0,-2.62823 -0.06483,-2.41007 0.868669,-2.92327 0.298327,-0.16393 0.542417,-0.32331 0.542417,-0.35402 0,-0.0309 -0.162318,-0.16826 -0.360716,-0.30583 -1.028016,-0.71241 -2.013971,-2.17766 -2.338877,-3.47584 -0.201325,-0.80442 -0.134174,-2.39054 0.13451,-3.17721 1.033244,-3.02511 4.386038,-4.85502 7.661927,-4.18175 2.136444,0.4391 3.832748,1.7715 4.690824,3.6846 0.361925,0.8069 0.484002,1.41362 0.481552,2.39329 -0.0043,1.76252 -0.804317,3.40089 -2.221636,4.55038 -0.254647,0.20641 -0.463011,0.4065 -0.463011,0.44439 0,0.038 0.188503,0.17638 0.418915,0.30774 0.88078,0.5022 0.815782,0.26078 0.815782,3.02947 0,1.77735 -0.02862,2.465 -0.105831,2.54221 -0.07977,0.0796 -1.316324,0.10568 -5.023888,0.10568 -4.772077,0 -4.920765,-0.006 -5.009351,-0.17069 z m 4.778272,-1.34136 c 0.02029,-0.72066 0.0537,-0.91258 0.172084,-0.98706 0.106484,-0.067 0.185415,-0.0605 0.286623,0.0243 0.110188,0.0915 0.139673,0.2998 0.139673,0.98705 v 0.87111 h 2.031202 c 1.725502,0 2.038854,-0.0189 2.082046,-0.13248 0.118689,-0.30933 -0.0843,-0.54865 -1.048716,-1.23644 -0.806681,-0.57531 -0.992,-0.74828 -0.992,-0.92603 0,-0.17285 0.05069,-0.22425 0.242529,-0.24644 l 0.242526,-0.0279 v -0.72694 c 0,-0.82266 0.11329,-1.0851 0.425635,-0.98597 0.182308,0.0579 0.191777,0.11143 0.193075,1.09112 6.9e-4,0.56673 0.03051,1.07216 0.06615,1.12322 0.107317,0.15365 0.691445,0.5686 0.80071,0.5686 0.07253,0 0.101903,-0.37768 0.101903,-1.30922 0,-1.48548 0.04525,-1.38286 -0.823095,-1.86798 l -0.514419,-0.28745 -0.896236,0.29918 c -0.869904,0.29041 -0.937695,0.2992 -2.307746,0.29891 -1.355532,-2.1e-4 -1.441911,-0.0113 -2.177833,-0.27426 l -0.766317,-0.27401 -0.710913,0.40097 -0.710915,0.40096 v 1.35053 c 0,0.7428 0.02272,1.35058 0.05046,1.35058 0.02775,0 0.226187,-0.10309 0.440962,-0.22887 l 0.390524,-0.22887 0.0014,-0.89557 c 0.0016,-1.14751 0.206306,-1.60144 0.561721,-1.24599 0.108544,0.1085 0.142513,0.31853 0.142513,0.88028 v 0.7378 l 0.290718,-0.0471 c 0.315025,-0.0511 0.543194,0.11558 0.458905,0.33517 -0.02597,0.0676 -0.562393,0.43193 -1.192126,0.80964 -1.113533,0.66789 -1.144968,0.69508 -1.144968,0.9907 v 0.30396 h 2.069441 2.069444 z m 2.265337,-4.35748 c 1.820054,-0.60937 3.301106,-2.14018 3.754405,-3.88051 0.141672,-0.5439 0.182494,-2.03256 0.06101,-2.22398 -0.0547,-0.0862 -0.514454,-0.10647 -1.993182,-0.0881 l -1.922097,0.0243 -0.285943,0.79373 c -0.250451,0.69526 -0.311823,0.79372 -0.494567,0.79372 -0.193669,0 -0.219614,-0.0593 -0.361764,-0.82692 -0.233437,-1.26061 -0.264438,-1.24093 -0.550459,0.34982 -0.250913,1.39568 -0.282965,1.49134 -0.499452,1.49134 -0.208819,0 -0.19843,0.0455 -0.591264,-2.59459 -0.179846,-1.20877 -0.366691,-2.21079 -0.415197,-2.22673 -0.04851,-0.0164 -0.346157,0.47702 -0.661443,1.09535 l -0.573255,1.12428 -1.649981,0.0244 -1.649981,0.0243 -0.05961,0.3176 c -0.100912,0.53789 0.02055,1.63287 0.25608,2.31038 0.480987,1.38307 1.462121,2.47313 2.838905,3.15409 1.070426,0.52942 1.68831,0.6568 2.998555,0.61816 0.870867,-0.027 1.189545,-0.0752 1.799239,-0.27931 z m -2.582339,-0.34598 c -0.501349,-0.14204 -0.612279,-0.23104 -0.568647,-0.45582 0.02803,-0.14447 0.130451,-0.16555 0.868148,-0.17909 0.460004,-0.008 0.975273,-0.0281 1.145044,-0.0441 0.276178,-0.0243 0.311494,-0.006 0.335474,0.20237 0.023,0.19722 -0.02543,0.25187 -0.329357,0.37355 -0.522805,0.20913 -0.965587,0.24078 -1.450662,0.1031 z m -1.6422,-2.07469 c -0.09701,-0.0972 -0.176384,-0.25567 -0.176384,-0.35282 0,-0.24453 0.308426,-0.52913 0.573253,-0.52913 0.264818,0 0.573252,0.28468 0.573252,0.52913 0,0.24455 -0.308429,0.52918 -0.573252,0.52918 -0.121275,0 -0.299857,-0.0793 -0.396869,-0.17636 z m 3.439517,-0.0882 c -0.232761,-0.23267 -0.222508,-0.40285 0.0401,-0.66546 0.243582,-0.24345 0.329798,-0.25996 0.605107,-0.11502 0.242042,0.12748 0.321863,0.24591 0.323575,0.48022 0.0031,0.43406 -0.63668,0.63239 -0.968767,0.30029 z m -1.151475,-4.27736 c 0.296559,-1.78581 0.575578,-1.83207 0.874871,-0.14501 0.09772,0.55084 0.197295,1.02113 0.221263,1.04511 0.08271,0.0828 0.212362,-0.0613 0.273139,-0.30344 0.117052,-0.46642 0.107419,-0.46436 2.176972,-0.46436 2.188984,0 2.146871,0.0162 1.845872,-0.66529 -0.655344,-1.4815 -2.160669,-2.71162 -3.887876,-3.17706 -0.773684,-0.20858 -2.314597,-0.21425 -3.086746,-0.0113 -1.862761,0.48917 -3.433992,1.84034 -4.06194,3.49292 l -0.172218,0.45328 1.47768,-0.0243 1.477684,-0.0244 0.705541,-1.38465 c 0.388047,-0.76156 0.755433,-1.43456 0.816413,-1.4955 0.244962,-0.24482 0.364055,0.12518 0.643002,1.99713 0.151683,1.01798 0.296644,1.88465 0.322123,1.92588 0.102882,0.16637 0.192723,-0.12627 0.374219,-1.21922 z" | |||||
id="path4012-0" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#a0a0a0;stroke-width:0.43423772" | |||||
d="m 28.040353,261.67777 c -0.05624,-0.1049 -0.09132,-1.05343 -0.09132,-2.46939 0,-2.62823 -0.06483,-2.41007 0.868669,-2.92327 0.298327,-0.16393 0.542417,-0.32331 0.542417,-0.35402 0,-0.0309 -0.162318,-0.16826 -0.360716,-0.30583 -1.028016,-0.71241 -2.013971,-2.17766 -2.338877,-3.47584 -0.201325,-0.80442 -0.134174,-2.39054 0.13451,-3.17721 1.033244,-3.02511 4.386038,-4.85502 7.661927,-4.18175 2.136444,0.4391 3.832748,1.7715 4.690824,3.6846 0.361925,0.8069 0.484002,1.41362 0.481552,2.39329 -0.0043,1.76252 -0.804317,3.40089 -2.221636,4.55038 -0.254647,0.20641 -0.463011,0.4065 -0.463011,0.44439 0,0.038 0.188503,0.17638 0.418915,0.30774 0.88078,0.5022 0.815782,0.26078 0.815782,3.02947 0,1.77735 -0.02862,2.465 -0.105831,2.54221 -0.07977,0.0796 -1.316324,0.10568 -5.023888,0.10568 -4.772077,0 -4.920765,-0.006 -5.009351,-0.17069 z m 4.778272,-1.34136 c 0.02029,-0.72066 0.0537,-0.91258 0.172084,-0.98706 0.106484,-0.067 0.185415,-0.0605 0.286623,0.0243 0.110188,0.0915 0.139673,0.2998 0.139673,0.98705 v 0.87111 h 2.031202 c 1.725502,0 2.038854,-0.0189 2.082046,-0.13248 0.118689,-0.30933 -0.0843,-0.54865 -1.048716,-1.23644 -0.806681,-0.57531 -0.992,-0.74828 -0.992,-0.92603 0,-0.17285 0.05069,-0.22425 0.242529,-0.24644 l 0.242526,-0.0279 v -0.72694 c 0,-0.82266 0.11329,-1.0851 0.425635,-0.98597 0.182308,0.0579 0.191777,0.11143 0.193075,1.09112 6.9e-4,0.56673 0.03051,1.07216 0.06615,1.12322 0.107317,0.15365 0.691445,0.5686 0.80071,0.5686 0.07253,0 0.101903,-0.37768 0.101903,-1.30922 0,-1.48548 0.04525,-1.38286 -0.823095,-1.86798 l -0.514419,-0.28745 -0.896236,0.29918 c -0.869904,0.29041 -0.937695,0.2992 -2.307746,0.29891 -1.355532,-2.1e-4 -1.441911,-0.0113 -2.177833,-0.27426 l -0.766317,-0.27401 -0.710913,0.40097 -0.710915,0.40096 v 1.35053 c 0,0.7428 0.02272,1.35058 0.05046,1.35058 0.02775,0 0.226187,-0.10309 0.440962,-0.22887 l 0.390524,-0.22887 0.0014,-0.89557 c 0.0016,-1.14751 0.206306,-1.60144 0.561721,-1.24599 0.108544,0.1085 0.142513,0.31853 0.142513,0.88028 v 0.7378 l 0.290718,-0.0471 c 0.315025,-0.0511 0.543194,0.11558 0.458905,0.33517 -0.02597,0.0676 -0.562393,0.43193 -1.192126,0.80964 -1.113533,0.66789 -1.144968,0.69508 -1.144968,0.9907 v 0.30396 h 2.069441 2.069444 z m 2.265337,-4.35748 c 1.403562,-0.46993 2.640938,-1.50058 3.294283,-2.74387 0.429067,-0.81653 0.595175,-1.49004 0.593708,-2.40729 -0.002,-1.2675 0.205601,-1.15 -2.032309,-1.15 -1.442955,0 -1.942613,0.0275 -1.996101,0.11041 -0.03924,0.0606 -0.191398,0.42737 -0.338104,0.81498 -0.382438,1.0104 -0.497129,0.9789 -0.708436,-0.1945 -0.249425,-1.38497 -0.369803,-1.31205 -0.674781,0.40874 -0.236279,1.33315 -0.338408,1.62908 -0.50309,1.45776 -0.04428,-0.0461 -0.22394,-1.07598 -0.399194,-2.28859 -0.378048,-2.61568 -0.375281,-2.60172 -0.515638,-2.60172 -0.06054,0 -0.377093,0.53579 -0.703448,1.19062 l -0.593372,1.1906 h -1.626578 -1.626579 l -0.06131,0.40891 c -0.234007,1.5605 0.483321,3.42764 1.761718,4.58559 0.632883,0.57328 1.868907,1.21483 2.698432,1.40062 0.933964,0.20911 2.512332,0.12546 3.430809,-0.18205 z m -2.582339,-0.34598 c -0.501349,-0.14204 -0.612279,-0.23104 -0.568647,-0.45582 0.02803,-0.14447 0.130451,-0.16555 0.868148,-0.17909 0.460004,-0.008 0.975273,-0.0281 1.145044,-0.0441 0.276178,-0.0243 0.311494,-0.006 0.335474,0.20237 0.023,0.19722 -0.02543,0.25187 -0.329357,0.37355 -0.522805,0.20913 -0.965587,0.24078 -1.450662,0.1031 z m -1.6422,-2.07469 c -0.09701,-0.0972 -0.176384,-0.25567 -0.176384,-0.35282 0,-0.24453 0.308426,-0.52913 0.573253,-0.52913 0.264818,0 0.573252,0.28468 0.573252,0.52913 0,0.24455 -0.308429,0.52918 -0.573252,0.52918 -0.121275,0 -0.299857,-0.0793 -0.396869,-0.17636 z m 3.439517,-0.0882 c -0.232761,-0.23267 -0.222508,-0.40285 0.0401,-0.66546 0.243582,-0.24345 0.329798,-0.25996 0.605107,-0.11502 0.242042,0.12748 0.321863,0.24591 0.323575,0.48022 0.0031,0.43406 -0.63668,0.63239 -0.968767,0.30029 z m -1.097809,-4.10189 c 0.211607,-1.21013 0.333943,-1.55258 0.494567,-1.38443 0.03281,0.0344 0.152225,0.57839 0.265306,1.20896 0.232869,1.29834 0.343523,1.42064 0.618496,0.68352 l 0.172705,-0.46302 h 1.972971 c 1.085132,0 1.99242,-0.0315 2.016195,-0.0698 0.08023,-0.12991 -0.357483,-1.05886 -0.773608,-1.642 -0.728041,-1.02028 -1.981677,-1.859 -3.316077,-2.21859 -0.773686,-0.20857 -2.314601,-0.21426 -3.086747,-0.0113 -1.084749,0.28486 -1.999152,0.80872 -2.786328,1.59624 -0.677355,0.67767 -1.19903,1.50881 -1.403089,2.23545 l -0.05574,0.19856 1.439077,-9.8e-4 c 0.791494,-6.2e-4 1.483847,-0.0306 1.538565,-0.0662 0.05473,-0.0355 0.422055,-0.70973 0.816304,-1.49793 0.672478,-1.34451 0.811339,-1.54707 0.929474,-1.35595 0.02624,0.0426 0.169945,0.92549 0.319337,1.9623 0.278277,1.93132 0.382411,2.3719 0.526552,2.22775 0.04457,-0.0447 0.184959,-0.67541 0.312001,-1.40192 z" | |||||
id="path4010-4" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#179cfd;stroke-width:0.43423772" | |||||
d="m 28.084301,261.62139 c -0.09334,-0.2432 -0.06068,-4.53422 0.03585,-4.71459 0.04932,-0.0922 0.366818,-0.32942 0.705541,-0.52725 0.338727,-0.19778 0.615865,-0.39635 0.615865,-0.44114 0,-0.0449 -0.225402,-0.25131 -0.5009,-0.45914 -1.007366,-0.75955 -1.863496,-2.05429 -2.182561,-3.30077 -0.176274,-0.68859 -0.179006,-2.04001 -0.0054,-2.72476 0.07324,-0.28909 0.298305,-0.86296 0.500144,-1.27526 0.293281,-0.59912 0.51896,-0.90166 1.123813,-1.50667 0.628099,-0.62825 0.899287,-0.82698 1.594434,-1.16847 1.206772,-0.59277 1.759323,-0.7188 3.130615,-0.71416 0.806735,0.002 1.311968,0.0495 1.704825,0.15746 3.200698,0.88036 5.194794,3.81447 4.65392,6.84772 -0.248316,1.39251 -1.241594,2.98286 -2.337264,3.74216 -0.198811,0.13767 -0.36148,0.28303 -0.36148,0.3228 0,0.0398 0.277437,0.23428 0.616524,0.43238 0.393273,0.22968 0.633784,0.4307 0.664178,0.55509 0.02625,0.10714 0.03649,1.24673 0.02299,2.53213 l -0.02488,2.33712 -4.951132,0.0216 c -4.457619,0.0215 -4.956494,0.008 -5.004941,-0.11734 z m 4.796794,-1.27231 c 0.04062,-0.85254 0.0581,-0.92604 0.220478,-0.92604 0.162399,0 0.179874,0.0735 0.22048,0.92604 l 0.0441,0.92602 h 2.11542 c 1.979416,0 2.117418,-0.0113 2.146485,-0.16124 0.07415,-0.38501 -0.08786,-0.58193 -1.039039,-1.26279 -0.5321,-0.38086 -0.988888,-0.74572 -1.015085,-0.81071 -0.07133,-0.17694 0.02596,-0.27867 0.266821,-0.27867 0.212067,0 0.215285,-0.0113 0.215285,-0.78294 0,-0.57789 0.03363,-0.81084 0.12842,-0.88952 0.247505,-0.20531 0.312538,-0.006 0.312538,0.96492 0,0.5267 0.02407,1.0201 0.05321,1.09639 0.07569,0.19722 0.895628,0.78122 1.003392,0.71461 0.137026,-0.0848 0.118488,-2.70962 -0.02028,-2.88339 -0.06062,-0.0761 -0.366131,-0.28527 -0.678882,-0.46529 -0.638192,-0.36731 -0.664782,-0.36715 -1.680277,0.0113 -0.620191,0.23022 -0.749452,0.24593 -2.072528,0.24835 -1.367516,0.002 -1.436372,-0.006 -2.229991,-0.28332 l -0.818897,-0.286 -0.707163,0.41086 c -0.388942,0.22589 -0.744718,0.48108 -0.790616,0.56686 -0.04592,0.0857 -0.08344,0.71537 -0.08344,1.39919 0,0.99797 0.02488,1.25279 0.126404,1.29174 0.157447,0.0603 0.905595,-0.36921 1.022127,-0.58694 0.04739,-0.0885 0.0862,-0.57804 0.0862,-1.08767 0,-0.95796 0.0901,-1.20675 0.322052,-0.88956 0.07719,0.10547 0.118894,0.4201 0.118894,0.89644 v 0.73386 l 0.360543,-0.0576 c 0.341277,-0.0546 0.358954,-0.0466 0.330725,0.14961 -0.02299,0.16068 -0.280994,0.35508 -1.148549,0.86561 -1.145685,0.67416 -1.30229,0.84178 -1.171412,1.25421 0.05178,0.16311 0.145382,0.16933 2.186334,0.14688 l 2.132238,-0.0243 z m 2.160723,-4.26226 c 1.769875,-0.57963 3.167996,-1.90262 3.76078,-3.55863 0.192048,-0.53652 0.328288,-2.18171 0.217288,-2.62393 l -0.05685,-0.22641 h -1.977453 c -1.485114,0 -1.995217,0.0273 -2.0488,0.11041 -0.03924,0.0605 -0.191399,0.42736 -0.338105,0.81497 -0.382437,1.0104 -0.497129,0.97892 -0.708437,-0.1945 -0.249424,-1.38497 -0.369803,-1.31205 -0.674782,0.40873 -0.236276,1.33315 -0.338406,1.62909 -0.503087,1.45777 -0.04428,-0.046 -0.223941,-1.07597 -0.399196,-2.28861 -0.378048,-2.61567 -0.375282,-2.6017 -0.515636,-2.6017 -0.06054,0 -0.377094,0.53578 -0.703448,1.19062 l -0.593373,1.19063 h -1.628884 c -1.902339,0 -1.81147,-0.0499 -1.81147,0.99426 0,0.80431 0.255081,1.83651 0.632916,2.56111 0.424332,0.81377 1.610253,1.95985 2.460638,2.37796 1.097382,0.53952 1.794389,0.68665 3.07994,0.64999 0.892825,-0.0244 1.23655,-0.0755 1.807954,-0.26241 z m -2.425303,-0.51429 c -0.478805,-0.10703 -0.703657,-0.2876 -0.549872,-0.44139 0.07642,-0.0766 0.231706,-0.0808 0.585546,-0.0162 0.356597,0.0647 0.599579,0.0571 0.936494,-0.0291 0.48231,-0.12329 0.615302,-0.0987 0.615302,0.11422 0,0.28859 -0.958357,0.51378 -1.58747,0.37302 z m -1.706091,-2.08738 c -0.189693,-0.20965 -0.184796,-0.3936 0.01543,-0.57471 0.232894,-0.21073 0.518062,-0.17963 0.684657,0.0743 0.133834,0.20423 0.133834,0.23669 0,0.44096 -0.171756,0.26213 -0.491832,0.2892 -0.699982,0.0593 z m 3.421615,-0.14148 c -0.271481,-0.41435 0.198702,-0.82027 0.625904,-0.54036 0.247452,0.16205 0.279238,0.41467 0.07757,0.61634 -0.207737,0.20776 -0.541169,0.17179 -0.703478,-0.0761 z m -1.137669,-3.97553 c 0.211606,-1.21013 0.333942,-1.55259 0.494569,-1.38441 0.03282,0.0344 0.152224,0.57837 0.265305,1.20895 0.23276,1.29772 0.34355,1.42057 0.617887,0.68512 l 0.172107,-0.46134 2.000835,-0.0243 c 2.352706,-0.0279 2.281076,0.0162 1.723959,-1.05794 -0.429635,-0.82824 -1.435244,-1.8525 -2.279603,-2.32184 -3.036046,-1.6875 -6.967182,-0.61741 -8.490501,2.31125 -0.205682,0.39548 -0.373989,0.82207 -0.373989,0.94808 v 0.22911 l 1.433135,-9.7e-4 c 0.788221,-6e-4 1.477901,-0.0306 1.53262,-0.0663 0.05473,-0.0355 0.422054,-0.7097 0.816303,-1.49792 0.672479,-1.34449 0.811342,-1.54706 0.929474,-1.35594 0.02625,0.0425 0.169945,0.9255 0.319337,1.96229 0.278278,1.93132 0.382411,2.37191 0.526555,2.22776 0.04455,-0.0447 0.184956,-0.67543 0.311999,-1.40192 z" | |||||
id="path4008-5" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#050505;fill-opacity:1;stroke-width:0.43423772" | |||||
d="m 28.084301,261.62139 c -0.09334,-0.2432 -0.06068,-4.53422 0.03585,-4.71459 0.04932,-0.0922 0.366818,-0.32942 0.705541,-0.52725 0.338727,-0.19778 0.615865,-0.39635 0.615865,-0.44114 0,-0.0449 -0.225402,-0.25131 -0.5009,-0.45914 -1.007366,-0.75955 -1.863496,-2.05429 -2.182561,-3.30077 -0.176274,-0.68859 -0.179006,-2.04001 -0.0054,-2.72476 0.07324,-0.28909 0.298305,-0.86296 0.500144,-1.27526 0.293281,-0.59912 0.51896,-0.90166 1.123813,-1.50667 0.628099,-0.62825 0.899287,-0.82698 1.594434,-1.16847 1.206772,-0.59277 1.759323,-0.7188 3.130615,-0.71416 0.806735,0.002 1.311968,0.0495 1.704825,0.15746 3.200698,0.88036 5.194794,3.81447 4.65392,6.84772 -0.248316,1.39251 -1.241594,2.98286 -2.337264,3.74216 -0.198811,0.13767 -0.36148,0.28303 -0.36148,0.3228 0,0.0398 0.277437,0.23428 0.616524,0.43238 0.393273,0.22968 0.633784,0.4307 0.664178,0.55509 0.02625,0.10714 0.03649,1.24673 0.02299,2.53213 l -0.02488,2.33712 -4.951132,0.0216 c -4.457619,0.0215 -4.956494,0.008 -5.004941,-0.11734 z m 4.796794,-1.27231 c 0.04062,-0.85254 0.0581,-0.92604 0.220478,-0.92604 0.162399,0 0.179874,0.0735 0.22048,0.92604 l 0.0441,0.92602 h 2.11542 c 1.979416,0 2.117418,-0.0113 2.146485,-0.16124 0.07415,-0.38501 -0.08786,-0.58193 -1.039039,-1.26279 -0.5321,-0.38086 -0.988888,-0.74572 -1.015085,-0.81071 -0.07133,-0.17694 0.02596,-0.27867 0.266821,-0.27867 0.212067,0 0.215285,-0.0113 0.215285,-0.78294 0,-0.57789 0.03363,-0.81084 0.12842,-0.88952 0.247505,-0.20531 0.312538,-0.006 0.312538,0.96492 0,0.5267 0.02407,1.0201 0.05321,1.09639 0.07569,0.19722 0.895628,0.78122 1.003392,0.71461 0.137026,-0.0848 0.118488,-2.70962 -0.02028,-2.88339 -0.06062,-0.0761 -0.366131,-0.28527 -0.678882,-0.46529 -0.638192,-0.36731 -0.664782,-0.36715 -1.680277,0.0113 -0.620191,0.23022 -0.749452,0.24593 -2.072528,0.24835 -1.367516,0.002 -1.436372,-0.006 -2.229991,-0.28332 l -0.818897,-0.286 -0.707163,0.41086 c -0.388942,0.22589 -0.744718,0.48108 -0.790616,0.56686 -0.04592,0.0857 -0.08344,0.71537 -0.08344,1.39919 0,0.99797 0.02488,1.25279 0.126404,1.29174 0.157447,0.0603 0.905595,-0.36921 1.022127,-0.58694 0.04739,-0.0885 0.0862,-0.57804 0.0862,-1.08767 0,-0.95796 0.0901,-1.20675 0.322052,-0.88956 0.07719,0.10547 0.118894,0.4201 0.118894,0.89644 v 0.73386 l 0.360543,-0.0576 c 0.341277,-0.0546 0.358954,-0.0466 0.330725,0.14961 -0.02299,0.16068 -0.280994,0.35508 -1.148549,0.86561 -1.145685,0.67416 -1.30229,0.84178 -1.171412,1.25421 0.05178,0.16311 0.145382,0.16933 2.186334,0.14688 l 2.132238,-0.0243 z m 2.160723,-4.26226 c 1.798336,-0.58895 3.232202,-1.974 3.804655,-3.6751 0.213148,-0.63339 0.221914,-2.36663 0.01569,-3.09953 -0.356769,-1.26779 -1.453375,-2.62144 -2.672695,-3.2992 -2.477562,-1.37709 -5.596645,-0.9588 -7.541693,1.01144 -1.633552,1.65471 -2.027872,4.11443 -0.994473,6.2034 0.44418,0.89788 1.576714,2.0172 2.500652,2.47147 1.097382,0.53953 1.794387,0.68664 3.079941,0.64999 0.892823,-0.0243 1.236549,-0.0756 1.807951,-0.26241 z m -2.425303,-0.51429 c -0.478805,-0.10703 -0.703657,-0.2876 -0.549872,-0.44139 0.07642,-0.0766 0.231706,-0.0808 0.585546,-0.0162 0.356597,0.0647 0.599579,0.0571 0.936494,-0.0291 0.48231,-0.12329 0.615302,-0.0987 0.615302,0.11422 0,0.28859 -0.958357,0.51378 -1.58747,0.37302 z m -1.706091,-2.08738 c -0.189693,-0.20965 -0.184796,-0.3936 0.01543,-0.57471 0.232894,-0.21073 0.518062,-0.17963 0.684657,0.0743 0.133834,0.20423 0.133834,0.23669 0,0.44096 -0.171756,0.26213 -0.491832,0.2892 -0.699982,0.0593 z m 3.421615,-0.14148 c -0.271481,-0.41435 0.198702,-0.82027 0.625904,-0.54036 0.247452,0.16205 0.279238,0.41467 0.07757,0.61634 -0.207737,0.20776 -0.541169,0.17179 -0.703478,-0.0761 z" | |||||
id="path4006-7" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,127 @@ | |||||
<?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="45" | |||||
height="380" | |||||
viewBox="0 0 11.90625 100.54166" | |||||
version="1.1" | |||||
id="svg12553" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06" | |||||
sodipodi:docname="BlankPanelSmall.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="-143.125" | |||||
inkscape:cy="166.43278" | |||||
inkscape:document-units="px" | |||||
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="1417" | |||||
inkscape:window-height="962" | |||||
inkscape:window-x="0" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
inkscape:snap-global="false"> | |||||
<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></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.543497,161.45211 h 11.90625 v 100.3961 h -11.90625 z m 0,0" | |||||
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.10193706" /> | |||||
<g | |||||
transform="matrix(0.8272429,0,0,0.8272429,5.1261028,2.1511011)" | |||||
id="layer1-8" | |||||
inkscape:label="Layer 1"> | |||||
<rect | |||||
y="256.12662" | |||||
x="29.52006" | |||||
height="1.6536458" | |||||
width="7.2760415" | |||||
id="rect823" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.71059781;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<rect | |||||
y="256.57309" | |||||
x="28.643627" | |||||
height="0.51248246" | |||||
width="9.0803432" | |||||
id="rect821" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.17694761;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<ellipse | |||||
ry="5.8699069" | |||||
rx="6.1973119" | |||||
cy="250.78661" | |||||
cx="33.068214" | |||||
id="path817" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.29476252;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<rect | |||||
y="257.08557" | |||||
x="28.265131" | |||||
height="4.3030396" | |||||
width="9.541522" | |||||
id="rect819" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.23695372;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<path | |||||
style="fill:#54b6fc;stroke-width:0.43423772" | |||||
d="m 28.040353,261.67777 c -0.05624,-0.1049 -0.09132,-1.05343 -0.09132,-2.46939 0,-2.62823 -0.06483,-2.41007 0.868669,-2.92327 0.298327,-0.16393 0.542417,-0.32331 0.542417,-0.35402 0,-0.0309 -0.162318,-0.16826 -0.360716,-0.30583 -1.028016,-0.71241 -2.013971,-2.17766 -2.338877,-3.47584 -0.201325,-0.80442 -0.134174,-2.39054 0.13451,-3.17721 1.033244,-3.02511 4.386038,-4.85502 7.661927,-4.18175 2.136444,0.4391 3.832748,1.7715 4.690824,3.6846 0.361925,0.8069 0.484002,1.41362 0.481552,2.39329 -0.0043,1.76252 -0.804317,3.40089 -2.221636,4.55038 -0.254647,0.20641 -0.463011,0.4065 -0.463011,0.44439 0,0.038 0.188503,0.17638 0.418915,0.30774 0.88078,0.5022 0.815782,0.26078 0.815782,3.02947 0,1.77735 -0.02862,2.465 -0.105831,2.54221 -0.07977,0.0796 -1.316324,0.10568 -5.023888,0.10568 -4.772077,0 -4.920765,-0.006 -5.009351,-0.17069 z m 4.778272,-1.34136 c 0.02029,-0.72066 0.0537,-0.91258 0.172084,-0.98706 0.106484,-0.067 0.185415,-0.0605 0.286623,0.0243 0.110188,0.0915 0.139673,0.2998 0.139673,0.98705 v 0.87111 h 2.031202 c 1.725502,0 2.038854,-0.0189 2.082046,-0.13248 0.118689,-0.30933 -0.0843,-0.54865 -1.048716,-1.23644 -0.806681,-0.57531 -0.992,-0.74828 -0.992,-0.92603 0,-0.17285 0.05069,-0.22425 0.242529,-0.24644 l 0.242526,-0.0279 v -0.72694 c 0,-0.82266 0.11329,-1.0851 0.425635,-0.98597 0.182308,0.0579 0.191777,0.11143 0.193075,1.09112 6.9e-4,0.56673 0.03051,1.07216 0.06615,1.12322 0.107317,0.15365 0.691445,0.5686 0.80071,0.5686 0.07253,0 0.101903,-0.37768 0.101903,-1.30922 0,-1.48548 0.04525,-1.38286 -0.823095,-1.86798 l -0.514419,-0.28745 -0.896236,0.29918 c -0.869904,0.29041 -0.937695,0.2992 -2.307746,0.29891 -1.355532,-2.1e-4 -1.441911,-0.0113 -2.177833,-0.27426 l -0.766317,-0.27401 -0.710913,0.40097 -0.710915,0.40096 v 1.35053 c 0,0.7428 0.02272,1.35058 0.05046,1.35058 0.02775,0 0.226187,-0.10309 0.440962,-0.22887 l 0.390524,-0.22887 0.0014,-0.89557 c 0.0016,-1.14751 0.206306,-1.60144 0.561721,-1.24599 0.108544,0.1085 0.142513,0.31853 0.142513,0.88028 v 0.7378 l 0.290718,-0.0471 c 0.315025,-0.0511 0.543194,0.11558 0.458905,0.33517 -0.02597,0.0676 -0.562393,0.43193 -1.192126,0.80964 -1.113533,0.66789 -1.144968,0.69508 -1.144968,0.9907 v 0.30396 h 2.069441 2.069444 z m 2.265337,-4.35748 c 1.820054,-0.60937 3.301106,-2.14018 3.754405,-3.88051 0.141672,-0.5439 0.182494,-2.03256 0.06101,-2.22398 -0.0547,-0.0862 -0.514454,-0.10647 -1.993182,-0.0881 l -1.922097,0.0243 -0.285943,0.79373 c -0.250451,0.69526 -0.311823,0.79372 -0.494567,0.79372 -0.193669,0 -0.219614,-0.0593 -0.361764,-0.82692 -0.233437,-1.26061 -0.264438,-1.24093 -0.550459,0.34982 -0.250913,1.39568 -0.282965,1.49134 -0.499452,1.49134 -0.208819,0 -0.19843,0.0455 -0.591264,-2.59459 -0.179846,-1.20877 -0.366691,-2.21079 -0.415197,-2.22673 -0.04851,-0.0164 -0.346157,0.47702 -0.661443,1.09535 l -0.573255,1.12428 -1.649981,0.0244 -1.649981,0.0243 -0.05961,0.3176 c -0.100912,0.53789 0.02055,1.63287 0.25608,2.31038 0.480987,1.38307 1.462121,2.47313 2.838905,3.15409 1.070426,0.52942 1.68831,0.6568 2.998555,0.61816 0.870867,-0.027 1.189545,-0.0752 1.799239,-0.27931 z m -2.582339,-0.34598 c -0.501349,-0.14204 -0.612279,-0.23104 -0.568647,-0.45582 0.02803,-0.14447 0.130451,-0.16555 0.868148,-0.17909 0.460004,-0.008 0.975273,-0.0281 1.145044,-0.0441 0.276178,-0.0243 0.311494,-0.006 0.335474,0.20237 0.023,0.19722 -0.02543,0.25187 -0.329357,0.37355 -0.522805,0.20913 -0.965587,0.24078 -1.450662,0.1031 z m -1.6422,-2.07469 c -0.09701,-0.0972 -0.176384,-0.25567 -0.176384,-0.35282 0,-0.24453 0.308426,-0.52913 0.573253,-0.52913 0.264818,0 0.573252,0.28468 0.573252,0.52913 0,0.24455 -0.308429,0.52918 -0.573252,0.52918 -0.121275,0 -0.299857,-0.0793 -0.396869,-0.17636 z m 3.439517,-0.0882 c -0.232761,-0.23267 -0.222508,-0.40285 0.0401,-0.66546 0.243582,-0.24345 0.329798,-0.25996 0.605107,-0.11502 0.242042,0.12748 0.321863,0.24591 0.323575,0.48022 0.0031,0.43406 -0.63668,0.63239 -0.968767,0.30029 z m -1.151475,-4.27736 c 0.296559,-1.78581 0.575578,-1.83207 0.874871,-0.14501 0.09772,0.55084 0.197295,1.02113 0.221263,1.04511 0.08271,0.0828 0.212362,-0.0613 0.273139,-0.30344 0.117052,-0.46642 0.107419,-0.46436 2.176972,-0.46436 2.188984,0 2.146871,0.0162 1.845872,-0.66529 -0.655344,-1.4815 -2.160669,-2.71162 -3.887876,-3.17706 -0.773684,-0.20858 -2.314597,-0.21425 -3.086746,-0.0113 -1.862761,0.48917 -3.433992,1.84034 -4.06194,3.49292 l -0.172218,0.45328 1.47768,-0.0243 1.477684,-0.0244 0.705541,-1.38465 c 0.388047,-0.76156 0.755433,-1.43456 0.816413,-1.4955 0.244962,-0.24482 0.364055,0.12518 0.643002,1.99713 0.151683,1.01798 0.296644,1.88465 0.322123,1.92588 0.102882,0.16637 0.192723,-0.12627 0.374219,-1.21922 z" | |||||
id="path4012-0" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#a0a0a0;stroke-width:0.43423772" | |||||
d="m 28.040353,261.67777 c -0.05624,-0.1049 -0.09132,-1.05343 -0.09132,-2.46939 0,-2.62823 -0.06483,-2.41007 0.868669,-2.92327 0.298327,-0.16393 0.542417,-0.32331 0.542417,-0.35402 0,-0.0309 -0.162318,-0.16826 -0.360716,-0.30583 -1.028016,-0.71241 -2.013971,-2.17766 -2.338877,-3.47584 -0.201325,-0.80442 -0.134174,-2.39054 0.13451,-3.17721 1.033244,-3.02511 4.386038,-4.85502 7.661927,-4.18175 2.136444,0.4391 3.832748,1.7715 4.690824,3.6846 0.361925,0.8069 0.484002,1.41362 0.481552,2.39329 -0.0043,1.76252 -0.804317,3.40089 -2.221636,4.55038 -0.254647,0.20641 -0.463011,0.4065 -0.463011,0.44439 0,0.038 0.188503,0.17638 0.418915,0.30774 0.88078,0.5022 0.815782,0.26078 0.815782,3.02947 0,1.77735 -0.02862,2.465 -0.105831,2.54221 -0.07977,0.0796 -1.316324,0.10568 -5.023888,0.10568 -4.772077,0 -4.920765,-0.006 -5.009351,-0.17069 z m 4.778272,-1.34136 c 0.02029,-0.72066 0.0537,-0.91258 0.172084,-0.98706 0.106484,-0.067 0.185415,-0.0605 0.286623,0.0243 0.110188,0.0915 0.139673,0.2998 0.139673,0.98705 v 0.87111 h 2.031202 c 1.725502,0 2.038854,-0.0189 2.082046,-0.13248 0.118689,-0.30933 -0.0843,-0.54865 -1.048716,-1.23644 -0.806681,-0.57531 -0.992,-0.74828 -0.992,-0.92603 0,-0.17285 0.05069,-0.22425 0.242529,-0.24644 l 0.242526,-0.0279 v -0.72694 c 0,-0.82266 0.11329,-1.0851 0.425635,-0.98597 0.182308,0.0579 0.191777,0.11143 0.193075,1.09112 6.9e-4,0.56673 0.03051,1.07216 0.06615,1.12322 0.107317,0.15365 0.691445,0.5686 0.80071,0.5686 0.07253,0 0.101903,-0.37768 0.101903,-1.30922 0,-1.48548 0.04525,-1.38286 -0.823095,-1.86798 l -0.514419,-0.28745 -0.896236,0.29918 c -0.869904,0.29041 -0.937695,0.2992 -2.307746,0.29891 -1.355532,-2.1e-4 -1.441911,-0.0113 -2.177833,-0.27426 l -0.766317,-0.27401 -0.710913,0.40097 -0.710915,0.40096 v 1.35053 c 0,0.7428 0.02272,1.35058 0.05046,1.35058 0.02775,0 0.226187,-0.10309 0.440962,-0.22887 l 0.390524,-0.22887 0.0014,-0.89557 c 0.0016,-1.14751 0.206306,-1.60144 0.561721,-1.24599 0.108544,0.1085 0.142513,0.31853 0.142513,0.88028 v 0.7378 l 0.290718,-0.0471 c 0.315025,-0.0511 0.543194,0.11558 0.458905,0.33517 -0.02597,0.0676 -0.562393,0.43193 -1.192126,0.80964 -1.113533,0.66789 -1.144968,0.69508 -1.144968,0.9907 v 0.30396 h 2.069441 2.069444 z m 2.265337,-4.35748 c 1.403562,-0.46993 2.640938,-1.50058 3.294283,-2.74387 0.429067,-0.81653 0.595175,-1.49004 0.593708,-2.40729 -0.002,-1.2675 0.205601,-1.15 -2.032309,-1.15 -1.442955,0 -1.942613,0.0275 -1.996101,0.11041 -0.03924,0.0606 -0.191398,0.42737 -0.338104,0.81498 -0.382438,1.0104 -0.497129,0.9789 -0.708436,-0.1945 -0.249425,-1.38497 -0.369803,-1.31205 -0.674781,0.40874 -0.236279,1.33315 -0.338408,1.62908 -0.50309,1.45776 -0.04428,-0.0461 -0.22394,-1.07598 -0.399194,-2.28859 -0.378048,-2.61568 -0.375281,-2.60172 -0.515638,-2.60172 -0.06054,0 -0.377093,0.53579 -0.703448,1.19062 l -0.593372,1.1906 h -1.626578 -1.626579 l -0.06131,0.40891 c -0.234007,1.5605 0.483321,3.42764 1.761718,4.58559 0.632883,0.57328 1.868907,1.21483 2.698432,1.40062 0.933964,0.20911 2.512332,0.12546 3.430809,-0.18205 z m -2.582339,-0.34598 c -0.501349,-0.14204 -0.612279,-0.23104 -0.568647,-0.45582 0.02803,-0.14447 0.130451,-0.16555 0.868148,-0.17909 0.460004,-0.008 0.975273,-0.0281 1.145044,-0.0441 0.276178,-0.0243 0.311494,-0.006 0.335474,0.20237 0.023,0.19722 -0.02543,0.25187 -0.329357,0.37355 -0.522805,0.20913 -0.965587,0.24078 -1.450662,0.1031 z m -1.6422,-2.07469 c -0.09701,-0.0972 -0.176384,-0.25567 -0.176384,-0.35282 0,-0.24453 0.308426,-0.52913 0.573253,-0.52913 0.264818,0 0.573252,0.28468 0.573252,0.52913 0,0.24455 -0.308429,0.52918 -0.573252,0.52918 -0.121275,0 -0.299857,-0.0793 -0.396869,-0.17636 z m 3.439517,-0.0882 c -0.232761,-0.23267 -0.222508,-0.40285 0.0401,-0.66546 0.243582,-0.24345 0.329798,-0.25996 0.605107,-0.11502 0.242042,0.12748 0.321863,0.24591 0.323575,0.48022 0.0031,0.43406 -0.63668,0.63239 -0.968767,0.30029 z m -1.097809,-4.10189 c 0.211607,-1.21013 0.333943,-1.55258 0.494567,-1.38443 0.03281,0.0344 0.152225,0.57839 0.265306,1.20896 0.232869,1.29834 0.343523,1.42064 0.618496,0.68352 l 0.172705,-0.46302 h 1.972971 c 1.085132,0 1.99242,-0.0315 2.016195,-0.0698 0.08023,-0.12991 -0.357483,-1.05886 -0.773608,-1.642 -0.728041,-1.02028 -1.981677,-1.859 -3.316077,-2.21859 -0.773686,-0.20857 -2.314601,-0.21426 -3.086747,-0.0113 -1.084749,0.28486 -1.999152,0.80872 -2.786328,1.59624 -0.677355,0.67767 -1.19903,1.50881 -1.403089,2.23545 l -0.05574,0.19856 1.439077,-9.8e-4 c 0.791494,-6.2e-4 1.483847,-0.0306 1.538565,-0.0662 0.05473,-0.0355 0.422055,-0.70973 0.816304,-1.49793 0.672478,-1.34451 0.811339,-1.54707 0.929474,-1.35595 0.02624,0.0426 0.169945,0.92549 0.319337,1.9623 0.278277,1.93132 0.382411,2.3719 0.526552,2.22775 0.04457,-0.0447 0.184959,-0.67541 0.312001,-1.40192 z" | |||||
id="path4010-4" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#179cfd;stroke-width:0.43423772" | |||||
d="m 28.084301,261.62139 c -0.09334,-0.2432 -0.06068,-4.53422 0.03585,-4.71459 0.04932,-0.0922 0.366818,-0.32942 0.705541,-0.52725 0.338727,-0.19778 0.615865,-0.39635 0.615865,-0.44114 0,-0.0449 -0.225402,-0.25131 -0.5009,-0.45914 -1.007366,-0.75955 -1.863496,-2.05429 -2.182561,-3.30077 -0.176274,-0.68859 -0.179006,-2.04001 -0.0054,-2.72476 0.07324,-0.28909 0.298305,-0.86296 0.500144,-1.27526 0.293281,-0.59912 0.51896,-0.90166 1.123813,-1.50667 0.628099,-0.62825 0.899287,-0.82698 1.594434,-1.16847 1.206772,-0.59277 1.759323,-0.7188 3.130615,-0.71416 0.806735,0.002 1.311968,0.0495 1.704825,0.15746 3.200698,0.88036 5.194794,3.81447 4.65392,6.84772 -0.248316,1.39251 -1.241594,2.98286 -2.337264,3.74216 -0.198811,0.13767 -0.36148,0.28303 -0.36148,0.3228 0,0.0398 0.277437,0.23428 0.616524,0.43238 0.393273,0.22968 0.633784,0.4307 0.664178,0.55509 0.02625,0.10714 0.03649,1.24673 0.02299,2.53213 l -0.02488,2.33712 -4.951132,0.0216 c -4.457619,0.0215 -4.956494,0.008 -5.004941,-0.11734 z m 4.796794,-1.27231 c 0.04062,-0.85254 0.0581,-0.92604 0.220478,-0.92604 0.162399,0 0.179874,0.0735 0.22048,0.92604 l 0.0441,0.92602 h 2.11542 c 1.979416,0 2.117418,-0.0113 2.146485,-0.16124 0.07415,-0.38501 -0.08786,-0.58193 -1.039039,-1.26279 -0.5321,-0.38086 -0.988888,-0.74572 -1.015085,-0.81071 -0.07133,-0.17694 0.02596,-0.27867 0.266821,-0.27867 0.212067,0 0.215285,-0.0113 0.215285,-0.78294 0,-0.57789 0.03363,-0.81084 0.12842,-0.88952 0.247505,-0.20531 0.312538,-0.006 0.312538,0.96492 0,0.5267 0.02407,1.0201 0.05321,1.09639 0.07569,0.19722 0.895628,0.78122 1.003392,0.71461 0.137026,-0.0848 0.118488,-2.70962 -0.02028,-2.88339 -0.06062,-0.0761 -0.366131,-0.28527 -0.678882,-0.46529 -0.638192,-0.36731 -0.664782,-0.36715 -1.680277,0.0113 -0.620191,0.23022 -0.749452,0.24593 -2.072528,0.24835 -1.367516,0.002 -1.436372,-0.006 -2.229991,-0.28332 l -0.818897,-0.286 -0.707163,0.41086 c -0.388942,0.22589 -0.744718,0.48108 -0.790616,0.56686 -0.04592,0.0857 -0.08344,0.71537 -0.08344,1.39919 0,0.99797 0.02488,1.25279 0.126404,1.29174 0.157447,0.0603 0.905595,-0.36921 1.022127,-0.58694 0.04739,-0.0885 0.0862,-0.57804 0.0862,-1.08767 0,-0.95796 0.0901,-1.20675 0.322052,-0.88956 0.07719,0.10547 0.118894,0.4201 0.118894,0.89644 v 0.73386 l 0.360543,-0.0576 c 0.341277,-0.0546 0.358954,-0.0466 0.330725,0.14961 -0.02299,0.16068 -0.280994,0.35508 -1.148549,0.86561 -1.145685,0.67416 -1.30229,0.84178 -1.171412,1.25421 0.05178,0.16311 0.145382,0.16933 2.186334,0.14688 l 2.132238,-0.0243 z m 2.160723,-4.26226 c 1.769875,-0.57963 3.167996,-1.90262 3.76078,-3.55863 0.192048,-0.53652 0.328288,-2.18171 0.217288,-2.62393 l -0.05685,-0.22641 h -1.977453 c -1.485114,0 -1.995217,0.0273 -2.0488,0.11041 -0.03924,0.0605 -0.191399,0.42736 -0.338105,0.81497 -0.382437,1.0104 -0.497129,0.97892 -0.708437,-0.1945 -0.249424,-1.38497 -0.369803,-1.31205 -0.674782,0.40873 -0.236276,1.33315 -0.338406,1.62909 -0.503087,1.45777 -0.04428,-0.046 -0.223941,-1.07597 -0.399196,-2.28861 -0.378048,-2.61567 -0.375282,-2.6017 -0.515636,-2.6017 -0.06054,0 -0.377094,0.53578 -0.703448,1.19062 l -0.593373,1.19063 h -1.628884 c -1.902339,0 -1.81147,-0.0499 -1.81147,0.99426 0,0.80431 0.255081,1.83651 0.632916,2.56111 0.424332,0.81377 1.610253,1.95985 2.460638,2.37796 1.097382,0.53952 1.794389,0.68665 3.07994,0.64999 0.892825,-0.0244 1.23655,-0.0755 1.807954,-0.26241 z m -2.425303,-0.51429 c -0.478805,-0.10703 -0.703657,-0.2876 -0.549872,-0.44139 0.07642,-0.0766 0.231706,-0.0808 0.585546,-0.0162 0.356597,0.0647 0.599579,0.0571 0.936494,-0.0291 0.48231,-0.12329 0.615302,-0.0987 0.615302,0.11422 0,0.28859 -0.958357,0.51378 -1.58747,0.37302 z m -1.706091,-2.08738 c -0.189693,-0.20965 -0.184796,-0.3936 0.01543,-0.57471 0.232894,-0.21073 0.518062,-0.17963 0.684657,0.0743 0.133834,0.20423 0.133834,0.23669 0,0.44096 -0.171756,0.26213 -0.491832,0.2892 -0.699982,0.0593 z m 3.421615,-0.14148 c -0.271481,-0.41435 0.198702,-0.82027 0.625904,-0.54036 0.247452,0.16205 0.279238,0.41467 0.07757,0.61634 -0.207737,0.20776 -0.541169,0.17179 -0.703478,-0.0761 z m -1.137669,-3.97553 c 0.211606,-1.21013 0.333942,-1.55259 0.494569,-1.38441 0.03282,0.0344 0.152224,0.57837 0.265305,1.20895 0.23276,1.29772 0.34355,1.42057 0.617887,0.68512 l 0.172107,-0.46134 2.000835,-0.0243 c 2.352706,-0.0279 2.281076,0.0162 1.723959,-1.05794 -0.429635,-0.82824 -1.435244,-1.8525 -2.279603,-2.32184 -3.036046,-1.6875 -6.967182,-0.61741 -8.490501,2.31125 -0.205682,0.39548 -0.373989,0.82207 -0.373989,0.94808 v 0.22911 l 1.433135,-9.7e-4 c 0.788221,-6e-4 1.477901,-0.0306 1.53262,-0.0663 0.05473,-0.0355 0.422054,-0.7097 0.816303,-1.49792 0.672479,-1.34449 0.811342,-1.54706 0.929474,-1.35594 0.02625,0.0425 0.169945,0.9255 0.319337,1.96229 0.278278,1.93132 0.382411,2.37191 0.526555,2.22776 0.04455,-0.0447 0.184956,-0.67543 0.311999,-1.40192 z" | |||||
id="path4008-5" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#050505;fill-opacity:1;stroke-width:0.43423772" | |||||
d="m 28.084301,261.62139 c -0.09334,-0.2432 -0.06068,-4.53422 0.03585,-4.71459 0.04932,-0.0922 0.366818,-0.32942 0.705541,-0.52725 0.338727,-0.19778 0.615865,-0.39635 0.615865,-0.44114 0,-0.0449 -0.225402,-0.25131 -0.5009,-0.45914 -1.007366,-0.75955 -1.863496,-2.05429 -2.182561,-3.30077 -0.176274,-0.68859 -0.179006,-2.04001 -0.0054,-2.72476 0.07324,-0.28909 0.298305,-0.86296 0.500144,-1.27526 0.293281,-0.59912 0.51896,-0.90166 1.123813,-1.50667 0.628099,-0.62825 0.899287,-0.82698 1.594434,-1.16847 1.206772,-0.59277 1.759323,-0.7188 3.130615,-0.71416 0.806735,0.002 1.311968,0.0495 1.704825,0.15746 3.200698,0.88036 5.194794,3.81447 4.65392,6.84772 -0.248316,1.39251 -1.241594,2.98286 -2.337264,3.74216 -0.198811,0.13767 -0.36148,0.28303 -0.36148,0.3228 0,0.0398 0.277437,0.23428 0.616524,0.43238 0.393273,0.22968 0.633784,0.4307 0.664178,0.55509 0.02625,0.10714 0.03649,1.24673 0.02299,2.53213 l -0.02488,2.33712 -4.951132,0.0216 c -4.457619,0.0215 -4.956494,0.008 -5.004941,-0.11734 z m 4.796794,-1.27231 c 0.04062,-0.85254 0.0581,-0.92604 0.220478,-0.92604 0.162399,0 0.179874,0.0735 0.22048,0.92604 l 0.0441,0.92602 h 2.11542 c 1.979416,0 2.117418,-0.0113 2.146485,-0.16124 0.07415,-0.38501 -0.08786,-0.58193 -1.039039,-1.26279 -0.5321,-0.38086 -0.988888,-0.74572 -1.015085,-0.81071 -0.07133,-0.17694 0.02596,-0.27867 0.266821,-0.27867 0.212067,0 0.215285,-0.0113 0.215285,-0.78294 0,-0.57789 0.03363,-0.81084 0.12842,-0.88952 0.247505,-0.20531 0.312538,-0.006 0.312538,0.96492 0,0.5267 0.02407,1.0201 0.05321,1.09639 0.07569,0.19722 0.895628,0.78122 1.003392,0.71461 0.137026,-0.0848 0.118488,-2.70962 -0.02028,-2.88339 -0.06062,-0.0761 -0.366131,-0.28527 -0.678882,-0.46529 -0.638192,-0.36731 -0.664782,-0.36715 -1.680277,0.0113 -0.620191,0.23022 -0.749452,0.24593 -2.072528,0.24835 -1.367516,0.002 -1.436372,-0.006 -2.229991,-0.28332 l -0.818897,-0.286 -0.707163,0.41086 c -0.388942,0.22589 -0.744718,0.48108 -0.790616,0.56686 -0.04592,0.0857 -0.08344,0.71537 -0.08344,1.39919 0,0.99797 0.02488,1.25279 0.126404,1.29174 0.157447,0.0603 0.905595,-0.36921 1.022127,-0.58694 0.04739,-0.0885 0.0862,-0.57804 0.0862,-1.08767 0,-0.95796 0.0901,-1.20675 0.322052,-0.88956 0.07719,0.10547 0.118894,0.4201 0.118894,0.89644 v 0.73386 l 0.360543,-0.0576 c 0.341277,-0.0546 0.358954,-0.0466 0.330725,0.14961 -0.02299,0.16068 -0.280994,0.35508 -1.148549,0.86561 -1.145685,0.67416 -1.30229,0.84178 -1.171412,1.25421 0.05178,0.16311 0.145382,0.16933 2.186334,0.14688 l 2.132238,-0.0243 z m 2.160723,-4.26226 c 1.798336,-0.58895 3.232202,-1.974 3.804655,-3.6751 0.213148,-0.63339 0.221914,-2.36663 0.01569,-3.09953 -0.356769,-1.26779 -1.453375,-2.62144 -2.672695,-3.2992 -2.477562,-1.37709 -5.596645,-0.9588 -7.541693,1.01144 -1.633552,1.65471 -2.027872,4.11443 -0.994473,6.2034 0.44418,0.89788 1.576714,2.0172 2.500652,2.47147 1.097382,0.53953 1.794387,0.68664 3.079941,0.64999 0.892823,-0.0243 1.236549,-0.0756 1.807951,-0.26241 z m -2.425303,-0.51429 c -0.478805,-0.10703 -0.703657,-0.2876 -0.549872,-0.44139 0.07642,-0.0766 0.231706,-0.0808 0.585546,-0.0162 0.356597,0.0647 0.599579,0.0571 0.936494,-0.0291 0.48231,-0.12329 0.615302,-0.0987 0.615302,0.11422 0,0.28859 -0.958357,0.51378 -1.58747,0.37302 z m -1.706091,-2.08738 c -0.189693,-0.20965 -0.184796,-0.3936 0.01543,-0.57471 0.232894,-0.21073 0.518062,-0.17963 0.684657,0.0743 0.133834,0.20423 0.133834,0.23669 0,0.44096 -0.171756,0.26213 -0.491832,0.2892 -0.699982,0.0593 z m 3.421615,-0.14148 c -0.271481,-0.41435 0.198702,-0.82027 0.625904,-0.54036 0.247452,0.16205 0.279238,0.41467 0.07757,0.61634 -0.207737,0.20776 -0.541169,0.17179 -0.703478,-0.0761 z" | |||||
id="path4006-7" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,630 @@ | |||||
<?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="720" | |||||
height="380" | |||||
viewBox="0 0 190.5 100.54166" | |||||
version="1.1" | |||||
id="svg12553" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06" | |||||
sodipodi:docname="BouncyBalls.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.61" | |||||
inkscape:cx="110.91611" | |||||
inkscape:cy="165.89904" | |||||
inkscape:document-units="px" | |||||
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="1480" | |||||
inkscape:window-height="992" | |||||
inkscape:window-x="397" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
inkscape:snap-global="false" | |||||
inkscape:measure-start="0,0" | |||||
inkscape:measure-end="0,0" | |||||
showguides="false"> | |||||
<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.543497,161.45211 H 217.04349 v 100.3961 H 26.543497 Z m 0,0" | |||||
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40774822" /> | |||||
<g | |||||
transform="matrix(0.36394193,0,0,0.36394193,26.295962,159.93608)" | |||||
id="layer1-2" | |||||
inkscape:label="Layer 1"> | |||||
<rect | |||||
y="256.12662" | |||||
x="29.52006" | |||||
height="1.6536458" | |||||
width="7.2760415" | |||||
id="rect823" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.71059781;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<rect | |||||
y="256.57309" | |||||
x="28.643627" | |||||
height="0.51248246" | |||||
width="9.0803432" | |||||
id="rect821" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.17694761;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<ellipse | |||||
ry="5.8699069" | |||||
rx="6.1973119" | |||||
cy="250.78661" | |||||
cx="33.068214" | |||||
id="path817" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.29476252;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<rect | |||||
y="257.08557" | |||||
x="28.265131" | |||||
height="4.3030396" | |||||
width="9.541522" | |||||
id="rect819" | |||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.23695372;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |||||
<path | |||||
style="fill:#54b6fc;stroke-width:0.43423772" | |||||
d="m 28.040353,261.67777 c -0.05624,-0.1049 -0.09132,-1.05343 -0.09132,-2.46939 0,-2.62823 -0.06483,-2.41007 0.868669,-2.92327 0.298327,-0.16393 0.542417,-0.32331 0.542417,-0.35402 0,-0.0309 -0.162318,-0.16826 -0.360716,-0.30583 -1.028016,-0.71241 -2.013971,-2.17766 -2.338877,-3.47584 -0.201325,-0.80442 -0.134174,-2.39054 0.13451,-3.17721 1.033244,-3.02511 4.386038,-4.85502 7.661927,-4.18175 2.136444,0.4391 3.832748,1.7715 4.690824,3.6846 0.361925,0.8069 0.484002,1.41362 0.481552,2.39329 -0.0043,1.76252 -0.804317,3.40089 -2.221636,4.55038 -0.254647,0.20641 -0.463011,0.4065 -0.463011,0.44439 0,0.038 0.188503,0.17638 0.418915,0.30774 0.88078,0.5022 0.815782,0.26078 0.815782,3.02947 0,1.77735 -0.02862,2.465 -0.105831,2.54221 -0.07977,0.0796 -1.316324,0.10568 -5.023888,0.10568 -4.772077,0 -4.920765,-0.006 -5.009351,-0.17069 z m 4.778272,-1.34136 c 0.02029,-0.72066 0.0537,-0.91258 0.172084,-0.98706 0.106484,-0.067 0.185415,-0.0605 0.286623,0.0243 0.110188,0.0915 0.139673,0.2998 0.139673,0.98705 v 0.87111 h 2.031202 c 1.725502,0 2.038854,-0.0189 2.082046,-0.13248 0.118689,-0.30933 -0.0843,-0.54865 -1.048716,-1.23644 -0.806681,-0.57531 -0.992,-0.74828 -0.992,-0.92603 0,-0.17285 0.05069,-0.22425 0.242529,-0.24644 l 0.242526,-0.0279 v -0.72694 c 0,-0.82266 0.11329,-1.0851 0.425635,-0.98597 0.182308,0.0579 0.191777,0.11143 0.193075,1.09112 6.9e-4,0.56673 0.03051,1.07216 0.06615,1.12322 0.107317,0.15365 0.691445,0.5686 0.80071,0.5686 0.07253,0 0.101903,-0.37768 0.101903,-1.30922 0,-1.48548 0.04525,-1.38286 -0.823095,-1.86798 l -0.514419,-0.28745 -0.896236,0.29918 c -0.869904,0.29041 -0.937695,0.2992 -2.307746,0.29891 -1.355532,-2.1e-4 -1.441911,-0.0113 -2.177833,-0.27426 l -0.766317,-0.27401 -0.710913,0.40097 -0.710915,0.40096 v 1.35053 c 0,0.7428 0.02272,1.35058 0.05046,1.35058 0.02775,0 0.226187,-0.10309 0.440962,-0.22887 l 0.390524,-0.22887 0.0014,-0.89557 c 0.0016,-1.14751 0.206306,-1.60144 0.561721,-1.24599 0.108544,0.1085 0.142513,0.31853 0.142513,0.88028 v 0.7378 l 0.290718,-0.0471 c 0.315025,-0.0511 0.543194,0.11558 0.458905,0.33517 -0.02597,0.0676 -0.562393,0.43193 -1.192126,0.80964 -1.113533,0.66789 -1.144968,0.69508 -1.144968,0.9907 v 0.30396 h 2.069441 2.069444 z m 2.265337,-4.35748 c 1.820054,-0.60937 3.301106,-2.14018 3.754405,-3.88051 0.141672,-0.5439 0.182494,-2.03256 0.06101,-2.22398 -0.0547,-0.0862 -0.514454,-0.10647 -1.993182,-0.0881 l -1.922097,0.0243 -0.285943,0.79373 c -0.250451,0.69526 -0.311823,0.79372 -0.494567,0.79372 -0.193669,0 -0.219614,-0.0593 -0.361764,-0.82692 -0.233437,-1.26061 -0.264438,-1.24093 -0.550459,0.34982 -0.250913,1.39568 -0.282965,1.49134 -0.499452,1.49134 -0.208819,0 -0.19843,0.0455 -0.591264,-2.59459 -0.179846,-1.20877 -0.366691,-2.21079 -0.415197,-2.22673 -0.04851,-0.0164 -0.346157,0.47702 -0.661443,1.09535 l -0.573255,1.12428 -1.649981,0.0244 -1.649981,0.0243 -0.05961,0.3176 c -0.100912,0.53789 0.02055,1.63287 0.25608,2.31038 0.480987,1.38307 1.462121,2.47313 2.838905,3.15409 1.070426,0.52942 1.68831,0.6568 2.998555,0.61816 0.870867,-0.027 1.189545,-0.0752 1.799239,-0.27931 z m -2.582339,-0.34598 c -0.501349,-0.14204 -0.612279,-0.23104 -0.568647,-0.45582 0.02803,-0.14447 0.130451,-0.16555 0.868148,-0.17909 0.460004,-0.008 0.975273,-0.0281 1.145044,-0.0441 0.276178,-0.0243 0.311494,-0.006 0.335474,0.20237 0.023,0.19722 -0.02543,0.25187 -0.329357,0.37355 -0.522805,0.20913 -0.965587,0.24078 -1.450662,0.1031 z m -1.6422,-2.07469 c -0.09701,-0.0972 -0.176384,-0.25567 -0.176384,-0.35282 0,-0.24453 0.308426,-0.52913 0.573253,-0.52913 0.264818,0 0.573252,0.28468 0.573252,0.52913 0,0.24455 -0.308429,0.52918 -0.573252,0.52918 -0.121275,0 -0.299857,-0.0793 -0.396869,-0.17636 z m 3.439517,-0.0882 c -0.232761,-0.23267 -0.222508,-0.40285 0.0401,-0.66546 0.243582,-0.24345 0.329798,-0.25996 0.605107,-0.11502 0.242042,0.12748 0.321863,0.24591 0.323575,0.48022 0.0031,0.43406 -0.63668,0.63239 -0.968767,0.30029 z m -1.151475,-4.27736 c 0.296559,-1.78581 0.575578,-1.83207 0.874871,-0.14501 0.09772,0.55084 0.197295,1.02113 0.221263,1.04511 0.08271,0.0828 0.212362,-0.0613 0.273139,-0.30344 0.117052,-0.46642 0.107419,-0.46436 2.176972,-0.46436 2.188984,0 2.146871,0.0162 1.845872,-0.66529 -0.655344,-1.4815 -2.160669,-2.71162 -3.887876,-3.17706 -0.773684,-0.20858 -2.314597,-0.21425 -3.086746,-0.0113 -1.862761,0.48917 -3.433992,1.84034 -4.06194,3.49292 l -0.172218,0.45328 1.47768,-0.0243 1.477684,-0.0244 0.705541,-1.38465 c 0.388047,-0.76156 0.755433,-1.43456 0.816413,-1.4955 0.244962,-0.24482 0.364055,0.12518 0.643002,1.99713 0.151683,1.01798 0.296644,1.88465 0.322123,1.92588 0.102882,0.16637 0.192723,-0.12627 0.374219,-1.21922 z" | |||||
id="path4012-7" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#a0a0a0;stroke-width:0.43423772" | |||||
d="m 28.040353,261.67777 c -0.05624,-0.1049 -0.09132,-1.05343 -0.09132,-2.46939 0,-2.62823 -0.06483,-2.41007 0.868669,-2.92327 0.298327,-0.16393 0.542417,-0.32331 0.542417,-0.35402 0,-0.0309 -0.162318,-0.16826 -0.360716,-0.30583 -1.028016,-0.71241 -2.013971,-2.17766 -2.338877,-3.47584 -0.201325,-0.80442 -0.134174,-2.39054 0.13451,-3.17721 1.033244,-3.02511 4.386038,-4.85502 7.661927,-4.18175 2.136444,0.4391 3.832748,1.7715 4.690824,3.6846 0.361925,0.8069 0.484002,1.41362 0.481552,2.39329 -0.0043,1.76252 -0.804317,3.40089 -2.221636,4.55038 -0.254647,0.20641 -0.463011,0.4065 -0.463011,0.44439 0,0.038 0.188503,0.17638 0.418915,0.30774 0.88078,0.5022 0.815782,0.26078 0.815782,3.02947 0,1.77735 -0.02862,2.465 -0.105831,2.54221 -0.07977,0.0796 -1.316324,0.10568 -5.023888,0.10568 -4.772077,0 -4.920765,-0.006 -5.009351,-0.17069 z m 4.778272,-1.34136 c 0.02029,-0.72066 0.0537,-0.91258 0.172084,-0.98706 0.106484,-0.067 0.185415,-0.0605 0.286623,0.0243 0.110188,0.0915 0.139673,0.2998 0.139673,0.98705 v 0.87111 h 2.031202 c 1.725502,0 2.038854,-0.0189 2.082046,-0.13248 0.118689,-0.30933 -0.0843,-0.54865 -1.048716,-1.23644 -0.806681,-0.57531 -0.992,-0.74828 -0.992,-0.92603 0,-0.17285 0.05069,-0.22425 0.242529,-0.24644 l 0.242526,-0.0279 v -0.72694 c 0,-0.82266 0.11329,-1.0851 0.425635,-0.98597 0.182308,0.0579 0.191777,0.11143 0.193075,1.09112 6.9e-4,0.56673 0.03051,1.07216 0.06615,1.12322 0.107317,0.15365 0.691445,0.5686 0.80071,0.5686 0.07253,0 0.101903,-0.37768 0.101903,-1.30922 0,-1.48548 0.04525,-1.38286 -0.823095,-1.86798 l -0.514419,-0.28745 -0.896236,0.29918 c -0.869904,0.29041 -0.937695,0.2992 -2.307746,0.29891 -1.355532,-2.1e-4 -1.441911,-0.0113 -2.177833,-0.27426 l -0.766317,-0.27401 -0.710913,0.40097 -0.710915,0.40096 v 1.35053 c 0,0.7428 0.02272,1.35058 0.05046,1.35058 0.02775,0 0.226187,-0.10309 0.440962,-0.22887 l 0.390524,-0.22887 0.0014,-0.89557 c 0.0016,-1.14751 0.206306,-1.60144 0.561721,-1.24599 0.108544,0.1085 0.142513,0.31853 0.142513,0.88028 v 0.7378 l 0.290718,-0.0471 c 0.315025,-0.0511 0.543194,0.11558 0.458905,0.33517 -0.02597,0.0676 -0.562393,0.43193 -1.192126,0.80964 -1.113533,0.66789 -1.144968,0.69508 -1.144968,0.9907 v 0.30396 h 2.069441 2.069444 z m 2.265337,-4.35748 c 1.403562,-0.46993 2.640938,-1.50058 3.294283,-2.74387 0.429067,-0.81653 0.595175,-1.49004 0.593708,-2.40729 -0.002,-1.2675 0.205601,-1.15 -2.032309,-1.15 -1.442955,0 -1.942613,0.0275 -1.996101,0.11041 -0.03924,0.0606 -0.191398,0.42737 -0.338104,0.81498 -0.382438,1.0104 -0.497129,0.9789 -0.708436,-0.1945 -0.249425,-1.38497 -0.369803,-1.31205 -0.674781,0.40874 -0.236279,1.33315 -0.338408,1.62908 -0.50309,1.45776 -0.04428,-0.0461 -0.22394,-1.07598 -0.399194,-2.28859 -0.378048,-2.61568 -0.375281,-2.60172 -0.515638,-2.60172 -0.06054,0 -0.377093,0.53579 -0.703448,1.19062 l -0.593372,1.1906 h -1.626578 -1.626579 l -0.06131,0.40891 c -0.234007,1.5605 0.483321,3.42764 1.761718,4.58559 0.632883,0.57328 1.868907,1.21483 2.698432,1.40062 0.933964,0.20911 2.512332,0.12546 3.430809,-0.18205 z m -2.582339,-0.34598 c -0.501349,-0.14204 -0.612279,-0.23104 -0.568647,-0.45582 0.02803,-0.14447 0.130451,-0.16555 0.868148,-0.17909 0.460004,-0.008 0.975273,-0.0281 1.145044,-0.0441 0.276178,-0.0243 0.311494,-0.006 0.335474,0.20237 0.023,0.19722 -0.02543,0.25187 -0.329357,0.37355 -0.522805,0.20913 -0.965587,0.24078 -1.450662,0.1031 z m -1.6422,-2.07469 c -0.09701,-0.0972 -0.176384,-0.25567 -0.176384,-0.35282 0,-0.24453 0.308426,-0.52913 0.573253,-0.52913 0.264818,0 0.573252,0.28468 0.573252,0.52913 0,0.24455 -0.308429,0.52918 -0.573252,0.52918 -0.121275,0 -0.299857,-0.0793 -0.396869,-0.17636 z m 3.439517,-0.0882 c -0.232761,-0.23267 -0.222508,-0.40285 0.0401,-0.66546 0.243582,-0.24345 0.329798,-0.25996 0.605107,-0.11502 0.242042,0.12748 0.321863,0.24591 0.323575,0.48022 0.0031,0.43406 -0.63668,0.63239 -0.968767,0.30029 z m -1.097809,-4.10189 c 0.211607,-1.21013 0.333943,-1.55258 0.494567,-1.38443 0.03281,0.0344 0.152225,0.57839 0.265306,1.20896 0.232869,1.29834 0.343523,1.42064 0.618496,0.68352 l 0.172705,-0.46302 h 1.972971 c 1.085132,0 1.99242,-0.0315 2.016195,-0.0698 0.08023,-0.12991 -0.357483,-1.05886 -0.773608,-1.642 -0.728041,-1.02028 -1.981677,-1.859 -3.316077,-2.21859 -0.773686,-0.20857 -2.314601,-0.21426 -3.086747,-0.0113 -1.084749,0.28486 -1.999152,0.80872 -2.786328,1.59624 -0.677355,0.67767 -1.19903,1.50881 -1.403089,2.23545 l -0.05574,0.19856 1.439077,-9.8e-4 c 0.791494,-6.2e-4 1.483847,-0.0306 1.538565,-0.0662 0.05473,-0.0355 0.422055,-0.70973 0.816304,-1.49793 0.672478,-1.34451 0.811339,-1.54707 0.929474,-1.35595 0.02624,0.0426 0.169945,0.92549 0.319337,1.9623 0.278277,1.93132 0.382411,2.3719 0.526552,2.22775 0.04457,-0.0447 0.184959,-0.67541 0.312001,-1.40192 z" | |||||
id="path4010-1" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#179cfd;stroke-width:0.43423772" | |||||
d="m 28.084301,261.62139 c -0.09334,-0.2432 -0.06068,-4.53422 0.03585,-4.71459 0.04932,-0.0922 0.366818,-0.32942 0.705541,-0.52725 0.338727,-0.19778 0.615865,-0.39635 0.615865,-0.44114 0,-0.0449 -0.225402,-0.25131 -0.5009,-0.45914 -1.007366,-0.75955 -1.863496,-2.05429 -2.182561,-3.30077 -0.176274,-0.68859 -0.179006,-2.04001 -0.0054,-2.72476 0.07324,-0.28909 0.298305,-0.86296 0.500144,-1.27526 0.293281,-0.59912 0.51896,-0.90166 1.123813,-1.50667 0.628099,-0.62825 0.899287,-0.82698 1.594434,-1.16847 1.206772,-0.59277 1.759323,-0.7188 3.130615,-0.71416 0.806735,0.002 1.311968,0.0495 1.704825,0.15746 3.200698,0.88036 5.194794,3.81447 4.65392,6.84772 -0.248316,1.39251 -1.241594,2.98286 -2.337264,3.74216 -0.198811,0.13767 -0.36148,0.28303 -0.36148,0.3228 0,0.0398 0.277437,0.23428 0.616524,0.43238 0.393273,0.22968 0.633784,0.4307 0.664178,0.55509 0.02625,0.10714 0.03649,1.24673 0.02299,2.53213 l -0.02488,2.33712 -4.951132,0.0216 c -4.457619,0.0215 -4.956494,0.008 -5.004941,-0.11734 z m 4.796794,-1.27231 c 0.04062,-0.85254 0.0581,-0.92604 0.220478,-0.92604 0.162399,0 0.179874,0.0735 0.22048,0.92604 l 0.0441,0.92602 h 2.11542 c 1.979416,0 2.117418,-0.0113 2.146485,-0.16124 0.07415,-0.38501 -0.08786,-0.58193 -1.039039,-1.26279 -0.5321,-0.38086 -0.988888,-0.74572 -1.015085,-0.81071 -0.07133,-0.17694 0.02596,-0.27867 0.266821,-0.27867 0.212067,0 0.215285,-0.0113 0.215285,-0.78294 0,-0.57789 0.03363,-0.81084 0.12842,-0.88952 0.247505,-0.20531 0.312538,-0.006 0.312538,0.96492 0,0.5267 0.02407,1.0201 0.05321,1.09639 0.07569,0.19722 0.895628,0.78122 1.003392,0.71461 0.137026,-0.0848 0.118488,-2.70962 -0.02028,-2.88339 -0.06062,-0.0761 -0.366131,-0.28527 -0.678882,-0.46529 -0.638192,-0.36731 -0.664782,-0.36715 -1.680277,0.0113 -0.620191,0.23022 -0.749452,0.24593 -2.072528,0.24835 -1.367516,0.002 -1.436372,-0.006 -2.229991,-0.28332 l -0.818897,-0.286 -0.707163,0.41086 c -0.388942,0.22589 -0.744718,0.48108 -0.790616,0.56686 -0.04592,0.0857 -0.08344,0.71537 -0.08344,1.39919 0,0.99797 0.02488,1.25279 0.126404,1.29174 0.157447,0.0603 0.905595,-0.36921 1.022127,-0.58694 0.04739,-0.0885 0.0862,-0.57804 0.0862,-1.08767 0,-0.95796 0.0901,-1.20675 0.322052,-0.88956 0.07719,0.10547 0.118894,0.4201 0.118894,0.89644 v 0.73386 l 0.360543,-0.0576 c 0.341277,-0.0546 0.358954,-0.0466 0.330725,0.14961 -0.02299,0.16068 -0.280994,0.35508 -1.148549,0.86561 -1.145685,0.67416 -1.30229,0.84178 -1.171412,1.25421 0.05178,0.16311 0.145382,0.16933 2.186334,0.14688 l 2.132238,-0.0243 z m 2.160723,-4.26226 c 1.769875,-0.57963 3.167996,-1.90262 3.76078,-3.55863 0.192048,-0.53652 0.328288,-2.18171 0.217288,-2.62393 l -0.05685,-0.22641 h -1.977453 c -1.485114,0 -1.995217,0.0273 -2.0488,0.11041 -0.03924,0.0605 -0.191399,0.42736 -0.338105,0.81497 -0.382437,1.0104 -0.497129,0.97892 -0.708437,-0.1945 -0.249424,-1.38497 -0.369803,-1.31205 -0.674782,0.40873 -0.236276,1.33315 -0.338406,1.62909 -0.503087,1.45777 -0.04428,-0.046 -0.223941,-1.07597 -0.399196,-2.28861 -0.378048,-2.61567 -0.375282,-2.6017 -0.515636,-2.6017 -0.06054,0 -0.377094,0.53578 -0.703448,1.19062 l -0.593373,1.19063 h -1.628884 c -1.902339,0 -1.81147,-0.0499 -1.81147,0.99426 0,0.80431 0.255081,1.83651 0.632916,2.56111 0.424332,0.81377 1.610253,1.95985 2.460638,2.37796 1.097382,0.53952 1.794389,0.68665 3.07994,0.64999 0.892825,-0.0244 1.23655,-0.0755 1.807954,-0.26241 z m -2.425303,-0.51429 c -0.478805,-0.10703 -0.703657,-0.2876 -0.549872,-0.44139 0.07642,-0.0766 0.231706,-0.0808 0.585546,-0.0162 0.356597,0.0647 0.599579,0.0571 0.936494,-0.0291 0.48231,-0.12329 0.615302,-0.0987 0.615302,0.11422 0,0.28859 -0.958357,0.51378 -1.58747,0.37302 z m -1.706091,-2.08738 c -0.189693,-0.20965 -0.184796,-0.3936 0.01543,-0.57471 0.232894,-0.21073 0.518062,-0.17963 0.684657,0.0743 0.133834,0.20423 0.133834,0.23669 0,0.44096 -0.171756,0.26213 -0.491832,0.2892 -0.699982,0.0593 z m 3.421615,-0.14148 c -0.271481,-0.41435 0.198702,-0.82027 0.625904,-0.54036 0.247452,0.16205 0.279238,0.41467 0.07757,0.61634 -0.207737,0.20776 -0.541169,0.17179 -0.703478,-0.0761 z m -1.137669,-3.97553 c 0.211606,-1.21013 0.333942,-1.55259 0.494569,-1.38441 0.03282,0.0344 0.152224,0.57837 0.265305,1.20895 0.23276,1.29772 0.34355,1.42057 0.617887,0.68512 l 0.172107,-0.46134 2.000835,-0.0243 c 2.352706,-0.0279 2.281076,0.0162 1.723959,-1.05794 -0.429635,-0.82824 -1.435244,-1.8525 -2.279603,-2.32184 -3.036046,-1.6875 -6.967182,-0.61741 -8.490501,2.31125 -0.205682,0.39548 -0.373989,0.82207 -0.373989,0.94808 v 0.22911 l 1.433135,-9.7e-4 c 0.788221,-6e-4 1.477901,-0.0306 1.53262,-0.0663 0.05473,-0.0355 0.422054,-0.7097 0.816303,-1.49792 0.672479,-1.34449 0.811342,-1.54706 0.929474,-1.35594 0.02625,0.0425 0.169945,0.9255 0.319337,1.96229 0.278278,1.93132 0.382411,2.37191 0.526555,2.22776 0.04455,-0.0447 0.184956,-0.67543 0.311999,-1.40192 z" | |||||
id="path4008-0" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#050505;fill-opacity:1;stroke-width:0.43423772" | |||||
d="m 28.084301,261.62139 c -0.09334,-0.2432 -0.06068,-4.53422 0.03585,-4.71459 0.04932,-0.0922 0.366818,-0.32942 0.705541,-0.52725 0.338727,-0.19778 0.615865,-0.39635 0.615865,-0.44114 0,-0.0449 -0.225402,-0.25131 -0.5009,-0.45914 -1.007366,-0.75955 -1.863496,-2.05429 -2.182561,-3.30077 -0.176274,-0.68859 -0.179006,-2.04001 -0.0054,-2.72476 0.07324,-0.28909 0.298305,-0.86296 0.500144,-1.27526 0.293281,-0.59912 0.51896,-0.90166 1.123813,-1.50667 0.628099,-0.62825 0.899287,-0.82698 1.594434,-1.16847 1.206772,-0.59277 1.759323,-0.7188 3.130615,-0.71416 0.806735,0.002 1.311968,0.0495 1.704825,0.15746 3.200698,0.88036 5.194794,3.81447 4.65392,6.84772 -0.248316,1.39251 -1.241594,2.98286 -2.337264,3.74216 -0.198811,0.13767 -0.36148,0.28303 -0.36148,0.3228 0,0.0398 0.277437,0.23428 0.616524,0.43238 0.393273,0.22968 0.633784,0.4307 0.664178,0.55509 0.02625,0.10714 0.03649,1.24673 0.02299,2.53213 l -0.02488,2.33712 -4.951132,0.0216 c -4.457619,0.0215 -4.956494,0.008 -5.004941,-0.11734 z m 4.796794,-1.27231 c 0.04062,-0.85254 0.0581,-0.92604 0.220478,-0.92604 0.162399,0 0.179874,0.0735 0.22048,0.92604 l 0.0441,0.92602 h 2.11542 c 1.979416,0 2.117418,-0.0113 2.146485,-0.16124 0.07415,-0.38501 -0.08786,-0.58193 -1.039039,-1.26279 -0.5321,-0.38086 -0.988888,-0.74572 -1.015085,-0.81071 -0.07133,-0.17694 0.02596,-0.27867 0.266821,-0.27867 0.212067,0 0.215285,-0.0113 0.215285,-0.78294 0,-0.57789 0.03363,-0.81084 0.12842,-0.88952 0.247505,-0.20531 0.312538,-0.006 0.312538,0.96492 0,0.5267 0.02407,1.0201 0.05321,1.09639 0.07569,0.19722 0.895628,0.78122 1.003392,0.71461 0.137026,-0.0848 0.118488,-2.70962 -0.02028,-2.88339 -0.06062,-0.0761 -0.366131,-0.28527 -0.678882,-0.46529 -0.638192,-0.36731 -0.664782,-0.36715 -1.680277,0.0113 -0.620191,0.23022 -0.749452,0.24593 -2.072528,0.24835 -1.367516,0.002 -1.436372,-0.006 -2.229991,-0.28332 l -0.818897,-0.286 -0.707163,0.41086 c -0.388942,0.22589 -0.744718,0.48108 -0.790616,0.56686 -0.04592,0.0857 -0.08344,0.71537 -0.08344,1.39919 0,0.99797 0.02488,1.25279 0.126404,1.29174 0.157447,0.0603 0.905595,-0.36921 1.022127,-0.58694 0.04739,-0.0885 0.0862,-0.57804 0.0862,-1.08767 0,-0.95796 0.0901,-1.20675 0.322052,-0.88956 0.07719,0.10547 0.118894,0.4201 0.118894,0.89644 v 0.73386 l 0.360543,-0.0576 c 0.341277,-0.0546 0.358954,-0.0466 0.330725,0.14961 -0.02299,0.16068 -0.280994,0.35508 -1.148549,0.86561 -1.145685,0.67416 -1.30229,0.84178 -1.171412,1.25421 0.05178,0.16311 0.145382,0.16933 2.186334,0.14688 l 2.132238,-0.0243 z m 2.160723,-4.26226 c 1.798336,-0.58895 3.232202,-1.974 3.804655,-3.6751 0.213148,-0.63339 0.221914,-2.36663 0.01569,-3.09953 -0.356769,-1.26779 -1.453375,-2.62144 -2.672695,-3.2992 -2.477562,-1.37709 -5.596645,-0.9588 -7.541693,1.01144 -1.633552,1.65471 -2.027872,4.11443 -0.994473,6.2034 0.44418,0.89788 1.576714,2.0172 2.500652,2.47147 1.097382,0.53953 1.794387,0.68664 3.079941,0.64999 0.892823,-0.0243 1.236549,-0.0756 1.807951,-0.26241 z m -2.425303,-0.51429 c -0.478805,-0.10703 -0.703657,-0.2876 -0.549872,-0.44139 0.07642,-0.0766 0.231706,-0.0808 0.585546,-0.0162 0.356597,0.0647 0.599579,0.0571 0.936494,-0.0291 0.48231,-0.12329 0.615302,-0.0987 0.615302,0.11422 0,0.28859 -0.958357,0.51378 -1.58747,0.37302 z m -1.706091,-2.08738 c -0.189693,-0.20965 -0.184796,-0.3936 0.01543,-0.57471 0.232894,-0.21073 0.518062,-0.17963 0.684657,0.0743 0.133834,0.20423 0.133834,0.23669 0,0.44096 -0.171756,0.26213 -0.491832,0.2892 -0.699982,0.0593 z m 3.421615,-0.14148 c -0.271481,-0.41435 0.198702,-0.82027 0.625904,-0.54036 0.247452,0.16205 0.279238,0.41467 0.07757,0.61634 -0.207737,0.20776 -0.541169,0.17179 -0.703478,-0.0761 z" | |||||
id="path4006-0" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="BouncyBall" | |||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.17499995px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#1996fc;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text1027" | |||||
transform="translate(3.0856543,3.7435245)" /> | |||||
<text | |||||
xml:space="preserve" | |||||
style="font-style:normal;font-weight:normal;font-size:5.79818249px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.14495458" | |||||
x="35.458031" | |||||
y="170.59468" | |||||
id="text926"><tspan | |||||
sodipodi:role="line" | |||||
id="tspan924" | |||||
x="35.458031" | |||||
y="175.72472" | |||||
style="stroke-width:0.14495458" /></text> | |||||
<g | |||||
aria-label="VELY" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text987" | |||||
transform="translate(-0.3466267,6.3499993)"> | |||||
<path | |||||
d="m 30.55087,188.85884 0.42323,-1.59525 h 0.252009 l -0.526928,1.80024 h -0.295417 l -0.526927,-1.80024 h 0.252009 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5173" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 31.531172,187.26359 h 1.068324 v 0.20499 H 31.77474 v 0.53295 h 0.788582 v 0.20499 H 31.77474 v 0.65232 h 0.847666 v 0.20499 h -1.091234 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5175" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 33.038401,187.26359 h 0.244774 v 1.59525 h 0.86937 v 0.20499 h -1.114144 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5177" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 34.309297,187.26359 h 0.259243 l 0.438905,0.79461 0.4377,-0.79461 H 35.7068 l -0.577571,0.99236 v 0.80788 h -0.244774 v -0.80788 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5179" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="VELX" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text1003" | |||||
transform="translate(0.4056473,5.8208327)"> | |||||
<path | |||||
d="m 29.776893,179.89049 0.42323,-1.59525 h 0.252008 l -0.526927,1.80023 h -0.295417 l -0.526927,-1.80023 h 0.252008 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5164" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 30.757195,178.29524 h 1.068324 v 0.20498 h -0.824756 v 0.53296 h 0.788582 v 0.20498 h -0.788582 v 0.65233 h 0.847665 v 0.20498 h -1.091233 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5166" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 32.264424,178.29524 h 0.244774 v 1.59525 h 0.86937 v 0.20498 h -1.114144 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5168" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 33.594403,178.29524 h 0.261655 l 0.395497,0.67886 0.402731,-0.67886 h 0.261655 l -0.538985,0.84646 0.57757,0.95377 h -0.261655 l -0.441316,-0.77531 -0.476285,0.77531 h -0.26286 l 0.602891,-0.95377 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5170" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="TRIG" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text1019" | |||||
transform="translate(-0.33204643,6.856016)"> | |||||
<path | |||||
d="m 29.78596,168.26736 h 1.373387 v 0.20499 h -0.563101 v 1.59525 h -0.244774 v -1.59525 H 29.78596 Z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5155" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 32.131209,169.21752 q 0.09405,0.0241 0.160369,0.0916 0.06632,0.0663 0.165192,0.26648 l 0.244774,0.49196 h -0.261655 l -0.214629,-0.45458 q -0.09285,-0.19413 -0.167604,-0.2496 -0.07355,-0.0567 -0.192926,-0.0567 h -0.232716 v 0.76085 H 31.38724 v -1.80024 h 0.501606 q 0.296623,0 0.45458,0.13384 0.157958,0.13385 0.157958,0.38706 0,0.17846 -0.09767,0.2918 -0.09646,0.11214 -0.272507,0.13746 z m -0.499195,-0.75 v 0.63907 h 0.266478 q 0.174839,0 0.26045,-0.0784 0.08561,-0.0784 0.08561,-0.23995 0,-0.15555 -0.09164,-0.23754 -0.09043,-0.0832 -0.264067,-0.0832 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5157" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 32.942701,168.26736 h 0.999594 v 0.20499 h -0.37741 v 1.39026 h 0.37741 v 0.20499 h -0.999594 v -0.20499 h 0.37741 v -1.39026 h -0.37741 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5159" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 35.517048,169.91929 q -0.09767,0.0904 -0.220658,0.13745 -0.121784,0.0458 -0.264067,0.0458 -0.342442,0 -0.532956,-0.24477 -0.190514,-0.24598 -0.190514,-0.6885 0,-0.44132 0.192926,-0.6873 0.192925,-0.24718 0.536573,-0.24718 0.113344,0 0.217041,0.0325 0.103698,0.0314 0.20016,0.0965 v 0.2496 q -0.09767,-0.0928 -0.20016,-0.13625 -0.102491,-0.0446 -0.217041,-0.0446 -0.237539,0 -0.356912,0.18449 -0.118166,0.18328 -0.118166,0.55225 0,0.375 0.114549,0.55586 0.115755,0.17967 0.3545,0.17967 0.08079,0 0.141077,-0.0181 0.0615,-0.0193 0.110932,-0.0591 v -0.48352 h -0.261655 v -0.20016 h 0.494371 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5161" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="X" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text1036" | |||||
transform="translate(16.254319,4.7624995)"> | |||||
<path | |||||
d="m 33.856703,205.2003 h 0.261655 l 0.395497,0.67886 0.402732,-0.67886 h 0.261655 l -0.538985,0.84646 0.57757,0.95377 h -0.261655 l -0.441317,-0.77531 -0.476284,0.77531 H 33.77471 l 0.602892,-0.95377 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5152" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="Y" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text1040" | |||||
transform="translate(16.276714,2.3712215)"> | |||||
<path | |||||
d="m 33.79693,214.16865 h 0.259243 l 0.438905,0.79461 0.437699,-0.79461 h 0.261655 l -0.57757,0.99236 v 0.80788 h -0.244774 v -0.80788 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5149" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="OFST X" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text4881" | |||||
transform="translate(8.9261503,41.627742)"> | |||||
<path | |||||
d="m 76.430002,194.22719 q 0,-0.3967 -0.08199,-0.56671 -0.08079,-0.17002 -0.266478,-0.17002 -0.184485,0 -0.266479,0.17002 -0.08079,0.17001 -0.08079,0.56671 0,0.3955 0.08079,0.56552 0.08199,0.17001 0.266479,0.17001 0.18569,0 0.266478,-0.16881 0.08199,-0.17001 0.08199,-0.56672 z m 0.25442,0 q 0,0.47026 -0.149517,0.70177 -0.148311,0.23151 -0.453374,0.23151 -0.305064,0 -0.453375,-0.2303 -0.148311,-0.23031 -0.148311,-0.70298 0,-0.47146 0.148311,-0.70297 0.149517,-0.23151 0.453375,-0.23151 0.305063,0 0.453374,0.23151 0.149517,0.23151 0.149517,0.70297 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5126" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 77.105241,193.32527 h 1.059883 v 0.20498 h -0.815109 v 0.53055 h 0.739145 v 0.20498 h -0.739145 v 0.85972 h -0.244774 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5128" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 79.530071,193.38676 v 0.24719 q -0.110932,-0.0711 -0.22307,-0.10732 -0.110932,-0.0362 -0.224276,-0.0362 -0.172427,0 -0.272507,0.0808 -0.10008,0.0796 -0.10008,0.21583 0,0.11938 0.06511,0.18208 0.06632,0.0627 0.245979,0.1049 l 0.127813,0.0289 q 0.253215,0.0591 0.36897,0.18569 0.115755,0.12661 0.115755,0.34485 0,0.25684 -0.159163,0.39188 -0.159163,0.13505 -0.463021,0.13505 -0.126607,0 -0.25442,-0.0277 -0.127813,-0.0265 -0.256832,-0.0808 v -0.25924 q 0.138665,0.088 0.261655,0.12902 0.124196,0.041 0.249597,0.041 0.184485,0 0.286977,-0.082 0.102491,-0.0832 0.102491,-0.23151 0,-0.13505 -0.07114,-0.20619 -0.06994,-0.0711 -0.244774,-0.10973 l -0.130225,-0.0301 q -0.250803,-0.0567 -0.364146,-0.17122 -0.113344,-0.11455 -0.113344,-0.30748 0,-0.24115 0.161575,-0.38585 0.162781,-0.1459 0.431671,-0.1459 0.103697,0 0.218246,0.0241 0.11455,0.0229 0.241157,0.0699 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5130" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 79.852015,193.32527 h 1.373387 v 0.20498 h -0.5631 v 1.59525 h -0.244774 v -1.59525 h -0.565513 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5132" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 82.870091,193.32527 h 0.261655 l 0.395497,0.67886 0.402732,-0.67886 h 0.261655 l -0.538986,0.84646 0.577571,0.95377 H 83.96856 l -0.441317,-0.77532 -0.476284,0.77532 h -0.262861 l 0.602891,-0.95377 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5134" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="OFST Y" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text4889" | |||||
transform="translate(8.9245983,41.274986)"> | |||||
<path | |||||
d="m 76.442407,207.36019 q 0,-0.3967 -0.08199,-0.56672 -0.08079,-0.17001 -0.266478,-0.17001 -0.184485,0 -0.266478,0.17001 -0.08079,0.17002 -0.08079,0.56672 0,0.3955 0.08079,0.56551 0.08199,0.17002 0.266478,0.17002 0.185691,0 0.266478,-0.16881 0.08199,-0.17002 0.08199,-0.56672 z m 0.254421,0 q 0,0.47026 -0.149518,0.70177 -0.148311,0.23151 -0.453374,0.23151 -0.305063,0 -0.453375,-0.23031 -0.148311,-0.2303 -0.148311,-0.70297 0,-0.47146 0.148311,-0.70297 0.149518,-0.23151 0.453375,-0.23151 0.305063,0 0.453374,0.23151 0.149518,0.23151 0.149518,0.70297 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5115" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 77.117646,206.45826 h 1.059884 v 0.20499 h -0.81511 v 0.53054 h 0.739145 v 0.20499 H 77.36242 v 0.85972 h -0.244774 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5117" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 79.542476,206.51976 v 0.24719 q -0.110932,-0.0712 -0.22307,-0.10732 -0.110932,-0.0362 -0.224275,-0.0362 -0.172427,0 -0.272507,0.0808 -0.10008,0.0796 -0.10008,0.21584 0,0.11937 0.06511,0.18207 0.06632,0.0627 0.24598,0.10491 l 0.127813,0.0289 q 0.253214,0.0591 0.36897,0.1857 0.115755,0.1266 0.115755,0.34485 0,0.25683 -0.159164,0.39188 -0.159163,0.13505 -0.46302,0.13505 -0.126608,0 -0.254421,-0.0277 -0.127813,-0.0265 -0.256832,-0.0808 v -0.25925 q 0.138666,0.088 0.261655,0.12902 0.124196,0.041 0.249598,0.041 0.184484,0 0.286976,-0.082 0.102492,-0.0832 0.102492,-0.23152 0,-0.13504 -0.07114,-0.20618 -0.06994,-0.0711 -0.244774,-0.10973 l -0.130224,-0.0301 q -0.250803,-0.0567 -0.364147,-0.17122 -0.113343,-0.11455 -0.113343,-0.30747 0,-0.24116 0.161575,-0.38585 0.16278,-0.1459 0.43167,-0.1459 0.103697,0 0.218247,0.0241 0.114549,0.0229 0.241156,0.0699 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5119" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 79.864421,206.45826 h 1.373387 v 0.20499 h -0.563101 v 1.59525 h -0.244774 v -1.59525 h -0.565512 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5121" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 82.823413,206.45826 h 0.259243 l 0.438906,0.79462 0.437699,-0.79462 h 0.261655 l -0.57757,0.99236 v 0.80788 h -0.244774 v -0.80788 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5123" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="SCL X" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text4893" | |||||
transform="translate(8.8219403,43.919204)"> | |||||
<path | |||||
d="m 77.39273,167.12076 v 0.24718 q -0.110932,-0.0711 -0.223069,-0.10731 -0.110933,-0.0362 -0.224276,-0.0362 -0.172427,0 -0.272507,0.0808 -0.10008,0.0796 -0.10008,0.21584 0,0.11937 0.06511,0.18207 0.06632,0.0627 0.24598,0.1049 l 0.127813,0.0289 q 0.253214,0.0591 0.36897,0.18569 0.115755,0.12661 0.115755,0.34486 0,0.25683 -0.159164,0.39188 -0.159163,0.13504 -0.46302,0.13504 -0.126608,0 -0.254421,-0.0277 -0.127813,-0.0265 -0.256832,-0.0808 v -0.25924 q 0.138666,0.088 0.261655,0.12902 0.124196,0.041 0.249598,0.041 0.184484,0 0.286976,-0.082 0.102492,-0.0832 0.102492,-0.23151 0,-0.13505 -0.07114,-0.20619 -0.06994,-0.0711 -0.244774,-0.10972 l -0.130224,-0.0301 q -0.250803,-0.0567 -0.364147,-0.17122 -0.113343,-0.11455 -0.113343,-0.30747 0,-0.24116 0.161575,-0.38585 0.16278,-0.1459 0.43167,-0.1459 0.103697,0 0.218247,0.0241 0.114549,0.0229 0.241156,0.0699 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5106" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 78.951808,168.79559 q -0.09284,0.0494 -0.190513,0.0735 -0.09767,0.0253 -0.207395,0.0253 -0.34606,0 -0.537779,-0.24477 -0.190514,-0.24477 -0.190514,-0.6885 0,-0.44132 0.191719,-0.6873 0.192926,-0.24718 0.536574,-0.24718 0.109726,0 0.207395,0.0253 0.09767,0.0241 0.190513,0.0736 v 0.2496 q -0.08923,-0.0736 -0.191719,-0.11214 -0.102492,-0.0386 -0.206189,-0.0386 -0.237539,0 -0.355706,0.18328 -0.118167,0.18328 -0.118167,0.55346 0,0.36897 0.118167,0.55225 0.118167,0.18328 0.355706,0.18328 0.106109,0 0.207395,-0.0386 0.102491,-0.0386 0.190513,-0.11214 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5108" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 79.402771,167.05926 h 0.244774 v 1.59525 h 0.86937 v 0.20499 h -1.114144 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5110" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 82.218276,167.05926 h 0.261655 l 0.395497,0.67886 0.402731,-0.67886 h 0.261655 l -0.538985,0.84646 0.57757,0.95378 h -0.261655 l -0.441316,-0.77532 -0.476285,0.77532 h -0.262861 l 0.602892,-0.95378 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5112" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="SCL Y" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text4897" | |||||
transform="translate(8.8203873,41.980571)"> | |||||
<path | |||||
d="m 77.405136,180.25375 v 0.24719 q -0.110932,-0.0711 -0.22307,-0.10732 -0.110932,-0.0362 -0.224276,-0.0362 -0.172427,0 -0.272507,0.0808 -0.10008,0.0796 -0.10008,0.21583 0,0.11938 0.06511,0.18208 0.06632,0.0627 0.24598,0.1049 l 0.127813,0.0289 q 0.253215,0.0591 0.36897,0.18569 0.115755,0.12661 0.115755,0.34485 0,0.25683 -0.159163,0.39188 -0.159164,0.13505 -0.463021,0.13505 -0.126607,0 -0.25442,-0.0277 -0.127813,-0.0265 -0.256832,-0.0808 v -0.25924 q 0.138665,0.088 0.261655,0.12902 0.124196,0.041 0.249597,0.041 0.184485,0 0.286976,-0.082 0.102492,-0.0832 0.102492,-0.23151 0,-0.13505 -0.07114,-0.20619 -0.06994,-0.0711 -0.244774,-0.10973 l -0.130225,-0.0301 q -0.250803,-0.0567 -0.364146,-0.17122 -0.113344,-0.11455 -0.113344,-0.30748 0,-0.24115 0.161575,-0.38585 0.162781,-0.1459 0.43167,-0.1459 0.103698,0 0.218247,0.0241 0.11455,0.0229 0.241157,0.0699 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5097" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 78.964214,181.92859 q -0.09285,0.0494 -0.190514,0.0735 -0.09767,0.0253 -0.207395,0.0253 -0.34606,0 -0.537779,-0.24477 -0.190514,-0.24478 -0.190514,-0.68851 0,-0.44131 0.19172,-0.68729 0.192925,-0.24719 0.536573,-0.24719 0.109727,0 0.207395,0.0253 0.09767,0.0241 0.190514,0.0736 v 0.24959 q -0.08923,-0.0736 -0.19172,-0.11213 -0.102491,-0.0386 -0.206189,-0.0386 -0.237539,0 -0.355706,0.18328 -0.118167,0.18328 -0.118167,0.55345 0,0.36897 0.118167,0.55225 0.118167,0.18328 0.355706,0.18328 0.106109,0 0.207395,-0.0386 0.102492,-0.0386 0.190514,-0.11214 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5099" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 79.415177,180.19226 h 0.244774 v 1.59525 h 0.86937 v 0.20498 h -1.114144 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5101" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 82.171598,180.19226 h 0.259243 l 0.438905,0.79461 0.4377,-0.79461 h 0.261655 l -0.577571,0.99236 v 0.80787 h -0.244774 v -0.80787 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5103" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="RST" | |||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text5250" | |||||
transform="translate(0.08509395,1.0583332)"> | |||||
<path | |||||
d="m 31.568329,165.84675 q 0.09405,0.0241 0.160369,0.0916 0.06632,0.0663 0.165193,0.26647 l 0.244774,0.49196 H 31.87701 l -0.21463,-0.45458 q -0.09285,-0.19413 -0.167604,-0.24959 -0.07355,-0.0567 -0.192925,-0.0567 h -0.232716 v 0.76085 h -0.244774 v -1.80023 h 0.501606 q 0.296622,0 0.45458,0.13384 0.157957,0.13384 0.157957,0.38706 0,0.17845 -0.09767,0.2918 -0.09646,0.11213 -0.272507,0.13746 z m -0.499194,-0.75 v 0.63906 h 0.266478 q 0.174838,0 0.260449,-0.0784 0.08561,-0.0784 0.08561,-0.23995 0,-0.15555 -0.09164,-0.23754 -0.09043,-0.0832 -0.264066,-0.0832 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5252" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 33.357712,164.95808 v 0.24719 q -0.110933,-0.0711 -0.22307,-0.10732 -0.110932,-0.0362 -0.224276,-0.0362 -0.172427,0 -0.272507,0.0808 -0.10008,0.0796 -0.10008,0.21583 0,0.11938 0.06511,0.18208 0.06632,0.0627 0.24598,0.1049 l 0.127813,0.0289 q 0.253215,0.0591 0.36897,0.18569 0.115755,0.12661 0.115755,0.34485 0,0.25684 -0.159163,0.39188 -0.159164,0.13505 -0.463021,0.13505 -0.126608,0 -0.254421,-0.0277 -0.127813,-0.0265 -0.256831,-0.0808 v -0.25924 q 0.138665,0.088 0.261655,0.12902 0.124195,0.041 0.249597,0.041 0.184485,0 0.286976,-0.082 0.102492,-0.0832 0.102492,-0.23151 0,-0.13505 -0.07114,-0.20619 -0.06994,-0.0711 -0.244775,-0.10973 l -0.130224,-0.0301 q -0.250803,-0.0567 -0.364147,-0.17122 -0.113343,-0.11455 -0.113343,-0.30748 0,-0.24115 0.161575,-0.38585 0.16278,-0.1459 0.43167,-0.1459 0.103697,0 0.218247,0.0241 0.114549,0.0229 0.241157,0.0699 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5254" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 33.679656,164.89659 h 1.373387 v 0.20498 h -0.563101 v 1.59525 h -0.244774 v -1.59525 h -0.565512 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path5256" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="N" | |||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text946" | |||||
transform="translate(7.4083325,-4.9749015)"> | |||||
<path | |||||
d="m 42.700275,228.09184 h 0.327973 l 0.798229,1.50602 v -1.50602 h 0.236333 v 1.80023 h -0.327973 l -0.798229,-1.50602 v 1.50602 h -0.236333 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path969" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="E" | |||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text950" | |||||
transform="translate(7.4083325,-7.1131548)"> | |||||
<path | |||||
d="m 42.902847,236.80716 h 1.138259 v 0.20498 h -0.894691 v 0.53296 h 0.857312 v 0.20498 h -0.857312 v 0.65233 h 0.916395 v 0.20498 h -1.159963 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path966" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="S" | |||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text954" | |||||
transform="translate(7.4083325,-9.6318044)"> | |||||
<path | |||||
d="m 43.95429,245.99451 v 0.23753 q -0.138665,-0.0663 -0.261655,-0.0989 -0.12299,-0.0326 -0.237539,-0.0326 -0.198955,0 -0.307475,0.0772 -0.107315,0.0772 -0.107315,0.21946 0,0.11937 0.07114,0.18086 0.07235,0.0603 0.272507,0.0977 l 0.147106,0.0301 q 0.272507,0.0519 0.401526,0.18328 0.130225,0.13022 0.130225,0.34967 0,0.26166 -0.176045,0.39671 -0.174838,0.13504 -0.513664,0.13504 -0.127813,0 -0.272507,-0.0289 -0.143488,-0.0289 -0.297828,-0.0856 v -0.25081 q 0.148311,0.0832 0.290594,0.1254 0.142282,0.0422 0.279741,0.0422 0.208601,0 0.321945,-0.082 0.113343,-0.082 0.113343,-0.23392 0,-0.13264 -0.08199,-0.20739 -0.08079,-0.0748 -0.266478,-0.11214 l -0.148312,-0.0289 q -0.272507,-0.0543 -0.394291,-0.17002 -0.121784,-0.11575 -0.121784,-0.32194 0,-0.23875 0.167604,-0.3762 0.16881,-0.13746 0.464227,-0.13746 0.126607,0 0.258037,0.0229 0.131431,0.0229 0.26889,0.0687 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path963" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="W" | |||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text958" | |||||
transform="translate(7.4083325,-12.203067)"> | |||||
<path | |||||
d="m 42.313046,255.05121 h 0.245979 l 0.378616,1.52169 0.377411,-1.52169 h 0.273712 l 0.378616,1.52169 0.377411,-1.52169 h 0.247185 l -0.452169,1.80023 h -0.306269 l -0.379821,-1.56269 -0.383439,1.56269 h -0.306269 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
id="path960" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="Bouncy Balls" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#1996fc;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text974" | |||||
transform="translate(4.0695403)"> | |||||
<path | |||||
d="m 30.20387,243.56871 v 0.65957 h 0.288182 q 0.212218,0 0.302652,-0.0736 0.09043,-0.0748 0.09043,-0.24477 0,-0.17604 -0.09526,-0.25804 -0.09526,-0.0832 -0.297829,-0.0832 z m 0,-0.74035 v 0.5426 h 0.283359 q 0.176045,0 0.254421,-0.0675 0.07958,-0.0675 0.07958,-0.21825 0,-0.13625 -0.07838,-0.19654 -0.07717,-0.0603 -0.255626,-0.0603 z m -0.244774,-0.20016 h 0.532956 q 0.276125,0 0.425642,0.11937 0.149517,0.11938 0.149517,0.33762 0,0.1652 -0.07958,0.26045 -0.07838,0.0953 -0.236333,0.11938 0.17725,0.0265 0.27733,0.15192 0.101286,0.1242 0.101286,0.31713 0,0.24477 -0.160369,0.37017 -0.16037,0.1242 -0.477491,0.1242 h -0.532956 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1996fc;fill-opacity:1;stroke-width:0.26458332" | |||||
id="path1022" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 31.987224,243.2335 q -0.16881,0 -0.255626,0.13144 -0.08682,0.13143 -0.08682,0.38946 0,0.25684 0.08682,0.38947 0.08682,0.13143 0.255626,0.13143 0.170015,0 0.256832,-0.13143 0.08682,-0.13263 0.08682,-0.38947 0,-0.25803 -0.08682,-0.38946 -0.08682,-0.13144 -0.256832,-0.13144 z m 0,-0.1881 q 0.280947,0 0.429259,0.18208 0.149517,0.18207 0.149517,0.52692 0,0.34606 -0.148312,0.52814 -0.148311,0.18086 -0.430464,0.18086 -0.280948,0 -0.429259,-0.18086 -0.148311,-0.18208 -0.148311,-0.52814 0,-0.34485 0.148311,-0.52692 0.148311,-0.18208 0.429259,-0.18208 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1996fc;fill-opacity:1;stroke-width:0.26458332" | |||||
id="path1024" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 32.965114,243.91718 v -0.83681 h 0.221864 v 0.83681 q 0,0.18208 0.06391,0.26769 0.06511,0.0856 0.20016,0.0856 0.156752,0 0.239951,-0.10973 0.0832,-0.11093 0.0832,-0.31712 v -0.76326 h 0.22307 v 1.34807 h -0.22307 v -0.20258 q -0.05908,0.11697 -0.161575,0.17725 -0.101286,0.0603 -0.23754,0.0603 -0.207394,0 -0.30868,-0.13504 -0.101286,-0.13626 -0.101286,-0.41118 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1996fc;fill-opacity:1;stroke-width:0.26458332" | |||||
id="path1026" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 35.48279,243.59162 v 0.83682 h -0.22307 v -0.83682 q 0,-0.18207 -0.06391,-0.26768 -0.06391,-0.0856 -0.20016,-0.0856 -0.155546,0 -0.239951,0.11093 -0.0832,0.10973 -0.0832,0.31592 v 0.76326 h -0.221864 v -1.35048 h 0.221864 v 0.20257 q 0.05908,-0.11575 0.16037,-0.17484 0.101285,-0.0603 0.23995,-0.0603 0.206189,0 0.307475,0.13626 0.102492,0.13504 0.102492,0.40996 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1996fc;fill-opacity:1;stroke-width:0.26458332" | |||||
id="path1028" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 36.980373,244.35971 q -0.08923,0.0519 -0.184485,0.0772 -0.09405,0.0265 -0.192925,0.0265 -0.313504,0 -0.490754,-0.1881 -0.176045,-0.1881 -0.176045,-0.5209 0,-0.33279 0.176045,-0.5209 0.17725,-0.1881 0.490754,-0.1881 0.09767,0 0.190513,0.0253 0.09285,0.0253 0.186897,0.0784 v 0.23272 q -0.08802,-0.0784 -0.17725,-0.11335 -0.08802,-0.035 -0.20016,-0.035 -0.208601,0 -0.320739,0.13505 -0.112138,0.13505 -0.112138,0.38585 0,0.2496 0.112138,0.38585 0.113344,0.13505 0.320739,0.13505 0.115755,0 0.207394,-0.035 0.09164,-0.0362 0.170016,-0.11093 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1996fc;fill-opacity:1;stroke-width:0.26458332" | |||||
id="path1030" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 38.221124,243.99435 q -0.05547,0.14108 -0.141077,0.37139 -0.119372,0.31832 -0.160369,0.38826 -0.05547,0.0941 -0.138665,0.14107 -0.0832,0.047 -0.194131,0.047 h -0.178456 v -0.18569 h 0.13143 q 0.09767,0 0.153135,-0.0567 0.05547,-0.0567 0.141076,-0.29301 l -0.522104,-1.32877 h 0.235128 l 0.40032,1.05627 0.394291,-1.05627 h 0.235128 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1996fc;fill-opacity:1;stroke-width:0.26458332" | |||||
id="path1032" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 30.946633,246.65552 v 0.65956 h 0.288182 q 0.212218,0 0.302652,-0.0735 0.09043,-0.0748 0.09043,-0.24478 0,-0.17604 -0.09526,-0.25803 -0.09526,-0.0832 -0.297828,-0.0832 z m 0,-0.74035 v 0.5426 h 0.283359 q 0.176044,0 0.25442,-0.0675 0.07958,-0.0675 0.07958,-0.21825 0,-0.13625 -0.07838,-0.19654 -0.07717,-0.0603 -0.255626,-0.0603 z m -0.244774,-0.20016 h 0.532956 q 0.276124,0 0.425641,0.11937 0.149518,0.11937 0.149518,0.33762 0,0.16519 -0.07958,0.26045 -0.07838,0.0953 -0.236334,0.11937 0.17725,0.0265 0.27733,0.15193 0.101286,0.1242 0.101286,0.31712 0,0.24477 -0.160369,0.37018 -0.160369,0.12419 -0.47749,0.12419 h -0.532956 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1996fc;fill-opacity:1;stroke-width:0.26458332" | |||||
id="path1034" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 32.833684,246.83639 h -0.07355 q -0.194131,0 -0.293005,0.0687 -0.09767,0.0675 -0.09767,0.20257 0,0.12178 0.07355,0.1893 0.07355,0.0675 0.203777,0.0675 0.183279,0 0.288182,-0.12661 0.104904,-0.12781 0.106109,-0.35209 v -0.0494 z m 0.430464,-0.0916 v 0.77049 h -0.22307 v -0.20016 q -0.07114,0.12058 -0.179661,0.17846 -0.107315,0.0567 -0.261655,0.0567 -0.206189,0 -0.329179,-0.11576 -0.12299,-0.11696 -0.12299,-0.31229 0,-0.22549 0.150723,-0.34245 0.151929,-0.11696 0.444934,-0.11696 h 0.297828 v -0.035 q -0.0012,-0.16158 -0.08199,-0.23393 -0.08079,-0.0735 -0.258037,-0.0735 -0.113344,0 -0.229099,0.0326 -0.115756,0.0326 -0.225482,0.0952 v -0.22186 q 0.12299,-0.047 0.235128,-0.0699 0.113344,-0.0241 0.219453,-0.0241 0.167603,0 0.28577,0.0494 0.119373,0.0494 0.192925,0.14831 0.04582,0.0603 0.06511,0.14951 0.01929,0.088 0.01929,0.26528 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1996fc;fill-opacity:1;stroke-width:0.26458332" | |||||
id="path1036" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 34.243244,247.02569 q 0,0.14952 0.05426,0.22549 0.05547,0.076 0.16278,0.076 h 0.259244 v 0.1881 H 34.43858 q -0.198954,0 -0.30868,-0.12781 -0.108521,-0.12781 -0.108521,-0.36174 v -1.22628 h -0.355706 v -0.17363 h 0.57757 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1996fc;fill-opacity:1;stroke-width:0.26458332" | |||||
id="path1038" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 35.72877,247.02569 q 0,0.14952 0.05426,0.22549 0.05547,0.076 0.162781,0.076 h 0.259243 v 0.1881 h -0.280948 q -0.198954,0 -0.30868,-0.12781 -0.108521,-0.12781 -0.108521,-0.36174 v -1.22628 h -0.355706 v -0.17363 h 0.577571 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1996fc;fill-opacity:1;stroke-width:0.26458332" | |||||
id="path1040" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 37.617026,246.21179 v 0.21704 q -0.09526,-0.0555 -0.191719,-0.0832 -0.09646,-0.0277 -0.196543,-0.0277 -0.150723,0 -0.225481,0.0494 -0.07355,0.0482 -0.07355,0.14831 0,0.0904 0.05547,0.13504 0.05547,0.0446 0.276124,0.0868 l 0.08923,0.0169 q 0.165193,0.0314 0.249597,0.1254 0.08561,0.094 0.08561,0.24478 0,0.20016 -0.142282,0.3135 -0.142283,0.11214 -0.395497,0.11214 -0.10008,0 -0.209807,-0.0217 -0.109726,-0.0205 -0.237539,-0.0627 v -0.22909 q 0.124196,0.0639 0.237539,0.0965 0.113344,0.0314 0.21463,0.0314 0.147105,0 0.227893,-0.0591 0.08079,-0.0603 0.08079,-0.16761 0,-0.15434 -0.295417,-0.21342 l -0.0096,-0.002 -0.0832,-0.0169 q -0.191719,-0.0374 -0.279742,-0.12541 -0.08802,-0.0892 -0.08802,-0.24236 0,-0.19413 0.131431,-0.29903 0.13143,-0.10611 0.374998,-0.10611 0.108521,0 0.208601,0.0205 0.10008,0.0193 0.196542,0.0591 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1996fc;fill-opacity:1;stroke-width:0.26458332" | |||||
id="path1042" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="PAD POS IN" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text998" | |||||
transform="translate(0.0361548,3.0731102)"> | |||||
<path | |||||
d="m 36.518598,209.13918 v 0.67645 h 0.282153 q 0.16881,0 0.262861,-0.0892 0.09526,-0.0892 0.09526,-0.2496 0,-0.16037 -0.09405,-0.24839 -0.09405,-0.0892 -0.264066,-0.0892 z m -0.243569,-0.20016 h 0.525722 q 0.301446,0 0.456992,0.13746 0.155546,0.13626 0.155546,0.40032 0,0.26648 -0.155546,0.40273 -0.154341,0.13626 -0.456992,0.13626 h -0.282153 v 0.72347 h -0.243569 z" | |||||
id="path1081" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 38.265778,209.15365 -0.256832,0.92122 h 0.513663 z m -0.147106,-0.21463 h 0.295417 l 0.551043,1.80024 h -0.252009 l -0.132636,-0.46905 h -0.630625 l -0.130224,0.46905 h -0.252009 z" | |||||
id="path1083" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 39.534262,210.5391 q 0.307475,0 0.429259,-0.15073 0.121784,-0.15192 0.121784,-0.54742 0,-0.39912 -0.121784,-0.54984 -0.120579,-0.15193 -0.429259,-0.15193 h -0.115755 v 1.39992 z m 0.0048,-1.60008 q 0.412378,0 0.607715,0.21946 0.195337,0.21945 0.195337,0.68247 0,0.46061 -0.195337,0.68006 -0.195337,0.21825 -0.607715,0.21825 H 39.17371 v -1.80024 z" | |||||
id="path1085" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 34.29031,212.22599 v 0.67644 h 0.282153 q 0.16881,0 0.262861,-0.0892 0.09526,-0.0892 0.09526,-0.2496 0,-0.16037 -0.09405,-0.24839 -0.09405,-0.0892 -0.264067,-0.0892 z m -0.243568,-0.20016 h 0.525721 q 0.301446,0 0.456992,0.13746 0.155546,0.13625 0.155546,0.40032 0,0.26648 -0.155546,0.40273 -0.15434,0.13625 -0.456992,0.13625 H 34.29031 v 0.72347 h -0.243568 z" | |||||
id="path1087" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 36.385961,212.92775 q 0,-0.3967 -0.08199,-0.56671 -0.08079,-0.17002 -0.266478,-0.17002 -0.184485,0 -0.266478,0.17002 -0.08079,0.17001 -0.08079,0.56671 0,0.3955 0.08079,0.56552 0.08199,0.17001 0.266478,0.17001 0.185691,0 0.266478,-0.16881 0.08199,-0.17001 0.08199,-0.56672 z m 0.254421,0 q 0,0.47026 -0.149517,0.70177 -0.148312,0.23151 -0.453375,0.23151 -0.305063,0 -0.453374,-0.2303 -0.148312,-0.23031 -0.148312,-0.70298 0,-0.47146 0.148312,-0.70297 0.149517,-0.23151 0.453374,-0.23151 0.305063,0 0.453375,0.23151 0.149517,0.23151 0.149517,0.70297 z" | |||||
id="path1089" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 38.000505,212.08732 v 0.24719 q -0.110932,-0.0711 -0.22307,-0.10732 -0.110932,-0.0362 -0.224275,-0.0362 -0.172427,0 -0.272507,0.0808 -0.10008,0.0796 -0.10008,0.21583 0,0.11938 0.06511,0.18208 0.06632,0.0627 0.24598,0.1049 l 0.127813,0.0289 q 0.253214,0.0591 0.36897,0.18569 0.115755,0.12661 0.115755,0.34485 0,0.25684 -0.159164,0.39188 -0.159163,0.13505 -0.46302,0.13505 -0.126608,0 -0.254421,-0.0277 -0.127813,-0.0265 -0.256832,-0.0808 v -0.25924 q 0.138665,0.088 0.261655,0.12902 0.124196,0.041 0.249598,0.041 0.184484,0 0.286976,-0.082 0.102492,-0.0832 0.102492,-0.23151 0,-0.13505 -0.07114,-0.20619 -0.06994,-0.0711 -0.244774,-0.10973 l -0.130224,-0.0301 q -0.250803,-0.0567 -0.364147,-0.17122 -0.113343,-0.11455 -0.113343,-0.30748 0,-0.24115 0.161574,-0.38585 0.162781,-0.1459 0.431671,-0.1459 0.103697,0 0.218247,0.0241 0.114549,0.0229 0.241156,0.0699 z" | |||||
id="path1091" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 39.993665,212.02583 h 0.999595 v 0.20498 h -0.37741 v 1.39027 h 0.37741 v 0.20498 h -0.999595 v -0.20498 h 0.377411 v -1.39027 h -0.377411 z" | |||||
id="path1093" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 41.404432,212.02583 h 0.30868 l 0.607715,1.48191 v -1.48191 h 0.235128 v 1.80023 h -0.308681 l -0.607714,-1.4819 v 1.4819 h -0.235128 z" | |||||
id="path1095" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="PAD" | |||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text916" | |||||
transform="translate(-0.52916665,-0.22514654)"> | |||||
<path | |||||
d="m 48.460912,256.50454 v 0.67644 h 0.282153 q 0.16881,0 0.262861,-0.0892 0.09526,-0.0892 0.09526,-0.2496 0,-0.16037 -0.09405,-0.24839 -0.09405,-0.0892 -0.264067,-0.0892 z m -0.243569,-0.20016 h 0.525722 q 0.301446,0 0.456992,0.13746 0.155546,0.13625 0.155546,0.40032 0,0.26648 -0.155546,0.40273 -0.15434,0.13625 -0.456992,0.13625 h -0.282153 v 0.72347 h -0.243569 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332" | |||||
id="path918" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 50.208092,256.51901 -0.256832,0.92122 h 0.513664 z m -0.147106,-0.21463 h 0.295417 l 0.551043,1.80023 h -0.252009 l -0.132636,-0.46905 h -0.630624 l -0.130225,0.46905 h -0.252009 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332" | |||||
id="path920" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 51.476576,257.90445 q 0.307475,0 0.429259,-0.15072 0.121784,-0.15193 0.121784,-0.54742 0,-0.39912 -0.121784,-0.54984 -0.120579,-0.15193 -0.429259,-0.15193 h -0.115755 v 1.39991 z m 0.0048,-1.60007 q 0.412378,0 0.607715,0.21945 0.195337,0.21945 0.195337,0.68248 0,0.4606 -0.195337,0.68006 -0.195337,0.21824 -0.607715,0.21824 h -0.365352 v -1.80023 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332" | |||||
id="path922" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
id="g928" | |||||
transform="translate(9.9884314,21.357304)"> | |||||
<path | |||||
d="m 35.068623,228.1238 h 1.138259 v 0.20499 h -0.894691 v 0.53295 h 0.857312 v 0.20498 h -0.857312 v 0.65233 h 0.916396 v 0.20499 h -1.159964 z" | |||||
style="font-style:normal;font-weight:normal;font-size:medium;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="path914" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 36.874886,228.32396 v 1.39992 h 0.294212 q 0.372587,0 0.545014,-0.16881 0.173632,-0.16881 0.173632,-0.53296 0,-0.36173 -0.173632,-0.52934 -0.172427,-0.16881 -0.545014,-0.16881 z m -0.243568,-0.20016 h 0.5004 q 0.52331,0 0.768084,0.21825 0.244774,0.21704 0.244774,0.68006 0,0.46543 -0.245979,0.68368 -0.24598,0.21825 -0.766879,0.21825 h -0.5004 z" | |||||
style="font-style:normal;font-weight:normal;font-size:medium;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="path916" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 39.75912,229.66721 v -0.48352 h -0.397908 v -0.20016 h 0.639065 v 0.7729 q -0.141077,0.10008 -0.311092,0.15193 -0.170016,0.0506 -0.362941,0.0506 -0.422024,0 -0.660769,-0.24598 -0.23754,-0.24718 -0.23754,-0.68729 0,-0.44132 0.23754,-0.6873 0.238745,-0.24718 0.660769,-0.24718 0.176044,0 0.334002,0.0434 0.159163,0.0434 0.293005,0.12782 v 0.25924 q -0.135047,-0.11455 -0.286976,-0.17243 -0.151929,-0.0579 -0.319533,-0.0579 -0.330384,0 -0.496782,0.18448 -0.165193,0.18449 -0.165193,0.54984 0,0.36414 0.165193,0.54863 0.166398,0.18448 0.496782,0.18448 0.129019,0 0.230305,-0.0217 0.101286,-0.0229 0.182073,-0.0699 z" | |||||
style="font-style:normal;font-weight:normal;font-size:medium;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="path919" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 40.446417,228.1238 h 1.138259 v 0.20499 h -0.894691 v 0.53295 h 0.857312 v 0.20498 h -0.857312 v 0.65233 h 0.916395 v 0.20499 h -1.159963 z" | |||||
style="font-style:normal;font-weight:normal;font-size:medium;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="path921" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
aria-label="MULT" | |||||
style="font-style:normal;font-weight:normal;font-size:2.46944427px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text918" | |||||
transform="translate(0,-0.52916665)"> | |||||
<path | |||||
d="m 29.129775,202.36554 h 0.362941 l 0.459404,1.22507 0.461815,-1.22507 h 0.36294 v 1.80023 h -0.237539 v -1.58078 l -0.464227,1.23472 h -0.244774 l -0.464226,-1.23472 v 1.58078 h -0.236334 z" | |||||
style="stroke-width:0.26458332" | |||||
id="path924" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 31.233867,202.36554 h 0.244774 v 1.09364 q 0,0.28939 0.104903,0.4172 0.104904,0.12661 0.340031,0.12661 0.233922,0 0.338825,-0.12661 0.104904,-0.12781 0.104904,-0.4172 v -1.09364 h 0.244774 v 1.12379 q 0,0.35209 -0.174839,0.53175 -0.173633,0.17966 -0.513664,0.17966 -0.341236,0 -0.516075,-0.17966 -0.173633,-0.17966 -0.173633,-0.53175 z" | |||||
style="stroke-width:0.26458332" | |||||
id="path926" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 33.070275,202.36554 h 0.243569 v 1.59525 h 0.876604 v 0.20498 h -1.120173 z" | |||||
style="stroke-width:0.26458332" | |||||
id="path928" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
d="m 33.857652,202.36554 h 1.522904 v 0.20498 h -0.639065 v 1.59525 h -0.244774 v -1.59525 h -0.639065 z" | |||||
style="stroke-width:0.26458332" | |||||
id="path930" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
transform="translate(0.3661723,15.628493)" | |||||
id="g917" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
aria-label="X"> | |||||
<path | |||||
inkscape:connector-curvature="0" | |||||
id="path915" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
d="m 33.856703,205.2003 h 0.261655 l 0.395497,0.67886 0.402732,-0.67886 h 0.261655 l -0.538985,0.84646 0.57757,0.95377 h -0.261655 l -0.441317,-0.77531 -0.476284,0.77531 H 33.77471 l 0.602892,-0.95377 z" /> | |||||
</g> | |||||
<g | |||||
transform="translate(0.3885673,12.988135)" | |||||
id="g925" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
aria-label="Y"> | |||||
<path | |||||
inkscape:connector-curvature="0" | |||||
id="path923" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" | |||||
d="m 33.79693,214.16865 h 0.259243 l 0.438905,0.79461 0.437699,-0.79461 h 0.261655 l -0.57757,0.99236 v 0.80788 h -0.244774 v -0.80788 z" /> | |||||
</g> | |||||
<g | |||||
aria-label="ON" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;line-height:1.25;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" | |||||
id="text920"> | |||||
<path | |||||
d="m 33.616703,234.94842 q 0,-0.39671 -0.08199,-0.56672 -0.08079,-0.17002 -0.266479,-0.17002 -0.184484,0 -0.266478,0.17002 -0.08079,0.17001 -0.08079,0.56672 0,0.39549 0.08079,0.56551 0.08199,0.17001 0.266478,0.17001 0.185691,0 0.266479,-0.1688 0.08199,-0.17002 0.08199,-0.56672 z m 0.25442,0 q 0,0.47025 -0.149517,0.70176 -0.148311,0.23151 -0.453375,0.23151 -0.305063,0 -0.453374,-0.2303 -0.148311,-0.23031 -0.148311,-0.70297 0,-0.47146 0.148311,-0.70297 0.149517,-0.23152 0.453374,-0.23152 0.305064,0 0.453375,0.23152 0.149517,0.23151 0.149517,0.70297 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332" | |||||
id="path925" /> | |||||
<path | |||||
d="m 34.178598,234.04649 h 0.30868 l 0.607715,1.48191 v -1.48191 h 0.235128 v 1.80024 H 35.02144 l -0.607714,-1.48191 v 1.48191 h -0.235128 z" | |||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944427px;font-family:monospace;-inkscape-font-specification:'monospace, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332" | |||||
id="path927" /> | |||||
</g> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,139 @@ | |||||
<?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" | |||||
height="50" | |||||
viewBox="0 0 13.229166 13.229167" | |||||
version="1.1" | |||||
id="svg873" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06" | |||||
sodipodi:docname="Bowl-food.svg"> | |||||
<defs | |||||
id="defs867" /> | |||||
<sodipodi:namedview | |||||
id="base" | |||||
pagecolor="#ffffff" | |||||
bordercolor="#666666" | |||||
borderopacity="1.0" | |||||
inkscape:pageopacity="0.0" | |||||
inkscape:pageshadow="2" | |||||
inkscape:zoom="5.6" | |||||
inkscape:cx="29.876033" | |||||
inkscape:cy="20.609152" | |||||
inkscape:document-units="px" | |||||
inkscape:current-layer="layer1" | |||||
showgrid="false" | |||||
inkscape:window-width="988" | |||||
inkscape:window-height="908" | |||||
inkscape:window-x="0" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
units="px" | |||||
inkscape:pagecheckerboard="true" /> | |||||
<metadata | |||||
id="metadata870"> | |||||
<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(0,-283.77083)"> | |||||
<path | |||||
style="fill:#147cc0;fill-opacity:1;stroke:none;stroke-width:0.06128326;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="M 0.86300599,289.04326 H 12.331426 v 2.54581 H 0.86300599 Z" | |||||
id="rect818" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#147cc0;fill-opacity:1;stroke:none;stroke-width:0.10600913;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 12.33271,291.58632 a 5.7443254,2.2583117 0 0 1 -5.7443256,2.25831 5.7443254,2.2583117 0 0 1 -5.7443253,-2.25831 5.7443254,2.2583117 0 0 1 5.7443253,-2.25831 5.7443254,2.2583117 0 0 1 5.7443256,2.25831 z" | |||||
id="ellipse820" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#147cc0;fill-opacity:1;stroke:none;stroke-width:0.10600913;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 12.33271,289.3124 a 5.7443254,2.2583117 0 0 1 -5.7443256,2.25831 5.7443254,2.2583117 0 0 1 -5.7443253,-2.25831 5.7443254,2.2583117 0 0 1 5.7443253,-2.25831 5.7443254,2.2583117 0 0 1 5.7443256,2.25831 z" | |||||
id="path1418" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#1423c0;fill-opacity:1;stroke:none;stroke-width:0.02697146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 11.015993,289.34194 a 4.4830923,1.453452 0 0 1 -4.4830934,1.45345 4.4830923,1.453452 0 0 1 -4.4830919,-1.45345 4.4830923,1.453452 0 0 1 4.4830919,-1.45346 4.4830923,1.453452 0 0 1 4.4830934,1.45346 z" | |||||
id="ellipse1424" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#9e6c36;fill-opacity:1;stroke:none;stroke-width:0.09145167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 4.4040569,288.95802 a 1.1308874,1.4239204 0 0 1 -1.1308874,1.42393 1.1308874,1.4239204 0 0 1 -1.1308874,-1.42393 1.1308874,1.4239204 0 0 1 1.1308874,-1.42391 1.1308874,1.4239204 0 0 1 1.1308874,1.42391 z" | |||||
id="ellipse814" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#9e6c36;fill-opacity:1;stroke:none;stroke-width:0.09145167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 5.6062267,289.43053 a 1.1308874,1.4239204 0 0 1 -1.1308875,1.42392 1.1308874,1.4239204 0 0 1 -1.1308875,-1.42392 1.1308874,1.4239204 0 0 1 1.1308875,-1.42392 1.1308874,1.4239204 0 0 1 1.1308875,1.42392 z" | |||||
id="ellipse822" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#9e6c36;fill-opacity:1;stroke:none;stroke-width:0.09145167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 6.7159216,289.72584 a 1.1308874,1.4239204 0 0 1 -1.1308867,1.42392 1.1308874,1.4239204 0 0 1 -1.1308878,-1.42392 1.1308874,1.4239204 0 0 1 1.1308878,-1.42392 1.1308874,1.4239204 0 0 1 1.1308867,1.42392 z" | |||||
id="ellipse824" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#9e6c36;fill-opacity:1;stroke:none;stroke-width:0.09145167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 5.5599892,288.24927 a 1.1308874,1.4239204 0 0 1 -1.1308873,1.42392 1.1308874,1.4239204 0 0 1 -1.1308875,-1.42392 1.1308874,1.4239204 0 0 1 1.1308875,-1.42392 1.1308874,1.4239204 0 0 1 1.1308873,1.42392 z" | |||||
id="ellipse826" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#9e6c36;fill-opacity:1;stroke:none;stroke-width:0.09145167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 6.8546338,288.24927 a 1.1308874,1.4239204 0 0 1 -1.1308875,1.42392 1.1308874,1.4239204 0 0 1 -1.1308874,-1.42392 1.1308874,1.4239204 0 0 1 1.1308874,-1.42392 1.1308874,1.4239204 0 0 1 1.1308875,1.42392 z" | |||||
id="ellipse828" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#9e6c36;fill-opacity:1;stroke:none;stroke-width:0.09145167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 7.5019564,289.19428 a 1.1308874,1.4239204 0 0 1 -1.1308871,1.42392 1.1308874,1.4239204 0 0 1 -1.1308875,-1.42392 1.1308874,1.4239204 0 0 1 1.1308875,-1.42392 1.1308874,1.4239204 0 0 1 1.1308871,1.42392 z" | |||||
id="ellipse830" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#9e6c36;fill-opacity:1;stroke:none;stroke-width:0.09145167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 8.0105661,289.60772 a 1.1308874,1.4239204 0 0 1 -1.1308875,1.42392 1.1308874,1.4239204 0 0 1 -1.1308874,-1.42392 1.1308874,1.4239204 0 0 1 1.1308874,-1.42392 1.1308874,1.4239204 0 0 1 1.1308875,1.42392 z" | |||||
id="ellipse832" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#9e6c36;fill-opacity:1;stroke:none;stroke-width:0.09145167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 9.212737,289.60772 a 1.1308874,1.4239204 0 0 1 -1.1308879,1.42392 1.1308874,1.4239204 0 0 1 -1.1308874,-1.42392 1.1308874,1.4239204 0 0 1 1.1308874,-1.42392 1.1308874,1.4239204 0 0 1 1.1308879,1.42392 z" | |||||
id="ellipse834" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#9e6c36;fill-opacity:1;stroke:none;stroke-width:0.09145167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 8.1955164,288.07208 a 1.1308874,1.4239204 0 0 1 -1.1308878,1.42392 1.1308874,1.4239204 0 0 1 -1.1308871,-1.42392 1.1308874,1.4239204 0 0 1 1.1308871,-1.42392 1.1308874,1.4239204 0 0 1 1.1308878,1.42392 z" | |||||
id="ellipse836" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#9e6c36;fill-opacity:1;stroke:none;stroke-width:0.09145167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 9.4901623,288.30833 a 1.1308874,1.4239204 0 0 1 -1.130887,1.42393 1.1308874,1.4239204 0 0 1 -1.1308878,-1.42393 1.1308874,1.4239204 0 0 1 1.1308878,-1.42392 1.1308874,1.4239204 0 0 1 1.130887,1.42392 z" | |||||
id="ellipse838" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#9e6c36;fill-opacity:1;stroke:none;stroke-width:0.09145167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 10.137485,289.37147 a 1.1308874,1.4239204 0 0 1 -1.1308872,1.42392 1.1308874,1.4239204 0 0 1 -1.1308881,-1.42392 1.1308874,1.4239204 0 0 1 1.1308881,-1.42392 1.1308874,1.4239204 0 0 1 1.1308872,1.42392 z" | |||||
id="ellipse840" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#9e6c36;fill-opacity:1;stroke:none;stroke-width:0.09145167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 10.92352,288.89897 a 1.1308874,1.4239204 0 0 1 -1.1308882,1.42392 1.1308874,1.4239204 0 0 1 -1.1308872,-1.42392 1.1308874,1.4239204 0 0 1 1.1308872,-1.42393 1.1308874,1.4239204 0 0 1 1.1308882,1.42393 z" | |||||
id="ellipse842" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,79 @@ | |||||
<?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" | |||||
height="50" | |||||
viewBox="0 0 13.229166 13.229167" | |||||
version="1.1" | |||||
id="svg873" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06" | |||||
sodipodi:docname="Bowl-no-food.svg"> | |||||
<defs | |||||
id="defs867" /> | |||||
<sodipodi:namedview | |||||
id="base" | |||||
pagecolor="#ffffff" | |||||
bordercolor="#666666" | |||||
borderopacity="1.0" | |||||
inkscape:pageopacity="0.0" | |||||
inkscape:pageshadow="2" | |||||
inkscape:zoom="5.6" | |||||
inkscape:cx="29.876033" | |||||
inkscape:cy="20.609152" | |||||
inkscape:document-units="px" | |||||
inkscape:current-layer="layer1" | |||||
showgrid="false" | |||||
inkscape:window-width="988" | |||||
inkscape:window-height="908" | |||||
inkscape:window-x="0" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
units="px" | |||||
inkscape:pagecheckerboard="true" /> | |||||
<metadata | |||||
id="metadata870"> | |||||
<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(0,-283.77083)"> | |||||
<path | |||||
style="fill:#147cc0;fill-opacity:1;stroke:none;stroke-width:0.06128326;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="M 0.86300599,289.04326 H 12.331426 v 2.54581 H 0.86300599 Z" | |||||
id="rect818" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#147cc0;fill-opacity:1;stroke:none;stroke-width:0.10600913;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 12.33271,291.58632 a 5.7443254,2.2583117 0 0 1 -5.7443256,2.25831 5.7443254,2.2583117 0 0 1 -5.7443253,-2.25831 5.7443254,2.2583117 0 0 1 5.7443253,-2.25831 5.7443254,2.2583117 0 0 1 5.7443256,2.25831 z" | |||||
id="ellipse820" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#147cc0;fill-opacity:1;stroke:none;stroke-width:0.10600913;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 12.33271,289.3124 a 5.7443254,2.2583117 0 0 1 -5.7443256,2.25831 5.7443254,2.2583117 0 0 1 -5.7443253,-2.25831 5.7443254,2.2583117 0 0 1 5.7443253,-2.25831 5.7443254,2.2583117 0 0 1 5.7443256,2.25831 z" | |||||
id="path1418" | |||||
inkscape:connector-curvature="0" /> | |||||
<path | |||||
style="fill:#1423c0;fill-opacity:1;stroke:none;stroke-width:0.02697146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" | |||||
d="m 11.015993,289.34194 a 4.4830923,1.453452 0 0 1 -4.4830934,1.45345 4.4830923,1.453452 0 0 1 -4.4830919,-1.45345 4.4830923,1.453452 0 0 1 4.4830919,-1.45346 4.4830923,1.453452 0 0 1 4.4830934,1.45346 z" | |||||
id="ellipse1424" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,99 @@ | |||||
Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. | |||||
Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below) | |||||
Bitstream Vera Fonts Copyright | |||||
------------------------------ | |||||
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is | |||||
a trademark of Bitstream, Inc. | |||||
Permission is hereby granted, free of charge, to any person obtaining a copy | |||||
of the fonts accompanying this license ("Fonts") and associated | |||||
documentation files (the "Font Software"), to reproduce and distribute the | |||||
Font Software, including without limitation the rights to use, copy, merge, | |||||
publish, distribute, and/or sell copies of the Font Software, and to permit | |||||
persons to whom the Font Software is furnished to do so, subject to the | |||||
following conditions: | |||||
The above copyright and trademark notices and this permission notice shall | |||||
be included in all copies of one or more of the Font Software typefaces. | |||||
The Font Software may be modified, altered, or added to, and in particular | |||||
the designs of glyphs or characters in the Fonts may be modified and | |||||
additional glyphs or characters may be added to the Fonts, only if the fonts | |||||
are renamed to names not containing either the words "Bitstream" or the word | |||||
"Vera". | |||||
This License becomes null and void to the extent applicable to Fonts or Font | |||||
Software that has been modified and is distributed under the "Bitstream | |||||
Vera" names. | |||||
The Font Software may be sold as part of a larger software package but no | |||||
copy of one or more of the Font Software typefaces may be sold by itself. | |||||
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 BITSTREAM OR THE GNOME | |||||
FOUNDATION 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. | |||||
Except as contained in this notice, the names of Gnome, the Gnome | |||||
Foundation, and Bitstream Inc., shall not be used in advertising or | |||||
otherwise to promote the sale, use or other dealings in this Font Software | |||||
without prior written authorization from the Gnome Foundation or Bitstream | |||||
Inc., respectively. For further information, contact: fonts at gnome dot | |||||
org. | |||||
Arev Fonts Copyright | |||||
------------------------------ | |||||
Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. | |||||
Permission is hereby granted, free of charge, to any person obtaining | |||||
a copy of the fonts accompanying this license ("Fonts") and | |||||
associated documentation files (the "Font Software"), to reproduce | |||||
and distribute the modifications to the Bitstream Vera Font Software, | |||||
including without limitation the rights to use, copy, merge, publish, | |||||
distribute, and/or sell copies of the Font Software, and to permit | |||||
persons to whom the Font Software is furnished to do so, subject to | |||||
the following conditions: | |||||
The above copyright and trademark notices and this permission notice | |||||
shall be included in all copies of one or more of the Font Software | |||||
typefaces. | |||||
The Font Software may be modified, altered, or added to, and in | |||||
particular the designs of glyphs or characters in the Fonts may be | |||||
modified and additional glyphs or characters may be added to the | |||||
Fonts, only if the fonts are renamed to names not containing either | |||||
the words "Tavmjong Bah" or the word "Arev". | |||||
This License becomes null and void to the extent applicable to Fonts | |||||
or Font Software that has been modified and is distributed under the | |||||
"Tavmjong Bah Arev" names. | |||||
The Font Software may be sold as part of a larger software package but | |||||
no copy of one or more of the Font Software typefaces may be sold by | |||||
itself. | |||||
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 | |||||
TAVMJONG BAH 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. | |||||
Except as contained in this notice, the name of Tavmjong Bah shall not | |||||
be used in advertising or otherwise to promote the sale, use or other | |||||
dealings in this Font Software without prior written authorization | |||||
from Tavmjong Bah. For further information, contact: tavmjong @ free | |||||
. fr. | |||||
$Id: LICENSE 2133 2007-11-28 02:46:28Z lechimp $ |
@@ -0,0 +1,83 @@ | |||||
<?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="18" | |||||
height="18" | |||||
viewBox="0 0 4.7624999 4.7624998" | |||||
version="1.1" | |||||
id="svg7595" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06" | |||||
sodipodi:docname="DownButton.svg"> | |||||
<defs | |||||
id="defs7589"> | |||||
<clipPath | |||||
id="clip444"> | |||||
<path | |||||
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0" | |||||
id="path24586" | |||||
inkscape:connector-curvature="0" /> | |||||
</clipPath> | |||||
</defs> | |||||
<sodipodi:namedview | |||||
id="base" | |||||
pagecolor="#ffffff" | |||||
bordercolor="#666666" | |||||
borderopacity="1.0" | |||||
inkscape:pageopacity="0.0" | |||||
inkscape:pageshadow="2" | |||||
inkscape:zoom="15.839192" | |||||
inkscape:cx="9.3438356" | |||||
inkscape:cy="0.82092183" | |||||
inkscape:document-units="px" | |||||
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="1210" | |||||
inkscape:window-height="798" | |||||
inkscape:window-x="933" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
units="px" | |||||
inkscape:pagecheckerboard="true" | |||||
inkscape:snap-grids="false" /> | |||||
<metadata | |||||
id="metadata7592"> | |||||
<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(-46.755712,-67.833036)"> | |||||
<g | |||||
aria-label="▶" | |||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#1996fc;fill-opacity:1;stroke:none;stroke-width:0.3343859" | |||||
id="text32" | |||||
transform="matrix(0,0.81269854,0.7703703,0,-4.5695837,30.515659)"> | |||||
<path | |||||
d="M 51.126842,70.230408 46.894543,72.46283 V 67.997986 Z" | |||||
style="fill:#1996fc;fill-opacity:1;stroke-width:0.3343859" | |||||
id="path4529" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,94 @@ | |||||
<?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="18" | |||||
height="18" | |||||
viewBox="0 0 4.7624999 4.7624998" | |||||
version="1.1" | |||||
id="svg7595" | |||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06" | |||||
sodipodi:docname="DownButtonDown.svg"> | |||||
<defs | |||||
id="defs7589"> | |||||
<clipPath | |||||
id="clip444"> | |||||
<path | |||||
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0" | |||||
id="path24586" | |||||
inkscape:connector-curvature="0" /> | |||||
</clipPath> | |||||
</defs> | |||||
<sodipodi:namedview | |||||
id="base" | |||||
pagecolor="#ffffff" | |||||
bordercolor="#666666" | |||||
borderopacity="1.0" | |||||
inkscape:pageopacity="0.0" | |||||
inkscape:pageshadow="2" | |||||
inkscape:zoom="15.839192" | |||||
inkscape:cx="-2.2729186" | |||||
inkscape:cy="0.82092183" | |||||
inkscape:document-units="px" | |||||
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="1210" | |||||
inkscape:window-height="798" | |||||
inkscape:window-x="792" | |||||
inkscape:window-y="0" | |||||
inkscape:window-maximized="0" | |||||
units="px" | |||||
inkscape:pagecheckerboard="true" | |||||
inkscape:snap-grids="false" /> | |||||
<metadata | |||||
id="metadata7592"> | |||||
<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(-46.755712,-67.833036)"> | |||||
<g | |||||
aria-label="▶" | |||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#1996fc;fill-opacity:1;stroke:none;stroke-width:0.3343859" | |||||
id="text32" | |||||
transform="matrix(0,0.81269854,0.7703703,0,-4.5695837,30.515659)"> | |||||
<path | |||||
d="M 51.126842,70.230408 46.894543,72.46283 V 67.997986 Z" | |||||
style="fill:#1996fc;fill-opacity:1;stroke-width:0.3343859" | |||||
id="path4529" | |||||
inkscape:connector-curvature="0" /> | |||||
</g> | |||||
<g | |||||
transform="matrix(0,0.62515272,0.59259254,0,7.915821,39.575118)" | |||||
id="g821" | |||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#1934b6;fill-opacity:1;stroke:none;stroke-width:0.43470165" | |||||
aria-label="▶"> | |||||
<path | |||||
inkscape:connector-curvature="0" | |||||
id="path819" | |||||
style="fill:#1934b6;fill-opacity:1;stroke-width:0.43470165" | |||||
d="M 51.126842,70.230408 46.894543,72.46283 V 67.997986 Z" /> | |||||
</g> | |||||
</g> | |||||
</svg> |