+++ /dev/null
-@function gtkalpha($c,$a) {
- @return unquote("alpha(#{$c},#{$a})");
-}
-
-$ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
-
-* {
- padding: 0;
- -gtk-icon-style: symbolic; //force symbolic style icons
-
- // The size for scrollbars. The slider is 2px smaller, but we keep it
- // up so that the whole area is sensitive to button presses for the
- // slider. The stepper button is larger in both directions, the slider
- // only in the width
-
- outline-style: none;
-}
-
-button:focus,
-checkbutton:focus,
-radiobutton:focus,
-switch:focus,
-scale:focus,
-label:focus,
-row:focus,
-flowboxchild:focus {
- // We use the outline properties to signal the focus properties
- // to the adwaita engine: using real CSS properties is faster,
- // and we don't use any outlines for now.
-
- outline-color: currentColor;
- outline-style: dashed;
- outline-offset: -4px;
- outline-width: 2px;
-}
-
-/***************
- * Base States *
- ***************/
-
-.background {
- color: $fg_color;
- background-color: $bg_color;
-}
-
-dnd {
- color: $fg-color;
-}
-
-.background:backdrop {
- text-shadow: none;
- -gtk-icon-shadow: none;
-
- color: lighten($fg_color,10%);
- background-color: $backdrop_bg_color;
-}
-
-/*
- These wildcard seems unavoidable, need to investigate.
- Wildcards are bad and troublesome, use them with care,
- or better, just don't.
- Everytime a wildcard is used a kitten dies, painfully.
-*/
-
-
-
-*:disabled {
- -gtk-icon-filter: opacity(0.5);
-}
-
-.gtkstyle-fallback {
- background-color: $bg_color;
- color: $fg_color;
- &:hover {
- background-color: lighten($bg_color, 10%);
- color: $fg_color;
- }
- &:active {
- background-color: darken($bg_color, 10%);
- color: $fg_color;
- }
- &:disabled {
- background-color: $insensitive_bg_color;
- color: $insensitive_fg_color;
- }
- &:selected {
- background-color: $selected_bg_color;
- color: $selected_fg_color;
- }
-}
-
-.normal-icons {
- -gtk-icon-size: 16px;
-}
-
-.large-icons {
- -gtk-icon-size: 32px;
-}
-
-.view {
- color: $fg_color;
- background-color: $base_color;
- &:backdrop {
- color: $backdrop_fg_color;
- background-color: $backdrop_base_color;
- }
- &:disabled {
- color: $insensitive_fg_color;
- background-color: $insensitive_bg_color;
- }
- @at-root %view_selected,
- &:selected,
- &:selected:focus,
- &:selected:hover { @extend %selected_items; }
-}
-
-textview text {
- @extend .view;
-
- selection,
- selection:focus,
- selection:hover {
- @extend %selected_items;
- }
-}
-
-iconview { @extend .view ;}
-
-.rubberband,
-rubberband {
- border: 1px solid $selected_bg_color;
- background-color: transparentize($selected_bg_color,0.8);
-}
-
-flowbox {
- & rubberband { @extend rubberband; }
- flowboxchild {
- padding: 3px;
- border-radius: 3px;
- &:selected {
- @extend %selected_items;
- outline-offset: -2px;
- }
- }
-}
-
-label {
- & selection,
- & selection:focus,
- & selection:hover,
- & selection:backdrop {
- @extend %selected_items;
- }
- &:disabled, &:backdrop:disabled {
- color: $insensitive_fg_color;
- }
-}
-
-%osd, .osd {
- color: $osd_fg_color;
- border: none;
- background-color: $osd_bg_color;
- background-clip: padding-box;
- //text-shadow: 0 1px black;
- //-gtk-icon-shadow: 0 1px black;
-
- &:backdrop {
- text-shadow: none;
- -gtk-icon-shadow: none;
- }
-}
-
-/*********************
- * Spinner Animation *
- *********************/
-
-@keyframes spin {
- to { -gtk-icon-transform: rotate(1turn); }
-}
-
-spinner {
- background-image: none;
- opacity: 0; // non spinning spinner makes no sense
- -gtk-icon-source: -gtk-icontheme('process-working-symbolic');
- &:checked {
- opacity: 1;
- animation: spin 1s linear infinite;
- &:disabled {
- opacity: 0.5;
- }
- }
-}
-
-/****************
- * Text Entries *
- ****************/
-
-%entry,
-entry {
- %entry_basic, & {
- min-height: 32px;
- padding-left: 8px;
- padding-right: 8px;
- border: 1px solid;
- border-radius: 3px;
- transition: all 200ms $ease-out-quad;
-
- @include entry(normal);
-
- image { // icons inside the entry
- &.left { padding-left: 0; padding-right: 6px; }
- &.right { padding-left: 6px; padding-right: 0; }
- }
-
- undershoot {
- &.left { @include undershoot(left); }
- &.right { @include undershoot(right); }
- }
-
- &.flat {
- &:focus, &:backdrop, &:disabled, & {
- min-height: 0;
- padding: 2px;
- background-image: none;
- border-color: transparent;
- border-radius: 0;
- box-shadow: none;
- }
-
- // Dodge transparency in selected treeview row, else bg & fg end up same
- treeview &:focus { background-color: $base_color; }
- }
-
- &:focus { @include entry(focus); }
-
- &:disabled { @include entry(insensitive); }
-
- &:backdrop { @include entry(backdrop); }
-
- &:backdrop:disabled { @include entry(backdrop-insensitive); }
-
- selection { &:focus, & { @extend %selected_items; }}
-
- // entry error and warning style
- @each $e_type, $e_color in (error, $error_color),
- (warning, $warning_color) {
- &.#{$e_type} {
- color: $e_color;
- border-color: entry_focus_border($e_color);
-
- &:focus { @include entry(focus, $e_color); }
-
- &:selected { &:focus, & { background-color: $e_color; }}
- }
- }
-
- & image { // entry icons colors
- color: mix($fg_color, $base_color, 80%);
-
- &:hover { color: $fg_color; }
-
- &:active { color: $selected_bg_color; }
-
- &:backdrop { color: mix($backdrop_fg_color, $backdrop_base_color, 80%); }
- }
-
- &:drop(active) {
- &:focus, & {
- border-color: $fg_color;
- box-shadow: inset 0 0 0 1px $fg_color;
- }
- }
-
- .osd & {
- @include entry(osd);
-
- &:focus { @include entry(osd-focus); }
-
- &:backdrop { @include entry(osd-backdrop); }
-
- &:disabled { @include entry(osd-insensitive); }
- }
- }
-
- progress {
- margin: 2px -6px;
- background-color: transparent;
- background-image: none;
- border-radius: 0;
- border-width: 0 0 2px;
- border-color: $selected_bg_color;
- border-style: solid;
- box-shadow: none;
-
- &:backdrop { background-color: transparent; }
- }
-
- // linked entries
- .linked:not(.vertical) > & { @extend %linked; }
- .linked:not(.vertical) > &:focus + &,
- .linked:not(.vertical) > &:focus + button,
- .linked:not(.vertical) > &:focus + combobox > box > button.combo { border-left-color: entry_focus_border(); }
-
- .linked:not(.vertical) > &:focus.error + &,
- .linked:not(.vertical) > &:focus.error + button,
- .linked:not(.vertical) > &:focus.error + combobox > box > button.combo { border-left-color: $error_color; }
-
- .linked:not(.vertical) > &:drop(active) + &,
- .linked:not(.vertical) > &:drop(active) + button,
- .linked:not(.vertical) > &:drop(active) + combobox > box > button.combo { border-left-color: $fg_color; }
-
- // Vertically linked entries
- // FIXME: take care of "colored" entries
- .linked.vertical > & {
- @extend %linked_vertical;
-
- // brighter border between linked entries
- &:not(:disabled) + entry:not(:disabled),
- &:not(:disabled) + %entry:not(:disabled) {
- border-top-color: mix($borders_color, $base_color, 30%);
- background-image: _solid($base_color);
-
- &:backdrop {
- border-top-color: mix($backdrop_borders_color, $backdrop_base_color, 30%);
- background-image: _solid($backdrop_base_color);
- }
- }
-
- // brighter border between linked insensitive entries
- &:disabled + %entry:disabled,
- &:disabled + entry:disabled { border-top-color: mix($borders_color, $base_color, 30%); }
-
- // color back the top border of a linked focused entry following another entry and add back the focus shadow.
- // :not(:only-child) is a specificity bump hack.
- + %entry:focus:not(:only-child),
- + entry:focus:not(:only-child) { border-top-color: entry_focus_border(); }
-
- + %entry:focus.error:not(:only-child),
- + entry:focus.error:not(:only-child) { border-top-color: $error_color; }
-
- + %entry:drop(active):not(:only-child),
- + entry:drop(active):not(:only-child) { border-top-color: $fg_color; }
-
- // this takes care of coloring the top border of the focused entry subsequent widget.
- // :not(:only-child) is a specificity bump hack.
- &:focus:not(:only-child) {
- + %entry,
- + entry,
- + button,
- + combobox > box > button.combo { border-top-color: entry_focus_border(); }
- }
-
- &:focus.error:not(:only-child) {
- + %entry,
- + entry,
- + button,
- + combobox > box > button.combo { border-top-color: $error_color; }
- }
-
- &:drop(active):not(:only-child) {
- + %entry,
- + entry,
- + button,
- + combobox > box > button.combo { border-top-color: $fg_color; }
- }
- }
-}
-
-/***********
- * Buttons *
- ***********/
-// stuff for .needs-attention
-$_dot_color: $selected_bg_color;
-
-@keyframes needs_attention {
- from { background-image: radial-gradient($_dot_color 0%, transparentize($_dot_color, 1) 0%); }
- to { background-image: radial-gradient($_dot_color 68%, transparentize($_dot_color, 1) 70%); }
-}
-
-
-button {
- @at-root %button_basic, & {
- $_button_transition: all 200ms $ease-out-quad;
-
- min-height: 24px;
- min-width: 16px;
- padding: 4px 8px;
- border: 1px solid;
- border-radius: 3px;
- transition: $_button_transition;
-
- @include button(normal);
-
- &:disabled {
- @include button(insensitive);
-
- &:active,
- &:checked { @include button(insensitive-active); }
- }
-
- &:backdrop {
- @include button(backdrop);
-
- -gtk-icon-filter: none;
-
- &:active,
- &:checked { @include button(backdrop-active); }
-
- &:disabled {
- @include button(backdrop-insensitive);
-
- &:active,
- &:checked { @include button(backdrop-insensitive-active); }
- }
- }
-
- @at-root %button_basic_flat,
- &.flat {
- @include button(undecorated);
-
- // to avoid adiacent buttons borders clashing when transitioning, the transition on the normal state is set
- // to none, while it's added back in the hover state, so the button decoration will fade in on hover, but
- // it won't fade out when the pointer leave the button allocation area. To make the transition more evident
- // in this case the duration is increased.
- transition: none;
-
- &:hover {
- transition: $_button_transition;
- transition-duration: 500ms;
-
- &:active { transition: $_button_transition; }
- }
-
- &:backdrop,
- &:disabled,
- &:backdrop:disabled {
- @include button(undecorated-insensitive);
- }
- }
-
- &:hover,
- &.flat:hover {
- @include button(hover);
- -gtk-icon-filter: brightness(1.2);
- }
-
- &:active,
- &:checked {
- @include button(active);
-
- transition-duration: 50ms;
- }
-
- &.image-button {
- min-width: 24px;
- padding-left: 4px;
- padding-right: 4px;
- }
-
- &.text-button {
- padding-left: 16px;
- padding-right: 16px;
- }
-
- &.text-button.image-button {
- padding-left: 8px;
- padding-right: 8px;
-
- label {
- padding-left: 8px;
- padding-right: 8px;
- }
- }
-
- @at-root %button_basic_drop_active,
- &:drop(active) {
- color: $fg_color;
- border-color: $fg_color;
- box-shadow: inset 0 0 0 1px $fg_color;
- }
- }
-
- @at-root %button_selected, & {
- row:selected & {
- @if $variant == 'light' { border-color: $selected_borders_color; }
- }
-
- @at-root %button_selected_flat, &.flat {
- row:selected & {
- &:not(:active):not(:checked):not(:hover):not(disabled) {
- color: $selected_fg_color;
- border-color: transparent;
-
- &:backdrop { color: if($variant=='light', $backdrop_base_color, $backdrop_fg_color); }
- }
- }
- }
- }
-
-
- // big standalone buttons like in Documents pager
- &.osd {
- &.image-button {
- min-height: 48px;
- min-width: 48px;
- }
-
- color: $osd_fg_color;
- border-radius: 5px;
-
- @include button(osd);
-
- border: none;
- box-shadow: none;
-
- &:hover {
- @include button(osd-hover);
-
- border: none;
- box-shadow: none;
- }
-
- &:active,
- &:checked {
- @include button(osd-active);
-
- border: none;
- box-shadow: none;
- }
-
- &:disabled {
- &:backdrop, & {
- @include button(osd-insensitive);
-
- border: none;
- }
- }
-
- &:backdrop {
- @include button(osd-backdrop);
-
- border: none;
- }
- }
-
- //overlay / OSD style
- @at-root %osd_button,
- .osd & {
- @include button(osd);
-
- &:hover { @include button(osd-hover); }
-
- &:active,
- &:checked { &:backdrop, & { @include button(osd-active); }}
-
- &:disabled { &:backdrop, & { @include button(osd-insensitive); }}
-
- &:backdrop { @include button(osd-backdrop); }
-
- &.flat {
- @include button(undecorated);
-
- box-shadow: none; //FIXME respect no edge on the button mixin
- text-shadow: 0 1px black;
- -gtk-icon-shadow: 0 1px black;
-
- &:hover { @include button(osd-hover); }
-
- &:disabled {
- @include button(osd-insensitive);
- background-image: none;
- border-color: transparent;
- box-shadow: none;
- }
-
- &:backdrop { @include button(undecorated); }
-
- &:active,
- &:checked { @include button(osd-active); }
- }
- }
-
- // Suggested and Destructive Action buttons
- @each $b_type, $b_color, $f_color in (suggested-action, $selected_bg_color, $selected_fg_color),
- (destructive-action, $destructive_color, white) {
- &.#{$b_type} {
- @include button(normal, $b_color, $f_color);
-
- &.flat {
- @include button(undecorated);
-
- color: $b_color; //FIXME: does it work on the dark variant?
- }
-
- &:hover { @include button(hover, $b_color, $f_color); }
-
- &:active,
- &:checked { @include button(active, $b_color, $f_color); }
-
- &:backdrop,
- &.flat:backdrop {
- @include button(backdrop, $b_color, $f_color);
-
- &:active,
- &:checked { @include button(backdrop-active, $b_color, $f_color); }
-
- &:disabled {
- @include button(backdrop-insensitive);
-
- &:active,
- &:checked { @include button(backdrop-insensitive-active, $b_color, $f_color); }
- }
- }
-
- &.flat {
- &:backdrop, &:disabled, &:backdrop:disabled {
- @include button(undecorated);
-
- color: transparentize($b_color, 0.2);
- }
- }
-
- &:disabled {
- @include button(insensitive);
-
- &:active,
- &:checked { @include button(insensitive-active, $b_color, $f_color); }
- }
-
- .osd & {
- @include button(osd, $b_color);
-
- &:hover { @include button(osd-hover, $b_color); }
-
- &:active,
- &:checked { &:backdrop, & { @include button(osd-active, $b_color); }}
-
- &:disabled { &:backdrop, & { @include button(osd-insensitive, $b_color); }}
-
- &:backdrop { @include button(osd-backdrop, $b_color); }
- }
- }
- }
-
- .stack-switcher > & {
- // to position the needs attention dot, padding is added to the button
- // child, a label needs just lateral padding while an icon needs vertical
- // padding added too.
-
- outline-offset: -3px; // needs to be set or it gets overriden by GtkRadioButton outline-offset
-
- > label {
- padding-left: 6px; // label padding
- padding-right: 6px; //
- }
-
- > image {
- padding-left: 6px; // image padding
- padding-right: 6px; //
- padding-top: 3px; //
- padding-bottom: 3px; //
- }
-
- &.text-button {
- // compensate text-button paddings
- padding-left: 10px;
- padding-right: 10px;
- }
-
- &.image-button {
- // we want image buttons to have a 1:1 aspect ratio, so compensation
- // of the padding added to the GtkImage is needed
- padding-left: 2px;
- padding-right: 2px;
- }
-
- &.needs-attention {
- > label,
- > image { @extend %needs_attention; }
-
- &:active,
- &:checked {
- > label,
- > image {
- animation: none;
- background-image: none;
- }
- }
- }
- }
-
- .linked:not(.vertical) > & { @extend %linked; }
-
- .linked.vertical > & { @extend %linked_vertical; }
-}
-
-%needs_attention {
- animation: needs_attention 150ms ease-in;
- background-image: radial-gradient($_dot_color 68%, transparentize($_dot_color,1 ) 70%);
- background-size: 6px 6px;
- background-repeat: no-repeat;
-
- background-position: right 3px;
-
- &:backdrop { background-size: 6px 6px;}
-
- &:dir(rtl) { background-position: left 3px; }
-}
-
-
-%linked_not_left {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-%linked_not_right {
- border-right-style: none;
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-// 1st/last child are at text start/end
-%linked {
- &:dir(ltr) {
- &:not(:first-child) { @extend %linked_not_left; }
- &:not(:last-child) { @extend %linked_not_right; }
- }
-
- &:dir(rtl) {
- &:not(:first-child) { @extend %linked_not_right; }
- &:not(:last-child) { @extend %linked_not_left; }
- }
-}
-
-%linked_not_top {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-
-%linked_not_bottom {
- border-bottom-style: none;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-%linked_vertical{
- &:not(:first-child) { @extend %linked_not_top; }
-
- &:not(:last-child) { @extend %linked_not_bottom; }
-}
-
-%undecorated_button {
- background-color: transparent;
- background-image: none;
- border-color: transparent;
- box-shadow: inset 0 1px transparentize(white,1),
- 0 1px transparentize(white, 1);
- text-shadow: none;
- -gtk-icon-shadow: none;
-}
-
-/* menu buttons */
-%modelbutton_flat,
-modelbutton.flat,
-.menuitem.button.flat {
- min-height: 26px;
- padding-left: 5px;
- padding-right: 5px;
- border-radius: 3px;
- outline-offset: -2px;
-
- @extend %undecorated_button;
-
- &:hover { background-color: $popover_hover_color; }
-
- &:selected { @extend %selected_items; }
-
- &:backdrop,
- &:backdrop:hover { @extend %undecorated_button; }
-
- // FIXME: remove the following when the checks/radios rewrite lands
- check:last-child,
- radio:last-child { margin-left: 8px; }
-
- check:first-child,
- radio:first-child { margin-right: 8px; }
-}
-
-modelbutton.flat arrow {
- background: none;
-
- &:hover { background: none; }
-
- &.left { -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
-
- &.right { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
-}
-
-button.color {
- padding: 4px;
-
- colorswatch:only-child {
- &, overlay { border-radius: 0; }
-
- @if $variant == 'light' {
- &:disabled,
- &:backdrop { box-shadow: none; }
- }
- }
-}
-
-
-/*********
- * Links *
- *********/
-
-*:link {
- color: $selected_bg_color; //FIXME use a proper color
- &:hover, &:active, &:visited {
- color: mix($fg_color, $selected_bg_color, 40%); //FIXME same here
- }
- &:backdrop, &:backdrop:hover {
- color: $selected_bg_color;
- }
-}
-
-button:link, button:visited {
- color: $suggested_color;
- font-weight: bold;
- @extend %undecorated_button;
- text-shadow: none;
- &:hover, &:active {
- @extend %undecorated_button;
- color: mix($fg_color, $selected_bg_color, 40%); //FIXME same here
- text-shadow: none;
- }
- &:backdrop {
- @extend %undecorated_button; //This shouldn't be needed but avoids
- //a weird transition which for some reason
- //makes borders blink on hover
- color: $selected_bg_color; //FIXME use a proper color
- }
-}
-
-/*****************
- * GtkSpinButton *
- *****************/
-spinbutton {
- &:not(.vertical) {
- // in this horizontal configuration, the whole spinbutton
- // behaves as the entry, so we extend the entry styling
- // and nuke the style on the internal entry
- @extend %entry;
- border-width: 2px;
- border-color: $borders_color;
- box-shadow: none;
- padding: 0;
-
- text {
- min-width: 28px;
- margin: 0;
- background: none;
- border: none;
- box-shadow: none;
- }
-
- button {
- min-height: 16px;
- margin: 0;
- padding-bottom: 0;
- padding-top: 0;
- color: mix($fg_color, $base_color, 90%);
- background-image: none;
- border-style: none none none solid;
- border-radius: 0;
-
- &:dir(rtl) { border-style: none solid none none; }
-
- &:hover {
- color: $fg_color;
- background-color: $bg_color;
- }
-
- &:disabled { color: transparentize($insensitive_fg_color, 0.7); }
-
- &:active {
- background-color: $osd_bg_color;
- color: $osd_fg_color;
- }
-
- &:backdrop {
- color: $backdrop_fg_color;
- background-color: transparent;
- border-color: transparentize($backdrop_borders_color, 0.7);
- }
-
- &:backdrop:disabled {
- color: $insensitive_bg_color;
- background-image: none;
- border-style: none none none solid; // It is needed or it gets overridden
-
- &:dir(rtl) { border-style: none solid none none; }
- }
- }
- }
-
- // OSD horizontal
- .osd &:not(.vertical) {
- border-color: $osd_borders_color;
- color: $fg_color;
- box-shadow: none;
-
- &:focus, &:active {
- border-color: opacify($osd_borders_color,0.5);
- box-shadow: inset 0 2px 3px -1px transparentize(black, 0.8);
- }
-
- text {
- box-shadow: none;
- color: $fg_color;
- text-shadow: none;
- &:focus, &:active {
- box-shadow: inset 0 2px 3px -1px transparentize(black, 0.8);
- }
- }
-
- button {
- @include button(undecorated);
-
- color: $fg_color;
- border-style: none none none solid;
- border-color: transparentize($borders_color,0.8);
- border-radius: 0;
- box-shadow: none;
-
- &:dir(rtl) { border-style: none solid none none; }
-
- &:active {
- background-color: $osd_bg_color;
- color: $osd_fg_color;
- }
- &:hover {
- @include button(undecorated);
-
- border-style: none none none solid;
- border-color: transparentize($borders_color,0.8);
- background-color: transparentize($osd_fg_color, 0.9);
- box-shadow: none;
- }
-
- &:backdrop {
- @include button(undecorated);
-
- color: $insensitive_fg_color;
- border-color: transparentize($borders_color,0.9);
- box-shadow: none;
- border-style: none none none solid;
- }
-
- &:disabled {
- //@include button(undecorated);
-
- color: $insensitive_fg_color;
- border-color: transparentize($borders_color,0.9);
- border-style: none none none solid;
- box-shadow: none;
- }
-
- &:last-child { border-radius: 0 3px 3px 0; }
-
- &:dir(rtl):first-child { border-radius: 3px 0 0 3px; }
- }
- }
-
- // Vertical
- &.vertical {
- // in the vertical configuration, we treat the spinbutton
- // as a box, and tweak the style of the entry in the middle
- // so that it's linked
-
- // FIXME: this should not be set at all, but otherwise it gets the wrong
- // color
- border-width: 2px;
- border-color: $borders_color;
-
- &:disabled { color: $insensitive_fg_color; }
- &:backdrop:disabled { color: $insensitive_fg_color; }
-
- &:drop(active) {
- border-color: transparent;
- box-shadow: none;
- }
-
- text {
- @extend %entry;
- min-height: 32px;
- min-width: 32px;
- padding: 0;
- border-radius: 0;
- border-color: $borders_color;
- }
-
- button {
- min-height: 32px;
- min-width: 32px;
- padding: 0;
-
- &.up { @extend %top_button; }
-
- &.down { @extend %bottom_button; }
- }
-
- %top_button {
- border-bottom-style: none;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
-
- %bottom_button {
- border-top-style: none;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- }
-
- // OSD vertical
- .osd &.vertical button:first-child {
- @include button(osd);
-
- &:hover { @include button(osd-hover);}
-
- &:active { @include button(osd-active); }
-
- &:disabled { @include button(osd-insensitive); }
-
- &:backdrop { @include button(osd-backdrop); }
- }
-
- // Misc
- treeview & {
- entry,
- entry:focus {
- padding: 1px;
- border-width: 1px 0;
- border-color: $selected_bg_color;
- border-radius: 0;
- box-shadow: none;
- }
- }
-}
-
-/**************
- * ComboBoxes *
- **************/
-combobox {
- arrow {
- -gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
- min-height: 16px;
- min-width: 16px;
- }
-
- &.linked {
- button:nth-child(2) {
- &:dir(ltr) { @extend %linked_not_left; }
- &:dir(rtl) { @extend %linked_not_right; }
- }
- }
-
- &:drop(active) { // FIXME: untested
- box-shadow: none;
-
- button.combo { @extend %button_basic_drop_active; }
- }
-}
-
-// the combo is a composite widget so the way we do button linking doesn't
-// work, special case needed. See
-// https://bugzilla.gnome.org/show_bug.cgi?id=733979
-
-.linked:not(.vertical) > combobox {
- &:dir(ltr) {
- &:not(:first-child) > box > button.combo { @extend %linked_not_left; }
- &:not(:last-child) > box > button.combo { @extend %linked_not_right; }
- }
-
- &:dir(rtl) {
- &:not(:first-child) > box > button.combo { @extend %linked_not_right; }
- &:not(:last-child) > box > button.combo { @extend %linked_not_left; }
- }
-}
-
-.linked.vertical > combobox {
- &:not(:first-child) > box > button.combo { @extend %linked_not_top; }
- &:not(:last-child) > box > button.combo { @extend %linked_not_bottom; }
-}
-
-
-/************
- * Toolbars *
- ************/
-toolbar { //FIXME: why is all this being ignored?
- padding: 6px;
- background-color: $bg_color;
- &.osd {
- background-color: $osd_bg_color;
- border-radius: 6px;
- padding: 12px;
- & label { color: $osd_fg_color; }
- }
- //searchbar
- &.vertical {
- border-right: 1px solid $borders_color;
- &:dir(rtl) {
- border-right: none;
- border-left: 1px solid $borders_color;
- }
- }
-}
-
-searchbar {
- @extend toolbar;
- border-width: 0 0 1px;
- border-color: $borders_color;
- border-style: none none solid none;
- padding: 3px;
-}
-
-%inset-bar {
- border-style: solid;
- border-color: $borders_color;
- $_bg: mix($bg_color, $borders_color, 70%);
- background-color: $_bg;
- box-shadow: inset 0 2px 3px -1px mix($borders_color, $_bg, 60%);
- //FIXME edge would be nice, but doesn't work
- &:backdrop {
- border-color: $backdrop_borders_color;
- background-color: mix($backdrop_borders_color,$backdrop_bg_color, 35%);
- box-shadow: none;
- }
-}
-
-/***************
- * Header bars *
- ***************/
-
-%titlebar,
-headerbar {
- min-height: 46px;
- border-width: 0 0 1px;
- border-style: solid;
- border-color: $borders_color;
- border-radius: 7px 7px 0 0;
-
- background-color: transparent;
- background-image: linear-gradient(to bottom,
- lighten($bg_color,4%),
- $bg_color);
- box-shadow: inset 0 -1px mix($borders_color, $bg_color, 30%), // bottom shade
- inset 0 1px $borders_edge; // top highlight
- padding: 6px;
-
- &:backdrop {
- border-color: $backdrop_borders_color;
- background-color: $bg_color;
- background-image: none;
- box-shadow: none;
- }
-
- .title {
- font-weight: bold;
- padding: 0px 12px;
- }
- .subtitle {
- font-size: 80%;
- padding: 0 12px;
- }
-
- &.selection-mode {
- color: darken($selected_bg_color, 15%);
- text-shadow: 0 1px transparentize(black, 0.5);
- background-image: linear-gradient(to bottom,
- lighten($selected_bg_color,5%),
- lighten($selected_bg_color,2%));
- box-shadow: inset 0 -1px mix($borders_color,$bg_color, 30%), //bottom shade
- inset 0 1px mix($borders_edge,$selected_bg_color, 50%); //top highlight
- button {
- @include button(normal, $selected_bg_color, $selected_fg_color, $edge: none);
- &:hover { @include button(hover, $selected_bg_color, $selected_fg_color, $edge: none); }
- &:active { @include button(active, $selected_bg_color, $selected_fg_color, $edge: none); }
- &:disabled { @include button(insensitive, $selected_bg_color, $selected_fg_color, $edge: none); }
- &:backdrop {
- @include button(backdrop, $selected_bg_color, $selected_fg_color, $edge: none);
- border-color: darken($selected_bg_color, 15%);
- }
- &:backdrop:disabled { @include button(backdrop-insensitive, $selected_bg_color, $selected_fg_color, $edge: none); }
- &.suggested-action {
- @include button($t:normal, $edge: none);
- &:hover { @include button($t:hover,$edge: none); }
- &:active { @include button($t:active, $edge: none); }
- &:disabled { @include button($t:insensitive, $edge: none); }
- &:backdrop { @include button($t:backdrop, $edge: none); }
- &:backdrop:disabled { @include button($t:backdrop-insensitive, $edge: none); }
- }
- }
- .selection-menu {
- border-width: 0;
- background-image: none;
- box-shadow: none;
- }
- }
-
- // squared corners when the window is maximized, tiled, or fullscreen
- .tiled &,
- .maximized &,
- .fullscreen & {
- border-radius: 0;
- }
-
- &.default-decoration {
- min-height: 28px;
- padding: 4px;
-
- button.titlebutton {
- min-height: 26px;
- min-width: 26px;
- margin: 0;
- padding: 0;
- }
- }
-}
-
-.titlebar:not(headerbar) {
- window.csd > & {
- // in csd we assume every titlebar is a headerbar so reset anything, this is needed for split toolbars cases
- padding: 0;
- background-color: transparent;
- background-image: none;
- border-style: none;
- border-color: transparent;
- box-shadow: none;
- }
-
- @extend %titlebar;
-}
-
-
-/************
- * Pathbars *
- ************/
-
-.path-bar button {
- padding: 5px 6px 6px;
- &:first-child { padding-left: 8px; }
- &:last-child { padding-right: 8px; }
- &:only-child {
- padding-left: 12px;
- padding-right: 12px;
- }
-
- // the following is for spacing the icon and the label inside the home button
- & label:last-child { padding-left: 2px; }
- & label:first-child { padding-right: 2px; }
- & label:only-child { padding-right: 0; padding-left: 0; }
- image { padding-top: 1px; }
-}
-
-
-/**************
- * Tree Views *
- **************/
-treeview.view {
-
- border-left-color: mix($fg_color, $base_color, 50%); // this is actually the tree lines color,
- border-top-color: $bg_color; // while this is the grid lines color, better then nothing
-
- & rubberband { @extend rubberband; } // to avoid borders being overridden by the previously set props
-
- &:selected {
- border-radius: 0;
- @extend %selected_items;
- }
-
- &:selected, &:backdrop:selected {
- border-left-color: mix($selected_fg_color, $selected_bg_color, 50%);
- border-top-color: transparentize($fg_color, 0.9); // doesn't work unfortunatelly
- }
-
- &:disabled {
- color: $insensitive_fg_color;
- &:selected {
- color: mix($selected_fg_color, $selected_bg_color, 40%);
- &:backdrop { color: mix($selected_fg_color, $selected_bg_color, 50%); }
- }
- &:backdrop { color: $insensitive_fg_color; }
- }
-
- &.separator:backdrop {
- min-height: 2px;
- color: transparentize(black, 0.9);
- }
-
- &:backdrop {
- color: $backdrop_fg_color;
- border-left-color: mix($backdrop_fg_color, $backdrop_bg_color, 50%);
- border-top: $backdrop_bg_color;
- }
-
- &.dnd {
- border-style: solid none;
- border-width: 1px;
- border-color: mix($fg_color, $selected_bg_color, 50%);
- }
-
- &.expander {
- // GtkTreeView uses the larger of the expander’s min-width and min-height
- min-width: 24px;
- min-height: 24px;
- -gtk-icon-source: -gtk-icontheme('pan-end-symbolic');
- &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); }
- color: mix($fg_color, $base_color, 70%);
- &:hover { color: $fg_color; }
- &:selected {
- color: mix($selected_fg_color, $selected_bg_color, 70%);
- &:hover { color: $selected_fg_color; }
- &:backdrop { color: mix($selected_fg_color, $selected_bg_color, 70%); }
- }
-
- &:checked { -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); }
-
- &:backdrop { color: mix($backdrop_fg_color, $backdrop_base_color, 70%); }
- }
-
- &.progressbar { // progress bar in treeviews
- color: $base_color;
-
- border: 1px solid $selected_borders_color;
- border-radius: 4px;
- background-color: $fg_color;
-
- &:selected { color: $selected_bg_color; }
-
- &:backdrop {
- color: $selected_bg_color;
- border-color: $selected_borders_color; // otherwise it gets inherited by .view(?!?)
- background-color: $backdrop_base_color;
- }
- }
-
- &.trough { // progress bar trough in treeviews
- background-color: transparentize($fg_color,0.9);
- border-radius: 4px;
-
- &:selected {
- background-color: transparentize($selected_fg_color, 0.7);
- border-width: 1px 0;
- border-style: solid;
- border-color: $selected_bg_color;
- }
- }
-
- header {
- button {
- @extend %column_header_button;
- $_column_header_color: mix($fg_color,$base_color,50%);
- color: $_column_header_color;
- font-weight: bold;
- text-shadow: none;
- box-shadow: none;
- &:hover {
- @extend %column_header_button;
- color: mix($_column_header_color,$fg_color,50%);
- box-shadow: none;
- }
- &:active {
- @extend %column_header_button;
- color: $selected_fg_color;
- }
- }
- & button:last-child,
- & button:last-child:hover,
- & button:last-child:backdrop { //treeview-like derived widgets in Banshee and Evolution
- border-right-style: none;
- }
- }
-}
-
-%column_header_button {
- padding: 3px 6px;
- border-style: none solid solid none;
- border-radius: 0;
- border-width: 1px;
- background-image: none;
- border-color: mix($backdrop_fg_color, $backdrop_bg_color,50%);
- text-shadow: none;
- &:disabled {
- border-color: $bg_color;
- background-image: none;
- }
- &:backdrop {
- border-color: mix($backdrop_fg_color, $backdrop_bg_color,50%);
- border-style: none solid solid none;
- color: mix($backdrop_fg_color, $backdrop_bg_color,50%);
- background-image: none;
- background-color: $backdrop_base_color;
- &:disabled {
- border-color: $backdrop_bg_color;
- background-image: none;
- }
- }
-}
-
-treeview.view.progressbar { //Progressbar in treeview cells
- color: $base_color;
- border-radius: 4px;
- background-image: linear-gradient(to bottom,
- $selected_bg_color,
- darken($selected_bg_color,10%));
- &:selected {
- color: $selected_bg_color;
- background-image: linear-gradient(to bottom,
- $base_color,
- darken($base_color,10%));
- &:backdrop {
- color: $selected_bg_color;
- background-image: none;
- background-color: $backdrop_base_color;
- }
- }
- &:backdrop {
- color: $backdrop_base_color;
- background-image: none;
- }
-}
-
-/*********
- * Menus *
- *********/
-menubar,
-.menubar {
- padding: 0px;
- box-shadow: inset 0 -1px $borders_color;
- & > menuitem {
- padding: 4px 8px;
- &:hover { //Seems like it :hover even with keyboard focus
- box-shadow: inset 0 -3px $selected_bg_color;
- color: $selected_bg_color;
- }
- &:disabled {
- color: $insensitive_fg_color;
- box-shadow: none;
- }
- }
-}
-
-menu,
-.menu {
- margin: 4px;
- padding: 0px;
- background-color: $base_color;
- border: 1px solid $borders_color;
- & menuitem {
- text-shadow: none;
- padding: 4px;
- min-width: 40px;
- &:hover {
- color: $selected_fg_color;
- background-color: $selected_bg_color;
- }
- &:disabled {
- color: $insensitive_fg_color;
- &:backdrop { color: $insensitive_fg_color; }
- }
- &:backdrop, &:backdrop:hover {
- color: $backdrop_fg_color;
- background-color: $backdrop_base_color;
- }
- //submenu indicators
- & arrow {
- min-height: 16px;
- min-width: 16px;
- }
- & arrow:dir(ltr) {
- -gtk-icon-source: -gtk-icontheme('pan-end-symbolic');
- margin-left: 10px;
- }
- & arrow:dir(rtl) {
- -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl');
- margin-right: 10px;
- }
- }
-}
-
-menuitem {
- & check,
- & radio {
- min-height: 16px;
- min-width: 16px;
- &:dir(ltr) { margin-right: 7px; }
- &:dir(rtl) { margin-left: 7px; }
- }
-}
-
-/***************
- * Popovers *
- ***************/
-
-popover.background {
- padding: 2px;
- border-radius: 5px;
- background-color: $popover_bg_color;
-
- &, .csd & { border: 1px solid $borders_color; }
-
- box-shadow: 0 1px 2px transparentize(black, 0.7);
-
- &:backdrop {
- background-color: $backdrop_bg_color;
- box-shadow: none;
- }
-
- > list,
- > .view,
- > toolbar {
- border-style: none;
- background-color: transparent;
- }
-
- &, .csd & {
- &.touch-selection,
- &.magnifier {
- @extend %osd;
-
- border: 1px solid transparentize(white, 0.9);
-
- button { @extend %osd_button };
- }
-
- &.osd { @extend %osd; }
- }
-
- separator { margin: 3px; }
-
- list separator { margin: 0px; }
-
- checkbutton,
- radiobutton { @extend %modelbutton_flat; }
-}
-
-/*****************
- * Notebooks and *
- * Tabs *
- *****************/
-
-notebook {
- // Through me you go to the grief wracked city;
- // Through me you go to everlasting pain;
- // Through me you go a pass among lost souls.
- // ...
- // Abandon all hope — Ye Who Enter Here
- padding: 0;
- background-color: $base_color;
- transition: all 200ms ease-out;
- &:backdrop {
- background-color: $backdrop_base_color;
- }
- &.frame {
- border: 1px solid $borders_color;
- &:backdrop { border-color: $backdrop_borders_color; }
- }
- & header {
- // FIXME: double borders in some case, can't fix it w/o a class tho
- // FIXME: doesn't work on dark var
- background-color: mix($bg_color, $borders_color, 85%);
-
- // this is the shading of the header behind the tabs
- .frame & {
- border: 1px solid $borders_color;
- &.top { border-bottom-width: 0; }
- &.bottom { border-top-width: 0; }
- &.right { border-left-width: 0; }
- &.left { border-right-width: 0; }
- &:backdrop { border-color: $backdrop_borders_color; }
- }
-
- $_header_shade: inset 0 2px 3px -1px transparentize(black, 0.85);
- &.top {
- box-shadow: $_header_shade,
- inset 0 -1px $borders_color; // border
- &:backdrop { box-shadow: inset 0 -1px $backdrop_borders_color; }
- }
- &.bottom {
- box-shadow: $_header_shade,
- inset 0 1px $borders_color;
- &:backdrop { box-shadow: inset 0 1px $backdrop_borders_color; }
- }
- &.right {
- box-shadow: $_header_shade,
- inset 1px 0 $borders_color;
- &:backdrop { box-shadow: inset 1px 0 $backdrop_borders_color; }
- }
- &.left {
- box-shadow: $_header_shade,
- inset -1px 0 $borders_color;
- &:backdrop { box-shadow: inset -1px 0 $backdrop_borders_color; }
- }
- &:backdrop {
- // same color as backdrop pushed button
- background-color: mix($backdrop_borders_color,$backdrop_bg_color, 35%);
- box-shadow: none;
- }
- & tabs arrow {
- color: $insensitive_fg_color;
- &:hover { color: mix($fg_color, $insensitive_fg_color, 50%); }
- &:checked { color: $fg_color; }
- &:disabled { color: transparentize($insensitive_fg_color,0.7); }
- &:backdrop { color: transparentize($backdrop_fg_color,0.6); }
- }
- }
- //vertical tab sizing
- $vt_vpadding: 8px;
- $vt_hpadding: 20px;
- // horizontal tab sizing
- $ht_vpadding: 5px;
- $ht_hpadding: 20px;
- $tab_indicator_size: 3px;
-
- & header.top tab {
- padding: $vt_vpadding $vt_hpadding;
- border-bottom-width: $tab_indicator_size;
- &.reorderable-page {
- padding-left: 12px; // for a nicer close button
- padding-right: 12px; // placement
- border-left-width: 1px;
- border-right-width: 1px;
- }
- }
- & header.bottom tab {
- padding: $vt_vpadding $vt_hpadding;
- border-top-width: $tab_indicator_size;
- &.reorderable-page {
- padding-left: 12px; // for a nicer close button
- padding-right: 12px; // placement
- border-left-width: 1px;
- border-right-width: 1px;
- }
- }
- & header.left tab {
- padding: $ht_vpadding $ht_hpadding;
- border-right-width: $tab_indicator_size;
- &.reorderable-page {
- border-bottom-width: 1px;
- border-top-width: 1px;
- }
- }
- & header.right tab {
- padding: $ht_vpadding $ht_hpadding;
- border-left-width: $tab_indicator_size;
- &.reorderable-page {
- border-bottom-width: 1px;
- border-top-width: 1px;
- }
- }
-
- & tab {
- border-width: 0;
- border-style: solid;
- border-color: transparent;
- background-color: transparent;
-
- outline-offset: 0;
-
- //here's the interesting stuff
- &:hover {
- border-color: $borders_color;
- }
- &:checked, &:backdrop:checked {
- border-color: $selected_bg_color;
- }
- &:backdrop {
- background-color: transparent;
- border-color: transparent;
- }
- @each $_tab, $_border in (top, bottom),
- (bottom, top),
- (left, right),
- (right, left) {
- .#{$_tab} &.reorderable-page {
- border-color: transparent;
- &:hover {
- border-color: transparentize($borders_color,0.7);
- border-#{$_border}-color: $borders_color;
- background-color: transparentize($bg_color,0.8);
- }
- &:checked {
- background-color: transparentize($bg_color,0.5);
- border-color: transparentize($borders_color,0.5);
- border-#{$_border}-color: $selected_bg_color;
- &:hover { background-color: transparentize($bg_color,0.3); }
- &:backdrop {
- border-color: $backdrop_borders_color;
- background-color: $backdrop_bg_color;
- border-#{$_border}-color: $selected_bg_color;
- }
- }
- &:backdrop {
- border-color: transparent;
- background-color: transparent;
- }
- }
- }
- label { //tab text
- padding: 0 2px; // needed for a nicer focus ring
- font-weight: bold;
- color: mix($fg_color, $insensitive_fg_color, 50%); /* color: inherit doesn't work here */
- &:backdrop {
- color: $insensitive_fg_color;
- }
- }
- &:hover label {
- // prelight tab text
- color: mix($fg_color, $insensitive_fg_color, 75%);
- }
- &:checked label {
- // active tab text
- color: $fg_color;
- &:backdrop { color: $backdrop_fg_color; }
- }
- button { //tab close button
- border: 2px solid transparent;
- @extend %undecorated_button;
- -gtk-icon-shadow: none;
- transition: none;
- color: transparentize($fg_color,0.7);
- &:hover {
- color: $fg_color;
- @include button(hover, $edge: none);
- border-width: 2px;
- background-image: none;
- box-shadow: none;
- }
- &:checked {
- @include button(active, $edge: none);
- border-width: 2px;
- }
- &:backdrop, &:backdrop:hover {
- color: transparentize($backdrop_fg_color,0.7);
- border-color: transparent;
- border-width: 2px;
- }
- & > image { // this is a hack which makes tabs grow
- padding: 2px;
- }
- }
- }
-}
-
-//.notebook > .frame,
-//.notebook > .view { border: none; }
-
-/**************
- * Scrollbars *
- **************/
-scrollbar {
- $_slider_min_length: 40px;
-
- background-color: $scrollbar_bg_color;
- transition: 300ms $ease-out-quad;
-
- // scrollbar border
- &.top { border-bottom: 1px solid $borders_color; }
- &.bottom { border-top: 1px solid $borders_color; }
- &.left { border-right: 1px solid $borders_color; }
- &.right { border-left: 1px solid $borders_color; }
-
- &:backdrop {
- background-color: $backdrop_scrollbar_bg_color;
- border-color: $backdrop_borders_color;
- }
-
- // slider
- slider {
- min-width: 14px;
- min-height: 14px;
- margin: -1px;
- border: 4px solid transparent;
- border-radius: 12px;
- background-clip: padding-box;
- background-color: $scrollbar_slider_color;
-
- &:hover { background-color: $scrollbar_slider_hover_color; }
-
- &:hover:active { background-color: $scrollbar_slider_active_color; }
-
- &:backdrop { background-color: $backdrop_scrollbar_slider_color; }
-
- &:disabled { background-color: transparent; }
- }
-
- &.fine-tune {
- slider {
- min-width: 4px;
- min-height: 4px;
- }
-
- &.horizontal slider { border-width: 5px 4px; }
- &.vertical slider { border-width: 4px 5px; }
- }
-
- &.overlay-indicator {
- &:not(.dragging):not(.hovering) {
- border-color: transparent;
- opacity: 0.4;
- background-color: transparent;
-
- slider {
- margin: 0;
- min-width: 3px;
- min-height: 3px;
- background-color: $fg_color;
- border: 1px solid if($variant == 'light', white, black);
- }
-
- button {
- min-width: 5px;
- min-height: 5px;
- background-color: $fg_color;
- background-clip: padding-box;
- border-radius: 100%;
- border: 1px solid if($variant == 'light', white, black);
- -gtk-icon-source: none;
- }
-
- &.horizontal {
- slider {
- margin: 0 2px;
- min-width: $_slider_min_length;
- }
-
- button {
- margin: 1px 2px;
- min-width: 5px;
- }
- }
-
- &.vertical {
- slider {
- margin: 2px 0;
- min-height: $_slider_min_length;
- }
-
- button {
- margin: 2px 1px;
- min-height: 5px;
- }
- }
- }
-
- &.dragging,
- &.hovering { opacity: 0.8; }
- }
-
- &.horizontal slider { min-width: $_slider_min_length; }
-
- &.vertical slider { min-height: $_slider_min_length; }
-
- // button styling
- button {
- padding: 0;
- min-width: 12px;
- min-height: 12px;
- border-style: none;
- border-radius: 0;
- transition-property: min-height, min-width, color;
-
- @include button(undecorated);
-
- color: $scrollbar_slider_color;
-
- &:hover {
- @include button(undecorated);
-
- color: $scrollbar_slider_hover_color;
- }
- &:active, &:checked {
- @include button(undecorated);
-
- color: $scrollbar_slider_active_color;
- }
- &:disabled {
- @include button(undecorated);
-
- color: transparentize($scrollbar_slider_color, 0.8);
- }
- &:backdrop {
- @include button(undecorated);
-
- color: $backdrop_scrollbar_slider_color;
-
- &:disabled {
- @include button(undecorated);
-
- color: transparentize($backdrop_scrollbar_slider_color, 0.8);
- }
- }
- }
-
- // button icons
- &.vertical {
- button {
- &.down { -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); }
-
- &.up { -gtk-icon-source: -gtk-icontheme('pan-up-symbolic'); }
- }
- }
-
- &.horizontal {
- button {
- &.down { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); }
-
- &.up { -gtk-icon-source: -gtk-icontheme('pan-start-symbolic'); }
- }
- }
-}
-
-treeview ~ scrollbar.vertical {
- border-top: 1px solid $borders_color;
- margin-top: -1px;
-}
-
-/**********
- * Switch *
- **********/
-
-switch {
- font-size: smaller;
- font-stretch: condensed;
- font-weight: bold;
- outline-offset: -4px;
- // similar to the .scale
- border-width: 1px;
- border-style: solid;
- border-radius: 3px;
- border-color: $borders_color;
- background-color: $dark_fill;
- box-shadow: inset 0 1px transparentize(black, 0.9); /*outset not working*/
- text-shadow: 0 1px transparentize(black, 0.9);
- &:active {
- color: $selected_fg_color;
- border-color: $selected_borders_color;
- background-color: $selected_bg_color;
- text-shadow: 0 0 2px white;
- }
- &:disabled {
- color: $insensitive_fg_color;
- border-color: $borders_color;
- background-color: $insensitive_bg_color;
- text-shadow: none;
- }
- &:backdrop {
- color: $backdrop_fg_color;
- border-color: $backdrop_borders_color;
- background-color: $backdrop_bg_color;
- box-shadow: none;
- text-shadow: none;
- &:checked {
- color: $selected_fg_color;
- border-color: $backdrop_borders_color;
- background-color: $backdrop_borders_color;
- box-shadow: none;
- }
- &:disabled, &:disabled:checked {
- background-color: $insensitive_bg_color;
- color: $insensitive_fg_color;
- border-color: $insensitive_fg_color;
- }
- }
-
- slider {
- margin: -1px;
- min-width: 45px;
- min-height: 27px;
- border: 2px solid;
- border-radius: 3px;
- @include button(normal);
- }
-
- &:hover slider { @include button(hover); }
-
- &:checked slider { border: 2px solid $selected_borders_color; }
-
- &:disabled slider { @include button(insensitive); }
-
- &:backdrop {
- slider { @include button(backdrop); }
-
- &:checked slider { border-color: if($variant == 'light', $selected_bg_color, $selected_borders_color); }
-
- &:disabled slider { @include button(backdrop-insensitive); }
- }
-}
-
-/*************************
- * Check and Radio items *
- *************************/
-// draw regular check and radio items using our PNG assets
-// all assets are rendered from assets.svg. never add pngs directly
-
-
-checkbutton.text-button, radiobutton.text-button {
- // this is for a nice focus on check and radios text
- padding: 2px 0;
- outline-offset: 0;
-
- label:not(:only-child) {
- &:first-child { margin-left: 4px; }
- &:last-child { margin-right: 4px; }
- }
-
- &:disabled {
- &:active, &:indeterminate, & {
- // set insensitive color, which is overriden otherwise
- color: $insensitive_fg_color;
-
- &:backdrop { color: $insensitive_fg_color; }
- }
- }
-}
-
-check,
-radio {
- margin: 0 4px;
-
- &:only-child { margin: 0; }
-
- min-height: 14px;
- min-width: 14px;
- border: 1px solid;
- -gtk-icon-source: none;
- -gtk-icon-size: 14px;
-
- @include button(normal);
-
- &:hover { @include button(hover); }
- &:active { @include button(active); }
- &:disabled { @include button(insensitive); }
- &:backdrop {
- @include button(backdrop);
-
- &:disabled { @include button(backdrop-insensitive); }
- }
-
- @if $variant == 'light' {
- // the borders of the light variant versions of checks and radios are too similar in luminosity to the selected background
- // color, hence we need special casing.
- row:selected & { border-color: $selected_borders_color; }
- }
-
- .osd & {
- @include button(osd);
-
- &:hover { @include button(osd); }
- &:active { @include button(osd-active); }
- &:backdrop { @include button(osd-backdrop); }
- &:disabled { @include button(osd-insensitive); }
- }
-
- menu menuitem & {
- margin: 0; // this is a workaround for a menu check/radio size allocation issue
-
- &, &:hover, &:disabled { //FIXME use button reset mixin
- min-height: 14px;
- min-width: 14px;
- background-image: none;
- background-color: transparent;
- box-shadow: none;
- -gtk-icon-shadow: none;
- color: inherit;
- border-color: currentColor;
- animation: none;
- }
- }
-}
-
-%check,
-check {
- border-radius: 3px;
-
- &:checked { -gtk-icon-source: image(-gtk-recolor(url("assets/check-symbolic.svg")),
- -gtk-recolor(url("assets/check-symbolic.symbolic.png"))); }
-
- &:indeterminate { -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")),
- -gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
-}
-
-%radio,
-radio {
- border-radius: 100%;
-
- &:checked { -gtk-icon-source: image(-gtk-recolor(url("assets/bullet-symbolic.svg")),
- -gtk-recolor(url("assets/bullet-symbolic.symbolic.png"))); }
-
- &:indeterminate { -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")),
- -gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
-}
-
-// let's animate things
-@keyframes check_check {
- from { -gtk-icon-transform: translate(6px, -3px) rotate(-45deg) scaleY(0.2) rotate(45deg) scaleX(0); }
- to { -gtk-icon-transform: unset; }
-}
-
-@keyframes check_radio {
- from { -gtk-icon-transform: scale(0); }
- to { -gtk-icon-transform: unset; }
-}
-
-@keyframes check_indeterminate {
- from { -gtk-icon-transform: scale(0, 1); }
- to { -gtk-icon-transform: unset; }
-}
-
-check:not(:indeterminate):checked { animation: check_check 400ms; }
-
-radio:not(:indeterminate):checked { animation: check_radio 400ms; }
-
-check:indeterminate:checked, radio:indeterminate:checked { animation: check_indeterminate 400ms; }
-
-// no animations in menus
-menu menuitem {
- check:not(:indeterminate):checked,
- radio:not(:indeterminate):checked,
- check:indeterminate:checked:active,
- radio:indeterminate:checked { animation: none; }
-}
-
-
-// treeview stuff, let's the fun begin:
-treeview.view check:selected {
- &:focus, &:backdrop, & {
- &:disabled, & {
- @extend %check;
- }
- }
-}
-
-treeview.view radio:selected {
- &:focus, &:backdrop, & {
- &:disabled, & {
- @extend %radio;
- }
- }
-}
-
-treeview.view check,
-treeview.view radio {
- &:selected {
- &:focus, &:hover, & { color: $selected_fg_color; }
-
- &:backdrop {
- &:hover, & {
- color: $selected_fg_color;
- border-color: $selected_fg_color;
- }
-
- &:disabled {
- color: $insensitive_fg_color;
- border-color: $insensitive_fg_color;
- }
- }
-
- &:disabled { color: $insensitive_fg_color;}
- }
-}
-
-
-
-/************
- * GtkScale *
- ************/
-%scale_trough {
- border: 2px solid $borders_color;
- border-radius: 4px;
- background-color: $dark_fill;
- box-shadow: none;
-
- &:disabled {
- border-color: $insensitive_borders_color;
- background-color: $insensitive_bg_color;
- }
-
- &:backdrop {
- background-color: $backdrop_dark_fill;
- border-color: $backdrop_borders_color;
-
- &:disabled { background-color: $insensitive_bg_color; border-color: $insensitive_borders_color; }
- }
-
- // ...on selected list rows
- row:selected & {
- &, &:disabled { border-color: $selected_borders_color; }
- }
-
- // OSD
- .osd & {
- border-color: $osd_borders_color;
- background-color: transparentize($osd_borders_color, 0.2);
- box-shadow: none;
-
- &:disabled { background-color: $insensitive_bg_color; }
- }
-}
-
-%scale_highlight {
- border: 2px solid $selected_borders_color;
- border-radius: 4px;
- background-color: $selected_bg_color;
-
- &:disabled {
- background-color: transparent;
- border-color: transparent;
- }
-
- &:backdrop {
- border-color: $backdrop_dark_fill;
- &:disabled {
- background-color: transparent;
- border-color: transparent;
- }
- }
-
- // ...on selected list rows
- row:selected & { &, &:disabled { border-color: $selected_borders_color; } }
-
- // OSD
- .osd & {
- border-color: $osd_borders_color;
-
- &:disabled { border-color: transparent; }
- }
-}
-
-scale {
- // sizing
-
- $_marks_length: 6px;
- $_marks_distance: 6px;
-
- min-height: 10px;
- min-width: 10px;
- padding: 12px;
-
- fill,
- highlight { margin: -1px; }
-
- slider {
- min-height: 18px;
- min-width: 18px;
- margin: -9px;
- }
-
- &.fine-tune {
- &.horizontal {
- padding-top: 9px;
- padding-bottom: 9px;
- min-height: 16px;
- }
-
- &.vertical {
- padding-left: 9px;
- padding-right: 9px;
- min-width: 16px;
- }
-
- slider { margin: -6px; }
-
- fill,
- highlight,
- trough {
- border-radius: 5px;
- }
- }
-
- // the backing bit
- trough {
- @extend %scale_trough;
-
- outline-offset: 2px;
- }
-
- // the colored part of the backing bit
- highlight { @extend %scale_highlight; }
-
- // this is another differently styled part of the backing bit, the most relevant use case is for example
- // in media player to indicate how much video stream as been cached
- fill {
- @extend %scale_trough;
-
- &, &:backdrop {
- background-color: $borders_color;
- box-shadow: none;
- }
-
- &:disabled {
- &, &:backdrop {
- border-color: transparent;
- background-color: transparent;
- }
- }
-
- // OSD
- .osd & {
- background-color: mix($osd_fg_color, $osd_borders_color, 25%);
-
- &:disabled {
- &, &:backdrop {
- border-color: transparent;
- background-color: transparent;
- }
- }
- }
- }
-
- slider {
- @include button(normal);
-
- border: 2px solid $borders_color;
- border-radius: 100%;
-
- &:hover { @include button(hover); }
-
- &:active { border-color: $selected_borders_color; }
-
- &:disabled { @include button (insensitive); }
-
- &:backdrop {
- @include button(backdrop);
- &:disabled { @include button(backdrop-insensitive); }
- }
-
- // ...on selected list rows
- row:selected & { &, &:disabled { border-color: $selected_borders_color; } }
-
- // OSD
- .osd & {
- @include button(osd);
- border-color: $osd_borders_color;
- background-color: opacify($osd_bg_color, 1); // solid background needed here
-
- &:hover { @include button(osd-hover); }
-
- &:active { @include button(osd-active); }
-
- &:disabled { @include button(osd-insensitive); }
-
- &:backdrop {
- @include button(osd-backdrop);
-
- &:disabled { @include button(osd-backdrop-insensitive); }
- }
- }
- }
-
- value { color: gtkalpha(currentColor, 0.4); }
-
- marks {
- color: gtkalpha(currentColor, 0.4);
-
- @each $marks_class, $marks_pos, $marks_margin in (top, top, bottom),
- (bottom, bottom, top),
- (top, left, right),
- (bottom, right, left) {
- &.#{$marks_class} {
- margin-#{$marks_margin}: $_marks_distance;
- margin-#{$marks_pos}: -($_marks_distance + $_marks_length);
- }
- }
- }
-
- &.fine-tune marks {
- @each $marks_class, $marks_pos, $marks_margin in (top, top, bottom),
- (bottom, bottom, top),
- (top, left, right),
- (bottom, right, left) {
- &.#{$marks_class} {
- margin-#{$marks_margin}: $_marks_distance;
- margin-#{$marks_pos}: -($_marks_distance + $_marks_length - 3px);
- }
- }
- }
- &.horizontal {
- indicator {
- min-height: $_marks_length;
- min-width: 1px;
- }
-
- &.fine-tune indicator { min-height: ($_marks_length - 3px); }
- }
- &.vertical {
- indicator {
- min-height: 1px;
- min-width: $_marks_length;
- }
-
- &.fine-tune indicator { min-width: ($_marks_length - 3px); }
- }
-}
-
-
-/*****************
- * Progress bars *
- *****************/
-
-//FIXME it's a wip ok?
-
-progressbar {
- padding: 0;
- font-size: 83%;
- color: $fg_color;
-
- &:backdrop {
- color: $insensitive_fg_color;
- }
-
- trough {
- border-width: 1px;
- border-style: solid;
- border-radius: 3px;
- border-color: $borders_color;
- background-color: mix($borders_color,$bg_color, 35%);
- box-shadow: inset 1px 1px transparentize(black, 0.9);
-
- &:backdrop {
- border-color: $backdrop_borders_color;
- background-color: mix($backdrop_borders_color,$backdrop_bg_color, 35%);
- box-shadow: 0 1px transparentize(white,1);
- }
- }
-
- &.osd trough {
- background-color: transparent;
- box-shadow: none;
- border-width: 0;
- //FIXME: there is a margin on top
- }
-
- // moving bit
- &.horizontal {
- trough { min-width: 150px; }
- trough, progress { min-height: 2px; }
- }
-
- &.vertical {
- trough { min-height: 80px; }
- trough, progress { min-width: 2px; }
- }
-
- & progress {
- border-width: 1px;
- border-style: solid;
- border-radius: 3px;
- border-color: $selected_borders_color;
- background-color: $selected_bg_color;
-
- // I really prefer these flat w/o this shadow - Lapo
- box-shadow: inset 0 1px 0 transparentize($borders_edge,0.8);
-
- &.vertical {
- box-shadow: inset 1px 0 0 transparentize($borders_edge,0.8);
- }
-
- &:backdrop {
- border-color: $selected_bg_color;
- background-color: $selected_bg_color;
- box-shadow: none;
- }
-
- &.osd {
- border-width: 0;
- border-radius: 0;
- }
- }
-
- trough.empty progress { all: unset; } // make the progress indicator disappear when the fraction is 0
-}
-
-/*************
- * Level Bar *
- *************/
-
-levelbar {
- & trough {
- // FIXME: outset not working
- padding: 2px;
- border-radius: 3px;
- @include entry(normal);
- &:backdrop {
- @include entry(backdrop);
- }
- }
-
- &.horizontal {
- block {
- min-height: 1px;
- }
-
- &.discrete block {
- margin: 0 1px;
- min-width: 32px;
- }
- }
-
- &.vertical {
- block {
- min-width: 1px;
- }
-
- &.discrete block {
- margin: 1px 0;
- min-height: 32px;
- }
- }
-
- & block.filled.low {
- border-color: darken($warning_color,10%);
- background-color: $warning_color;
- &:backdrop { border-color: $warning_color; };
- }
- & block.filled.high {
- border-width: 1px;
- border-style: solid;
- border-color: darken($selected_bg_color,10%);
- background-color: $selected_bg_color;
- box-shadow: 0 1px transparentize(black, 0.9);
- border-radius: 1px;
- &:backdrop {
- border-color: $selected_bg_color;
- box-shadow: none;
- }
- }
- & block.filled.full {
- border-color: darken($success_color,10%);
- background-color: $success_color;
- &:backdrop { border-color: $success_color; }
- }
- & block.empty {
- border-width: 1px;
- border-style: solid;
- background-color: transparent;
- border-color: transparentize($fg_color,0.8);
- border-radius: 1px;
- box-shadow: none;
- &:backdrop { border-color: transparentize($backdrop_fg_color,0.85); }
- }
-}
-
-
-// catch all extend :)
-
-%selected_items {
- background-color: $selected_bg_color;
- color: $selected_fg_color;
- &:backdrop { background-color: $borders_color; color: $selected_fg_color; }
-}
-
-.monospace { font-family: monospace; }
-
-
-/**********
- * frames *
- **********/
-frame,
-.frame {
- border: 1px solid $borders_color;
- &.flat { border-style: none; }
- &:backdrop { border-color: $backdrop_borders_color; }
- padding: 0;
-}
-
-actionbar > revealer > box {
- padding: 6px;
- border-width: 1px 0 0;
- border-color: $borders_color;
- border-style: solid none none;
-}
-
-placessidebar,
-scrolledwindow {
- .frame { border-radius: 2px; }
- viewport.frame { // avoid double borders when viewport inside scrolled window
- border-style: none;
- }
- // This is used when content is touch-dragged past boundaries.
- overshoot {
- &.top {
- @include overshoot(top);
- &:backdrop { @include overshoot(top, backdrop); }
- }
- &.bottom {
- @include overshoot(bottom);
- &:backdrop { @include overshoot(bottom, backdrop); }
- }
- &.left {
- @include overshoot(left);
- &:backdrop { @include overshoot(left, backdrop); }
- }
- &.right {
- @include overshoot(right);
- &:backdrop { @include overshoot(right, backdrop); }
- }
- }
-
- // works similarly to the overshoot, the size if fixed tho.
- undershoot {
- &.top {
- @include undershoot(top);
- }
- &.bottom {
- @include undershoot(bottom);
- }
- &.left {
- @include undershoot(left);
- }
- &.right {
- @include undershoot(right);
- }
- }
-
- junction { // the small square between two scrollbars
- border-color: transparent;
- background-color: darken($bg_color, 5%);
- &:backdrop { background-color: transparent; }
- }
-
-}
-
-//vbox and hbox separators
-separator {
- background: $borders_color;
- min-width: 1px;
- min-height: 1px;
-}
-
-/*********
- * Lists *
- *********/
-
-list {
- background-color: $base_color;
- border-color: $borders_color;
- &:backdrop {
- background-color: $backdrop_base_color;
- border-color: $backdrop_borders_color;
- }
- & row {
- padding: 2px;
- }
-}
-
-row.activatable,
-row.activatable:backdrop,
-row.activatable:backdrop:active,
-row.activatable:backdrop:checked,
-row.activatable:backdrop:disabled,
-row.activatable:backdrop:disabled:active,
-row.activatable:backdrop:disabled:checked,
-row.activatable:disabled:active,
-row.activatable:disabled:checked {
- // reset button inherited stuff
- @extend %undecorated_button;
- background-color: transparentize($base_color,1); // for the transition
- border-style: none; // I need no borders here
- border-radius: 0; // and no rounded corners
- box-shadow: none; // and no box-shadow
-}
-
-row {
- &.activatable {
- color: $fg_color;
- &:hover {
- background-color: mix($fg_color, $base_color, 5%);
- }
- &:active {
- box-shadow: inset 0 2px 2px -2px transparentize(black, 0.8);
- }
- &:selected {
- @extend %selected_items;
- background-color: $selected_bg_color;
- color: $selected_fg_color;
- &:active { box-shadow: inset 0 2px 3px -1px transparentize(black, 0.5); }
- &:hover {
- background-color: mix($fg_color, $selected_bg_color, 10%);
- }
- &:backdrop { background-color: $borders_color; }
- .button.flat {
- color: $selected_fg_color;
- &:hover { color: $fg_color; }
- &:active { color: $selected_fg_color; }
- }
- }
- }
- .button.flat {
- color: $fg_color;
- &:active { color: $selected_fg_color; }
- }
-}
-
-
-// transition
-row,
-row.activatable {
- transition: all 300ms $ease-out-quad;
- &:hover { transition: none; }
-}
-
-
-/*********************
- * App Notifications *
- *********************/
-
-.app-notification,
-.app-notification.frame {
- padding: 10px;
- border-width: 0 1px 1px;
- border-style: solid;
- border-color: $borders_color;
- border-radius: 0 0 6px 6px;
- background-image: linear-gradient(to bottom, mix(black, $bg_color, 6%) 5%,
- mix(black, $bg_color, 4%));
- // FIXME no space for outer shadow : box-shadow: 0 1px 1px rgba(0,0,0,.5);
- .button { padding: 6px; }
- border { border-width: 0; }
-}
-
-/*************
- * Expanders *
- *************/
-
-expander {
- min-width: 24px;
- min-height: 24px;
- -gtk-icon-source: -gtk-icontheme('pan-end-symbolic');
- &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); }
-
- &:checked { -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); }
-
- &:disabled { color: $insensitive_fg_color; }
-}
-
-expander-widget title:hover > expander {
- color: lighten($fg_color,30%); //only lightens the icon
-}
-
-/************
- * Calendar *
- ***********/
-calendar {
- border: 1px solid $borders_color;
- &:selected {
- @extend %view_selected;
- }
- &.button {
- @extend %undecorated_button;
- padding: 0 4px; //FIXME no effect on these pseudobuttons
- color: mix($fg_color, $base_color, 40%); //we need a dimmed stuff var
- &:hover {
- @extend %undecorated_button;
- color: $fg_color;
- }
- &:backdrop, &:backdrop:hover {
- @extend %undecorated_button;
- color: mix($backdrop_fg_color, $backdrop_base_color, 50%);
- }
- }
- &.view { border-radius: 2px; }
- &.header {
- background: linear-gradient(to bottom,
- lighten($bg_color,2%),
- darken($bg_color,2%));
- border-bottom-color: mix($borders_color,$bg_color,50%);
- &:backdrop {
- background-image: _solid($backdrop_bg_color);
- border-bottom-color: mix($backdrop_borders_color,$backdrop_bg_color,50%);
- }
- }
-
- &:indeterminate, &:indeterminate:backdrop { color: gtkalpha(currentColor, 0.55); }
- &.highlight, &.highlight:backdrop { color: $fg_color; }
-}
-
-
-/***********
- * Dialogs *
- ***********/
-
-messagedialog .dialog-action-area button {
- padding: 8px;
-}
-
-messagedialog { // Message Dialog styling
- .titlebar {
- border-style: none;
- box-shadow: inset 0 1px $borders_edge;
- }
-
- &.csd { // rounded bottom border styling for csd version
- &.background {
- // bigger radius for better antialiasing
- border-bottom-left-radius: 9px;
- border-bottom-right-radius: 9px;
- }
-
- .dialog-action-area button {
- padding: 12px;
- border-radius: 0;
-
- @include button(normal, $edge: none);
- @extend %middle_button;
-
- &:hover {
- @include button(hover, $edge: none);
- @extend %middle_button;
- }
-
- &:active {
- @include button(active, $edge: none);
- @extend %middle_button;
- }
-
- &:disabled {
- @include button(insensitive, $edge: none);
- @extend %middle_button;
- }
-
- &:backdrop {
- @include button(backdrop, $edge: none);
- @extend %middle_button;
- }
- &:backdrop:disabled {
- @include button(backdrop-insensitive, $edge: none);
- @extend %middle_button;
- }
-
- @each $b_type, $b_color in (suggested-action, $suggested_color),
- (destructive-action, $destructive_color) {
- &.#{$b_type} {
- @include button(normal, $b_color, white, $edge: none);
- @extend %middle_button;
-
- &:hover {
- @include button(hover, $b_color, white, $edge: none);
- @extend %middle_button;
- }
-
- &:active {
- @include button(active, $b_color, white, $edge: none);
- @extend %middle_button;
- }
-
- &:backdrop {
- @include button(backdrop, $b_color, white);
- @extend %middle_button;
-
- &:disabled {
- @include button(backdrop-insensitive);
- @extend %middle_button;
- }
- }
-
- &:disabled {
- @include button(insensitive);
- @extend %middle_button;
- }
- }
- }
-
- &:first-child{ @extend %first_button; }
- &:last-child { @extend %last_button; }
- }
-
- %middle_button {
- border-right-style: none;
- border-bottom-style: none;
- }
-
- %last_button {
- border-bottom-right-radius: 7px;
- }
-
- %first_button {
- border-left-style: none;
- border-bottom-left-radius: 7px;
- }
- }
-}
-
-filechooser {
- .dialog-action-box {
- border-top: 1px solid $borders_color;
-
- &:backdrop { border-top-color: $backdrop_borders_color; }
- }
-
- #pathbarbox { border-bottom: 1px solid $bg_color; }
-}
-
-filechooserbutton:drop(active) {
- box-shadow: none;
- border-color: transparent;
-}
-
-
-/***********
- * Sidebar *
- ***********/
-
-.sidebar {
- border: none;
- &:backdrop {
- background-color: $bg_color;
- }
-
- &:selected {
- @extend %selected_items;
- }
-
- & > scrolledwindow > .frame {
- border-right: 1px solid $borders_color;
- &:dir(rtl) {
- border-right: none;
- border-left: 1px solid $borders_color;
- }
- }
-}
-
-stacksidebar {
- & row {
- padding: 10px 4px;
- > label {
- padding-left: 6px;
- padding-right: 6px;
- }
- &.needs-attention > label {
- @extend %needs_attention;
- background-size: 6px 6px, 0 0;
- }
- }
-}
-
-/****************
- * File chooser *
- ****************/
-$_placesidebar_icons_opacity: 0.7;
-
-placessidebar {
- > viewport.frame { border-style: none; }
-
- row {
- // Needs overriding of the GtkListBoxRow padding
- min-height: 36px;
- padding: 0px;
-
- // Using margins/padding directly in the SidebarRow
- // will make the animation of the new bookmark row jump
- > revealer {
- padding: 0 14px;
- }
-
- & image.sidebar-icon {
- opacity: $_placesidebar_icons_opacity; // dim the device icons
-
- &:dir(ltr) { padding-right: 8px; }
- &:dir(rtl) { padding-left: 8px; }
- }
-
- & label.sidebar-label {
- &:dir(ltr) { padding-right: 2px; }
- &:dir(rtl) { padding-left: 2px; }
- }
-
- @at-root button.sidebar-button {
- @extend %button_basic_flat;
-
- @extend %button_selected_flat;
-
- min-height: 26px;
- min-width: 26px;
- margin-top: 3px;
- margin-bottom: 3px;
- padding: 0;
- border-radius: 100%;
-
- &:not(:hover):not(:active),
- &:backdrop { > image { opacity: $_placesidebar_icons_opacity; }}
- }
-
- // in the sidebar case it makes no sense to click the selected row
- &:selected:active { box-shadow: none; }
-
- &.sidebar-placeholder-row {
- padding: 0 8px;
- min-height: 2px;
- background-image: _solid($fg_color);
- background-clip: content-box;
- }
-
- &.sidebar-new-bookmark-row { color: $selected_bg_color; }
-
- &:drop(active):not(:disabled) {
- color: $fg_color;
- box-shadow: inset 0 1px $fg_color,
- inset 0 -1px $fg_color;
-
- &:selected {
- color: $selected_fg_color;
- background-color: $fg_color;
- }
- }
- }
-}
-
-placesview {
- .server-list-button > image {
- transition: 200ms $ease-out-quad;
- -gtk-icon-transform: rotate(0turn);
- }
-
- .server-list-button:checked > image {
- transition: 200ms $ease-out-quad;
- -gtk-icon-transform: rotate(-0.5turn);
- }
-
- row.activatable:hover { background-color: transparent; }
-}
-
-
-/*********
- * Paned *
- *********/
-
-
-paned {
- > separator {
- min-width: 1px;
- min-height: 1px;
- background-image: _solid($borders_color);
-
- &:backdrop {
- background-image: _solid($backdrop_borders_color);
- }
- }
-
- &:dir(ltr).horizontal > separator {
- margin: 0 -8px 0 0;
- padding: 0 8px 0 0;
- }
- &:dir(rtl).horizontal > separator {
- margin: 0 0 0 -8px;
- padding: 0 0 0 8px;
- }
-
- &.vertical > separator {
- margin: 0 0 -8px 0;
- padding: 0 0 8px 0;
- }
-
- > separator:selected {
- background-color: $selected_bg_color;
- }
-
- > separator.wide {
- min-width: 5px;
- min-height: 5px;
- background-color: transparent;
- border-style: none solid;
- border-color: $borders_color;
- border-width: 1px;
- }
-}
-
-/**************
- * GtkInfoBar *
- **************/
-infobar {
- border-width: 0;
- border-style: none;
-}
-
-.info,
-.question,
-.warning,
-.error {
- background-color: $selected_bg_color;
- color: $selected_fg_color;
- text-shadow: 0 1px darken($selected_bg_color, 10%);
- border-color: darken($selected_bg_color, 10%);
- button {
- @include button(normal, $selected_bg_color, $selected_fg_color, $edge: none);
- &:hover { @include button(hover, $selected_bg_color, $selected_fg_color, $edge: none); }
- &:active { @include button(active, $selected_bg_color, $selected_fg_color, $edge: none); }
- &:disabled { @include button(insensitive, $selected_bg_color, $selected_fg_color, $edge: none); }
- &:backdrop { @include button(backdrop, $selected_bg_color, $selected_fg_color, $edge: none); }
- &:backdrop:disabled { @include button(backdrop-insensitive, $selected_bg_color, $selected_fg_color, $edge: none); }
- }
- label:selected,
- label:selected:focus,
- label:selected:hover {
- background-color: lighten($selected_bg_color, 20%);
- }
-}
-
-/************
- * Tooltips *
- ************/
-
-tooltip {
- &.background {
- // background-color needs to be set this way otherwise it gets drawn twice
- // see https://bugzilla.gnome.org/show_bug.cgi?id=736155 for details.
- background-color: $bg_color;
- background-clip: padding-box;
- border: 2px solid $fg_color;
- }
-
- padding: 4px; /* not working */
- border-radius: 5px;
- box-shadow: none; // otherwise it gets inherited by windowframe.csd
-
- // FIXME: we need a border or tooltips vanish on black background.
- decoration { background-color: transparent; }
-
- * { // Yeah this is ugly
- padding: 4px;
- background-color: transparent;
- color: $fg_color;
- }
-}
-
-
-/*****************
- * Color Chooser *
- *****************/
-
-colorswatch {
- // This widget is made of two boxes one on top of the other, the lower box is colorswatch {} the other one
- // is colorswatch overlay{}, GtkColorSwatch has the programmatically set background, so most of the style
- // is applied to the overlay box.
-
- $_colorswatch_shadow: inset 0 1px transparentize(black, 0.9), _widget_edge();
-
- box-shadow: $_colorswatch_shadow;
-
- // take care of colorswatches on selected elements
- :selected & {
- box-shadow: none;
- & overlay, & overlay:hover {
- border-color: $selected_fg_color;
- }
- }
-
- // we need to re-set the shadow here since it get axed by the previous bit
- &:selected { box-shadow: $_colorswatch_shadow; }
-
- // border rounding
- &.top {
- border-top-left-radius: 6px;
- border-top-right-radius: 6px;
- }
- &.bottom {
- border-bottom-left-radius: 6px;
- border-bottom-right-radius: 6px;
- }
- &.left, &:first-child:not(overlay):not(.top) {
- border-top-left-radius: 6px;
- border-bottom-left-radius: 6px;
- }
- &.right, &:last-child:not(overlay):not(.bottom) {
- border-top-right-radius: 6px;
- border-bottom-right-radius: 6px;
- }
- &:only-child:not(overlay) { border-radius: 6px; }
-
- // overlay corner rounding
- &.top > overlay {
- border-top-left-radius: 5px;
- border-top-right-radius: 5px;
- }
- &.bottom > overlay {
- border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px;
- }
- &:first-child:not(.top) > overlay {
- border-top-left-radius: 5px;
- border-bottom-left-radius: 5px;
- }
- &:last-child:not(.bottom) > overlay {
- border-top-right-radius: 5px;
- border-bottom-right-radius: 5px;
- }
- &:only-child > overlay { border-radius: 5px; }
-
- // nth-child is used for the custom colors row.
- // the :not() madness is needed since actually the overlay is selectable by GtkColorSwatch > .overlay
- // and GtkColorSwatch.overlay, I know it's weird, but this is GTK.
-
- // hover effect
- &.activatable:hover,
- &.activatable:hover:selected {
- background-image: linear-gradient(135deg, transparentize(white, 0.3),
- transparentize(white, 1) 50%);
- box-shadow: inset 0 1px transparentize(white, 0.6),
- inset 0 -1px transparentize(black, 0.6);
- }
- &:backdrop,
- &:backdrop:selected,
- &.dark:backdrop,
- &.dark:backdrop:selected {
- background-image: none;
- box-shadow: none;
- }
-
- // indicator and keynav outline colors, color-dark is a color with luminosity lower then 50%
- &.dark {
- color: white;
- border: 1px solid transparentize(black, 0.7);
- &:hover { border-color: transparentize(black, 0.5); }
- &:backdrop { color: transparentize(white, 0.7); }
- }
- &.light {
- color: black;
- border: 1px solid transparentize(black, 0.7);
- &:hover { border-color: transparentize(black, 0.5); }
- &:backdrop { color: transparentize(black, 0.7); }
- }
-
- // border color
- & overlay,
- & overlay:selected {
- background: none;
- border: none;
- }
-
- // make the add color button looks like, well, a button
- &#add-color-button {
- @include button(normal);
- &:hover { @include button(hover); }
- &:backdrop { @include button(backdrop); }
- & overlay { border-width: 0; background: none; }
- }
-}
-
-
-/**********************
- * Window Decorations *
- *********************/
-
-decoration {
- border-radius: 7px 7px 0 0;
- // lamefun trick to get rounded borders regardless of CSD use
- border-width: 0px;
-
- // this needs to be transparent
- // see bug #722563
- $_wm_border: transparentize($fg_color, 0.77);
- $_wm_border_backdrop: transparentize($fg_color, 0.82);
-
- box-shadow: 0 3px 9px 1px transparentize(black, 0.5),
- 0 0 0 1px $_wm_border; //doing borders with box-shadow
-
- /* this is used for the resize cursor area */
- margin: 10px;
-
- &:backdrop {
- box-shadow: 0 2px 6px 2px transparentize(black, 0.8),
- 0 3px 9px 1px transparent,
- 0 0 0 1px $_wm_border_backdrop;
- }
-
- .tiled & {
- border-radius: 0;
- }
-
- .csd.popup & {
- border-radius: 0;
- box-shadow: 0 1px 2px transparentize(black, 0.8),
- 0 0 0 1px transparentize($_wm_border,0.1);
- }
-
- tooltip.csd & {
- border-radius: 5px;
- box-shadow: none;
- }
-
- messagedialog.csd & {
- border-radius: 7px;
- box-shadow: 0 1px 2px transparentize(black, 0.8),
- 0 0 0 1px transparentize($_wm_border, 0.1);
- }
-
- .solid-csd & {
- border-radius: 0;
- margin: 4px;
- background-color: $backdrop_bg_color;
- border: solid 1px $backdrop_borders_color;
- box-shadow: none;
- }
-}
-
-// Window Close button
-button.titlebutton {
- @extend %button_basic;
-
- @extend %button_basic_flat;
-}
-
-/**********************
- * Touch Copy & Paste *
- *********************/
-
-//touch selection handlebars for the Popover.osd above
-cursor-handle {
- background-color: $bg_color;
- background-image: none;
- -gtk-icon-source: none;
- box-shadow: none;
- outline-style: none;
- outline-color: transparent;
- border: 2px solid $fg_color;
- @each $s,$as in ('',''),
- (':hover','-hover'),
- (':active','-active') { //no need for insensitive and backdrop
- &.top#{$s}:dir(ltr), &.bottom#{$s}:dir(rtl) {
- border-radius: 10px 0 0 0;
- padding-left: 10px;
- }
- &.bottom#{$s}:dir(ltr), &.top#{$s}:dir(rtl) {
- border-radius: 0 10px 0 0;
- padding-right: 10px;
- }
- &.insertion-cursor#{$s}:dir(ltr), &.insertion-cursor#{$s}:dir(rtl) {
- border-radius: 10px 10px 0 0;
- }
- }
-}
-
-/* Decouple the font of context menus from their entry/textview */
-.context-menu {
- font: initial;
-}
-
-.touch-selection {
- font: initial;
- color: $osd_fg_color;
- border: none;
- background-color: opacify($osd_bg_color,0.2);
- background-clip: padding-box;
- box-shadow: none;
- text-shadow: 0 1px black;
- -gtk-icon-shadow: 0 1px black;
- &:backdrop { text-shadow: none; }
- button {
- @include button(osd);
- &:hover { @include button(osd-hover); }
- &:active, &:checked { @include button(osd-active); }
- &:disabled, &:backdrop:disabled { @include button(osd-insensitive); }
- &:backdrop { @include button(osd-backdrop); }
- }
- // checkboxes and radios to use the -dark style for OSD style popovers
- @each $w,$a in ('check', 'checkbox'),
- ('radio','radio') {
- @each $s,$as in ('','-unchecked'),
- (':hover', '-unchecked-hover'),
- (':active', '-unchecked-active'),
- (':disabled','-unchecked-insensitive'),
- (':indeterminate', '-mixed'),
- (':indeterminate:hover', '-mixed-hover'),
- (':indeterminate:selected', '-mixed-active'),
- (':indeterminate:disabled', '-mixed-insensitive'),
- (':checked', '-checked'),
- (':checked:disabled','-checked-insensitive'),
- (':checked:hover', '-checked-hover'),
- (':checked:active', '-checked-active'),
- (':backdrop:checked', '-checked-backdrop') {
- .#{$w}#{$s} {
- -gtk-icon-shadow: none;
- color: $osd_fg_color;
- }
- }
- }
-}
-
-button.circular { // FIXME: aggregate to buttons
- border-radius: 20px;
-
- label { padding: 0; }
- row:selected & {
- color: $selected_fg_color;
- &:hover { color: $fg_color; }
- &:active { color: $selected_fg_color; }
- }
-}
-
-// shortcut window keys
-.keycap {
- min-width: 18px;
- min-height: 25px;
- margin-top: 3px;
- padding-bottom: 2px;
- padding-left: 6px;
- padding-right: 6px;
-
- color: $fg_color;
- background-color: $base_color;
- border: 2px solid;
- border-color: $borders_color;
- border-radius: 5px;
- box-shadow: inset 0 -3px mix($borders_color, $bg_color, 50%),
- inset 0 -2px $bg_color,
- inset 0 0 0 1px $base_color;
- font-size: smaller;
-}
-
-*:drop(active):focus,
-*:drop(active) {
- border-color: $fg_color;
- box-shadow: inset 0 0 0 2px $fg_color;
-}
-
-stackswitcher button.text-button {
- min-width: 100px;
-}
-
-stackswitcher button.circular {
- min-width: 0px;
-}
-
-
-/*********
- * Emoji *
- ********/
-
-popover.emoji-picker { padding-left: 0; padding-right: 0; }
-
-button.emoji-section,
-button.emoji-section:backdrop { /* Dodge stuff inherited from backdrop button */
- border-color: transparent;
- border-width: 3px;
- border-style: none none solid;
- border-radius: 0;
-
- margin: 2px 4px 2px 4px;
- padding: 3px 0 0;
- min-width: 32px;
- min-height: 28px;
-
- /* reset props inherited from the button style */
- background: none;
- box-shadow: none;
- text-shadow: none;
-
- outline-offset: -5px;
-
- &:backdrop:not(:checked) { border-color: transparent; }
- &:hover { border-color: $borders_color; }
- &:checked { border-color: $selected_bg_color; }
-
- label {
- padding: 0;
-
- opacity: 0.55;
- }
-
- &:hover label { opacity: 0.775; }
-
- &:checked label {
- opacity: 1;
-
- /* Dodge default inversion to white for non-flat, selected button */
- color: $fg_color;
- }
-}
-
-.emoji {
- font-size: x-large;
- padding: 6px;
- border-radius: 6px;
-
- :hover {
- background: $selected_bg_color;
- color: $selected_fg_color;
- }
-}
-
-/****************
- * Print dialog *
-*****************/
-printdialog {
- drawing {
- color: $fg_color;
- background: none;
- border: none;
- padding: 0;
-
- &:backdrop {
- color: $backdrop_fg_color;
- border-color: $backdrop_borders_color;
- }
-
- paper {
- background: white;
- color: black;
- border: 1px solid $borders_color;
- }
-
- }
-
- .dialog-action-box { margin: 12px; }
-}
-
--- /dev/null
+<?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:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="1000"
+ height="1052.3622"
+ id="svg9892"
+ version="1.1"
+ inkscape:version="0.92.4 5da689c313, 2019-01-14"
+ sodipodi:docname="assets.svg"
+ viewBox="0 0 1000 1052.3622"
+ enable-background="new">
+ <defs
+ id="defs9894">
+ <linearGradient
+ id="linearGradient1404">
+ <stop
+ style="stop-color:#33383a;stop-opacity:1"
+ offset="0"
+ id="stop1396" />
+ <stop
+ id="stop1398"
+ offset="0.2"
+ style="stop-color:#24292a;stop-opacity:1" />
+ <stop
+ id="stop1400"
+ offset="0.89999998"
+ style="stop-color:#1e2124;stop-opacity:1" />
+ <stop
+ style="stop-color:#1c1e20;stop-opacity:1"
+ offset="1"
+ id="stop1402" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient8581">
+ <stop
+ id="stop8573"
+ offset="0"
+ style="stop-color:#33383a;stop-opacity:1" />
+ <stop
+ style="stop-color:#2c3133;stop-opacity:1"
+ offset="0.2"
+ id="stop8575" />
+ <stop
+ style="stop-color:#25292b;stop-opacity:1"
+ offset="0.89999998"
+ id="stop8577" />
+ <stop
+ id="stop8579"
+ offset="1"
+ style="stop-color:#282c2e;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient5840">
+ <stop
+ style="stop-color:#2a2e30;stop-opacity:1;"
+ offset="0"
+ id="stop5842" />
+ <stop
+ style="stop-color:#2a2e30;stop-opacity:0;"
+ offset="1"
+ id="stop5844" />
+ </linearGradient>
+ <linearGradient
+ id="dark-normal">
+ <stop
+ style="stop-color:#323737;stop-opacity:1"
+ offset="0"
+ id="stop5208" />
+ <stop
+ id="stop5210"
+ offset="0.2"
+ style="stop-color:#323737;stop-opacity:1" />
+ <stop
+ style="stop-color:#2a2f2f;stop-opacity:1"
+ offset="1"
+ id="stop5212" />
+ </linearGradient>
+ <linearGradient
+ id="light-normal">
+ <stop
+ style="stop-color:#f4f4f4;stop-opacity:1"
+ offset="0"
+ id="stop4604" />
+ <stop
+ id="stop4610"
+ offset="0.2"
+ style="stop-color:#f4f4f4;stop-opacity:1" />
+ <stop
+ style="stop-color:#e8e8e7;stop-opacity:1"
+ offset="1"
+ id="stop4608" />
+ </linearGradient>
+ <linearGradient
+ id="killme">
+ <stop
+ id="stop5583-0-92-8-0-7-6"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ <stop
+ style="stop-color:#ededed;stop-opacity:1;"
+ offset="0.40000001"
+ id="stop5585-4-7-2-7-9-9" />
+ <stop
+ id="stop5587-6-7-2-0-3-1"
+ offset="1"
+ style="stop-color:#d3d3d3;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#dark-normal"
+ id="linearGradient4838-7-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="95.213127"
+ y1="167.30688"
+ x2="95.213127"
+ y2="186.8056" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-2"
+ id="linearGradient7117-1-2-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.025641,0,0,1,-102.29487,0)"
+ x1="95.453751"
+ y1="-12.24312"
+ x2="95.453751"
+ y2="6.2584834" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-2"
+ id="linearGradient7117-1-3-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.025641,0,0,1,-102.29487,0)"
+ x1="95.453751"
+ y1="-12.24312"
+ x2="95.453751"
+ y2="6.2584834" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-2"
+ id="linearGradient7117-1-5-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.025641,0,0,1,-102.29487,0)"
+ x1="95.453751"
+ y1="-12.241209"
+ x2="95.453751"
+ y2="6.2706885" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-2"
+ id="linearGradient7117-1-6"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.025641,0,0,1,-102.29487,0)"
+ x1="95.453751"
+ y1="-12.24312"
+ x2="95.453751"
+ y2="6.2584834" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-dark-2"
+ id="linearGradient7101-3-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="94.996544"
+ y1="167.37457"
+ x2="94.996544"
+ y2="185.89658" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-dark-2"
+ id="linearGradient7101-3-0-6"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="94.996544"
+ y1="167.37457"
+ x2="94.996544"
+ y2="185.89658" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-dark-2"
+ id="linearGradient7101-3-0-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="94.996544"
+ y1="167.37457"
+ x2="94.996544"
+ y2="185.89658" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-dark-2"
+ id="linearGradient7101-3-0-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="94.996544"
+ y1="167.37457"
+ x2="94.996544"
+ y2="185.89658" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-2"
+ id="linearGradient10617"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-3.025641,0,0,-1,492.3252,-1.275635)"
+ x1="95.453751"
+ y1="-12.24312"
+ x2="95.453751"
+ y2="6.2584834" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-2"
+ id="linearGradient10619"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-3.025641,0,0,-1,492.3252,-1.2756348)"
+ x1="95.453751"
+ y1="-12.24312"
+ x2="95.453751"
+ y2="6.2584834" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-dark-2"
+ id="linearGradient11093"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="97.192268"
+ y1="7.6430755"
+ x2="97.192268"
+ y2="-9.0183306" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-2"
+ id="linearGradient12904"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-3.025641,0,0,-1,492.3252,-1.275635)"
+ x1="95.453751"
+ y1="-12.24312"
+ x2="95.453751"
+ y2="6.2584834" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-2"
+ id="linearGradient12906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-3.025641,0,0,-1,492.3252,-1.2756348)"
+ x1="95.453751"
+ y1="-12.24312"
+ x2="95.453751"
+ y2="6.2584834" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-dark-2"
+ id="linearGradient12910"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="97.192268"
+ y1="7.3943977"
+ x2="97.192268"
+ y2="-9.0183306" />
+ <linearGradient
+ id="hover-2">
+ <stop
+ id="stop5846"
+ offset="0"
+ style="stop-color:#fefefe;stop-opacity:1" />
+ <stop
+ style="stop-color:#fefefe;stop-opacity:1"
+ offset="0.2"
+ id="stop5848" />
+ <stop
+ style="stop-color:#f2f2f1;stop-opacity:1"
+ offset="0.89999998"
+ id="stop5850" />
+ <stop
+ id="stop5852"
+ offset="1"
+ style="stop-color:#f2f2f1;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="normal-6">
+ <stop
+ style="stop-color:#f4f4f4;stop-opacity:1"
+ offset="0"
+ id="stop5317" />
+ <stop
+ id="stop5323"
+ offset="0.2"
+ style="stop-color:#f4f4f4;stop-opacity:1" />
+ <stop
+ id="stop5319"
+ offset="0.89999998"
+ style="stop-color:#e8e8e7;stop-opacity:1" />
+ <stop
+ style="stop-color:#e8e8e7;stop-opacity:1"
+ offset="1"
+ id="stop5321" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#normal-6"
+ id="linearGradient4664"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0403456,0,0,1.0053174,-43.533507,4.178448)"
+ x1="94.883377"
+ y1="-16.46591"
+ x2="94.883377"
+ y2="2.869415" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#normal-6"
+ id="linearGradient4748"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0403456,0,0,1.0053174,-43.533507,4.178448)"
+ x1="94.883377"
+ y1="3.1796269"
+ x2="94.883377"
+ y2="-16.776123" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#normal-6"
+ id="linearGradient4750"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0403456,0,0,1.0053174,-43.533507,4.178448)"
+ x1="94.883377"
+ y1="2.9309492"
+ x2="94.883377"
+ y2="-16.527445" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-2"
+ id="linearGradient4791"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0403456,0,0,1.0053174,-43.533507,4.178448)"
+ x1="94.883377"
+ y1="-16.46591"
+ x2="94.883377"
+ y2="2.869415" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-2"
+ id="linearGradient4793"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0403456,0,0,1.0053174,-43.533507,4.178448)"
+ x1="94.883377"
+ y1="-16.46591"
+ x2="94.883377"
+ y2="2.869415" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-2"
+ id="linearGradient4795"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0403456,0,0,1.0053174,-43.533507,4.178448)"
+ x1="94.883377"
+ y1="-16.46591"
+ x2="94.883377"
+ y2="2.869415" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-2"
+ id="linearGradient4797"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0403456,0,0,1.0053174,-43.533507,4.178448)"
+ x1="94.883377"
+ y1="-16.46591"
+ x2="94.883377"
+ y2="2.869415" />
+ <linearGradient
+ id="normal-dark-1">
+ <stop
+ style="stop-color:#2c3133;stop-opacity:1"
+ offset="0"
+ id="stop10216" />
+ <stop
+ id="stop10218"
+ offset="0.2"
+ style="stop-color:#2c3133;stop-opacity:1" />
+ <stop
+ id="stop10220"
+ offset="0.89999998"
+ style="stop-color:#25292b;stop-opacity:1" />
+ <stop
+ style="stop-color:#25292b;stop-opacity:1"
+ offset="1"
+ id="stop10222" />
+ </linearGradient>
+ <linearGradient
+ id="hover-dark-2">
+ <stop
+ style="stop-color:#33393b;stop-opacity:1"
+ offset="0"
+ id="stop10192" />
+ <stop
+ id="stop10194"
+ offset="0.2"
+ style="stop-color:#33393b;stop-opacity:1" />
+ <stop
+ id="stop10196"
+ offset="0.89999998"
+ style="stop-color:#2a2e30;stop-opacity:1" />
+ <stop
+ style="stop-color:#2a2e30;stop-opacity:1"
+ offset="1"
+ id="stop10198" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1404"
+ id="linearGradient5461"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="95.213127"
+ y1="167.30688"
+ x2="95.213127"
+ y2="186.8056" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-dark-2"
+ id="linearGradient5469"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="95.213127"
+ y1="167.30688"
+ x2="95.213127"
+ y2="186.8056" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-dark-2"
+ id="linearGradient5471"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="95.213127"
+ y1="167.30688"
+ x2="95.213127"
+ y2="186.8056" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-dark-2"
+ id="linearGradient5473"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="95.213127"
+ y1="167.30688"
+ x2="95.213127"
+ y2="186.8056" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#hover-dark-2"
+ id="linearGradient5475"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="95.213127"
+ y1="167.30688"
+ x2="95.213127"
+ y2="186.8056" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5840"
+ id="linearGradient5846"
+ x1="185.99971"
+ y1="2.765625"
+ x2="204.00029"
+ y2="2.765625"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#normal-6"
+ id="linearGradient4664-3"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0412002,0,0,1.005979,-228.60065,16.811138)"
+ x1="94.883377"
+ y1="-16.46591"
+ x2="94.883377"
+ y2="2.869415" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1404"
+ id="linearGradient5461-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0326068,0,0,1.0060122,-287.74689,-168.31614)"
+ x1="95.213127"
+ y1="167.30688"
+ x2="95.213127"
+ y2="186.8056" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1404"
+ id="linearGradient1466"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+ x1="98.841484"
+ y1="9.1351471"
+ x2="98.841484"
+ y2="-9.5156794" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1404"
+ id="linearGradient1466-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.0317573,0,0,-1.0053174,-287.84852,12.183925)"
+ x1="98.841484"
+ y1="9.1351471"
+ x2="98.841484"
+ y2="-9.5156794" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.35355339"
+ inkscape:cx="-11.286547"
+ inkscape:cy="658.92774"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ showborder="false"
+ inkscape:window-width="2126"
+ inkscape:window-height="976"
+ inkscape:window-x="2941"
+ inkscape:window-y="86"
+ inkscape:window-maximized="0"
+ inkscape:snap-nodes="false"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-paths="true"
+ inkscape:snap-global="true"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:object-nodes="false">
+ <inkscape:grid
+ type="xygrid"
+ id="grid10919"
+ empspacing="5"
+ visible="true"
+ enabled="true"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="371.875,774.25"
+ id="guide8384"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="371.875,1080.75"
+ orientation="0,1"
+ id="guide4744"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="365.75,1061"
+ orientation="0,1"
+ id="guide4746"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata9897">
+ <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:groupmode="layer"
+ id="layer3"
+ inkscape:label="superbackdrop"
+ style="display:inline">
+ <rect
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#33393b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;enable-background:accumulate"
+ id="rect18026"
+ width="392.87714"
+ height="470"
+ x="-7"
+ y="155.36218"
+ rx="0"
+ ry="0" />
+ <path
+ transform="scale(1,-1)"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;enable-background:accumulate"
+ d="m -7,-155.36218 h 392.87714 v 440 H -7 Z"
+ id="rect18028"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="0"
+ rx="0"
+ y="155.36218"
+ x="385"
+ height="470"
+ width="307"
+ id="rect8047"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;enable-background:accumulate" />
+ <rect
+ ry="0"
+ rx="0"
+ y="-284.63782"
+ x="385.87714"
+ height="440"
+ width="306.12286"
+ id="rect8047-5"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="assets"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline;">
+ <g
+ id="slider-horz-scale-has-marks-below"
+ transform="matrix(1.0002811,0,0,1.0006581,-0.05490768,-20.008041)"
+ inkscape:label="#g5515">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-3"
+ d="m 201.71751,-8.3360861 c -3.70998,-3.7184219 -9.72504,-3.7184169 -13.43502,0 -3.70999,3.718416 -3.70999,9.74716 0,13.46558 L 195,11.862285 201.71751,5.1294939 c 3.70999,-3.718417 3.70999,-9.747159 0,-13.46558 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4664);fill-opacity:1;fill-rule:nonzero;stroke:#1e1c19;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ id="g4740">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+ id="path4552"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cacac8;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99938705;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 Z"
+ id="path4552-6"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99938705;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
+ id="path4720"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="slider-horz-scale-has-marks-above"
+ transform="matrix(1.0002138,0,0,0.99956352,-0.04810496,-20.007174)"
+ inkscape:label="#g5522">
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00027823;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 224.99414,-15.636719 a 0.50018913,0.50018913 0 0 0 -0.34766,0.146485 L 217.92773,-8.75 c -3.90079,3.9140125 -3.90079,10.2734823 0,14.1875003 3.90079,3.914017 10.24375,3.914012 14.14454,0 3.90079,-3.914014 3.90079,-10.2734839 0,-14.1875003 l -6.71875,-6.740234 a 0.50018913,0.50018913 0 0 0 -0.35938,-0.146485 z m 0.006,1.207031 6.36328,6.3867192 c 3.51919,3.5311176 3.51919,9.2423231 0,12.7734381 -3.51918,3.531113 -9.20738,3.531117 -12.72656,0 -3.51919,-3.531119 -3.51919,-9.2423246 0,-12.7734381 L 225,-14.429688 Z"
+ id="path3497-00"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497"
+ d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4664);fill-opacity:1;fill-rule:nonzero;stroke:#1e1c19;stroke-width:1.00058116;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;font-variant-east_asian:normal;vector-effect:none" />
+ <g
+ id="g4740-2"
+ style="display:inline"
+ transform="rotate(180,209.99273,-2.6314087)">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cacac8;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99996773;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+ id="path4552-2"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 Z"
+ id="path4552-6-8"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99996773;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 224.98546,5.3621826 c 2.30863,-10e-7 4.61312,-0.859113 6.375,-2.625 1.88818,-1.8924693 2.75978,-4.4008102 2.625,-6.875 -0.12078,2.1382318 -0.99306,4.239352 -2.625,5.875 -1.76188,1.765887 -4.06637,2.624999 -6.375,2.625 -2.30863,1e-6 -4.61312,-0.859111 -6.375,-2.625 -1.63194,-1.6356505 -2.50422,-3.7367683 -2.625,-5.875 -0.13081,2.4697869 0.7403,4.9860195 2.625,6.875 1.76188,1.765889 4.06637,2.625001 6.375,2.625 z"
+ id="path4552-2-2"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="slider-vert-scale-has-marks-above"
+ transform="matrix(1.0001414,0,0,1.0002705,-0.03409815,-20.012372)"
+ inkscape:label="#g5529">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-9"
+ d="m 261.70963,5.0926506 c 3.7205,-3.709984 3.7205,-9.725048 0,-13.435029 -3.72049,-3.7099796 -9.75259,-3.7099836 -13.47308,0 l -6.73655,6.717515 6.73655,6.717515 c 3.72049,3.70998 9.75259,3.709983 13.47308,-1e-6 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7"
+ d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4664);fill-opacity:1;fill-rule:nonzero;stroke:#1e1c19;stroke-width:1.0002637;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" />
+ <g
+ id="g5028">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cacac8;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99965046;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 z"
+ id="path4906"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99965046;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+ id="path4906-3"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+ id="path4906-6"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="slider-vert-scale-has-marks-below"
+ transform="matrix(1.0001414,0,0,1.0002705,-0.04233296,-20.012372)"
+ inkscape:label="#g5536">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-1"
+ d="m 278.29038,-8.3423784 c -3.7205,3.709985 -3.7205,9.725049 0,13.435029 3.72049,3.709981 9.75259,3.709984 13.47308,0 l 6.73655,-6.717514 -6.73655,-6.717515 c -3.72049,-3.7099796 -9.75259,-3.7099836 -13.47308,0 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0"
+ d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4664);fill-opacity:1;fill-rule:nonzero;stroke:#1e1c19;stroke-width:1.0002637;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;font-variant-east_asian:normal;vector-effect:none" />
+ <g
+ id="g5028-9"
+ style="display:inline"
+ transform="matrix(-1,0,0,1,540.0136,-0.02786437)">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cacac8;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99965046;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 z"
+ id="path4906-0"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99965046;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+ id="path4906-3-6"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+ id="path4906-6-6"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="slider-horz-scale-has-marks-below-dark"
+ inkscape:label="#g5543"
+ transform="matrix(1.0002802,0,0,1.0006911,-0.05474109,-0.13221695)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-2-6"
+ d="m 201.71752,171.66311 c -3.70998,-3.71842 -9.72505,-3.71842 -13.43503,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 l 6.71751,6.73279 6.71752,-6.73279 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-2"
+ d="m 201.71751,170.6638 c -3.70998,-3.71842 -9.72504,-3.71842 -13.43502,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 l 6.71751,6.73279 6.71751,-6.73279 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5461);fill-opacity:1;fill-rule:nonzero;stroke:#626262;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <g
+ transform="translate(0,180)"
+ id="g4740-3"
+ style="display:inline">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+ id="path4552-1"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#1e2122;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99937102;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 Z"
+ id="path4552-6-3"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5846);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99937102;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
+ id="path4720-9"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="slider-horz-scale-has-marks-above-dark"
+ transform="matrix(1.0002676,0,0,0.9996046,-0.0602161,0.06460326)"
+ inkscape:label="#g5550">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-3-3"
+ d="m 218.28249,185.08348 c 3.70998,3.72257 9.72504,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 L 225,164.86258 l -6.71751,6.7403 c -3.70999,3.72257 -3.70999,9.75803 0,13.4806 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-3"
+ d="m 218.28249,184.08308 c 3.70998,3.72257 9.72504,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 L 225,163.86218 l -6.71751,6.7403 c -3.70999,3.72257 -3.70999,9.75803 0,13.4806 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5461);fill-opacity:1;fill-rule:nonzero;stroke:#626262;stroke-width:1.00054956;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" />
+ <g
+ id="g4740-2-9"
+ style="display:inline"
+ transform="rotate(180,209.99273,87.36859)">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#1e2122;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99992029;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+ id="path4552-2-29"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 Z"
+ id="path4552-6-8-0"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2a2e30;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99992029;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 224.98546,185.36218 c 2.30863,0 4.61312,-0.85911 6.375,-2.625 1.88818,-1.89247 2.75978,-4.40081 2.625,-6.875 -0.12078,2.13824 -0.99306,4.23936 -2.625,5.875 -1.76188,1.76589 -4.06637,2.625 -6.375,2.625 -2.30863,0 -4.61312,-0.85911 -6.375,-2.625 -1.63194,-1.63565 -2.50422,-3.73676 -2.625,-5.875 -0.13081,2.46979 0.7403,4.98602 2.625,6.875 1.76188,1.76589 4.06637,2.625 6.375,2.625 z"
+ id="path4552-2-2-8"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="slider-vert-scale-has-marks-above-dark"
+ inkscape:label="#g5557"
+ transform="matrix(1.000141,0,0,1.0002924,-0.03393889,-0.06469591)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-4-6"
+ d="m 261.70974,185.09221 c 3.72049,-3.71 3.72049,-9.72506 0,-13.43503 -3.7205,-3.70999 -9.7526,-3.70999 -13.47308,0 l -6.73655,6.7175 6.73655,6.71753 c 3.72048,3.70997 9.75258,3.70997 13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-4"
+ d="m 261.70963,184.0925 c 3.7205,-3.70999 3.7205,-9.72505 0,-13.43503 -3.72049,-3.70998 -9.75259,-3.70998 -13.47308,0 l -6.73655,6.71751 6.73655,6.71752 c 3.72049,3.70998 9.75259,3.70998 13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5461);fill-opacity:1;fill-rule:nonzero;stroke:#626262;stroke-width:1.00026881;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" />
+ <g
+ transform="translate(0,180)"
+ id="g5028-6"
+ style="display:inline">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#1e2122;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99963972;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 z"
+ id="path4906-8"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2a2e30;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99963972;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+ id="path4906-3-9"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+ id="path4906-6-5"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="slider-vert-scale-has-marks-below-dark"
+ inkscape:label="#g5564"
+ transform="matrix(1.0001409,0,0,1.0002922,-0.04219538,-0.06466128)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-9-4"
+ d="m 278.29047,171.65718 c -3.7205,3.70998 -3.7205,9.72505 0,13.43502 3.72049,3.70999 9.75259,3.70999 13.47308,0 l 6.73655,-6.71751 -6.73655,-6.71751 c -3.72049,-3.70999 -9.75259,-3.71 -13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-9"
+ d="m 278.29038,170.65747 c -3.7205,3.70998 -3.7205,9.72505 0,13.43503 3.72049,3.70998 9.75259,3.70998 13.47308,0 l 6.73655,-6.71752 -6.73655,-6.71751 c -3.72049,-3.70998 -9.75259,-3.70999 -13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5461);fill-opacity:1;fill-rule:nonzero;stroke:#626262;stroke-width:1.00026896;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" />
+ <g
+ id="g5028-9-6"
+ style="display:inline"
+ transform="matrix(-1,0,0,1,540.0136,179.97214)">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#1e2122;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99963987;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 z"
+ id="path4906-0-3"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2a2e30;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99963987;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+ id="path4906-3-6-3"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+ id="path4906-6-6-4"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0.99998303,0,0,1.0006657,0.0033124,9.9919866)"
+ style="display:inline"
+ id="slider-horz-scale-has-marks-below-hover"
+ inkscape:label="#g5515-6">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-3-0"
+ d="m 201.71944,-8.349802 c -3.71103,-3.72087 -9.72778,-3.720865 -13.4388,0 -3.71103,3.720863 -3.71103,9.753574 0,13.474441 l 6.7194,6.737222 6.7194,-6.737222 c 3.71103,-3.720864 3.71103,-9.753573 0,-13.474441 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00046968;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4791);fill-opacity:1;fill-rule:nonzero;stroke:#1e1c19;stroke-width:1.00014535;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1" />
+ <g
+ id="g4740-1">
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+ id="path4552-63" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cfcfcd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99967592;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 Z"
+ id="path4552-6-6" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99967592;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
+ id="path4720-2" />
+ </g>
+ </g>
+ <g
+ style="display:inline"
+ id="slider-horz-scale-has-marks-above-hover"
+ transform="matrix(1,0,0,0.99944391,2.5596046e-6,9.991327)"
+ inkscape:label="#g5522-9">
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00027823;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 224.99414,-15.637108 a 0.50029607,0.50024899 0 0 0 -0.34774,0.146503 l -6.72018,6.74104 c -3.90163,3.914481 -3.90163,10.274713 0,14.189198 3.90162,3.914485 10.24594,3.914481 14.14756,0 3.90162,-3.914481 3.90162,-10.274713 0,-14.189198 l -6.72019,-6.74104 a 0.50029607,0.50024899 0 0 0 -0.35945,-0.146503 z m 0.006,1.207176 6.36464,6.387483 c 3.51994,3.53154 3.51994,9.243429 0,12.774966 -3.51994,3.531536 -9.20935,3.53154 -12.72928,0 -3.51995,-3.531541 -3.51995,-9.24343 0,-12.774966 L 225,-14.429932 Z"
+ id="path3497-00-3"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9"
+ d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4793);fill-opacity:1;fill-rule:nonzero;stroke:#1e1c19;stroke-width:1.00074799;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1" />
+ <g
+ id="g4740-2-0"
+ style="display:inline"
+ transform="rotate(180,209.99273,-2.6314087)">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cfcfcd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00027828;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+ id="path4552-2-8"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 Z"
+ id="path4552-6-8-02"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00027828;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 224.98546,5.3621826 c 2.30863,-10e-7 4.61312,-0.859113 6.375,-2.625 1.88818,-1.8924693 2.75978,-4.4008102 2.625,-6.875 -0.12078,2.1382318 -0.99306,4.239352 -2.625,5.875 -1.76188,1.765887 -4.06637,2.624999 -6.375,2.625 -2.30863,1e-6 -4.61312,-0.859111 -6.375,-2.625 -1.63194,-1.6356505 -2.50422,-3.7367683 -2.625,-5.875 -0.13081,2.4697869 0.7403,4.9860195 2.625,6.875 1.76188,1.765889 4.06637,2.625001 6.375,2.625 z"
+ id="path4552-2-2-9"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(0.99998368,0,0,1.00077,0.00413326,9.9938017)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-above-hover"
+ inkscape:label="#g5529-3">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-9-1"
+ d="m 261.71257,5.081581 c 3.72102,-3.710988 3.72102,-9.727679 0,-13.438663 -3.72102,-3.710983 -9.75397,-3.710987 -13.47499,0 l -6.7375,6.719332 6.7375,6.719332 c 3.72102,3.710984 9.75397,3.710987 13.47499,-1e-6 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00020611;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6"
+ d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4795);fill-opacity:1;fill-rule:nonzero;stroke:#1e1c19;stroke-width:1.0000929;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1" />
+ <g
+ id="g5028-2">
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cfcfcd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9996235;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 z"
+ id="path4906-2" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9996235;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+ id="path4906-3-93" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+ id="path4906-6-54" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0.99998368,0,0,1.00077,0.00468698,9.9938017)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-below-hover"
+ inkscape:label="#g5536-0">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-1-2"
+ d="m 278.28744,-8.357082 c -3.72103,3.710988 -3.72103,9.727679 0,13.438663 3.72102,3.710985 9.75397,3.710988 13.47498,0 l 6.73751,-6.719331 -6.73751,-6.719332 c -3.72101,-3.710983 -9.75396,-3.710987 -13.47498,0 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00020611;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3"
+ d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4797);fill-opacity:1;fill-rule:nonzero;stroke:#1e1c19;stroke-width:1.0000929;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1" />
+ <g
+ id="g5028-9-66"
+ style="display:inline"
+ transform="matrix(-1,0,0,1,540.0136,-0.02786437)">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cfcfcd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9996235;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 z"
+ id="path4906-0-0"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9996235;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+ id="path4906-3-6-8"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+ id="path4906-6-6-1"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ transform="matrix(1.0002802,0,0,1.0006911,-0.05464236,129.99228)"
+ style="display:inline"
+ id="slider-horz-scale-has-marks-below-backdrop-insensitive"
+ inkscape:label="#g5515-6-0-2-0-2">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-5-9-2-9-7"
+ d="m 201.71751,-8.3368901 c -3.70998,-3.7184299 -9.72504,-3.7184199 -13.43502,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 L 195,11.86148 201.71751,5.1286899 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-5-9-2-9"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f1f1f1;fill-opacity:1;fill-rule:nonzero;stroke:#c0c0bd;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <g
+ id="g4740-1-5-6-8-2" />
+ </g>
+ <g
+ style="display:inline"
+ id="slider-horz-scale-has-marks-above-backdrop-insensitive"
+ transform="matrix(1.0002676,0,0,0.99960478,-0.06021218,129.99342)"
+ inkscape:label="#g5522-9-5-3-0-5">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-4-8-8-9-7"
+ d="m 218.28249,5.0834806 c 3.70998,3.72256 9.72504,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 L 225,-15.13742 l -6.71751,6.7403006 c -3.70999,3.72256 -3.70999,9.75803 0,13.4806 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-4-8-8-9"
+ d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f1f1f1;fill-opacity:1;fill-rule:nonzero;stroke:#c0c0bd;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ </g>
+ <g
+ transform="matrix(1.000141,0,0,1.0002922,-0.03393584,129.98793)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-above-backdrop-insensitive"
+ inkscape:label="#g5529-3-5-9-3-7">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-5-0-0-3-6"
+ d="m 261.70963,5.0922061 c 3.7205,-3.70998 3.7205,-9.72505 0,-13.43503 -3.72049,-3.7099801 -9.75259,-3.7099801 -13.47308,0 l -6.73655,6.71752 6.73655,6.71751 c 3.72049,3.70998 9.75259,3.70998 13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-5-0-0-3"
+ d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f1f1f1;fill-opacity:1;fill-rule:nonzero;stroke:#c0c0bd;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ </g>
+ <g
+ transform="matrix(1.000141,0,0,1.0002922,-0.04217992,129.98793)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-below-backdrop-insensitive"
+ inkscape:label="#g5536-0-7-4-3-7">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-4-7-7-2-9"
+ d="m 278.29038,-8.3428239 c -3.7205,3.70998 -3.7205,9.72505 0,13.43503 3.72049,3.70998 9.75259,3.70998 13.47308,0 l 6.73655,-6.71751 -6.73655,-6.71752 c -3.72049,-3.7099801 -9.75259,-3.7099801 -13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-4-7-7-2"
+ d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f1f1f1;fill-opacity:1;fill-rule:nonzero;stroke:#c0c0bd;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ </g>
+ <g
+ transform="matrix(1.0002802,0,0,1.0006911,-0.05464064,29.867882)"
+ style="display:inline"
+ id="slider-horz-scale-has-marks-below-hover-dark"
+ inkscape:label="#g5543-1">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-2-0-5"
+ d="m 201.71752,171.6632 c -3.70999,-3.71842 -9.72505,-3.71842 -13.43503,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 l 6.71751,6.73279 6.71752,-6.73279 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-2-0"
+ d="m 201.71751,170.6638 c -3.70998,-3.71842 -9.72504,-3.71842 -13.43502,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 l 6.71751,6.73279 6.71751,-6.73279 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5475);fill-opacity:1;fill-rule:nonzero;stroke:#626262;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1" />
+ <g
+ transform="translate(0,180)"
+ id="g4740-3-3"
+ style="display:inline">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+ id="path4552-1-8"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 Z"
+ id="path4552-6-3-2"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#2c3133;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99951473;marker:none;enable-background:accumulate;clip-rule:nonzero;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
+ id="path4720-9-9"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ style="display:inline"
+ id="slider-horz-scale-has-marks-above-hover-dark"
+ transform="matrix(1.0002676,0,0,0.99960459,-0.06021476,30.064604)"
+ inkscape:label="#g5550-2">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-3-5-4"
+ d="m 218.28287,185.08325 c 3.70999,3.72257 9.72505,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 l -6.71751,-6.74029 -6.71751,6.74029 c -3.70999,3.72257 -3.70999,9.75803 0,13.4806 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00027823;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-3-5"
+ d="m 218.28249,184.08308 c 3.70998,3.72257 9.72504,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 L 225,163.86218 l -6.71751,6.7403 c -3.70999,3.72257 -3.70999,9.75803 0,13.4806 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5473);fill-opacity:1;fill-rule:nonzero;stroke:#626262;stroke-width:1.00054957;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1" />
+ <g
+ id="g4740-2-9-6"
+ style="display:inline"
+ transform="rotate(180,209.99273,87.36859)">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+ id="path4552-2-29-7"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 Z"
+ id="path4552-6-8-0-8"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#2c3133;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00006408;marker:none;enable-background:accumulate;clip-rule:nonzero;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 224.98546,185.36218 c 2.30863,0 4.61312,-0.85911 6.375,-2.625 1.88818,-1.89247 2.75978,-4.40081 2.625,-6.875 -0.12078,2.13824 -0.99306,4.23936 -2.625,5.875 -1.76188,1.76589 -4.06637,2.625 -6.375,2.625 -2.30863,0 -4.61312,-0.85911 -6.375,-2.625 -1.63194,-1.63565 -2.50422,-3.73676 -2.625,-5.875 -0.13081,2.46979 0.7403,4.98602 2.625,6.875 1.76188,1.76589 4.06637,2.625 6.375,2.625 z"
+ id="path4552-2-2-8-9"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(1.000141,0,0,1.0002924,-0.03393642,29.935304)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-above-hover-dark"
+ inkscape:label="#g5557-6">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-4-4-7"
+ d="m 261.70973,185.09221 c 3.7205,-3.71 3.7205,-9.72506 0,-13.43503 -3.72048,-3.70999 -9.75258,-3.70999 -13.47308,0 l -6.73655,6.7175 6.73655,6.71753 c 3.7205,3.70997 9.7526,3.70997 13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-4-4"
+ d="m 261.70963,184.0925 c 3.7205,-3.70999 3.7205,-9.72505 0,-13.43503 -3.72049,-3.70998 -9.75259,-3.70998 -13.47308,0 l -6.73655,6.71751 6.73655,6.71752 c 3.72049,3.70998 9.75259,3.70998 13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5471);fill-opacity:1;fill-rule:nonzero;stroke:#626262;stroke-width:1.00026881;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1" />
+ <g
+ transform="translate(0,180)"
+ id="g5028-6-2"
+ style="display:inline">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 z"
+ id="path4906-8-0"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#2c3133;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99978347;marker:none;enable-background:accumulate;clip-rule:nonzero;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+ id="path4906-3-9-2"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+ id="path4906-6-5-4"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ transform="matrix(1.0001409,0,0,1.0002922,-0.04219538,29.935339)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-below-hover-dark"
+ inkscape:label="#g5564-7">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-9-0-65"
+ d="m 278.29047,171.65717 c -3.7205,3.70998 -3.7205,9.72505 0,13.43503 3.72049,3.70998 9.75259,3.70998 13.47308,0 l 6.73655,-6.71752 -6.73655,-6.71751 c -3.72049,-3.70997 -9.75259,-3.70998 -13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-9-0"
+ d="m 278.29038,170.65747 c -3.7205,3.70998 -3.7205,9.72505 0,13.43503 3.72049,3.70998 9.75259,3.70998 13.47308,0 l 6.73655,-6.71752 -6.73655,-6.71751 c -3.72049,-3.70998 -9.75259,-3.70999 -13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5469);fill-opacity:1;fill-rule:nonzero;stroke:#626262;stroke-width:1.00026896;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1" />
+ <g
+ id="g5028-9-6-2"
+ style="display:inline"
+ transform="matrix(-1,0,0,1,540.0136,179.97214)">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 z"
+ id="path4906-0-3-4"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#2c3133;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99978362;marker:none;enable-background:accumulate;clip-rule:nonzero;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+ id="path4906-3-6-3-4"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+ id="path4906-6-6-4-9"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ transform="matrix(1.0002809,0,0,1.0006629,-0.0548708,99.991951)"
+ style="display:inline"
+ id="slider-horz-scale-has-marks-below-backdrop"
+ inkscape:label="#g5515-6-0-2-0-2-6">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-5-9-2-9-6"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e8e8e7;fill-opacity:1;fill-rule:nonzero;stroke:#c0c0bd;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-5-9-2-9-6-1"
+ d="m 201.71751,-8.3362051 c -3.70998,-3.7184209 -9.72504,-3.7184209 -13.43502,0 -3.70999,3.718416 -3.70999,9.7471599 0,13.46558 L 195,11.862166 201.71751,5.1293749 c 3.70999,-3.718417 3.70999,-9.747159 0,-13.46558 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ </g>
+ <g
+ style="display:inline"
+ id="slider-horz-scale-has-marks-above-backdrop"
+ transform="matrix(0.99999653,0,0,0.99957998,7.8428411e-4,99.993541)"
+ inkscape:label="#g5522-9-5-3-0-5-1">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-4-8-8-9-2"
+ d="m 218.28068,4.0858464 c 3.71097,3.72314 9.72765,3.7231365 13.43862,0 3.71098,-3.72313657 3.71098,-9.7595303 0,-13.4826702 l -6.71931,-6.7413352 -6.71931,6.7413352 c -3.71099,3.7231364 -3.71099,9.75953015 0,13.4826702 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e8e8e7;fill-opacity:1;fill-rule:nonzero;stroke:#c0c0bd;stroke-width:1.00048888;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-4-8-8-9-2-0"
+ d="m 218.28249,5.083628 c 3.70998,3.72257 9.72504,3.72257 13.43502,0 3.70999,-3.72256 3.70999,-9.758027 0,-13.480595 L 225,-15.137265 l -6.71751,6.740298 c -3.70999,3.722564 -3.70999,9.758025 0,13.480595 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.000278;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ </g>
+ <g
+ transform="matrix(1.0001473,0,0,0.99999643,-0.03552362,99.990034)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-above-backdrop"
+ inkscape:label="#g5529-3-5-9-3-7-0">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-5-0-0-3-5-4"
+ d="m 261.70963,5.0925019 c 3.7205,-3.709984 3.7205,-9.725048 0,-13.435029 -3.72049,-3.7099789 -9.75259,-3.7099889 -13.47308,0 l -6.73655,6.717515 6.73655,6.717514 c 3.72049,3.709981 9.75259,3.709984 13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-5-0-0-3-5"
+ d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e8e8e7;fill-opacity:1;fill-rule:nonzero;stroke:#c0c0bd;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ </g>
+ <g
+ transform="matrix(1.0001474,0,0,1.0002882,-0.0439831,99.987922)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-below-backdrop"
+ inkscape:label="#g5536-0-7-4-3-7-2">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-4-7-7-2-0-5"
+ d="m 278.29038,-8.3428188 c -3.7205,3.709985 -3.7205,9.725048 0,13.435029 3.72049,3.709981 9.75259,3.709984 13.47308,0 l 6.73655,-6.717514 -6.73655,-6.717515 c -3.72049,-3.7099852 -9.75259,-3.7099852 -13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-4-7-7-2-0"
+ d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e8e8e7;fill-opacity:1;fill-rule:nonzero;stroke:#c0c0bd;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ </g>
+ <g
+ transform="matrix(1.0002804,0,0,1.000663,-0.0546868,69.99195)"
+ style="display:inline"
+ id="slider-horz-scale-has-marks-below-insensitive"
+ inkscape:label="#g5515-6-0-2-0-2-6-1">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-5-9-2-9-6-5-7"
+ d="m 201.71752,-8.3362062 c -3.70998,-3.7184218 -9.72505,-3.7184168 -13.43503,0 -3.70999,3.718416 -3.70999,9.74716 0,13.46558 L 195,11.862165 201.71752,5.1293738 c 3.70999,-3.718417 3.70999,-9.747159 0,-13.46558 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-5-9-2-9-6-5"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f1f1f1;fill-opacity:1;fill-rule:nonzero;stroke:#b6b6b3;stroke-width:0.99952848;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
+ </g>
+ <g
+ style="display:inline"
+ id="slider-horz-scale-has-marks-above-insensitive"
+ transform="matrix(1.0002678,0,0,0.99959816,-0.06024983,69.993323)"
+ inkscape:label="#g5522-9-5-3-0-5-1-0">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-4-8-8-9-2-7-8"
+ d="m 218.28249,5.0836351 c 3.70998,3.722567 9.72504,3.722563 13.43502,0 3.70999,-3.7225641 3.70999,-9.75803 0,-13.480597 L 225,-15.137261 l -6.71751,6.7402991 c -3.70999,3.722563 -3.70999,9.7580289 0,13.480597 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-4-8-8-9-2-7"
+ d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f1f1f1;fill-opacity:1;fill-rule:nonzero;stroke:#b6b6b3;stroke-width:1.00006702;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
+ </g>
+ <g
+ transform="matrix(1.0001413,0,0,1.0002778,-0.03401324,69.987751)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-above-insensitive"
+ inkscape:label="#g5529-3-5-9-3-7-0-9">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-5-0-0-3-5-3-0"
+ d="m 261.70963,5.0925005 c 3.7205,-3.709984 3.7205,-9.725048 0,-13.435029 -3.72049,-3.7099805 -9.75259,-3.7099845 -13.47308,0 l -6.73655,6.717515 6.73655,6.717514 c 3.72049,3.709981 9.75259,3.709984 13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-5-0-0-3-5-3"
+ d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f1f1f1;fill-opacity:1;fill-rule:nonzero;stroke:#b6b6b3;stroke-width:0.99979044;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
+ </g>
+ <g
+ transform="matrix(1.0001413,0,0,1.0002778,-0.04226775,69.987751)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-below-insensitive"
+ inkscape:label="#g5536-0-7-4-3-7-2-8">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-4-7-7-2-0-8-6"
+ d="m 278.29038,-8.3425285 c -3.7205,3.709985 -3.7205,9.725048 0,13.435029 3.72049,3.709981 9.75259,3.709984 13.47308,0 l 6.73655,-6.717514 -6.73655,-6.717515 c -3.72049,-3.7099805 -9.75259,-3.7099845 -13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#f1f1f1;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-4-7-7-2-0-8"
+ d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f1f1f1;fill-opacity:1;fill-rule:nonzero;stroke:#b6b6b3;stroke-width:0.99979044;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
+ </g>
+ <g
+ transform="matrix(1.0002802,0,0,1.0006911,-0.05464293,329.99228)"
+ style="display:inline"
+ id="slider-horz-scale-has-marks-below-backdrop-insensitive-dark"
+ inkscape:label="#g5515-6-0-2-0-2-66">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-5-9-2-9-8-7"
+ d="m 201.71751,-8.3368039 c -3.70998,-3.7184201 -9.72504,-3.7184201 -13.43502,0 -3.70999,3.71842 -3.70999,9.74716 0,13.46557 L 195,11.861566 201.71751,5.1287661 c 3.70999,-3.71841 3.70999,-9.74715 0,-13.46557 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-5-9-2-9-8"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2d3234;fill-opacity:1;fill-rule:nonzero;stroke:#414547;stroke-width:0.99972862;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;font-variant-east_asian:normal;vector-effect:none" />
+ <g
+ id="g4740-1-5-6-8-2-4" />
+ </g>
+ <g
+ style="display:inline"
+ id="slider-horz-scale-has-marks-above-backdrop-insensitive-dark"
+ transform="matrix(1.0002676,0,0,0.99960478,-0.06021352,329.99342)"
+ inkscape:label="#g5522-9-5-3-0-5-7">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-4-8-8-9-4-9"
+ d="m 218.28287,5.0832504 c 3.70998,3.72257 9.72505,3.72257 13.43502,0 3.70999,-3.72256 3.70999,-9.75802 0,-13.48059 l -6.71751,-6.7403104 -6.71751,6.7403104 c -3.70999,3.72256 -3.70999,9.75802 0,13.48059 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.000278;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-4-8-8-9-4"
+ d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2d3234;fill-opacity:1;fill-rule:nonzero;stroke:#414547;stroke-width:1.000278;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;font-variant-east_asian:normal;vector-effect:none" />
+ </g>
+ <g
+ transform="matrix(1.000141,0,0,1.0002922,-0.03393652,329.98793)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-above-backdrop-insensitive-dark"
+ inkscape:label="#g5529-3-5-9-3-7-2">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-5-0-0-3-3-8"
+ d="m 261.70973,5.0922 c 3.7205,-3.70998 3.7205,-9.72504 0,-13.43503 -3.72048,-3.70998 -9.75259,-3.70999 -13.47308,0 l -6.73655,6.71752 6.73655,6.71751 c 3.72049,3.70998 9.7526,3.70999 13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-5-0-0-3-3"
+ d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2d3234;fill-opacity:1;fill-rule:nonzero;stroke:#414547;stroke-width:0.99999752;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;font-variant-east_asian:normal;vector-effect:none" />
+ </g>
+ <g
+ transform="matrix(1.000141,0,0,1.0002922,-0.04218062,329.98793)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-below-backdrop-insensitive-dark"
+ inkscape:label="#g5536-0-7-4-3-7-0">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-4-7-7-2-5-3"
+ d="m 278.29046,-8.3428304 c -3.72049,3.70998 -3.72049,9.72505 0,13.43503 3.7205,3.70998 9.7526,3.70999 13.4731,0 l 6.73655,-6.71751 -6.73655,-6.71752 c -3.7205,-3.7099796 -9.7526,-3.7099896 -13.4731,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-4-7-7-2-5"
+ d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2d3234;fill-opacity:1;fill-rule:nonzero;stroke:#414547;stroke-width:0.99999752;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;font-variant-east_asian:normal;vector-effect:none" />
+ </g>
+ <g
+ transform="matrix(1.0002802,0,0,1.0006911,-0.05474131,299.99228)"
+ style="display:inline"
+ id="slider-horz-scale-has-marks-below-backdrop-dark"
+ inkscape:label="#g5515-6-0-2-0-2-6-7">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-5-9-2-9-6-2-1"
+ d="m 201.71752,-8.3368036 c -3.70998,-3.7184204 -9.72505,-3.7184204 -13.43503,0 -3.70999,3.71842 -3.70999,9.74716 0,13.46557 L 195,11.861566 201.71752,5.1287664 c 3.70998,-3.71841 3.70998,-9.74715 0,-13.46557 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-5-9-2-9-6-2"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#33393b;fill-opacity:1;fill-rule:nonzero;stroke:#414547;stroke-width:0.99972862;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" />
+ <g
+ id="g4740-1-5-6-8-2-3-7" />
+ </g>
+ <g
+ style="display:inline"
+ id="slider-horz-scale-has-marks-above-backdrop-dark"
+ transform="matrix(1.0002676,0,0,0.99960478,-0.06021352,299.99342)"
+ inkscape:label="#g5522-9-5-3-0-5-1-4">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-4-8-8-9-2-6-1"
+ d="m 218.28287,5.0832604 c 3.70998,3.72256 9.72505,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 l -6.71751,-6.7403104 -6.71751,6.7403104 c -3.70999,3.72256 -3.70999,9.75802 0,13.4806 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.000278;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-4-8-8-9-2-6"
+ d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#33393b;fill-opacity:1;fill-rule:nonzero;stroke:#414547;stroke-width:1.000278;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ </g>
+ <g
+ transform="matrix(1.000141,0,0,1.0002922,-0.03393652,299.98793)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-above-backdrop-dark"
+ inkscape:label="#g5529-3-5-9-3-7-0-7">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-5-0-0-3-5-30-7"
+ d="m 261.70973,5.0922 c 3.7205,-3.70999 3.7205,-9.72505 0,-13.43503 -3.72048,-3.70998 -9.75259,-3.70999 -13.47308,0 l -6.73655,6.71751 6.73655,6.71752 c 3.72049,3.70998 9.7526,3.70999 13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-5-0-0-3-5-30"
+ d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#33393b;fill-opacity:1;fill-rule:nonzero;stroke:#414547;stroke-width:0.99999752;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" />
+ </g>
+ <g
+ transform="matrix(1.000141,0,0,1.0002922,-0.04218062,299.98793)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-below-backdrop-dark"
+ inkscape:label="#g5536-0-7-4-3-7-2-0">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-4-7-7-2-0-87-1"
+ d="m 278.29046,-8.3428304 c -3.72049,3.70998 -3.72049,9.72504 0,13.43503 3.7205,3.70998 9.7526,3.70999 13.47309,0 l 6.73655,-6.71752 -6.73655,-6.71751 c -3.72049,-3.7099796 -9.75259,-3.7099896 -13.47309,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-4-7-7-2-0-87"
+ d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#33393b;fill-opacity:1;fill-rule:nonzero;stroke:#414547;stroke-width:0.99999752;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;font-variant-east_asian:normal;opacity:1;vector-effect:none" />
+ </g>
+ <g
+ transform="matrix(1.0002802,0,0,1.0006911,-0.05464236,269.99228)"
+ style="display:inline"
+ id="slider-horz-scale-has-marks-below-insensitive-dark"
+ inkscape:label="#g5515-6-0-2-0-2-6-1-1">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-5-9-2-9-6-5-3-8"
+ d="m 201.71751,-8.3368039 c -3.70998,-3.7184201 -9.72504,-3.7184201 -13.43502,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46557 L 195,11.861566 201.71751,5.1287661 c 3.70999,-3.71841 3.70999,-9.74715 0,-13.46557 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-5-9-2-9-6-5-3"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2d3234;fill-opacity:1;fill-rule:nonzero;stroke:#1b1f20;stroke-width:0.99951455;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
+ <g
+ id="g4740-1-5-6-8-2-3-9-6" />
+ </g>
+ <g
+ style="display:inline"
+ id="slider-horz-scale-has-marks-above-insensitive-dark"
+ transform="matrix(1.0002676,0,0,0.99960478,-0.06021218,269.99342)"
+ inkscape:label="#g5522-9-5-3-0-5-1-0-1">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-4-8-8-9-2-7-2-1"
+ d="m 218.28287,5.0832505 c 3.70998,3.72256 9.72504,3.72256 13.43502,0 3.70999,-3.72256 3.70999,-9.75804 0,-13.4806 l -6.71751,-6.7403005 -6.71751,6.7403005 c -3.70999,3.72256 -3.70999,9.75803 0,13.4806 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-4-8-8-9-2-7-2"
+ d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2d3234;fill-opacity:1;fill-rule:nonzero;stroke:#1b1f20;stroke-width:1.00006381;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
+ </g>
+ <g
+ transform="matrix(1.000141,0,0,1.0002922,-0.03393593,269.98793)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-above-insensitive-dark"
+ inkscape:label="#g5529-3-5-9-3-7-0-9-7">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-5-0-0-3-5-3-6-7"
+ d="m 261.70973,5.0922025 c 3.72051,-3.70999 3.72051,-9.72505 0,-13.43504 -3.72048,-3.7099705 -9.75258,-3.7099805 -13.47308,0 l -6.73655,6.71752 6.73655,6.71752 c 3.7205,3.70997 9.7526,3.70998 13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-5-0-0-3-5-3-6"
+ d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2d3234;fill-opacity:1;fill-rule:nonzero;stroke:#1b1f20;stroke-width:0.99978339;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
+ </g>
+ <g
+ transform="matrix(1.000141,0,0,1.0002922,-0.04217992,269.98793)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-below-insensitive-dark"
+ inkscape:label="#g5536-0-7-4-3-7-2-8-0">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-4-7-7-2-0-8-5-0"
+ d="m 278.29046,-8.3428376 c -3.72049,3.70999 -3.72049,9.72505 0,13.43504 3.7205,3.70997 9.7526,3.70998 13.47309,0 l 6.73655,-6.71752 -6.73655,-6.71752 c -3.72049,-3.7099704 -9.75259,-3.7099804 -13.47309,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-4-7-7-2-0-8-5"
+ d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2d3234;fill-opacity:1;fill-rule:nonzero;stroke:#1b1f20;stroke-width:0.99978339;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
+ </g>
+ <g
+ transform="matrix(0.99998303,0,0,1.0006657,0.00331234,39.991987)"
+ style="display:inline"
+ id="slider-horz-scale-has-marks-below-active"
+ inkscape:label="#g5515-6-7">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-3-0-7"
+ d="m 201.71944,-8.349802 c -3.71103,-3.72087 -9.72778,-3.720865 -13.4388,0 -3.71103,3.720863 -3.71103,9.753574 0,13.474441 l 6.7194,6.737222 6.7194,-6.737222 c 3.71103,-3.720864 3.71103,-9.753574 0,-13.474441 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00046968;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-5-8"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient7117-1-6);fill-opacity:1.0;fill-rule:nonzero;stroke:#184472;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <g
+ id="g4740-1-7">
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+ id="path4552-63-8" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cfcfcd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99967593;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 Z"
+ id="path4552-6-6-4" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9996759;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
+ id="path4720-2-1" />
+ </g>
+ </g>
+ <g
+ style="display:inline"
+ id="slider-horz-scale-has-marks-above-active"
+ transform="matrix(1,0,0,0.99944391,2.4701977e-6,39.991327)"
+ inkscape:label="#g5522-9-5">
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00027823;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 224.99414,-15.637108 a 0.50029607,0.50024899 0 0 0 -0.34774,0.146502 l -6.72018,6.7410411 c -3.90163,3.914481 -3.90163,10.274713 0,14.189198 3.90162,3.914485 10.24594,3.914481 14.14756,0 3.90162,-3.914481 3.90162,-10.274713 0,-14.189198 l -6.72019,-6.7410411 a 0.50029607,0.50024899 0 0 0 -0.35945,-0.146502 z m 0.006,1.207175 6.36464,6.3874831 c 3.51994,3.531541 3.51994,9.24343 0,12.774967 -3.51994,3.531536 -9.20935,3.53154 -12.72928,0 -3.51995,-3.531541 -3.51995,-9.24343 0,-12.774967 L 225,-14.429933 Z"
+ id="path3497-00-3-2"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-9-7"
+ d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient7117-1-5-5);fill-opacity:1.0;fill-rule:nonzero;stroke:#184472;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <g
+ id="g4740-2-0-6"
+ style="display:inline"
+ transform="rotate(180,209.99273,-2.6314087)">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cfcfcd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00027829;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+ id="path4552-2-8-2"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 Z"
+ id="path4552-6-8-02-1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00027826;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 224.98546,5.3621826 c 2.30863,-10e-7 4.61312,-0.859113 6.375,-2.625 1.88818,-1.8924693 2.75978,-4.4008102 2.625,-6.875 -0.12078,2.1382318 -0.99306,4.239352 -2.625,5.875 -1.76188,1.765887 -4.06637,2.624999 -6.375,2.625 -2.30863,1e-6 -4.61312,-0.859111 -6.375,-2.625 -1.63194,-1.6356505 -2.50422,-3.7367683 -2.625,-5.875 -0.13081,2.4697869 0.7403,4.9860195 2.625,6.875 1.76188,1.765889 4.06637,2.625001 6.375,2.625 z"
+ id="path4552-2-2-9-1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(0.99998368,0,0,1.00077,0.00413325,39.993802)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-above-active"
+ inkscape:label="#g5529-3-1">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-9-1-9"
+ d="m 261.71257,5.0815807 c 3.72102,-3.710988 3.72102,-9.727679 0,-13.438663 -3.72102,-3.7109827 -9.75397,-3.7109867 -13.47499,0 l -6.7375,6.719332 6.7375,6.719332 c 3.72102,3.710984 9.75397,3.710987 13.47499,-1e-6 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00020611;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-6-6"
+ d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient7117-1-3-7);fill-opacity:1.0;fill-rule:nonzero;stroke:#184472;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <g
+ id="g5028-2-8">
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cfcfcd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99962351;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 z"
+ id="path4906-2-3" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99962348;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+ id="path4906-3-93-8" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+ id="path4906-6-54-5" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0.99998368,0,0,1.00077,0.00468698,39.993802)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-below-active"
+ inkscape:label="#g5536-0-2">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-1-2-9"
+ d="m 278.28744,-8.3570823 c -3.72103,3.710988 -3.72103,9.727679 0,13.438663 3.72102,3.710985 9.75397,3.710988 13.47498,0 l 6.73751,-6.719331 -6.73751,-6.719332 c -3.72101,-3.7109827 -9.75396,-3.7109867 -13.47498,0 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00020611;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-3-3"
+ d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient7117-1-2-4);fill-opacity:1.0;fill-rule:nonzero;stroke:#184472;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <g
+ id="g5028-9-66-6"
+ style="display:inline"
+ transform="matrix(-1,0,0,1,540.0136,-0.02786437)">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cfcfcd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99962351;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 z"
+ id="path4906-0-0-7"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99962348;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+ id="path4906-3-6-8-7"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+ id="path4906-6-6-1-9"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ transform="matrix(1.0002802,0,0,1.0006911,-0.05464064,59.867882)"
+ style="display:inline"
+ id="slider-horz-scale-has-marks-below-active-dark"
+ inkscape:label="#g5543-1-3">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-2-0-3-9"
+ d="m 201.71752,171.6632 c -3.70999,-3.71842 -9.72505,-3.71842 -13.43503,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 l 6.71751,6.73279 6.71752,-6.73279 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-8-2-0-3"
+ d="m 201.71751,170.6638 c -3.70998,-3.71842 -9.72504,-3.71842 -13.43502,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 l 6.71751,6.73279 6.71751,-6.73279 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient7101-3-0);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <g
+ transform="translate(0,180)"
+ id="g4740-3-3-5"
+ style="display:inline">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+ id="path4552-1-8-7"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#25292b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99951473;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 Z"
+ id="path4552-6-3-2-6"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#2c3133;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99951473;marker:none;enable-background:accumulate;clip-rule:nonzero;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
+ id="path4720-9-9-2"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ style="display:inline"
+ id="slider-horz-scale-has-marks-above-active-dark"
+ transform="matrix(1.0002676,0,0,0.99960459,-0.06021476,60.064604)"
+ inkscape:label="#g5550-2-6">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-3-5-7-4"
+ d="m 218.28287,185.08325 c 3.70999,3.72257 9.72505,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 l -6.71751,-6.74029 -6.71751,6.74029 c -3.70999,3.72257 -3.70999,9.75803 0,13.4806 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00027823;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-3-5-7"
+ d="m 218.28249,184.08308 c 3.70998,3.72257 9.72504,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 L 225,163.86218 l -6.71751,6.7403 c -3.70999,3.72257 -3.70999,9.75803 0,13.4806 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient7101-3-0-6);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00027823;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <g
+ id="g4740-2-9-6-9"
+ style="display:inline"
+ transform="rotate(180,209.99273,87.36859)">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#25292b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00006408;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+ id="path4552-2-29-7-3"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 Z"
+ id="path4552-6-8-0-8-9"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#2c3133;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00006408;marker:none;enable-background:accumulate;clip-rule:nonzero;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 224.98546,185.36218 c 2.30863,0 4.61312,-0.85911 6.375,-2.625 1.88818,-1.89247 2.75978,-4.40081 2.625,-6.875 -0.12078,2.13824 -0.99306,4.23936 -2.625,5.875 -1.76188,1.76589 -4.06637,2.625 -6.375,2.625 -2.30863,0 -4.61312,-0.85911 -6.375,-2.625 -1.63194,-1.63565 -2.50422,-3.73676 -2.625,-5.875 -0.13081,2.46979 0.7403,4.98602 2.625,6.875 1.76188,1.76589 4.06637,2.625 6.375,2.625 z"
+ id="path4552-2-2-8-9-0"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(1.000141,0,0,1.0002924,-0.03393642,59.935304)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-above-active-dark"
+ inkscape:label="#g5557-6-9">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-4-4-6-2"
+ d="m 261.70973,185.09221 c 3.7205,-3.71 3.7205,-9.72506 0,-13.43503 -3.72048,-3.70999 -9.75258,-3.70999 -13.47308,0 l -6.73655,6.7175 6.73655,6.71753 c 3.7205,3.70997 9.7526,3.70997 13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-7-4-4-6"
+ d="m 261.70963,184.0925 c 3.7205,-3.70999 3.7205,-9.72505 0,-13.43503 -3.72049,-3.70998 -9.75259,-3.70998 -13.47308,0 l -6.73655,6.71751 6.73655,6.71752 c 3.72049,3.70998 9.75259,3.70998 13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient7101-3-0-9);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <g
+ transform="translate(0,180)"
+ id="g5028-6-2-0"
+ style="display:inline">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#25292b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99978347;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 z"
+ id="path4906-8-0-7"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#2c3133;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99978347;marker:none;enable-background:accumulate;clip-rule:nonzero;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+ id="path4906-3-9-2-7"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+ id="path4906-6-5-4-7"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ transform="matrix(1.0001409,0,0,1.0002922,-0.04217816,59.935339)"
+ style="display:inline"
+ id="slider-vert-scale-has-marks-below-active-dark"
+ inkscape:label="#g5564-7-7">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-9-0-6-9"
+ d="m 278.29048,171.65717 c -3.72051,3.70998 -3.72051,9.72505 0,13.43503 3.72048,3.70998 9.75259,3.70998 13.47308,0 l 6.73655,-6.71752 -6.73655,-6.71751 c -3.72049,-3.70997 -9.7526,-3.70998 -13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3497-0-9-0-6"
+ d="m 278.29038,170.65747 c -3.7205,3.70998 -3.7205,9.72505 0,13.43503 3.72049,3.70998 9.75259,3.70998 13.47308,0 l 6.73655,-6.71752 -6.73655,-6.71751 c -3.72049,-3.70998 -9.75259,-3.70999 -13.47308,0 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient7101-3-0-4);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <g
+ id="g5028-9-6-2-0"
+ style="display:inline"
+ transform="matrix(-1,0,0,1,540.0136,179.97214)">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#25292b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99978362;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 z"
+ id="path4906-0-3-4-4"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#2c3133;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99978362;marker:none;enable-background:accumulate;clip-rule:nonzero;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+ id="path4906-3-6-3-4-3"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
+ d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+ id="path4906-6-6-4-9-3"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:label="#g10801"
+ transform="matrix(1.9947791,0,0,1.9939719,354.38167,165.09433)"
+ id="sjhgfjsgf" />
+ <g
+ id="text-select-end"
+ transform="rotate(180,270.01517,-10.637818)"
+ inkscape:label="#g5515">
+ <path
+ sodipodi:nodetypes="ssscss"
+ inkscape:connector-curvature="0"
+ id="path10579"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -4.20188,13.4440732 3.62392,16.0288414 l 12.62392,4.1695293 -0.16117,-6.7327914 c -0.1257,-5.251176 1.05834,-9.7471583 -2.65165,-13.4655793 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4750);fill-opacity:1;fill-rule:nonzero;stroke:#1e1c19;stroke-width:1.0004697;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;font-variant-east_asian:normal" />
+ <g
+ id="g10581">
+ <path
+ inkscape:connector-curvature="0"
+ id="path10630"
+ d="m 195,-11.560975 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625001 -1.88818,1.8924693 -2.53881,4.5333927 -2.40403,7.0075825 0.12078,-2.1382318 0.77209,-4.3719345 2.40403,-6.0075825 1.76188,-1.7658876 4.06637,-2.625 6.375,-2.625001 2.30863,-1e-6 4.61312,0.8591114 6.375,2.625001 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.76589 -4.06637,-2.625002 -6.375,-2.625001 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cacac8;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99985634;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter-blend-mode:normal;filter-gaussianBlur-deviation:0"
+ sodipodi:nodetypes="sscssscss" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99985634;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ d="m 195,-10.500316 c -2.30863,10e-7 -4.61312,0.8591138 -6.375,2.6250022 -1.88818,1.8924693 -2.49461,4.3124219 -2.35983,6.7866117 0.12078,-2.1382318 0.72789,-4.1509637 2.35983,-5.7866117 1.76188,-1.7658876 4.06637,-2.6250004 6.375,-2.6250014 2.30863,-1e-6 4.61312,0.8591118 6.375,2.6250014 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.7658904 -4.06637,-2.6250032 -6.375,-2.6250022 z"
+ id="path10583"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sscssscss" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 186.22098,-1.1362622 c 0.113,2.1497091 2.0766,6.5869279 6.51409,7.5414344 L 203.97227,9.7763966 204,-2.4178932 c -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 L 203.08839,8.715736 192.91183,5.7587256 c -5.47891,-1.2800965 -6.69085,-6.8949878 -6.69085,-6.8949878 z"
+ id="path10587"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ y="-12.637817"
+ x="185"
+ height="24"
+ width="20"
+ id="rect10589"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="#g5515"
+ transform="rotate(180,270.01517,19.362182)"
+ id="text-select-end-active">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient10617);fill-opacity:1.0;fill-rule:nonzero;stroke:#184472;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -4.20188,13.4440732 3.62392,16.0288414 l 12.62392,4.1695293 -0.16117,-6.7327914 c -0.1257,-5.251176 1.05834,-9.7471583 -2.65165,-13.4655793 z"
+ id="path10593"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ssscss" />
+ <g
+ id="g10595">
+ <path
+ inkscape:connector-curvature="0"
+ id="path10597"
+ d="m 195,-10.146756 c -2.30863,10e-7 -4.61312,0.8591115 -6.375,2.6249957 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.7658857 4.06637,-2.6249962 6.375,-2.6249972 2.30863,-1e-6 4.61312,0.8591095 6.375,2.6249972 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.7658862 -4.06637,-2.6249967 -6.375,-2.6249957 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f5f5f5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate" />
+ </g>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect10601"
+ width="20"
+ height="24"
+ x="185"
+ y="-12.637817" />
+ </g>
+ <g
+ id="text-select-end-hover"
+ transform="rotate(180,270.01517,4.3621826)"
+ inkscape:label="#g5515">
+ <path
+ sodipodi:nodetypes="ssscss"
+ inkscape:connector-curvature="0"
+ id="path10605"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -4.20188,13.4440732 3.62392,16.0288414 l 12.62392,4.1695293 -0.16117,-6.7327914 c -0.1257,-5.251176 1.05834,-9.7471583 -2.65165,-13.4655793 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient10619);fill-opacity:1;fill-rule:nonzero;stroke:#1e1c19;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ id="g10607">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f5f5f5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 195,-10.034007 c -2.30863,1e-6 -4.61312,0.8591115 -6.375,2.6249973 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.6249981 6.375,-2.6249991 2.30863,-10e-7 4.61312,0.8591101 6.375,2.6249991 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.7658878 -4.06637,-2.6249983 -6.375,-2.6249973 z"
+ id="path10609"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ y="-12.637817"
+ x="185"
+ height="24"
+ width="20"
+ id="rect10613"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="#g5515"
+ transform="rotate(180,270.01517,89.362185)"
+ id="text-select-end-dark">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient1466);fill-opacity:1;fill-rule:nonzero;stroke:#626262;stroke-width:1.00048554;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;font-variant-east_asian:normal;vector-effect:none"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -4.20188,13.4440732 3.62392,16.0288414 l 12.62392,4.1695293 -0.16117,-6.7327914 c -0.1257,-5.251176 1.05834,-9.7471583 -2.65165,-13.4655793 z"
+ id="path10686"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ssscss" />
+ <g
+ id="g10688">
+ <path
+ sodipodi:nodetypes="sscssscss"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#232727;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 195,-11.560975 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625001 -1.88818,1.8924693 -2.53881,4.5333927 -2.40403,7.0075825 0.12078,-2.1382318 0.77209,-4.3719345 2.40403,-6.0075825 1.76188,-1.7658876 4.06637,-2.625 6.375,-2.625001 2.30863,-1e-6 4.61312,0.8591114 6.375,2.625001 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.76589 -4.06637,-2.625002 -6.375,-2.625001 z"
+ id="path10690"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="sscssscss"
+ inkscape:connector-curvature="0"
+ id="path10692"
+ d="m 195,-10.500316 c -2.30863,10e-7 -4.61312,0.8591138 -6.375,2.6250022 -1.88818,1.8924693 -2.49461,4.3124219 -2.35983,6.7866117 0.12078,-2.1382318 0.72789,-4.1509637 2.35983,-5.7866117 1.76188,-1.7658876 4.06637,-2.6250004 6.375,-2.6250014 2.30863,-1e-6 4.61312,0.8591118 6.375,2.6250014 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.7658904 -4.06637,-2.6250032 -6.375,-2.6250022 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#2f3434;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path10694"
+ d="m 186.22098,-1.1362622 c 0.113,2.1497091 2.0766,6.5869279 6.51409,7.5414344 L 203.97227,9.7763966 204,-2.4178932 c -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 L 203.08839,8.715736 192.91183,5.7587256 c -5.47891,-1.2800965 -6.69085,-6.8949878 -6.69085,-6.8949878 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.05;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:nodetypes="ccccccccc" />
+ </g>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect10696"
+ width="20"
+ height="24"
+ x="185"
+ y="-12.637817" />
+ </g>
+ <g
+ id="text-select-end-active-dark"
+ transform="rotate(180,270.01517,119.36218)"
+ inkscape:label="#g5515">
+ <path
+ sodipodi:nodetypes="ssscss"
+ inkscape:connector-curvature="0"
+ id="path10700"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -4.20188,13.4440732 3.62392,16.0288414 l 12.62392,4.1695293 -0.16117,-6.7327914 c -0.1257,-5.251176 1.05834,-9.7471583 -2.65165,-13.4655793 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient11093);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ id="g10702">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#2c3133;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000014;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter-blend-mode:normal;filter-gaussianBlur-deviation:0"
+ d="m 195,-10.677087 c -2.30863,1e-6 -4.61312,0.8591124 -6.375,2.6249966 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.7658857 4.06637,-2.6249962 6.375,-2.6249972 2.30863,-10e-7 4.61312,0.8591095 6.375,2.6249972 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.7658862 -4.06637,-2.6249976 -6.375,-2.6249966 z"
+ id="path10704"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ y="-12.637817"
+ x="185"
+ height="24"
+ width="20"
+ id="rect10708"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path10694-2"
+ d="m 186.22101,-1.136263 c 0.113,2.14971 2.0766,6.58693 6.51409,7.54144 L 203.9723,9.776397 204,-2.417893 c -0.001,-0.0205 0.001,-0.042 0,-0.0625 -0.01,-0.15503 -0.0445,-0.3143 -0.0625,-0.46875 l -0.84911,11.66488 -10.17656,-2.95701 c -5.47891,-1.2801 -6.69085,-6.89499 -6.69085,-6.89499 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.05;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:nodetypes="ccccccccc" />
+ </g>
+ <g
+ inkscape:label="#g5515"
+ transform="rotate(180,270.01517,104.36218)"
+ id="text-select-end-hover-dark">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4838-7-9);fill-opacity:1;fill-rule:nonzero;stroke:#626262;stroke-width:1.00048557;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;font-variant-east_asian:normal"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -4.20188,13.4440732 3.62392,16.0288414 l 12.62392,4.1695293 -0.16117,-6.7327914 c -0.1257,-5.251176 1.05834,-9.7471583 -2.65165,-13.4655793 z"
+ id="path10712"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ssscss" />
+ <g
+ id="g10714" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect10720"
+ width="20"
+ height="24"
+ x="185"
+ y="-12.637817" />
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#323737;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 195,-10.784583 c -2.30863,0 -4.61312,0.8591104 -6.375,2.6250004 -1.88818,1.89247 -2.49461,4.31242 -2.35983,6.78661 0.12078,-2.13823 0.72789,-4.15096 2.35983,-5.78661 1.76188,-1.76589 4.06637,-2.625 6.375,-2.625 2.30863,0 4.61312,0.85911 6.375,2.625 1.63194,1.63565 2.50422,3.73677 2.625,5.875 0.13081,-2.46979 -0.7403,-4.98602 -2.625,-6.875 -1.76188,-1.76589 -4.06637,-2.6250004 -6.375,-2.6250004 z"
+ id="path10956"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sscssscss" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path10694-1"
+ d="m 186.22101,-1.136263 c 0.113,2.14971 2.0766,6.58693 6.51409,7.54144 L 203.9723,9.776397 204,-2.417893 c -0.001,-0.0205 0.001,-0.042 0,-0.0625 -0.01,-0.15503 -0.0445,-0.3143 -0.0625,-0.46875 l -0.84911,11.66488 -10.17656,-2.95701 c -5.47891,-1.2801 -6.69085,-6.89499 -6.69085,-6.89499 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.05;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:nodetypes="ccccccccc" />
+ </g>
+ <g
+ inkscape:label="#g5515"
+ transform="matrix(1,0,0,-1,122,-21.275635)"
+ id="text-select-start">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4748);fill-opacity:1;fill-rule:nonzero;stroke:#1e1c19;stroke-width:1.0004697;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;font-variant-east_asian:normal"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -4.20188,13.4440732 3.62392,16.0288414 l 12.62392,4.1695293 -0.16117,-6.7327914 c -0.1257,-5.251176 1.05834,-9.7471583 -2.65165,-13.4655793 z"
+ id="path12828"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ssscss" />
+ <g
+ id="g12830">
+ <path
+ sodipodi:nodetypes="sscssscss"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cacac8;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99985634;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter-blend-mode:normal;filter-gaussianBlur-deviation:0"
+ d="m 195,-11.560975 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625001 -1.88818,1.8924693 -2.53881,4.5333927 -2.40403,7.0075825 0.12078,-2.1382318 0.77209,-4.3719345 2.40403,-6.0075825 1.76188,-1.7658876 4.06637,-2.625 6.375,-2.625001 2.30863,-1e-6 4.61312,0.8591114 6.375,2.625001 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.76589 -4.06637,-2.625002 -6.375,-2.625001 z"
+ id="path12832"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="sscssscss"
+ inkscape:connector-curvature="0"
+ id="path12834"
+ d="m 195,-10.500316 c -2.30863,10e-7 -4.61312,0.8591138 -6.375,2.6250022 -1.88818,1.8924693 -2.49461,4.3124219 -2.35983,6.7866117 0.12078,-2.1382318 0.72789,-4.1509637 2.35983,-5.7866117 1.76188,-1.7658876 4.06637,-2.6250004 6.375,-2.6250014 2.30863,-1e-6 4.61312,0.8591118 6.375,2.6250014 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.7658904 -4.06637,-2.6250032 -6.375,-2.6250022 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99985634;marker:none;enable-background:accumulate;clip-rule:nonzero;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path12836"
+ d="m 186.22098,-1.1362622 c 0.113,2.1497091 2.0766,6.5869279 6.51409,7.5414344 L 203.97227,9.7763966 204,-2.4178932 c -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 L 203.08839,8.715736 192.91183,5.7587256 c -5.47891,-1.2800965 -6.69085,-6.8949878 -6.69085,-6.8949878 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ sodipodi:nodetypes="ccccccccc" />
+ </g>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect12838"
+ width="20"
+ height="24"
+ x="185"
+ y="-12.637817" />
+ </g>
+ <g
+ id="text-select-start-active"
+ transform="matrix(1,0,0,-1,122,38.724365)"
+ inkscape:label="#g5515">
+ <path
+ sodipodi:nodetypes="ssscss"
+ inkscape:connector-curvature="0"
+ id="path12842"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -4.20188,13.4440732 3.62392,16.0288414 l 12.62392,4.1695293 -0.16117,-6.7327914 c -0.1257,-5.251176 1.05834,-9.7471583 -2.65165,-13.4655793 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient12904);fill-opacity:1.0;fill-rule:nonzero;stroke:#184472;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ id="g12844">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f5f5f5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate"
+ d="m 195,-10.146756 c -2.30863,10e-7 -4.61312,0.8591115 -6.375,2.6249957 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.7658857 4.06637,-2.6249962 6.375,-2.6249972 2.30863,-1e-6 4.61312,0.8591095 6.375,2.6249972 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.7658862 -4.06637,-2.6249967 -6.375,-2.6249957 z"
+ id="path12846"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ y="-12.637817"
+ x="185"
+ height="24"
+ width="20"
+ id="rect12850"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="#g5515"
+ transform="matrix(1,0,0,-1,122,8.7243652)"
+ id="text-select-start-hover">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient12906);fill-opacity:1;fill-rule:nonzero;stroke:#1e1c19;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -4.20188,13.4440732 3.62392,16.0288414 l 12.62392,4.1695293 -0.16117,-6.7327914 c -0.1257,-5.251176 1.05834,-9.7471583 -2.65165,-13.4655793 z"
+ id="path12854"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ssscss" />
+ <g
+ id="g12856">
+ <path
+ inkscape:connector-curvature="0"
+ id="path12858"
+ d="m 195,-10.034007 c -2.30863,1e-6 -4.61312,0.8591115 -6.375,2.6249973 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.6249981 6.375,-2.6249991 2.30863,-10e-7 4.61312,0.8591101 6.375,2.6249991 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.7658878 -4.06637,-2.6249983 -6.375,-2.6249973 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f5f5f5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;enable-background:accumulate" />
+ </g>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect12862"
+ width="20"
+ height="24"
+ x="185"
+ y="-12.637817" />
+ </g>
+ <g
+ id="text-select-start-dark"
+ transform="matrix(1,0,0,-1,122,178.72437)"
+ inkscape:label="#g5515">
+ <path
+ sodipodi:nodetypes="ssscss"
+ inkscape:connector-curvature="0"
+ id="path12866"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -4.20188,13.4440732 3.62392,16.0288414 l 12.62392,4.1695293 -0.16117,-6.7327914 c -0.1257,-5.251176 1.05834,-9.7471583 -2.65165,-13.4655793 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient1466);fill-opacity:1;fill-rule:nonzero;stroke:#626262;stroke-width:1.00048557;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;font-variant-east_asian:normal;vector-effect:none" />
+ <g
+ id="g12868">
+ <path
+ inkscape:connector-curvature="0"
+ id="path12870"
+ d="m 195,-11.560975 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625001 -1.88818,1.8924693 -2.53881,4.5333927 -2.40403,7.0075825 0.12078,-2.1382318 0.77209,-4.3719345 2.40403,-6.0075825 1.76188,-1.7658876 4.06637,-2.625 6.375,-2.625001 2.30863,-1e-6 4.61312,0.8591114 6.375,2.625001 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.76589 -4.06637,-2.625002 -6.375,-2.625001 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#232727;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:nodetypes="sscssscss" />
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#2f3434;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 195,-10.500316 c -2.30863,10e-7 -4.61312,0.8591138 -6.375,2.6250022 -1.88818,1.8924693 -2.49461,4.3124219 -2.35983,6.7866117 0.12078,-2.1382318 0.72789,-4.1509637 2.35983,-5.7866117 1.76188,-1.7658876 4.06637,-2.6250004 6.375,-2.6250014 2.30863,-1e-6 4.61312,0.8591118 6.375,2.6250014 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.7658904 -4.06637,-2.6250032 -6.375,-2.6250022 z"
+ id="path12872"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sscssscss" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.05;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 186.22098,-1.1362622 c 0.113,2.1497091 2.0766,6.5869279 6.51409,7.5414344 L 203.97227,9.7763966 204,-2.4178932 c -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 L 203.08839,8.715736 192.91183,5.7587256 c -5.47891,-1.2800965 -6.69085,-6.8949878 -6.69085,-6.8949878 z"
+ id="path12874"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ y="-12.637817"
+ x="185"
+ height="24"
+ width="20"
+ id="rect12876"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="#g5515"
+ transform="matrix(1,0,0,-1,122,238.72437)"
+ id="text-select-start-active-dark">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient12910);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -4.20188,13.4440732 3.62392,16.0288414 l 12.62392,4.1695293 -0.16117,-6.7327914 c -0.1257,-5.251176 1.05834,-9.7471583 -2.65165,-13.4655793 z"
+ id="path12880"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ssscss" />
+ <g
+ id="g12882">
+ <path
+ inkscape:connector-curvature="0"
+ id="path12884"
+ d="m 195,-10.677087 c -2.30863,1e-6 -4.61312,0.8591124 -6.375,2.6249966 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.7658857 4.06637,-2.6249962 6.375,-2.6249972 2.30863,-10e-7 4.61312,0.8591095 6.375,2.6249972 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.7658862 -4.06637,-2.6249976 -6.375,-2.6249966 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#2c3133;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000014;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter-blend-mode:normal;filter-gaussianBlur-deviation:0" />
+ </g>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect12886"
+ width="20"
+ height="24"
+ x="185"
+ y="-12.637817" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.05;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 186.22101,-1.136263 c 0.113,2.14971 2.0766,6.58693 6.51409,7.54144 L 203.9723,9.776397 204,-2.417893 c -0.001,-0.0205 0.001,-0.042 0,-0.0625 -0.01,-0.15503 -0.0445,-0.3143 -0.0625,-0.46875 l -0.84911,11.66488 -10.17656,-2.95701 c -5.47891,-1.2801 -6.69085,-6.89499 -6.69085,-6.89499 z"
+ id="path12888"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="text-select-start-hover-dark"
+ transform="matrix(1,0,0,-1,122,208.72437)"
+ inkscape:label="#g5515">
+ <path
+ sodipodi:nodetypes="ssscss"
+ inkscape:connector-curvature="0"
+ id="path12892"
+ d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -4.20188,13.4440732 3.62392,16.0288414 l 12.62392,4.1695293 -0.16117,-6.7327914 c -0.1257,-5.251176 1.05834,-9.7471583 -2.65165,-13.4655793 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4838-7-9);fill-opacity:1;fill-rule:nonzero;stroke:#626262;stroke-width:1.00048557;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;font-variant-east_asian:normal" />
+ <g
+ id="g12894" />
+ <rect
+ y="-12.637817"
+ x="185"
+ height="24"
+ width="20"
+ id="rect12896"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="sscssscss"
+ inkscape:connector-curvature="0"
+ id="path12898"
+ d="m 195,-10.784583 c -2.30863,0 -4.61312,0.8591104 -6.375,2.6250004 -1.88818,1.89247 -2.49461,4.31242 -2.35983,6.78661 0.12078,-2.13823 0.72789,-4.15096 2.35983,-5.78661 1.76188,-1.76589 4.06637,-2.625 6.375,-2.625 2.30863,0 4.61312,0.85911 6.375,2.625 1.63194,1.63565 2.50422,3.73677 2.625,5.875 0.13081,-2.46979 -0.7403,-4.98602 -2.625,-6.875 -1.76188,-1.76589 -4.06637,-2.6250004 -6.375,-2.6250004 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#323737;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.05;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 186.22101,-1.136263 c 0.113,2.14971 2.0766,6.58693 6.51409,7.54144 L 203.9723,9.776397 204,-2.417893 c -0.001,-0.0205 0.001,-0.042 0,-0.0625 -0.01,-0.15503 -0.0445,-0.3143 -0.0625,-0.46875 l -0.84911,11.66488 -10.17656,-2.95701 c -5.47891,-1.2801 -6.69085,-6.89499 -6.69085,-6.89499 z"
+ id="path12900"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>