diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-05-30 22:17:03 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-05-30 22:17:03 -0400 |
| commit | 4e12afae12612eeee4add901d7e41172a36d4fde (patch) | |
| tree | 13e4168098fbcd6ae360ba051ffd3f93d9683008 | |
| parent | add and use nwg-hello greeter (diff) | |
| download | dotfiles-nix-4e12afae12612eeee4add901d7e41172a36d4fde.tar.gz dotfiles-nix-4e12afae12612eeee4add901d7e41172a36d4fde.tar.bz2 dotfiles-nix-4e12afae12612eeee4add901d7e41172a36d4fde.zip | |
use mustache for more templating
| -rw-r--r-- | flake.nix | 6 | ||||
| -rw-r--r-- | home/apps/rofi/default.nix | 2 | ||||
| -rw-r--r-- | home/apps/rofi/theme.nix | 27 | ||||
| -rw-r--r-- | home/apps/rofi/theme.rasi.mustache | 13 | ||||
| -rw-r--r-- | home/apps/waybar/default.nix | 2 | ||||
| -rw-r--r-- | home/apps/waybar/style.css.mustache | 90 | ||||
| -rw-r--r-- | home/apps/waybar/style.nix | 107 | ||||
| -rw-r--r-- | home/apps/wofi/default.nix | 2 | ||||
| -rw-r--r-- | home/apps/wofi/style.css.mustache | 59 | ||||
| -rw-r--r-- | home/apps/wofi/style.nix | 73 | ||||
| -rw-r--r-- | home/gtk/default.nix | 39 | ||||
| -rw-r--r-- | home/gtk/gtk.css.mustache (renamed from home/gtk/gtk.css) | 23 | ||||
| -rw-r--r-- | home/qt/default.nix | 5 | ||||
| -rw-r--r-- | home/qt/kvconfig.nix | 513 | ||||
| -rw-r--r-- | home/qt/svg.nix | 9522 | ||||
| -rw-r--r-- | home/qt/theme.kvconfig.mustache | 497 | ||||
| -rw-r--r-- | home/qt/theme.svg.mustache | 9512 | ||||
| -rw-r--r-- | lib/system.nix | 1 | ||||
| -rw-r--r-- | pkgs/astal/default.nix | 48 | ||||
| -rw-r--r-- | pkgs/astal/theme.nix | 26 | ||||
| -rw-r--r-- | pkgs/astal/vars.scss.mustache | 22 |
21 files changed, 10272 insertions, 10317 deletions
@@ -57,10 +57,13 @@ ) systems); + # merge nixpkgs lib with our extensions mkLib = system: let pkgs = import nixpkgs {inherit system;}; in nixpkgs.lib.extend (_: lib: import ./lib {inherit lib pkgs;}); + + # createt a system configuration mkSystem = hostDir: system: let lib = mkLib system; in @@ -73,6 +76,9 @@ hostDir ]; }; + + # create a home configuration with a system configuration + # as its base mkHome = hostDir: system: let hostModule = mkSystem hostDir system; lib = (mkLib system) // home-manager.lib; diff --git a/home/apps/rofi/default.nix b/home/apps/rofi/default.nix index 80c88a2..de492a6 100644 --- a/home/apps/rofi/default.nix +++ b/home/apps/rofi/default.nix @@ -17,7 +17,7 @@ in { home.file = { ".config/rofi/config.rasi".source = ./config.rasi; - ".config/rofi/theme.rasi".text = import ./theme.nix {inherit theme;}; + ".config/rofi/theme.rasi".text = lib.template.mustache ./theme.rasi.mustache theme; }; }; } diff --git a/home/apps/rofi/theme.nix b/home/apps/rofi/theme.nix deleted file mode 100644 index 891b5a3..0000000 --- a/home/apps/rofi/theme.nix +++ /dev/null @@ -1,27 +0,0 @@ -{theme}: let - text = "#${theme.colors.text}"; - base = "#${theme.colors.base}"; - surface = "#${theme.colors.surface}"; - primary = "#${theme.colors.primary}"; - error = "#${theme.colors.error}"; - outerGap = "${toString theme.outerGap}px"; - innerGap = "${toString theme.innerGap}px"; - outerRadius = "${toString theme.outerRadius}px"; - innerRadius = "${toString theme.innerRadius}px"; - borderWidth = "${toString theme.borderWidth}px"; - wallpaper = theme.wallpaper; -in '' - * { - primary: ${primary}; - error: ${error}; - base: ${base}; - surface: ${surface}; - text: ${text}; - inner-radius: ${innerRadius}; - outer-radius: ${outerRadius}; - inner-gap: ${innerGap}; - outer-gap: ${outerGap}; - border-width: ${borderWidth}; - background: url("${wallpaper}", height); - } -'' diff --git a/home/apps/rofi/theme.rasi.mustache b/home/apps/rofi/theme.rasi.mustache new file mode 100644 index 0000000..eed44b2 --- /dev/null +++ b/home/apps/rofi/theme.rasi.mustache @@ -0,0 +1,13 @@ +* { + primary: #{{colors.primary}}; + error: #{{colors.error}}; + base: #{{cplors.base}}; + surface: #{{colors.surface}}; + text: #{{colors.text}}; + inner-radius: {{innerRadius}}; + outer-radius: {{outerRadius}}; + inner-gap: {{innerGap}}; + outer-gap: {{outerGap}}; + border-width: {{borderWidth}}; + background: url("{{wallpaper}}", height); +} diff --git a/home/apps/waybar/default.nix b/home/apps/waybar/default.nix index 25acb8f..b881091 100644 --- a/home/apps/waybar/default.nix +++ b/home/apps/waybar/default.nix @@ -79,7 +79,7 @@ in { } ]; - style = import ./style.nix {theme = config.theme;}; + style = lib.template.mustache ./style.css.mustache config.theme; }; }; } diff --git a/home/apps/waybar/style.css.mustache b/home/apps/waybar/style.css.mustache new file mode 100644 index 0000000..d7e4c3e --- /dev/null +++ b/home/apps/waybar/style.css.mustache @@ -0,0 +1,90 @@ +/** Base */ + +* { + all: unset; +} + +window#waybar { + font-family: "{{font.regular}}", "{{font.icon}}", "{{font.monospace}}"; + font-size: {{font.size}}px; + color: #{{colors.text}}; + background-color: #{{colors.base}}; +} + +/** Workspaces */ + +#workspaces { + margin-left: {{outerGap}}px; +} + +#workspaces button { + border-radius: {{innerRadius}}px; + margin: 4px 2px; + padding: 0px 7px; + background: #{{colors.surface}}; + color: #{{colors.text}}; +} + +#workspaces button.focused, +#workspaces button.active { + background: #{{colors.primary}}; + color: #{{colors.base}}; +} + +#workspaces button.urgent { + background: #{{colors.error}}; +} + +/** Tray */ + +#tray { + border: none; + margin-right: {{outerGap}}px; +} + +#tray > .passive { + -gtk-icon-effect: dim; +} + +#tray > .needs-attention { + -gtk-icon-effect: highlight; +} + +/** Right modules */ + +#battery, +#wireplumber, +#network { + padding: 0 {{outerGap}}px; +} + +/** Battery */ + +#battery.charging { + color: #{{colors.success}}; +} + +#battery.warning:not(.charging) { + color: #{{colors.warning}}; +} + +#battery.critical:not(.charging) { + color: #{{colors.error}}; +} + +/** Wireplumber */ + +#wireplumber.muted { + color: #{{colors.error}}; +} + +/** Network */ + +#network.wifi, +#network.ethernet { + color: #{{colors.success}}; +} + +#network.disconnected { + color: #{{colors.error}}; +} diff --git a/home/apps/waybar/style.nix b/home/apps/waybar/style.nix deleted file mode 100644 index 21a8de5..0000000 --- a/home/apps/waybar/style.nix +++ /dev/null @@ -1,107 +0,0 @@ -{theme}: let - text = "#${theme.colors.text}"; - base = "#${theme.colors.base}"; - surface = "#${theme.colors.surface}"; - primary = "#${theme.colors.primary}"; - success = "#${theme.colors.success}"; - warning = "#${theme.colors.warning}"; - error = "#${theme.colors.error}"; - fontSize = "${toString theme.font.size}px"; - outerGap = "${toString theme.outerGap}px"; - innerGap = "${toString theme.innerGap}px"; - outerRadius = "${toString theme.outerRadius}px"; - innerRadius = "${toString theme.innerRadius}px"; - borderWidth = "${toString theme.borderWidth}px"; -in '' - /** Base */ - - * { - all: unset; - } - - window#waybar { - font-family: "${theme.font.regular}", "${theme.font.icon}", "${theme.font.monospace}"; - font-size: ${fontSize}; - color: ${text}; - background-color: ${base}; - } - - /** Workspaces */ - - #workspaces { - margin-left: ${outerGap}; - } - - #workspaces button { - border-radius: ${innerRadius}; - margin: 4px 2px; - padding: 0px 7px; - background: ${surface}; - color: ${text}; - } - - #workspaces button.focused, - #workspaces button.active { - background: ${primary}; - color: ${base}; - } - - #workspaces button.urgent { - background: ${error}; - } - - /** Tray */ - - #tray { - border: none; - margin-right: ${outerGap}; - } - - #tray > .passive { - -gtk-icon-effect: dim; - } - - #tray > .needs-attention { - -gtk-icon-effect: highlight; - } - - /** Right modules */ - - #battery, - #wireplumber, - #network { - padding: 0 ${outerGap}; - } - - /** Battery */ - - #battery.charging { - color: ${success}; - } - - #battery.warning:not(.charging) { - color: ${warning}; - } - - #battery.critical:not(.charging) { - color: ${error}; - } - - /** Wireplumber */ - - #wireplumber.muted { - color: ${error}; - } - - /** Network */ - - #network.wifi, - #network.ethernet { - color: ${success}; - } - - #network.disconnected { - color: ${error}; - } - -'' diff --git a/home/apps/wofi/default.nix b/home/apps/wofi/default.nix index b528f65..417a2c2 100644 --- a/home/apps/wofi/default.nix +++ b/home/apps/wofi/default.nix @@ -21,7 +21,7 @@ in { hide_scroll = true; }; - style = import ./style.nix {theme = config.theme;}; + style = lib.template.mustache ./style.css.mustache config.theme; }; }; } diff --git a/home/apps/wofi/style.css.mustache b/home/apps/wofi/style.css.mustache new file mode 100644 index 0000000..ba4945f --- /dev/null +++ b/home/apps/wofi/style.css.mustache @@ -0,0 +1,59 @@ +* { + font-family: "{{font.monospace}}"; + font-size: {{font.size}}px; +} + +/* Window */ +window { + margin: 0px; + border: none; + border-radius: {{outerRadius}}px; + background-color: #{{colors.base}}; +} + +/* Outer Box */ +#outer-box { + padding: {{outerGap}}px; +} + +/* Scroll */ +#scroll { + margin: 0px; + padding: {{innerGap}}px; + border: none; +} + +/* Input */ +#input { + margin: {{innerGap}}px; + padding: {{innerGap}}px; + border: none; + color: #{{colors.text}}; + background-color: #{{colors.surface}}; + border-radius: {{outerRadius}}px; +} + +#input:focus, +#input:active { + border: {{borderWidth}}px solid #{{colors.primary}}; + box-shadow: none; + outline: none; +} + +/* Text */ +#text { + margin: {{innerGap}}px; + padding: {{innerGap}}px; + border: none; + color: #{{colors.text}}; +} + +/* Selected Entry */ +#entry:selected { + background-color: #{{colors.primary}}; + border-radius: {{outerRadius}}px; +} + +#entry:selected #text { + color: #{{colors.base}}; +} diff --git a/home/apps/wofi/style.nix b/home/apps/wofi/style.nix deleted file mode 100644 index 8d1fb75..0000000 --- a/home/apps/wofi/style.nix +++ /dev/null @@ -1,73 +0,0 @@ -{theme}: let - text = "#${theme.colors.text}"; - base = "#${theme.colors.base}"; - surface = "#${theme.colors.surface}"; - primary = "#${theme.colors.primary}"; - fontSize = "${toString theme.font.size}px"; - outerGap = "${toString theme.outerGap}px"; - innerGap = "${toString theme.innerGap}px"; - outerRadius = "${toString theme.outerRadius}px"; - innerRadius = "${toString theme.innerRadius}px"; - borderWidth = "${toString theme.borderWidth}px"; -in '' - * { - font-family: ${theme.font.monospace}; - font-size: ${fontSize}; - } - - /* Window */ - window { - margin: 0px; - border: none; - border-radius: ${outerRadius}; - background-color: ${base}; - } - - /* Outer Box */ - #outer-box { - padding: ${outerGap}; - } - - /* Scroll */ - #scroll { - margin: 0px; - padding: ${innerGap}; - border: none; - } - - /* Input */ - #input { - margin: ${innerGap}; - padding: ${innerGap}; - border: none; - color: ${text}; - background-color: ${surface}; - border-radius: ${outerRadius}; - } - - #input:focus, - #input:active { - border: ${borderWidth} solid ${primary}; - box-shadow: none; - outline: none; - } - - /* Text */ - #text { - margin: ${innerGap}; - padding: ${innerGap}; - border: none; - color: ${text}; - } - - /* Selected Entry */ - #entry:selected { - background-color: ${primary}; - border-radius: ${outerRadius}; - } - - #entry:selected #text { - color: ${base}; - } - -'' diff --git a/home/gtk/default.nix b/home/gtk/default.nix index 98ae399..517155f 100644 --- a/home/gtk/default.nix +++ b/home/gtk/default.nix @@ -3,36 +3,7 @@ lib, pkgs, ... -}: let - baseCss = '' - @define-color text #${config.theme.colors.text}; - @define-color subtext #${config.theme.colors.subtext}; - - @define-color base #${config.theme.colors.base}; - @define-color surface #${config.theme.colors.surface}; - @define-color overlay #${config.theme.colors.overlay}; - - @define-color primary #${config.theme.colors.primary}; - @define-color success #${config.theme.colors.success}; - @define-color warning #${config.theme.colors.warning}; - @define-color error #${config.theme.colors.error}; - - @define-color black #${config.theme.colors.bright.black}; - @define-color red #${config.theme.colors.bright.red}; - @define-color green #${config.theme.colors.bright.green}; - @define-color yellow #${config.theme.colors.bright.yellow}; - @define-color blue #${config.theme.colors.bright.blue}; - @define-color magenta #${config.theme.colors.bright.magenta}; - @define-color cyan #${config.theme.colors.bright.cyan}; - @define-color white #${config.theme.colors.bright.white}; - @define-color pink #${config.theme.colors.bright.pink}; - @define-color orange #${config.theme.colors.bright.orange}; - ''; - finalCss = pkgs.runCommandLocal "gtk.css" {} '' - echo ${lib.escapeShellArg baseCss} >>$out - cat ${./gtk.css} >>$out - ''; -in { +}: { gtk = { enable = true; theme = { @@ -47,8 +18,10 @@ in { gtk3.extraConfig.gtk-application-prefer-dark-theme = 1; }; - xdg.configFile = { - "gtk-3.0/gtk.css".source = finalCss; - "gtk-4.0/gtk.css".source = finalCss; + xdg.configFile = let + css = lib.template.mustache ./gtk.css.mustache config.theme.colors; + in { + "gtk-3.0/gtk.css".source = css; + "gtk-4.0/gtk.css".source = css; }; } diff --git a/home/gtk/gtk.css b/home/gtk/gtk.css.mustache index af50b02..725e5de 100644 --- a/home/gtk/gtk.css +++ b/home/gtk/gtk.css.mustache @@ -1,3 +1,26 @@ +@define-color text #{{text}}; +@define-color subtext #{{subtext}}; + +@define-color base #{{base}}; +@define-color surface #{{surface}}; +@define-color overlay #{{overlay}}; + +@define-color primary #{{primary}}; +@define-color success #{{success}}; +@define-color warning #{{warning}}; +@define-color error #{{error}}; + +@define-color black #{{bright.black}}; +@define-color red #{{bright.red}}; +@define-color green #{{bright.green}}; +@define-color yellow #{{bright.yellow}}; +@define-color blue #{{bright.blue}}; +@define-color magenta #{{bright.magenta}}; +@define-color cyan #{{bright.cyan}}; +@define-color white #{{bright.white}}; +@define-color pink #{{bright.pink}}; +@define-color orange #{{bright.orange}}; + @define-color accent_color @primary; @define-color accent_bg_color @base; @define-color accent_fg_color @text; diff --git a/home/qt/default.nix b/home/qt/default.nix index 3071bf4..e8e8376 100644 --- a/home/qt/default.nix +++ b/home/qt/default.nix @@ -31,9 +31,8 @@ in { "Kvantum/kvantum.kvconfig".text = lib.generators.toINI {} { General.theme = "theme"; }; - "Kvantum/theme/theme.svg".text = import ./svg.nix {inherit config;}; - "Kvantum/theme/theme.kvconfig".text = import ./kvconfig.nix {inherit config;}; - + "Kvantum/theme/theme.svg".source = lib.template.mustache ./theme.svg.mustache config.theme.colors; + "Kvantum/theme/theme.kvconfig".source = lib.template.mustache ./theme.kvconfig.mustache config.theme; "qt5ct/qt5ct.conf".text = mkQtctConf ''"${font},-1,5,50,0,0,0,0,0"''; "qt6ct/qt6ct.conf".text = mkQtctConf ''"${font},-1,5,400,0,0,0,0,0,0,0,0,0,0,1,Regular"''; }; diff --git a/home/qt/kvconfig.nix b/home/qt/kvconfig.nix deleted file mode 100644 index 83b189c..0000000 --- a/home/qt/kvconfig.nix +++ /dev/null @@ -1,513 +0,0 @@ -{config}: let - theme = config.theme; - inherit - (theme.colors) - base - surface - text - subtext - primary - ; - link = theme.colors.normal.blue; - visited = theme.colors.normal.magenta; - innerGap = toString theme.innerGap; - outerGap = toString theme.outerGap; -in '' - [%General] - author=Keystistic - comment=Breeze for Kvantum, based on Breeze Plasma theme and color scheme & Monochrome KDE Kvantum theme - x11drag=menubar_and_primary_toolbar - alt_mnemonic=true - left_tabs=true - attach_active_tab=true - mirror_doc_tabs=true - group_toolbar_buttons=false - toolbar_item_spacing=1 - toolbar_interior_spacing=3 - spread_progressbar=true - composite=true - menu_shadow_depth=5 - menu_separator_height=6 - tooltip_shadow_depth=6 - splitter_width=4 - scroll_width=6 - scroll_arrows=false - scroll_min_extent=60 - slider_width=5 - slider_handle_width=18 - slider_handle_length=18 - center_toolbar_handle=true - check_size=16 - textless_progressbar=false - progressbar_thickness=6 - menubar_mouse_tracking=true - toolbutton_style=1 - double_click=false - translucent_windows=false - blurring=true - popup_blurring=true - vertical_spin_indicators=true - spin_button_width=32 - fill_rubberband=false - merge_menubar_with_toolbar=true - small_icon_size=16 - large_icon_size=32 - button_icon_size=22 - toolbar_icon_size=22 - combo_as_lineedit=true - animate_states=false - button_contents_shift=true - combo_menu=true - hide_combo_checkboxes=true - combo_focus_rect=true - groupbox_top_label=true - inline_spin_indicators=false - joined_inactive_tabs=false - layout_spacing=${innerGap} - layout_margin=${innerGap} - scrollbar_in_view=true - transient_scrollbar=true - transient_groove=false - submenu_overlap=0 - tooltip_delay=-1 - tree_branch_line=true - dark_titlebar=true - opaque=QMPlay2,kaffeine,kmplayer,subtitlecomposer,vlc,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam - reduce_window_opacity=0 - scrollable_menu=false - submenu_delay=250 - no_inactiveness=false - no_window_pattern=false - reduce_menu_opacity=0 - respect_DE=true - click_behavior=0 - contrast=1.30 - dialog_button_layout=0 - drag_from_buttons=false - intensity=1.10 - saturation=1.20 - shadowless_popup=false - - [GeneralColors] - window.color=#${base} - base.color=#${surface} - alt.base.color=#${surface} - button.color=#${surface} - light.color=#${surface} - mid.light.color=#${base} - dark.color=#1e1e1e - mid.color=#${base} - highlight.color=#${primary} - inactive.highlight.color=#${primary} - text.color=#${text} - window.text.color=#${text} - button.text.color=#${text} - disabled.text.color=#${subtext}70 - tooltip.text.color=#${text} - highlight.text.color=#${base} - link.color=#${link} - link.visited.color=#${visited} - progress.indicator.text.color=#${text} - - [Hacks] - transparent_ktitle_label=false - transparent_dolphin_view=false - transparent_pcmanfm_sidepane=false - blur_translucent=true - transparent_menutitle=false - transparent_arrow_button=false - respect_darkness=true - kcapacitybar_as_progressbar=true - force_size_grip=true - iconless_pushbutton=false - iconless_menu=false - disabled_icon_opacity=100 - lxqtmainmenu_iconsize=22 - normal_default_pushbutton=true - single_top_toolbar=true - tint_on_mouseover=0 - transparent_pcmanfm_view=false - middle_click_scroll=false - no_selection_tint=false - opaque_colors=false - centered_forms=false - kinetic_scrolling=false - noninteger_translucency=false - - [PanelButtonCommand] - frame=true - frame.element=button - frame.top=${innerGap} - frame.bottom=${innerGap} - frame.left=${innerGap} - frame.right=${innerGap} - interior=true - interior.element=button - indicator.size=8 - text.normal.color=#${text} - text.focus.color=white - text.press.color=#${base} - text.toggle.color=white - text.shadow=0 - text.margin=1 - text.iconspacing=4 - indicator.element=arrow - text.margin.top=${innerGap} - text.margin.bottom=${innerGap} - text.margin.left=${innerGap} - text.margin.right=${innerGap} - min_width=+0.3font - min_height=+0.3font - frame.expansion=8 - - [PanelButtonTool] - inherits=PanelButtonCommand - - [Dock] - inherits=PanelButtonCommand - interior.element=dock - frame.element=dock - frame.top=1 - frame.bottom=1 - frame.left=1 - frame.right=1 - text.normal.color=#${text} - - [DockTitle] - inherits=PanelButtonCommand - frame=false - interior=false - text.normal.color=#${text} - text.focus.color=#${subtext} - text.bold=false - - [IndicatorSpinBox] - inherits=PanelButtonCommand - frame=true - interior=true - frame.left=1 - indicator.element=spin - indicator.size=10 - text.normal.color=#${text} - - [RadioButton] - inherits=PanelButtonCommand - frame=false - interior.element=radio - text.normal.color=#${text} - text.focus.color=#${subtext} - - [CheckBox] - inherits=PanelButtonCommand - frame=false - interior.element=checkbox - text.normal.color=#${text} - text.focus.color=#${subtext} - - [Focus] - inherits=PanelButtonCommand - frame=true - frame.element=focus - frame.top=1 - frame.bottom=1 - frame.left=1 - frame.right=1 - frame.patternsize=${innerGap}0 - - [GenericFrame] - inherits=PanelButtonCommand - frame=true - interior=false - frame.element=common - interior.element=common - frame.top=1 - frame.bottom=1 - frame.left=1 - frame.right=1 - - [LineEdit] - inherits=PanelButtonCommand - frame.element=lineedit - interior.element=lineedit - text.margin.left=0 - text.margin.right=0 - - [DropDownButton] - inherits=PanelButtonCommand - indicator.element=arrow-down - - [IndicatorArrow] - indicator.element=arrow - indicator.size=8 - - [ToolboxTab] - inherits=PanelButtonCommand - text.normal.color=#${text} - text.focus.color=#${subtext} - text.press.color=#${subtext} - - [Tab] - inherits=PanelButtonCommand - interior.element=tab - text.margin.left=${outerGap} - text.margin.right=${outerGap} - text.margin.top=${innerGap} - text.margin.bottom=${innerGap} - frame.element=tab - indicator.element=tab - indicator.size=16 - frame.top=${innerGap} - frame.bottom=${innerGap} - frame.left=${innerGap} - frame.right=${innerGap} - text.normal.color=#${text} - text.focus.color=#${text} - text.toggle.color=#${text} - frame.expansion=0 - - [TabFrame] - inherits=PanelButtonCommand - frame.element=tabframe - interior.element=tabframe - frame.top=${innerGap} - frame.bottom=${innerGap} - frame.left=${innerGap} - frame.right=${innerGap} - - [TreeExpander] - inherits=PanelButtonCommand - indicator.size=12 - indicator.element=tree - - [HeaderSection] - inherits=PanelButtonCommand - interior.element=header - frame.element=header - frame.top=1 - frame.bottom=1 - frame.left=1 - frame.right=1 - text.bold=false - text.normal.color=#${text} - text.focus.color=#${subtext} - text.press.color=#${base} - text.toggle.color=#${text} - frame.expansion=0 - - [SizeGrip] - indicator.element=resize-grip - / - [Toolbar] - inherits=PanelButtonCommand - indicator.element=toolbar - indicator.size=5 - text.margin=0 - frame=true - interior.element=menubar - frame.element=menubar - text.normal.color=#${text} - text.focus.color=#${subtext} - frame.left=0 - frame.right=0 - frame.top=0 - frame.bottom=1 - frame.expansion=0 - - [Slider] - inherits=PanelButtonCommand - frame.element=slider - interior.element=slider - frame.top=${innerGap} - frame.bottom=${innerGap} - frame.left=${innerGap} - frame.right=${innerGap} - - [SliderCursor] - inherits=PanelButtonCommand - frame=false - interior.element=slidercursor - - [Progressbar] - inherits=PanelButtonCommand - frame.element=progress - interior.element=progress - text.margin=0 - text.normal.color=#${text} - text.focus.color=#${subtext} - text.press.color=#${base} - text.toggle.color=#${text} - text.bold=false - frame.expansion=${innerGap} - - [ProgressbarContents] - inherits=PanelButtonCommand - frame=true - frame.element=progress-pattern - interior.element=progress-pattern - - [ItemView] - inherits=PanelButtonCommand - text.margin=0 - frame.element=itemview - interior.element=itemview - frame.top=${innerGap} - frame.bottom=${innerGap} - frame.left=${innerGap} - frame.right=${innerGap} - text.margin.top=${innerGap} - text.margin.bottom=${innerGap} - text.margin.left=${innerGap} - text.margin.right=${innerGap} - text.normal.color=#${text} - text.focus.color=#${subtext} - text.press.color=#${base} - text.toggle.color=#${text} - min_width=+0.3font - min_height=+0.3font - frame.expansion=0 - - [Splitter] - indicator.size=48 - - [Scrollbar] - inherits=PanelButtonCommand - indicator.element=arrow - indicator.size=8 - - [ScrollbarSlider] - inherits=PanelButtonCommand - interior.element=scrollbarslider - interior=true - frame=false - frame.expansion=${innerGap}8 - - [ScrollbarGroove] - inherits=PanelButtonCommand - interior.element=scrollbargroove - interior=true - frame=false - frame.expansion=${innerGap}8 - - [MenuItem] - inherits=PanelButtonCommand - frame=true - frame.element=menuitem - interior.element=menuitem - indicator.element=menuitem - text.normal.color=#${text} - text.focus.color=#${base} - text.margin.top=1 - text.margin.bottom=1 - text.margin.left=${innerGap} - text.margin.right=${innerGap} - frame.top=${innerGap} - frame.bottom=${innerGap} - frame.left=${innerGap} - frame.right=${innerGap} - text.bold=false - min_width=+0.3font - min_height=+0.3font - frame.expansion=0 - - [MenuBar] - inherits=PanelButtonCommand - frame.element=menubar - interior.element=menubar - text.normal.color=#${text} - frame.bottom=0 - frame.expansion=0 - - [MenuBarItem] - inherits=PanelButtonCommand - interior=true - interior.element=menubaritem - frame.element=menubaritem - frame.top=${innerGap} - frame.bottom=${innerGap} - frame.left=${innerGap} - frame.right=${innerGap} - text.margin.left=${innerGap} - text.margin.right=${innerGap} - text.margin.top=0 - text.margin.bottom=0 - text.normal.color=#${text} - text.focus.color=#${base} - frame.expansion=0 - - [TitleBar] - inherits=PanelButtonCommand - frame=false - text.margin.top=${innerGap} - text.margin.bottom=${innerGap} - text.margin.left=${innerGap} - text.margin.right=${innerGap} - interior.element=titlebar - indicator.size=16 - indicator.element=mdi - text.normal.color=#${text} - text.focus.color=#${subtext} - text.bold=true - text.italic=false - frame.expansion=0 - - [ComboBox] - inherits=PanelButtonCommand - interior.element=combo - frame.element=combo - text.press.color=#${subtext} - indicator.element=carrow - - [Menu] - inherits=PanelButtonCommand - frame.top=1 - frame.bottom=1 - frame.left=1 - frame.right=1 - frame.element=menu - interior.element=menu - text.normal.color=#${text} - text.shadow=false - frame.expansion=0 - - [GroupBox] - inherits=GenericFrame - frame=false - text.shadow=0 - text.margin=0 - text.normal.color=#${text} - text.focus.color=#${subtext} - text.bold=true - frame.expansion=0 - - [TabBarFrame] - inherits=GenericFrame - frame=true - frame.element=tabBarFrame - interior=false - frame.top=${innerGap} - frame.bottom=${innerGap} - frame.left=${innerGap} - frame.right=${innerGap} - - [ToolTip] - inherits=GenericFrame - frame.top=${innerGap} - frame.bottom=${innerGap} - frame.left=${innerGap} - frame.right=${innerGap} - interior=true - text.shadow=0 - text.margin=0 - interior.element=tooltip - frame.element=tooltip - frame.expansion=0 - - [StatusBar] - inherits=GenericFrame - frame=false - interior=false - - [Window] - interior=true - interior.element=window -'' diff --git a/home/qt/svg.nix b/home/qt/svg.nix deleted file mode 100644 index d393232..0000000 --- a/home/qt/svg.nix +++ /dev/null @@ -1,9522 +0,0 @@ -{config}: let - theme = config.theme; - inherit - (theme.colors) - base - surface - primary - ; -in '' - <?xml version="1.0" encoding="UTF-8" standalone="no"?> - <svg - width="210mm" - height="297mm" - viewBox="0 0 210 297" - version="1.1" - id="svg2140" - sodipodi:docname="theme.svg" - inkscape:version="1.4.3 (0d15f75042, 2025-12-25)" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns="http://www.w3.org/2000/svg" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:dc="http://purl.org/dc/elements/1.1/"> - <defs - id="defs2134"> - <linearGradient - inkscape:collect="always" - id="linearGradient2542"> - <stop - style="stop-color:#${primary};stop-opacity:1" - offset="0" - id="stop2538" /> - <stop - style="stop-color:#${primary};stop-opacity:1" - offset="1" - id="stop2540" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1887"> - <stop - style="stop-color:#eff0f3;stop-opacity:1;" - offset="0" - id="stop1883" /> - <stop - style="stop-color:#eff0f3;stop-opacity:0;" - offset="1" - id="stop1885" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1450"> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="0" - id="stop1446" /> - <stop - style="stop-color:#000003;stop-opacity:0" - offset="1" - id="stop1448" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1442"> - <stop - style="stop-color:#000000;stop-opacity:0.945" - offset="0" - id="stop1438" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop1440" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1426"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop1422" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop1424" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1418"> - <stop - style="stop-color:#000000;stop-opacity:0.945" - offset="0" - id="stop1414" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop1416" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1410"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop1406" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop1408" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1402"> - <stop - style="stop-color:#000000;stop-opacity:0.945" - offset="0" - id="stop1398" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop1400" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1390"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop1386" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop1388" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1382"> - <stop - style="stop-color:#000000;stop-opacity:0.949" - offset="0" - id="stop1378" /> - <stop - style="stop-color:#000000;stop-opacity:0" - offset="1" - id="stop1380" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1221"> - <stop - style="stop-color:#${primary};stop-opacity:1" - offset="0" - id="stop1217" /> - <stop - style="stop-color:#${primary};stop-opacity:1" - offset="1" - id="stop1219" /> - </linearGradient> - <linearGradient - id="linearGradient1572" - x1="2.0000992" - x2="2.0000992" - y1="20.999998" - y2="53" - gradientUnits="userSpaceOnUse" - xlink:href="#linearGradient2542" /> - <linearGradient - id="linearGradient1546" - x1="6.0000992" - x2="6.0000992" - y1="20.999998" - y2="53" - gradientUnits="userSpaceOnUse" - xlink:href="#linearGradient2542" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1382" - id="radialGradient1384" - cx="29.36875" - cy="12.7" - fx="29.36875" - fy="12.7" - r="1.3229165" - gradientTransform="matrix(2.4716102e-6,3.0000009,-2.5999998,-1.1727622e-6,62.388675,-75.670845)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1390" - id="linearGradient1396" - x1="-8.4666662" - y1="-29.36875" - x2="-8.4666662" - y2="-32.808334" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1402" - id="radialGradient1404" - cx="29.36875" - cy="4.3656249" - fx="29.36875" - fy="4.3656249" - r="1.322917" - gradientTransform="matrix(2.5999993,1.2622532e-6,6.1307476e-7,1.9999996,-46.989981,-4.7625349)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1410" - id="linearGradient1412" - x1="-25.135416" - y1="3.96875" - x2="-25.135416" - y2="1.3229166" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1418" - id="radialGradient1420" - cx="20.902082" - cy="4.1010423" - fx="20.902082" - fy="4.1010423" - r="1.0583335" - gradientTransform="matrix(-8.2838747e-6,-2.4999995,2.7499978,6.6301223e-7,9.6243972,56.223944)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1426" - id="linearGradient1428" - x1="-8.2020836" - y1="-20.902082" - x2="-8.2020836" - y2="-17.991667" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1444" - cx="20.902082" - cy="12.964582" - fx="20.902082" - fy="12.964582" - r="1.0583335" - gradientTransform="matrix(-2.7499995,-1.0461745e-5,-5.1141699e-7,-3.7499992,78.382805,61.052809)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1450" - id="linearGradient1452" - x1="-25.135416" - y1="12.435416" - x2="-25.135416" - y2="16.404167" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1444-4" - cx="20.902082" - cy="12.964582" - fx="20.902082" - fy="12.964582" - r="1.0583335" - gradientTransform="matrix(-2.7499991,1.8961962e-7,-1.6193457e-5,-3.7499998,64.360085,61.052594)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1382" - id="radialGradient1384-3" - cx="29.36875" - cy="12.7" - fx="29.36875" - fy="12.7" - r="1.3229165" - gradientTransform="matrix(2.220955e-7,3.000001,-2.6000006,-2.5823267e-6,48.365833,-75.670829)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1404-3" - cx="29.36875" - cy="4.3656249" - fx="29.36875" - fy="4.3656249" - r="1.322917" - gradientTransform="matrix(2.5999998,2.3462963e-6,2.3727629e-7,1.9999996,-61.012911,-4.7625668)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1420-5" - cx="20.902082" - cy="4.1010423" - fx="20.902082" - fy="4.1010423" - r="1.0583335" - gradientTransform="matrix(2.3963138e-6,-2.4999984,2.7499972,1.0995879e-5,-4.3987408,56.223876)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1450" - id="linearGradient1636" - gradientUnits="userSpaceOnUse" - x1="-25.135416" - y1="12.435416" - x2="-25.135416" - y2="16.404167" - gradientTransform="translate(14.022917)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1410" - id="linearGradient1638" - gradientUnits="userSpaceOnUse" - x1="-25.135416" - y1="3.96875" - x2="-25.135416" - y2="1.3229166" - gradientTransform="translate(14.022917)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1426" - id="linearGradient1640" - gradientUnits="userSpaceOnUse" - x1="-8.2020836" - y1="-20.902082" - x2="-8.2020836" - y2="-17.991667" - gradientTransform="translate(2.9524621e-8,14.022917)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1390" - id="linearGradient1642" - gradientUnits="userSpaceOnUse" - x1="-8.4666662" - y1="-29.36875" - x2="-8.4666662" - y2="-32.808334" - gradientTransform="translate(2.9524621e-8,14.022917)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1444-7" - cx="20.902082" - cy="12.964582" - fx="20.902082" - fy="12.964582" - r="1.0583335" - gradientTransform="matrix(-2.7500265,-6.0200034e-7,-1.4147023e-5,-3.749998,105.63566,61.052588)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1382" - id="radialGradient1384-30" - cx="29.36875" - cy="12.7" - fx="29.36875" - fy="12.7" - r="1.3229165" - gradientTransform="matrix(6.2145235e-6,3.0000002,-2.5999784,8.905799e-7,89.640403,-75.670848)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1404-8" - cx="29.36875" - cy="4.3656249" - fx="29.36875" - fy="4.3656249" - r="1.322917" - gradientTransform="matrix(2.5999775,-2.5082547e-5,2.2403951e-5,2.0000003,-19.737324,-4.7617635)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1420-9" - cx="20.902082" - cy="4.1010423" - fx="20.902082" - fy="4.1010423" - r="1.0583335" - gradientTransform="matrix(-7.0097051e-6,-2.5000005,2.750025,2.4408325e-7,36.87637,56.223966)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1450" - id="linearGradient1710" - gradientUnits="userSpaceOnUse" - x1="-25.135416" - y1="12.435416" - x2="-25.135387" - y2="16.404167" - gradientTransform="translate(-27.252111)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1410" - id="linearGradient1712" - gradientUnits="userSpaceOnUse" - x1="-25.135416" - y1="3.96875" - x2="-25.135387" - y2="1.3229166" - gradientTransform="translate(-27.252111)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1426" - id="linearGradient1714" - gradientUnits="userSpaceOnUse" - x1="-8.2020836" - y1="-20.902082" - x2="-8.2020826" - y2="-17.991638" - gradientTransform="translate(-9.95512e-7,-27.252111)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1390" - id="linearGradient1716" - gradientUnits="userSpaceOnUse" - x1="-8.4666662" - y1="-29.36875" - x2="-8.4666653" - y2="-32.808304" - gradientTransform="translate(-9.95512e-7,-27.252111)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1382" - id="radialGradient1384-30-2" - cx="29.36875" - cy="12.7" - fx="29.36875" - fy="12.7" - r="1.3229165" - gradientTransform="matrix(6.2145235e-6,3.0000002,-2.5999784,8.905799e-7,89.640403,-75.670848)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1444-7-5" - cx="20.902082" - cy="12.964582" - fx="20.902082" - fy="12.964582" - r="1.0583335" - gradientTransform="matrix(-2.7500265,-6.0200034e-7,-1.4147023e-5,-3.749998,105.63566,61.052588)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1420-9-9" - cx="20.902082" - cy="4.1010423" - fx="20.902082" - fy="4.1010423" - r="1.0583335" - gradientTransform="matrix(-7.0097051e-6,-2.5000005,2.750025,2.4408325e-7,36.87637,56.223966)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1404-8-7" - cx="29.36875" - cy="4.3656249" - fx="29.36875" - fy="4.3656249" - r="1.322917" - gradientTransform="matrix(2.5999775,-2.5082547e-5,2.2403951e-5,2.0000003,-19.737324,-4.7617635)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1450" - id="linearGradient1868" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-27.252111)" - x1="-25.135416" - y1="12.435416" - x2="-25.135387" - y2="16.404167" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1410" - id="linearGradient1870" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-27.252111)" - x1="-25.135416" - y1="3.96875" - x2="-25.135387" - y2="1.3229166" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1426" - id="linearGradient1874" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-9.95512e-7,-27.252111)" - x1="-8.2020836" - y1="-20.902082" - x2="-8.2020826" - y2="-17.991638" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1390" - id="linearGradient1878" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-9.95512e-7,-27.252111)" - x1="-8.4666662" - y1="-29.36875" - x2="-8.4666653" - y2="-32.808304" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1382" - id="radialGradient1384-2" - cx="29.36875" - cy="12.7" - fx="29.36875" - fy="12.7" - r="1.3229165" - gradientTransform="matrix(2.4716102e-6,3.0000009,-2.5999998,-1.1727622e-6,62.388675,-75.670845)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1444-8" - cx="20.902082" - cy="12.964582" - fx="20.902082" - fy="12.964582" - r="1.0583335" - gradientTransform="matrix(-2.7499995,-1.0461745e-5,-5.1141699e-7,-3.7499992,78.382805,61.052809)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1420-4" - cx="20.902082" - cy="4.1010423" - fx="20.902082" - fy="4.1010423" - r="1.0583335" - gradientTransform="matrix(-8.2838747e-6,-2.4999995,2.7499978,6.6301223e-7,9.6243972,56.223944)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1404-0" - cx="29.36875" - cy="4.3656249" - fx="29.36875" - fy="4.3656249" - r="1.322917" - gradientTransform="matrix(2.5999993,1.2622532e-6,6.1307476e-7,1.9999996,-46.989981,-4.7625349)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1382" - id="radialGradient1384-3-2" - cx="29.36875" - cy="12.7" - fx="29.36875" - fy="12.7" - r="1.3229165" - gradientTransform="matrix(2.220955e-7,3.000001,-2.6000006,-2.5823267e-6,48.365833,-75.670829)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1444-4-6" - cx="20.902082" - cy="12.964582" - fx="20.902082" - fy="12.964582" - r="1.0583335" - gradientTransform="matrix(-2.7499991,1.8961962e-7,-1.6193457e-5,-3.7499998,64.360085,61.052594)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1420-5-1" - cx="20.902082" - cy="4.1010423" - fx="20.902082" - fy="4.1010423" - r="1.0583335" - gradientTransform="matrix(2.3963138e-6,-2.4999984,2.7499972,1.0995879e-5,-4.3987408,56.223876)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1404-3-0" - cx="29.36875" - cy="4.3656249" - fx="29.36875" - fy="4.3656249" - r="1.322917" - gradientTransform="matrix(2.5999998,2.3462963e-6,2.3727629e-7,1.9999996,-61.012911,-4.7625668)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1382" - id="radialGradient1384-30-6" - cx="29.36875" - cy="12.7" - fx="29.36875" - fy="12.7" - r="1.3229165" - gradientTransform="matrix(6.2145235e-6,3.0000002,-2.5999784,8.905799e-7,89.640403,-75.670848)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1444-7-1" - cx="20.902082" - cy="12.964582" - fx="20.902082" - fy="12.964582" - r="1.0583335" - gradientTransform="matrix(-2.7500265,-6.0200034e-7,-1.4147023e-5,-3.749998,105.63566,61.052588)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1420-9-5" - cx="20.902082" - cy="4.1010423" - fx="20.902082" - fy="4.1010423" - r="1.0583335" - gradientTransform="matrix(-7.0097051e-6,-2.5000005,2.750025,2.4408325e-7,36.87637,56.223966)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1404-8-9" - cx="29.36875" - cy="4.3656249" - fx="29.36875" - fy="4.3656249" - r="1.322917" - gradientTransform="matrix(2.5999775,-2.5082547e-5,2.2403951e-5,2.0000003,-19.737324,-4.7617635)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - id="linearGradient1572-4" - x1="2.0000992" - x2="2.0000992" - y1="20.999998" - y2="53" - gradientUnits="userSpaceOnUse" - xlink:href="#linearGradient1221" /> - <linearGradient - id="linearGradient1546-9" - x1="6.0000992" - x2="6.0000992" - y1="20.999998" - y2="53" - gradientUnits="userSpaceOnUse" - xlink:href="#linearGradient1221" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1382" - id="radialGradient1384-30-2-0" - cx="29.36875" - cy="12.7" - fx="29.36875" - fy="12.7" - r="1.3229165" - gradientTransform="matrix(6.2145235e-6,3.0000002,-2.5999784,8.905799e-7,89.640403,-75.670848)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1444-7-5-9" - cx="20.902082" - cy="12.964582" - fx="20.902082" - fy="12.964582" - r="1.0583335" - gradientTransform="matrix(-2.7500265,-6.0200034e-7,-1.4147023e-5,-3.749998,105.63566,61.052588)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1420-9-9-1" - cx="20.902082" - cy="4.1010423" - fx="20.902082" - fy="4.1010423" - r="1.0583335" - gradientTransform="matrix(-7.0097051e-6,-2.5000005,2.750025,2.4408325e-7,36.87637,56.223966)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient1442" - id="radialGradient1404-8-7-7" - cx="29.36875" - cy="4.3656249" - fx="29.36875" - fy="4.3656249" - r="1.322917" - gradientTransform="matrix(2.5999775,-2.5082547e-5,2.2403951e-5,2.0000003,-19.737324,-4.7617635)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1450" - id="linearGradient3135" - gradientUnits="userSpaceOnUse" - x1="-25.135416" - y1="12.435416" - x2="-25.135416" - y2="16.404167" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1410" - id="linearGradient3137" - gradientUnits="userSpaceOnUse" - x1="-25.135416" - y1="3.96875" - x2="-25.135416" - y2="1.3229166" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1426" - id="linearGradient3141" - gradientUnits="userSpaceOnUse" - x1="-8.2020836" - y1="-20.902082" - x2="-8.2020836" - y2="-17.991667" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1390" - id="linearGradient3145" - gradientUnits="userSpaceOnUse" - x1="-8.4666662" - y1="-29.36875" - x2="-8.4666662" - y2="-32.808334" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1450" - id="linearGradient3147" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(14.022917)" - x1="-25.135416" - y1="12.435416" - x2="-25.135416" - y2="16.404167" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1410" - id="linearGradient3149" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(14.022917)" - x1="-25.135416" - y1="3.96875" - x2="-25.135416" - y2="1.3229166" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1426" - id="linearGradient3153" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(2.9524621e-8,14.022917)" - x1="-8.2020836" - y1="-20.902082" - x2="-8.2020836" - y2="-17.991667" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1390" - id="linearGradient3157" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(2.9524621e-8,14.022917)" - x1="-8.4666662" - y1="-29.36875" - x2="-8.4666662" - y2="-32.808334" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1450" - id="linearGradient3159" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-27.252111)" - x1="-25.135416" - y1="12.435416" - x2="-25.135387" - y2="16.404167" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1410" - id="linearGradient3161" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-27.252111)" - x1="-25.135416" - y1="3.96875" - x2="-25.135387" - y2="1.3229166" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1426" - id="linearGradient3165" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-9.95512e-7,-27.252111)" - x1="-8.2020836" - y1="-20.902082" - x2="-8.2020826" - y2="-17.991638" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1390" - id="linearGradient3169" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-9.95512e-7,-27.252111)" - x1="-8.4666662" - y1="-29.36875" - x2="-8.4666653" - y2="-32.808304" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1450" - id="linearGradient3173" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-27.252111)" - x1="-25.135416" - y1="12.435416" - x2="-25.135387" - y2="16.404167" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1410" - id="linearGradient3175" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-27.252111)" - x1="-25.135416" - y1="3.96875" - x2="-25.135387" - y2="1.3229166" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1426" - id="linearGradient3177" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-9.95512e-7,-27.252111)" - x1="-8.2020836" - y1="-20.902082" - x2="-8.2020826" - y2="-17.991638" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1390" - id="linearGradient3179" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-9.95512e-7,-27.252111)" - x1="-8.4666662" - y1="-29.36875" - x2="-8.4666653" - y2="-32.808304" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1887" - id="linearGradient1889" - x1="178.63144" - y1="43.16564" - x2="181.27727" - y2="43.16564" - gradientUnits="userSpaceOnUse" /> - <linearGradient - id="linearGradient4465-3"> - <stop - style="stop-color:#000000;stop-opacity:0.50980395" - offset="0" - id="stop4467-6" /> - <stop - style="stop-color:#000000;stop-opacity:0" - offset="1" - id="stop4469-7" /> - </linearGradient> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" - gradientUnits="userSpaceOnUse" - id="radialGradient2104" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" - gradientUnits="userSpaceOnUse" - id="radialGradient2112" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient2120" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" - gradientUnits="userSpaceOnUse" - id="radialGradient2128" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" - gradientUnits="userSpaceOnUse" - id="radialGradient2136" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient2144" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" - gradientUnits="userSpaceOnUse" - id="radialGradient2152" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" - gradientUnits="userSpaceOnUse" - id="radialGradient2160" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient2168" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" - gradientUnits="userSpaceOnUse" - id="radialGradient2176" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" - gradientUnits="userSpaceOnUse" - id="radialGradient2184" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient2192" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" - gradientUnits="userSpaceOnUse" - id="radialGradient2354" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" - gradientUnits="userSpaceOnUse" - id="radialGradient2362" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient2370" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" - gradientUnits="userSpaceOnUse" - id="radialGradient2378" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" - gradientUnits="userSpaceOnUse" - id="radialGradient2386" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient2394" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" - gradientUnits="userSpaceOnUse" - id="radialGradient2402" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" - gradientUnits="userSpaceOnUse" - id="radialGradient2410" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient2418" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" - gradientUnits="userSpaceOnUse" - id="radialGradient2426" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" - gradientUnits="userSpaceOnUse" - id="radialGradient2434" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient2442" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1971" - id="linearGradient2097" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.625,0,0,0.5,271.875,591.5)" - x1="65.800003" - y1="47" - x2="65.800003" - y2="59" /> - <linearGradient - id="linearGradient1971"> - <stop - style="stop-opacity:0.4;stop-color:#000000" - id="stop2" - offset="0" /> - <stop - style="stop-opacity:0" - id="stop4" - offset="1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1971" - id="linearGradient2101" - gradientUnits="userSpaceOnUse" - x1="315" - y1="615" - x2="315" - y2="621" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1971" - id="linearGradient3473" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.625,0,0,0.5,271.875,591.5)" - x1="65.800003" - y1="47" - x2="65.800003" - y2="59" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1971" - id="linearGradient3475" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.625,0,0,0.5,271.875,591.5)" - x1="65.800003" - y1="47" - x2="65.800003" - y2="59" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1971" - id="linearGradient3477" - gradientUnits="userSpaceOnUse" - x1="315" - y1="615" - x2="315" - y2="621" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1971" - id="linearGradient3479" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.625,0,0,0.5,271.875,591.5)" - x1="65.800003" - y1="47" - x2="65.800003" - y2="59" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" - gradientUnits="userSpaceOnUse" - id="radialGradient2032" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" - gradientUnits="userSpaceOnUse" - id="radialGradient2040" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient2048" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" - gradientUnits="userSpaceOnUse" - id="radialGradient2056" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" - gradientUnits="userSpaceOnUse" - id="radialGradient2064" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient2072" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" - gradientUnits="userSpaceOnUse" - id="radialGradient2080" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" - gradientUnits="userSpaceOnUse" - id="radialGradient2088" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient2096" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" - gradientUnits="userSpaceOnUse" - id="radialGradient2104-5" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="54.064175" - fx="8.5572634" - cy="54.064175" - cx="8.5572634" - gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" - gradientUnits="userSpaceOnUse" - id="radialGradient2112-3" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient2120-5" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4465-3" - id="linearGradient3461" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.71428571,0,0,1,-317.71429,1250.3622)" - x1="83.600006" - y1="-966.36224" - x2="83.599998" - y2="-952.362" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4465-3" - id="radialGradient5249" - cx="5.3529415" - cy="50.291935" - fx="5.3529415" - fy="50.291935" - r="1.6470588" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4465-3" - id="radialGradient5251" - gradientUnits="userSpaceOnUse" - cx="75" - cy="25" - fx="75" - fy="25" - r="1.6470588" - gradientTransform="matrix(8.4999882,-1.5178555e-6,1.5178576e-6,8.5000001,-562.49915,-187.49989)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4465-3" - id="linearGradient3463" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.71428571,0,0,1,-317.71429,1250.3622)" - x1="83.600006" - y1="-966.36218" - x2="83.599998" - y2="-952.362" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4465-3" - id="radialGradient5249-2" - cx="5.3529415" - cy="50.291935" - fx="5.3529415" - fy="50.291935" - r="1.6470588" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4465-3" - id="radialGradient5251-1" - gradientUnits="userSpaceOnUse" - cx="75" - cy="25" - fx="75" - fy="25" - r="1.6470588" - gradientTransform="matrix(8.4999882,-1.5178555e-6,1.5178576e-6,8.5000001,-562.49915,-187.49989)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4465-3" - id="radialGradient5249-7" - cx="5.3529415" - cy="50.291935" - fx="5.3529415" - fy="50.291935" - r="1.6470588" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4465-3" - id="radialGradient5251-2" - gradientUnits="userSpaceOnUse" - cx="75" - cy="25" - fx="75" - fy="25" - r="1.6470588" - gradientTransform="matrix(8.4999882,-1.5178555e-6,1.5178576e-6,8.5000001,-562.49915,-187.49989)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4465-3" - id="radialGradient5249-2-5" - cx="5.3529415" - cy="50.291935" - fx="5.3529415" - fy="50.291935" - r="1.6470588" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4465-3" - id="radialGradient5251-1-4" - gradientUnits="userSpaceOnUse" - cx="75" - cy="25" - fx="75" - fy="25" - r="1.6470588" - gradientTransform="matrix(8.4999882,-1.5178555e-6,1.5178576e-6,8.5000001,-562.49915,-187.49989)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4465-3" - id="linearGradient3576" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.71428571,0,0,1,-317.71429,1250.3622)" - x1="83.600006" - y1="-966.36224" - x2="83.599998" - y2="-952.362" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4465-3" - id="linearGradient3578" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.71428571,0,0,1,-317.71429,1250.3622)" - x1="83.600006" - y1="-966.36218" - x2="83.599998" - y2="-952.362" /> - <linearGradient - y2="-953.79071" - x2="83.600006" - y1="-968.0766" - x1="83.600006" - gradientTransform="matrix(0.71428571,0,0,0.69999041,-317.71429,961.64431)" - gradientUnits="userSpaceOnUse" - id="linearGradient4646" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="52.481663" - fx="10.139689" - cy="52.481663" - cx="10.139689" - gradientTransform="matrix(1.1111111,1.0790853e-7,-9.8937098e-8,1.1111112,416.73368,360.68702)" - gradientUnits="userSpaceOnUse" - id="radialGradient4124" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient4126" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <linearGradient - y2="-953.79077" - x2="83.600182" - y1="-968.07648" - x1="83.600182" - gradientTransform="matrix(0.71428571,0,0,0.7000008,-317.71429,961.65431)" - gradientUnits="userSpaceOnUse" - id="linearGradient4648" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <linearGradient - y2="-953.79077" - x2="83.600601" - y1="-966.64795" - x1="83.600601" - gradientTransform="matrix(0.71428571,0,0,0.6999972,-317.71429,961.65084)" - gradientUnits="userSpaceOnUse" - id="linearGradient4650" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <linearGradient - y2="-953.79071" - x2="83.600029" - y1="-968.07587" - x1="83.600029" - gradientTransform="matrix(0.71428571,0,0,0.70002659,-317.71429,961.67913)" - gradientUnits="userSpaceOnUse" - id="linearGradient4652" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="52.481644" - fx="10.139699" - cy="52.481644" - cx="10.139699" - gradientTransform="matrix(-1.1111112,3.8696897e-8,3.8696898e-8,1.1111112,385.26633,360.68704)" - gradientUnits="userSpaceOnUse" - id="radialGradient4192" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient4194" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="52.481403" - fx="10.13969" - cy="52.481403" - cx="10.13969" - gradientTransform="matrix(1.1111111,1.6409232e-7,1.7306375e-7,-1.1111112,416.73367,531.31263)" - gradientUnits="userSpaceOnUse" - id="radialGradient4170" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient4172" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="9" - fy="52.481445" - fx="10.139711" - cy="52.481445" - cx="10.139711" - gradientTransform="matrix(-1.1111112,-3.7764946e-7,3.6867801e-7,-1.1111109,385.26634,531.31269)" - gradientUnits="userSpaceOnUse" - id="radialGradient4148" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - <radialGradient - r="1.6470588" - fy="50.291935" - fx="5.3529415" - cy="50.291935" - cx="5.3529415" - gradientUnits="userSpaceOnUse" - id="radialGradient4150" - xlink:href="#linearGradient4465-3" - inkscape:collect="always" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#a1a1a1" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.57647059" - inkscape:pageshadow="2" - inkscape:zoom="1.1115599" - inkscape:cx="277.5379" - inkscape:cy="167.78223" - inkscape:document-units="mm" - inkscape:document-rotation="0" - showgrid="true" - inkscape:window-width="1954" - inkscape:window-height="1236" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:pagecheckerboard="true" - inkscape:snap-bbox="true" - inkscape:current-layer="layer1" - inkscape:showpageshadow="2" - inkscape:deskcolor="#d1d1d1"> - <inkscape:grid - type="xygrid" - id="grid3300" - color="#3c82ff" - opacity="0.30196078" - empcolor="#3296ff" - empopacity="0.30196078" - empspacing="5" - dotted="false" - originx="0" - originy="0" - spacingx="0.13229167" - spacingy="0.13229167" - snapvisiblegridlinesonly="true" - enabled="true" - visible="true" - units="mm" /> - </sodipodi:namedview> - <metadata - id="metadata2137"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1"> - <g - id="tooltip-shadow-bottomleft" - transform="matrix(-0.26458333,0,0,-0.26458333,36.516001,348.01288)" - style="fill-rule:evenodd;stroke:none"> - <g - id="g4144"> - <g - id="g4138" - transform="rotate(90,-355.88187,520.57087)" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1"> - <path - id="path4130" - transform="rotate(90,401.0306,78.96954)" - d="m 363,471 c 10e-5,8.07723 4.92288,13 13,13 v -7 a 6,6 0 0 1 -6,-6 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.75;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4148);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 85,565.95312 v 1 a 6,6 0 0 1 6,6 h 1 a 7.0000002,7.0000002 0 0 0 -7,-7 z" - transform="rotate(-90,-212.50675,351.44574)" - id="path4132" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path4134" - d="m 9.0002659,47.938995 a 6,6 0 0 0 -5.9999999,6 h 5.9999999 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#${surface};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.00100002;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#${surface};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 85,566.95312 v 1 a 5,5 0 0 1 5,5 h 1 a 6,6 0 0 0 -6,-6 z" - transform="rotate(-90,-212.50675,351.44574)" - id="path4136" - inkscape:connector-curvature="0" /> - </g> - <g - transform="translate(37.749999,747.51375)" - style="display:inline" - id="g4142"> - <g - style="display:inline;fill:url(#radialGradient4150);fill-opacity:1" - transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" - id="g4140" /> - </g> - </g> - </g> - <g - id="g2943" - transform="translate(11.906251,-5.0899878)"> - <g - id="arrow-plus-normal" - transform="matrix(0.26458333,0,0,0.26458333,173.0375,13.821237)"> - <rect - y="-29" - x="-11" - height="14" - width="14" - style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" - id="rect8-1-2-1-3-7-1-2-6-2" /> - <path - id="rect2452-2-9" - style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" - d="m -4,-27 v 4 h -4 v 1 h 4 v 4 h 1 v -4 h 4 v -1 h -4 v -4 z" - sodipodi:nodetypes="ccccccccccccc" /> - </g> - <g - id="arrow-minus-normal" - transform="matrix(0.26458333,0,0,0.26458333,177.53542,18.054571)"> - <rect - id="rect8-1-2-1-3-7-1-1-27" - style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" - width="14" - height="14" - x="-28" - y="-29" /> - <rect - y="-23" - x="-26" - height="1" - width="9" - id="rect2452-9-8-0" - style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" /> - </g> - <g - transform="matrix(0.26458333,0,0,0.26458333,177.27083,13.821237)" - id="arrow-plus-focused"> - <rect - id="rect8-1-2-1-3-7-1-2-6-9-3" - style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" - width="14" - height="14" - x="-11" - y="-29" /> - <path - sodipodi:nodetypes="ccccccccccccc" - d="m -4,-27 v 4 h -4 v 1 h 4 v 4 h 1 v -4 h 4 v -1 h -4 v -4 z" - style="opacity:1;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" - id="rect2452-2-2-6" /> - </g> - <g - transform="matrix(0.26458333,0,0,0.26458333,181.76875,18.054571)" - id="arrow-minus-focused"> - <rect - y="-29" - x="-28" - height="14" - width="14" - style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" - id="rect8-1-2-1-3-7-1-1-2-6" /> - <rect - style="opacity:1;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" - id="rect2452-9-8-3-2" - width="9" - height="1" - x="-26" - y="-23" /> - </g> - <g - style="opacity:0.3" - id="arrow-plus-disabled" - transform="matrix(0.26458333,0,0,0.26458333,185.7375,13.821237)"> - <rect - y="-29" - x="-11" - height="14" - width="14" - style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" - id="rect8-1-2-1-3-7-1-2-6-9-5-1" /> - <path - id="rect2452-2-2-9-8" - style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" - d="m -4,-27 v 4 h -4 v 1 h 4 v 4 h 1 v -4 h 4 v -1 h -4 v -4 z" - sodipodi:nodetypes="ccccccccccccc" /> - </g> - <g - style="opacity:0.3" - id="arrow-minus-disabled" - transform="matrix(0.26458333,0,0,0.26458333,190.23542,18.054571)"> - <rect - id="rect8-1-2-1-3-7-1-1-2-2-9" - style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" - width="14" - height="14" - x="-28" - y="-29" /> - <rect - y="-23" - x="-26" - height="1" - width="9" - id="rect2452-9-8-3-8-2" - style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" /> - </g> - <g - id="arrow-plus-pressed" - transform="matrix(0.26458333,0,0,0.26458333,181.50417,13.821237)"> - <rect - y="-29" - x="-11" - height="14" - width="14" - style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" - id="rect8-1-2-1-3-7-1-2-6-9-6-2" /> - <path - id="rect2452-2-2-7-3" - style="opacity:1;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" - d="m -4,-27 v 4 h -4 v 1 h 4 v 4 h 1 v -4 h 4 v -1 h -4 v -4 z" - sodipodi:nodetypes="ccccccccccccc" /> - </g> - <g - id="arrow-minus-pressed" - transform="matrix(0.26458333,0,0,0.26458333,186.00208,18.054571)"> - <rect - id="rect8-1-2-1-3-7-1-1-2-3-5" - style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" - width="14" - height="14" - x="-28" - y="-29" /> - <rect - y="-23" - x="-26" - height="1" - width="9" - id="rect2452-9-8-3-5-9" - style="opacity:1;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" /> - </g> - </g> - <g - id="g2800"> - <path - id="mdi-minimize-focused" - style="fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-opacity:1" - d="m 161.925,7.7358207 a 1.5875,1.5875 0 0 0 -1.5875,1.5875 1.5875,1.5875 0 0 0 1.5875,1.5875003 1.5875,1.5875 0 0 0 1.5875,-1.5875003 1.5875,1.5875 0 0 0 -1.5875,-1.5875 z m -0.78031,0.962215 0.51573,0.515731 0.26458,0.264584 0.26458,-0.264584 0.51573,-0.515731 0.18707,0.187069 -0.7028,0.702799 -0.26458,0.264583 -0.26458,-0.264583 -0.7028,-0.702799 z" /> - <g - id="mdi-minimize-normal" - transform="matrix(0.26458333,0,0,0.26458333,97.631251,12.498321)"> - <rect - style="opacity:0.003;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" - id="rect2819-9-8-9" - width="12" - height="12" - x="-249" - y="32" - transform="scale(-1)" /> - <path - d="M 240.05078,-40.363281 239.34375,-39.65625 242,-37 l 1,1 1,-1 2.65625,-2.65625 -0.70703,-0.707031 -1.94922,1.949219 -1,1 -1,-1 z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" - id="rect3157" /> - </g> - <g - id="mdi-maximize-normal" - transform="matrix(0.26458333,0,0,0.26458333,98.160417,12.498321)"> - <rect - y="-44" - x="223" - height="12" - width="12" - id="rect2819-9-6" - style="opacity:0.003;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" /> - <path - d="m 229,-41 -1,1 -2.65625,2.65625 0.70703,0.707031 1.94922,-1.949219 1,-1 1,1 1.94922,1.949219 0.70703,-0.707031 L 230,-40 Z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" - id="rect3151" /> - </g> - <g - id="mdi-restore-normal" - transform="matrix(0.26458333,0,0,0.26458333,108.21458,13.292071)"> - <rect - style="opacity:0.003;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" - id="rect3196-2" - width="12" - height="12" - x="209" - y="-47" /> - <path - d="m 215,-44.652344 -3.65625,3.65625 3.65625,3.658203 3.65625,-3.658203 z m 0,1.414063 2.24219,2.242187 -2.24219,2.244141 -2.24219,-2.244141 z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" - id="rect3173-1-9" - sodipodi:nodetypes="cccccccccc" /> - </g> - <g - id="mdi-menu-normal" - transform="matrix(0.26458333,0,0,0.26458333,93.927084,12.762904)"> - <rect - y="-45" - x="275" - height="12" - width="12" - id="rect3196-2-9-8" - style="opacity:0.003;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" /> - <path - d="m 277.5,-43 v 1 h 7 v -1 z m 0,3 v 1 h 7 v -1 z m 0,3 v 1 h 7 v -1 z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:4.67707;stroke-opacity:1" - id="rect3261" /> - </g> - <path - style="fill:#da4453;fill-opacity:1;stroke-width:0.264583" - d="m 155.575,7.7358207 a 1.5875,1.5875 0 0 0 -1.5875,1.5875 1.5875,1.5875 0 0 0 1.5875,1.5875003 1.5875,1.5875 0 0 0 1.5875,-1.5875003 1.5875,1.5875 0 0 0 -1.5875,-1.5875 z m -0.60668,0.79375 0.60668,0.606681 0.60668,-0.606681 0.18707,0.187068 -0.60668,0.606682 0.60668,0.606681 -0.18707,0.1870693 -0.60668,-0.6066823 -0.60668,0.6066823 -0.18707,-0.1870693 0.60668,-0.606681 -0.60668,-0.606682 z" - id="mdi-close-focused" /> - <path - sodipodi:nodetypes="sssssccccccccccc" - d="m 158.75,7.7358207 c -0.87675,0 -1.5875,0.710747 -1.5875,1.5875 0,0.8767523 0.71075,1.5875003 1.5875,1.5875003 0.87675,0 1.5875,-0.710748 1.5875,-1.5875003 0,-0.876753 -0.71075,-1.5875 -1.5875,-1.5875 z m 0,0.79375 0.26458,0.264583 0.7028,0.7028 -0.18707,0.187068 -0.51573,-0.515731 -0.26458,-0.264584 -0.26458,0.264584 -0.51573,0.515731 -0.18707,-0.187068 0.7028,-0.7028 z" - style="fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-opacity:1" - id="mdi-maximize-focused" /> - <path - id="mdi-restore-focused" - style="fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-opacity:1" - d="m 165.1,7.7358207 a 1.5875,1.5875 0 0 0 -1.5875,1.5875 1.5875,1.5875 0 0 0 1.5875,1.5875003 1.5875,1.5875 0 0 0 1.5875,-1.5875003 1.5875,1.5875 0 0 0 -1.5875,-1.5875 z m 0,0.621151 0.96738,0.967383 L 165.1,10.292254 164.13262,9.3243547 Z m 0,0.374137 -0.59325,0.593246 0.59325,0.593762 0.59325,-0.593762 z" /> - <use - style="opacity:0.5" - height="100%" - width="100%" - transform="translate(3.0654166e-6,3.4395837)" - id="mdi-minimize-pressed" - xlink:href="#mdi-minimize-focused" - y="0" - x="0" /> - <use - style="opacity:0.5" - height="100%" - width="100%" - transform="translate(3.0654166e-6,3.4395837)" - id="mdi-close-pressed" - xlink:href="#mdi-close-focused" - y="0" - x="0" /> - <use - style="opacity:0.5" - height="100%" - width="100%" - transform="translate(3.0654166e-6,3.4395837)" - id="mdi-maximize-pressed" - xlink:href="#mdi-maximize-focused" - y="0" - x="0" /> - <use - style="opacity:0.5" - height="100%" - width="100%" - transform="translate(3.0654166e-6,3.4395837)" - id="mdi-restore-pressed" - xlink:href="#mdi-restore-focused" - y="0" - x="0" /> - <use - style="opacity:0.3" - height="100%" - width="100%" - transform="translate(3.0654166e-6,3.1749997)" - id="mdi-minimize-disabled" - xlink:href="#mdi-minimize-normal" - y="0" - x="0" /> - <use - style="opacity:0.3" - height="100%" - width="100%" - transform="translate(3.0654166e-6,3.1749997)" - id="mdi-maximize-disabled" - xlink:href="#mdi-maximize-normal" - y="0" - x="0" /> - <use - style="opacity:0.3" - height="100%" - width="100%" - transform="translate(-3.0654166e-6,3.1749993)" - id="mdi-close-disabled" - xlink:href="#mdi-close-normal" - y="0" - x="0" /> - <use - style="opacity:0.3" - height="100%" - width="100%" - transform="translate(3.0654166e-6,3.1749997)" - id="mdi-restore-disabled" - xlink:href="#mdi-restore-normal" - y="0" - x="0" /> - <path - style="fill:#fcfcfc;fill-opacity:1;stroke-width:0.264583" - d="m 155.575,0.85665365 a 1.5875,1.5875 0 0 0 -1.5875,1.58750005 1.5875,1.5875 0 0 0 1.5875,1.5875 1.5875,1.5875 0 0 0 1.5875,-1.5875 1.5875,1.5875 0 0 0 -1.5875,-1.58750005 z m -0.60668,0.79375005 0.60668,0.606682 0.60668,-0.606682 0.18707,0.187069 -0.60668,0.606681 0.60668,0.606682 -0.18707,0.187068 -0.60668,-0.606681 -0.60668,0.606681 -0.18707,-0.187068 0.60668,-0.606682 -0.60668,-0.606681 z" - id="mdi-close-normal" /> - </g> - <g - id="g2879" - transform="translate(0.34078094,-4.0449502)"> - <use - height="100%" - width="100%" - transform="translate(7.4083369)" - id="arrow-up-pressed" - xlink:href="#arrow-up-normal" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="translate(7.4083369)" - id="arrow-down-pressed" - xlink:href="#arrow-down-normal" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="translate(7.4083369)" - id="arrow-right-pressed" - xlink:href="#arrow-right-normal" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="translate(7.4083369)" - id="arrow-left-pressed" - xlink:href="#arrow-left-normal" - y="0" - x="0" /> - <use - style="opacity:0.3" - height="100%" - width="100%" - transform="translate(11.112497)" - id="arrow-up-disabled" - xlink:href="#arrow-up-normal" - y="0" - x="0" /> - <use - style="opacity:0.3" - height="100%" - width="100%" - transform="translate(11.112497)" - id="arrow-down-disabled" - xlink:href="#arrow-down-normal" - y="0" - x="0" /> - <use - style="opacity:0.3" - height="100%" - width="100%" - transform="translate(11.112497)" - id="arrow-right-disabled" - xlink:href="#arrow-right-normal" - y="0" - x="0" /> - <use - style="opacity:0.3" - height="100%" - width="100%" - transform="translate(11.112497)" - id="arrow-left-disabled" - xlink:href="#arrow-left-normal" - y="0" - x="0" /> - <g - style="enable-background:new" - transform="matrix(-0.26458333,0,0,-0.26458333,186.00208,19.377487)" - id="arrow-up-normal"> - <rect - id="rect4266-5" - width="14" - height="14" - x="4" - y="4" - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-3" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - id="arrow-down-normal" - transform="matrix(0.26458333,0,0,0.26458333,180.18125,17.260821)" - style="enable-background:new"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="4" - x="4" - height="14" - width="14" - id="rect4266-5-7" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - id="rect909-7-3-7-3-5-2-0-3-3" /> - </g> - <g - id="arrow-left-normal" - transform="matrix(0,0.26458333,-0.26458333,0,186.00208,20.964988)" - style="enable-background:new"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="4" - x="4" - height="14" - width="14" - id="rect4266-5-6" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - id="rect909-7-3-7-3-5-2-0-3-9" /> - </g> - <g - transform="matrix(0,-0.26458333,0.26458333,0,180.18125,30.489987)" - id="arrow-right-normal"> - <rect - id="rect4266-5-7-8" - width="14" - height="14" - x="4" - y="4" - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-3-3-2" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - style="enable-background:new" - transform="matrix(0.26458333,0,0,0.26458333,183.88542,17.260821)" - id="arrow-down-focused"> - <rect - id="rect4266-5-7-1" - width="14" - height="14" - x="4" - y="4" - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-3-3-1" - style="opacity:1;fill:#${primary};fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - id="arrow-up-focused" - transform="matrix(-0.26458333,0,0,-0.26458333,189.70625,19.377487)" - style="enable-background:new"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="4" - x="4" - height="14" - width="14" - id="rect4266-5-9" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - style="opacity:1;fill:#${primary};fill-opacity:1" - id="rect909-7-3-7-3-5-2-0-3-4" /> - </g> - <g - style="enable-background:new" - transform="matrix(0,0.26458333,-0.26458333,0,189.70625,20.964988)" - id="arrow-left-focused"> - <rect - id="rect4266-5-6-8" - width="14" - height="14" - x="4" - y="4" - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-3-9-2" - style="opacity:1;fill:#${primary};fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - id="arrow-right-focused" - transform="matrix(0,-0.26458333,0.26458333,0,183.88542,30.489987)"> - <rect - style="opacity:0.00100002;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="4" - x="4" - height="14" - width="14" - id="rect4266-5-7-8-0" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - style="opacity:1;fill:#${primary};fill-opacity:1" - id="rect909-7-3-7-3-5-2-0-3-3-2-1" /> - </g> - </g> - <g - id="g2917"> - <g - style="enable-background:new" - transform="matrix(0,-0.26458333,0.26458333,0,197.64376,10.117071)" - id="tree-plus-normal"> - <rect - id="rect4266-0" - width="12" - height="12" - x="5" - y="5" - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-6" - style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke-width:0.957427" - d="M 16,11.666666 15.312499,11 10.500001,15.666665 5.6875008,11 5,11.666668 10.500001,17 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - id="tree-plus-focused" - transform="matrix(0,-0.26458333,0.26458333,0,201.08334,10.117071)" - style="enable-background:new"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="5" - x="5" - height="12" - width="12" - id="rect4266-0-1" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16,11.666666 15.312499,11 10.500001,15.666665 5.6875008,11 5,11.666668 10.500001,17 Z" - style="opacity:1;fill:#${primary};fill-opacity:1;stroke-width:0.957427" - id="rect909-7-3-7-3-5-2-0-6-1" /> - </g> - <g - id="tree-plus-disabled" - transform="matrix(0,-0.26458333,0.26458333,0,204.52292,10.117071)" - style="opacity:0.3;enable-background:new"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="5" - x="5" - height="12" - width="12" - id="rect4266-0-0" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16,11.666666 15.312499,11 10.500001,15.666665 5.6875008,11 5,11.666668 10.500001,17 Z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke-width:0.957427" - id="rect909-7-3-7-3-5-2-0-6-12" /> - </g> - <g - transform="matrix(0,-0.26458333,0.26458333,0,196.85001,14.350404)" - style="enable-background:new" - id="tree-minus-normal"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="8" - x="7" - height="12" - width="12" - id="rect4266-0-3" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 12.833334,19.5 13.5,18.812499 8.833335,14.000001 13.5,9.1875008 12.833332,8.5 7.5,14.000001 Z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke-width:0.957427" - id="rect909-7-3-7-3-5-2-0-6-8" /> - </g> - <g - style="enable-background:new" - transform="matrix(0,-0.26458333,0.26458333,0,200.28959,14.350404)" - id="tree-minus-focused"> - <rect - id="rect4266-0-3-1" - width="12" - height="12" - x="7" - y="8" - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-6-8-7" - style="opacity:1;fill:#${primary};fill-opacity:1;stroke-width:0.957427" - d="M 12.833334,19.5 13.5,18.812499 8.833335,14.000001 13.5,9.1875008 12.833332,8.5 7.5,14.000001 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - id="tree-minus-disabled" - transform="matrix(0,-0.26458333,0.26458333,0,203.72917,14.350404)" - style="opacity:0.3;enable-background:new"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="8" - x="7" - height="12" - width="12" - id="rect4266-0-3-1-0" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 12.833334,19.5 13.5,18.812499 8.833335,14.000001 13.5,9.1875008 12.833332,8.5 7.5,14.000001 Z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke-width:0.957427" - id="rect909-7-3-7-3-5-2-0-6-8-7-6" /> - </g> - <g - id="carrow-plus-normal" - transform="matrix(-0.26458333,0,0,-0.26458333,203.2,19.112904)" - style="enable-background:new"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="4" - x="4" - height="14" - width="14" - id="rect4266-5-93" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - id="rect909-7-3-7-3-5-2-0-3-42" /> - </g> - <g - style="enable-background:new" - transform="matrix(0.26458333,0,0,0.26458333,197.37917,16.996237)" - id="carrow-minus-normal"> - <rect - id="rect4266-5-7-19" - width="14" - height="14" - x="4" - y="4" - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-3-3-22" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - id="carrow-minus-focused" - transform="matrix(0.26458333,0,0,0.26458333,201.08333,16.996237)" - style="enable-background:new"> - <rect - style="opacity:0.00100002;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="4" - x="4" - height="14" - width="14" - id="rect4266-5-7-1-1" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - style="opacity:1;fill:#${primary};fill-opacity:1" - id="rect909-7-3-7-3-5-2-0-3-3-1-4" /> - </g> - <g - style="enable-background:new" - transform="matrix(-0.26458333,0,0,-0.26458333,206.90417,19.112904)" - id="carrow-plus-focused"> - <rect - id="rect4266-5-9-3" - width="14" - height="14" - x="4" - y="4" - style="opacity:0.00100002;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-3-4-4" - style="opacity:1;fill:#${primary};fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - style="opacity:0.3;enable-background:new" - transform="matrix(-0.26458333,0,0,-0.26458333,210.60833,19.112904)" - id="carrow-plus-disabled"> - <rect - id="rect4266-5-93-0" - width="14" - height="14" - x="4" - y="4" - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-3-42-3" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - id="carrow-minus-disabled" - transform="matrix(0.26458333,0,0,0.26458333,204.7875,16.996237)" - style="opacity:0.3;enable-background:new"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="4" - x="4" - height="14" - width="14" - id="rect4266-5-7-19-1" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - id="rect909-7-3-7-3-5-2-0-3-3-22-0" /> - </g> - </g> - <g - id="g2954" - transform="translate(2.116672,-1.8520835)"> - <g - id="splitter-grip-pressed" - transform="matrix(0.26458333,0,0,0.26458333,108.47916,-37.041666)"> - <rect - ry="0" - y="150" - x="153" - height="32" - width="6" - id="rect2011" - style="opacity:0.003;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:4.33011" - rx="0" /> - <rect - style="opacity:0.90000002;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:2.5" - id="rect2009" - width="2" - height="32" - x="155" - y="150" - ry="1" /> - </g> - <g - transform="matrix(0.26458333,0,0,0.26458333,104.51041,-37.041666)" - id="splitter-grip-normal"> - <rect - rx="0" - style="opacity:0.003;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:4.33011" - id="rect2011-0" - width="6" - height="32" - x="153" - y="150" - ry="0" /> - <rect - ry="1" - y="150" - x="155" - height="32" - width="2" - id="rect2009-2" - style="opacity:0.4;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:2.5" /> - </g> - <g - transform="matrix(0.26458333,0,0,0.26458333,106.62708,-37.041666)" - id="splitter-grip-focused"> - <rect - rx="0" - style="opacity:0.003;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:4.33011" - id="rect2044" - width="6" - height="32" - x="153" - y="150" - ry="0" /> - <rect - ry="1" - y="150" - x="155" - height="32" - width="2" - id="rect2046" - style="opacity:0.90000002;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:2.5" /> - </g> - </g> - <g - id="g2838"> - <g - id="dock-close" - transform="matrix(0.26458333,0,0,0.26458333,102.3047,-112.39447)"> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:0.059091;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4614" - width="13.000015" - height="12.999986" - x="271.53571" - y="438.79803" /> - <g - id="g4631"> - <rect - ry="2.0000045" - y="440.798" - x="273.53571" - height="8.9999943" - width="8.9999857" - id="rect4577-9-1" - style="opacity:0.003;fill:#da4453;fill-opacity:1;stroke:none;stroke-width:1.25001" /> - <path - id="rect4622" - style="color:#eff0f1;opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:0.139615;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 275.53575,442.79801 v 0.88379 l 1.61622,1.61622 -1.61622,1.61621 v 0.88379 h 0.88379 l 1.61621,-1.61622 1.61622,1.61622 h 0.88379 v -0.88379 l -1.61622,-1.61621 1.61622,-1.61622 v -0.88379 h -0.88379 l -1.61622,1.61622 -1.61621,-1.61622 z" /> - </g> - </g> - <g - transform="matrix(0.26458333,0,0,0.26458333,102.30471,-116.09864)" - id="dock-restore"> - <rect - y="438.79803" - x="271.53571" - height="12.999986" - width="13.000015" - id="rect4614-0" - style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:0.059091;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <g - id="g4631-4"> - <rect - style="opacity:0.003;fill:#da4453;fill-opacity:1;stroke:none;stroke-width:1.25001" - id="rect4577-9-1-6" - width="8.9999857" - height="8.9999943" - x="273.53571" - y="440.798" - ry="2.0000045" /> - <path - transform="translate(10.53575,227.79801)" - d="m 267,215 -2,2 v 1 l 2,2 h 1 l 2,-2 v -1 l -2,-2 z m 0.19922,1 h 0.60156 L 269,217.19922 v 0.60156 L 267.80078,219 h -0.60156 L 266,217.80078 v -0.60156 z" - style="color:#eff0f1;opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:0.139615;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4622-2" /> - </g> - </g> - </g> - <g - id="g2845" - transform="translate(-35.983345,-0.7940083)"> - <g - id="g1438"> - <path - style="opacity:0.4;fill:#fcfcfc;fill-opacity:1;stroke-width:0.264583" - d="m 189.51947,19.31484 a 2.1166666,2.1166666 0 0 0 -2.11667,-2.11667 2.1166666,2.1166666 0 0 0 -2.11667,2.11667 2.1166666,2.1166666 0 0 0 2.11667,2.11666 2.1166666,2.1166666 0 0 0 2.11667,-2.11666 m -1.05834,-0.87128 -0.87153,0.87128 0.87127,0.87127 -0.18706,0.18706 -0.87128,-0.87127 -0.87127,0.87127 -0.18706,-0.18706 0.87128,-0.87127 -0.87128,-0.87128 0.18706,-0.18706 0.87127,0.87128 0.87128,-0.87128 0.18706,0.18706" - id="tab-close-normal" /> - <path - id="tab-close-focused" - d="m 193.7528,19.31484 a 2.1166666,2.1166666 0 0 0 -2.11667,-2.11667 2.1166666,2.1166666 0 0 0 -2.11666,2.11667 2.1166666,2.1166666 0 0 0 2.11666,2.11666 2.1166666,2.1166666 0 0 0 2.11667,-2.11666 m -1.05833,-0.87128 -0.87154,0.87128 0.87127,0.87127 -0.18706,0.18706 -0.87127,-0.87127 -0.87127,0.87127 -0.18707,-0.18706 0.87128,-0.87127 -0.87128,-0.87128 0.18707,-0.18706 0.87127,0.87128 0.87127,-0.87128 0.18706,0.18706" - style="opacity:0.75;fill:#da4453;fill-opacity:1;stroke-width:0.264583" /> - <path - id="tab-close-pressed" - d="m 197.98613,19.31484 a 2.1166666,2.1166666 0 0 0 -2.11666,-2.11667 2.1166666,2.1166666 0 0 0 -2.11667,2.11667 2.1166666,2.1166666 0 0 0 2.11667,2.11666 2.1166666,2.1166666 0 0 0 2.11666,-2.11666 m -1.05833,-0.87128 -0.87154,0.87128 0.87127,0.87127 -0.18706,0.18706 -0.87127,-0.87127 -0.87127,0.87127 -0.18706,-0.18706 0.87127,-0.87127 -0.87127,-0.87128 0.18706,-0.18706 0.87127,0.87128 0.87127,-0.87128 0.18706,0.18706" - style="opacity:0.3;fill:#da4453;fill-opacity:1;stroke-width:0.264583" /> - <path - id="tab-close-toggled" - d="m 202.21947,19.31484 a 2.1166666,2.1166666 0 0 0 -2.11667,-2.11667 2.1166666,2.1166666 0 0 0 -2.11667,2.11667 2.1166666,2.1166666 0 0 0 2.11667,2.11666 2.1166666,2.1166666 0 0 0 2.11667,-2.11666 m -1.05834,-0.87128 -0.87153,0.87128 0.87127,0.87127 -0.18706,0.18706 -0.87127,-0.87127 -0.87128,0.87127 -0.18706,-0.18706 0.87127,-0.87127 -0.87127,-0.87128 0.18706,-0.18706 0.87128,0.87128 0.87127,-0.87128 0.18706,0.18706" - style="fill:#da4453;fill-opacity:1;stroke-width:0.264583" /> - <path - id="tab-close-disabled" - d="m 206.4528,19.31484 a 2.1166666,2.1166666 0 0 0 -2.11667,-2.11667 2.1166666,2.1166666 0 0 0 -2.11666,2.11667 2.1166666,2.1166666 0 0 0 2.11666,2.11666 2.1166666,2.1166666 0 0 0 2.11667,-2.11666 m -1.05833,-0.87128 -0.87154,0.87128 0.87127,0.87127 -0.18706,0.18706 -0.87127,-0.87127 -0.87127,0.87127 -0.18706,-0.18706 0.87127,-0.87127 -0.87127,-0.87128 0.18706,-0.18706 0.87127,0.87128 0.87127,-0.87128 0.18706,0.18706" - style="opacity:0.15;fill:#fcfcfc;fill-opacity:1;stroke-width:0.264583" /> - </g> - </g> - <g - id="g2730" - transform="translate(0,11.641668)"> - <g - id="slidercursor-normal" - transform="matrix(0.26458333,0,0,0.26458333,127.26449,51.064586)"> - <rect - y="-19" - x="269" - height="20" - width="20" - id="rect9106" - style="opacity:0.003;fill:#000000;fill-opacity:1" /> - <path - id="path3924" - style="opacity:0.3;fill:#b2b3b4;fill-opacity:0.80000001;stroke-width:2.25" - d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z" - sodipodi:nodetypes="ssssss" /> - <circle - style="fill:#${base};fill-opacity:1;stroke-width:2" - r="8" - cy="-8.9999733" - cx="279" - id="circle2383" /> - </g> - <g - transform="matrix(0.26458333,0,0,0.26458333,127.26449,45.772916)" - id="slidercursor-focused"> - <rect - style="opacity:0.003;fill:#000000;fill-opacity:1" - id="rect9116" - width="20" - height="20" - x="269" - y="-19" /> - <path - d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z m 0.01,1 a 7.9999998,7.9999998 0 0 1 8,8 7.9999998,7.9999998 0 0 1 -8,8 7.9999998,7.9999998 0 0 1 -8,-8 7.9999998,7.9999998 0 0 1 8,-8 z" - style="opacity:1;fill:#${primary};fill-opacity:1;stroke-width:2.25" - id="path9118" /> - <circle - id="circle9120" - cx="279" - cy="-8.9999733" - r="8" - style="fill:#${base};fill-opacity:1;stroke-width:2" /> - </g> - <g - id="slidercursor-pressed" - transform="matrix(0.26458333,0,0,0.26458333,127.26449,40.481249)"> - <rect - y="-19" - x="269" - height="20" - width="20" - id="rect9128" - style="opacity:0.003;fill:#000000;fill-opacity:1" /> - <path - id="path9130" - style="opacity:1;fill:#${primary};fill-opacity:1;stroke-width:2.25" - d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z m 0.01,1 a 7.9999998,7.9999998 0 0 1 8,8 7.9999998,7.9999998 0 0 1 -8,8 7.9999998,7.9999998 0 0 1 -8,-8 7.9999998,7.9999998 0 0 1 8,-8 z" /> - <circle - style="fill:#${base};fill-opacity:1;stroke-width:2" - r="8" - cy="-8.9999733" - cx="279" - id="circle9132" /> - </g> - <g - transform="matrix(0.26458333,0,0,0.26458333,127.26449,34.925)" - id="slidercursor-disabled"> - <rect - style="opacity:0.003;fill:#000000;fill-opacity:1" - id="rect9106-2" - width="20" - height="20" - x="269" - y="-19" /> - <path - d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z m 0.01,1 a 7.9999998,7.9999998 0 0 1 8,8 7.9999998,7.9999998 0 0 1 -8,8 7.9999998,7.9999998 0 0 1 -8,-8 7.9999998,7.9999998 0 0 1 8,-8 z" - style="opacity:0.15;fill:#b2b3b4;fill-opacity:0.80000001;stroke-width:2.25" - id="path3924-3" /> - <circle - id="circle2383-0" - cx="279" - cy="-8.9999733" - r="8" - style="fill:#${base};fill-opacity:1;stroke-width:2" /> - </g> - </g> - <g - id="g2826" - transform="translate(19.830454,-9.2737129)"> - <g - style="enable-background:new" - transform="matrix(0,-0.26458333,0.26458333,0,151.27875,26.722918)" - id="menuitem-right-normal"> - <rect - id="rect4266-3" - width="14" - height="14" - x="4" - y="4" - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-8" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - id="menuitem-up-normal" - transform="matrix(-0.26458333,0,0,-0.26458333,157.09959,23.018752)" - style="enable-background:new"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="4" - x="4" - height="14" - width="14" - id="rect4266-3-8" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - id="rect909-7-3-7-3-5-2-0-8-7" /> - </g> - <g - id="menuitem-down-normal" - transform="matrix(0.26458333,0,0,0.26458333,151.27875,24.606251)" - style="enable-background:new"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="4" - x="4" - height="14" - width="14" - id="rect4266-3-9" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - id="rect909-7-3-7-3-5-2-0-8-9" /> - </g> - <g - style="enable-background:new" - transform="matrix(0,0.26458333,-0.26458333,0,157.09959,28.310418)" - id="menuitem-left-normal"> - <rect - id="rect4266-3-9-1" - width="14" - height="14" - x="4" - y="4" - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-8-9-0" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - id="menuitem-right-focused" - transform="matrix(0,-0.26458333,0.26458333,0,155.24751,26.722916)" - style="enable-background:new"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="4" - x="4" - height="14" - width="14" - id="rect4266-3-5" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - id="rect909-7-3-7-3-5-2-0-8-8" /> - </g> - <g - style="enable-background:new" - transform="matrix(-0.26458333,0,0,-0.26458333,161.06834,23.018752)" - id="menuitem-up-focused"> - <rect - id="rect4266-3-8-9" - width="14" - height="14" - x="4" - y="4" - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-8-7-3" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - <path - id="path4150" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - style="enable-background:new" - transform="matrix(0.26458333,0,0,0.26458333,155.24751,24.606251)" - id="menuitem-down-focused"> - <rect - id="rect4266-3-9-0" - width="14" - height="14" - x="4" - y="4" - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="rect909-7-3-7-3-5-2-0-8-9-1" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - <path - id="path4152" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - sodipodi:nodetypes="ccccccc" - class="ColorScheme-Text" /> - </g> - <g - id="menuitem-left-focused" - transform="matrix(0,0.26458333,-0.26458333,0,161.06834,28.310415)" - style="enable-background:new"> - <rect - style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - y="4" - x="4" - height="14" - width="14" - id="rect4266-3-9-1-2" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" - style="opacity:1;fill:#fcfcfc;fill-opacity:1" - id="rect909-7-3-7-3-5-2-0-8-9-0-9" /> - </g> - </g> - <g - id="button-default-indicator" - transform="matrix(0.26458333,0,0,0.26458333,133.28386,24.804689)"> - <rect - style="opacity:0;fill:#7b7b7b" - id="rect139" - width="25" - height="25" - x="375" - y="87.5" /> - <path - style="opacity:0.00100002" - id="path141" - d="m 396.25,86.25 -17.5,17.5 h 17.5 z" /> - </g> - <g - id="focus-left" - transform="matrix(0.25190394,0,0,0.26458333,194.29541,17.594793)" - style="opacity:0;stroke-width:1.02486"> - <path - inkscape:connector-curvature="0" - style="opacity:0.19;fill:#ffffff;stroke-width:1.02486" - id="path1484-6" - d="m 183,121 v 10 h 2 v -10 z" /> - </g> - <g - id="focus-right" - transform="matrix(0.25190394,0,0,0.26458333,193.7916,17.594793)" - style="opacity:0;stroke-width:1.02486"> - <path - inkscape:connector-curvature="0" - style="opacity:0.19;fill:#ffffff;stroke-width:1.02486" - id="path1487" - d="m 197,121 v 10 h 2 v -10 z" /> - </g> - <g - id="focus-top" - transform="matrix(0.25190394,0,0,0.26458333,194.04351,17.859376)" - style="opacity:0;stroke-width:1.02486"> - <path - inkscape:connector-curvature="0" - style="opacity:0.19;fill:#ffffff;stroke-width:1.02486" - id="path1490-7" - d="m 186,118 v 2 h 10 v -2 z" /> - </g> - <g - id="focus-bottom" - transform="matrix(0.25190394,0,0,0.26458333,194.04351,17.330209)" - style="opacity:0.200224;stroke-width:1.02486"> - <path - inkscape:connector-curvature="0" - style="opacity:0.7;fill:#${primary};fill-opacity:1;stroke-width:1.02486" - id="path1493-5" - d="m 186,132 v 2 h 10 v -2 z" /> - </g> - <path - inkscape:connector-curvature="0" - id="focus-bottomleft" - d="m 240.39383,52.255209 h 0.50381 v 0.529167 c -0.50381,0 -0.50381,-0.529167 -0.50381,-0.529167 z" - style="opacity:0.200224;fill:#${primary};fill-opacity:1;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="focus-bottomright" - d="m 243.92049,52.255209 h -0.50381 v 0.529167 c 0.50381,0 0.50381,-0.529167 0.50381,-0.529167 z" - style="opacity:0.200224;fill:#${primary};fill-opacity:1;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="focus-topleft" - d="m 240.39383,49.609376 h 0.50381 V 49.08021 c -0.50381,0 -0.50381,0.529166 -0.50381,0.529166 z" - style="opacity:0;fill:#ffffff;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="focus-topright" - d="m 243.92049,49.609376 h -0.50381 V 49.08021 c 0.50381,0 0.50381,0.529166 0.50381,0.529166 z" - style="opacity:0;fill:#ffffff;stroke-width:0.264583" /> - <g - id="g2773" - transform="translate(0,11.641668)"> - <path - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="slider-toggled-topleft" - d="m 187.85417,38.76138 c -1.75895,0 -3.175,1.41605 -3.175,3.175 h 3.175 z" /> - <path - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="slider-toggled-left" - d="m 184.67917,41.93638 v 4.340833 0.02487 h 3.175 v -4.365625 h -3.175 z" /> - <path - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="slider-toggled-topright" - d="m 187.85417,38.76138 c 1.75895,0 3.175,1.41605 3.175,3.175 h -3.175 z" /> - <path - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="slider-toggled-right" - d="m 187.85417,41.93638 v 4.340833 0.02487 h 3.175 v -4.365625 h -3.175 z" /> - <use - width="450" - x="0" - y="0" - height="1230" - xlink:href="#slider-toggled-topleft" - id="slider-toggled-bottomleft" - transform="matrix(1,0,0,-1,5.6666662e-7,88.238489)" - style="fill:#${primary}" /> - <use - width="450" - x="0" - y="0" - height="1230" - xlink:href="#slider-toggled-topright" - id="slider-toggled-bottomright" - transform="matrix(1,0,0,-1,5.6666662e-7,88.238489)" - style="fill:#${primary}" /> - <path - style="fill:#b3b3b5;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" - id="slider-normal-left" - d="m 177.27083,41.804087 v 4.340833 0.02487 h 3.175 v -4.365625 h -3.175 z" /> - <path - style="fill:#b3b3b5;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" - id="slider-normal-right" - d="m 180.44583,41.804087 v 4.340833 0.02487 h 3.175 v -4.365625 h -3.175 z" /> - <path - style="fill:#b3b3b5;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" - id="slider-normal-bottomleft" - d="m 180.44583,49.344816 c -1.75895,0 -3.175,-1.41605 -3.175,-3.175 h 3.175 z" /> - <path - style="fill:#b3b3b5;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" - id="slider-normal-bottomright" - d="m 180.44583,49.344816 c 1.75895,0 3.175,-1.41605 3.175,-3.175 h -3.175 z" /> - <path - style="fill:#b3b3b5;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" - id="slider-normal-topright" - d="m 183.62083,41.804165 c 0,-1.75895 -1.41605,-3.175 -3.175,-3.175 v 3.175 z" /> - <path - style="fill:#b3b3b5;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" - id="slider-normal-topleft" - d="m 180.44583,38.629165 c -1.75895,0 -3.175,1.41605 -3.175,3.175 h 3.175 z" /> - </g> - <g - id="g2751" - transform="translate(0,11.641668)"> - <g - id="slidercursor-tickless-normal" - transform="matrix(0.26458333,0,0,0.26458333,133.88175,51.064587)"> - <rect - y="-19" - x="269" - height="20" - width="20" - id="rect9106-6" - style="opacity:0.003;fill:#000000;fill-opacity:1" /> - <path - id="path3924-2" - style="opacity:0.3;fill:#b2b3b4;fill-opacity:0.80000001;stroke-width:2.25" - d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z" - sodipodi:nodetypes="ssssss" /> - <circle - style="fill:#${base};fill-opacity:1;stroke-width:2" - r="8" - cy="-8.9999733" - cx="279" - id="circle2383-6" /> - </g> - <g - transform="matrix(0.26458333,0,0,0.26458333,133.88175,45.772917)" - id="slidercursor-tickless-focused"> - <rect - style="opacity:0.003;fill:#000000;fill-opacity:1" - id="rect9116-9" - width="20" - height="20" - x="269" - y="-19" /> - <path - d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z m 0.01,1 a 7.9999998,7.9999998 0 0 1 8,8 7.9999998,7.9999998 0 0 1 -8,8 7.9999998,7.9999998 0 0 1 -8,-8 7.9999998,7.9999998 0 0 1 8,-8 z" - style="opacity:1;fill:#${primary};fill-opacity:1;stroke-width:2.25" - id="path9118-2" /> - <circle - id="circle9120-0" - cx="279" - cy="-8.9999733" - r="8" - style="fill:#${base};fill-opacity:1;stroke-width:2" /> - </g> - <g - id="slidercursor-tickless-pressed" - transform="matrix(0.26458333,0,0,0.26458333,133.88175,40.48125)"> - <rect - y="-19" - x="269" - height="20" - width="20" - id="rect9128-7" - style="opacity:0.003;fill:#000000;fill-opacity:1" /> - <path - id="path9130-5" - style="opacity:1;fill:#${primary};fill-opacity:1;stroke-width:2.25" - d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z m 0.01,1 a 7.9999998,7.9999998 0 0 1 8,8 7.9999998,7.9999998 0 0 1 -8,8 7.9999998,7.9999998 0 0 1 -8,-8 7.9999998,7.9999998 0 0 1 8,-8 z" /> - <circle - style="fill:#${base};fill-opacity:1;stroke-width:2" - r="8" - cy="-8.9999733" - cx="279" - id="circle9132-9" /> - </g> - <g - transform="matrix(0.26458333,0,0,0.26458333,133.88175,34.925001)" - id="slidercursor-tickless-disabled"> - <rect - style="opacity:0.003;fill:#000000;fill-opacity:1" - id="rect9106-2-2" - width="20" - height="20" - x="269" - y="-19" /> - <path - d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z m 0.01,1 a 7.9999998,7.9999998 0 0 1 8,8 7.9999998,7.9999998 0 0 1 -8,8 7.9999998,7.9999998 0 0 1 -8,-8 7.9999998,7.9999998 0 0 1 8,-8 z" - style="opacity:0.15;fill:#b2b3b4;fill-opacity:0.80000001;stroke-width:2.25" - id="path3924-3-8" /> - <circle - id="circle2383-0-9" - cx="279" - cy="-8.9999733" - r="8" - style="fill:#${base};fill-opacity:1;stroke-width:2" /> - </g> - </g> - <g - id="g1936" - transform="matrix(0.26458333,0,0,0.26458333,43.225268,-144.85447)"> - <g - id="dial-notches" - transform="translate(384.49988,133.75005)" - style="fill:#ffffff"> - <rect - style="opacity:0" - id="rect109" - width="45" - height="45" - x="202.5" - y="667.5" /> - <g - style="fill:#5a5a5a" - id="g114"> - <path - id="dial-notches0" - d="m 214.625,670 -1.75,1 2.25,3.9063 1.75,-1 z m 20.75,0 -2.25,3.9063 1.75,1 2.25,-3.9063 z M 202.5,689 v 2 h 4.5 v -2 z m 40.5,0 v 2 h 4.5 v -2 z m -27.875,16.0938 -2.25,3.9062 1.75,1 2.25,-3.9062 z m 19.75,0 -1.75,1 2.25,3.9062 1.75,-1 z" - style="fill:#${primary};fill-opacity:1" /> - <path - id="path112" - d="m 222.9062,667.5938 -0.5,0.0625 0.3125,2.9688 0.5,-0.0312 -0.3125,-3 z m 4.1875,0 -0.3125,3 0.5,0.0312 0.3125,-2.9688 -0.5,-0.0625 z m -8.8125,0.9375 -0.4688,0.1562 0.9375,2.8438 0.4688,-0.1562 z m 13.4375,0 -0.9375,2.8438 0.4688,0.1562 0.9375,-2.8438 z m -21.5938,4.5938 -0.375,0.3125 2.0312,2.25 0.3438,-0.3438 -2,-2.2188 z m 29.75,0 -2,2.2188 0.3438,0.3438 2.0312,-2.25 -0.375,-0.3125 z m -32.9375,3.4375 -0.2812,0.4062 2.4062,1.7812 0.3125,-0.4062 z m 36.125,0 -2.4375,1.7812 0.3125,0.4062 2.4062,-1.7812 z m -38.5,4.0625 -0.2188,0.4375 2.75,1.25 0.1875,-0.4688 -2.7188,-1.2188 z m 40.875,0 -2.7188,1.2188 0.1875,0.4688 2.75,-1.25 -0.2188,-0.4375 z m -42.4062,4.4375 -0.0937,0.5 2.9375,0.625 0.0937,-0.5 z m 43.9375,0 -2.9375,0.625 0.0937,0.5 2.9375,-0.625 z m -41.0938,8.75 -2.9375,0.625 0.0937,0.5 2.9375,-0.625 z m 38.25,0 -0.0937,0.5 2.9375,0.625 0.0937,-0.5 z m -37.0312,3.875 -2.75,1.25 0.2188,0.4375 2.7188,-1.2188 -0.1875,-0.4688 z m 35.8125,0 -0.1875,0.4688 2.7188,1.2188 0.2188,-0.4375 -2.75,-1.25 z m -33.8438,3.5625 -2.4062,1.7812 0.2812,0.4062 2.4375,-1.7812 z m 31.875,0 -0.3125,0.4062 2.4375,1.7812 0.2812,-0.4062 z m -29.1562,3.0625 -2.0312,2.25 0.375,0.3125 2,-2.2188 -0.3438,-0.3438 z m 26.4375,0 -0.3438,0.3438 2,2.2188 0.375,-0.3125 -2.0312,-2.25 z" /> - </g> - </g> - <circle - id="dial-handle" - cx="558.99988" - cy="830.00006" - r="5" - style="fill:#${primary};fill-opacity:1" /> - <rect - id="dial" - width="45" - height="45" - x="486.62891" - y="791.48175" - rx="22.5" - ry="22.5" - style="opacity:1;fill:#${base};fill-opacity:1" /> - </g> - <g - id="g1454" - transform="translate(3.9687547,10.318751)"> - <path - d="m 188.64792,129.91042 h 7.9375 v 7.9375 h -7.9375 z" - id="window-normal" - style="opacity:0.749881;fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;paint-order:normal" - inkscape:connector-curvature="0" /> - <path - d="m 197.11458,129.91042 h 7.9375 v 7.9375 h -7.9375 z" - id="window-normal-inactive" - style="opacity:0.75032;fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;paint-order:normal" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - style="fill:#${surface};fill-opacity:0.75294119;stroke:none;stroke-width:0.264583" - id="titlebar-normal" - d="m 196.58541,139.96458 v 8.46667 h 8.46667 v -8.46667 z" /> - <use - width="100%" - x="0" - y="0" - height="100%" - xlink:href="#titlebar-normal" - id="titlebar-focused" - transform="translate(-9.260413)" - style="fill:#${surface}" /> - <g - id="g7768" - transform="matrix(0.26458333,0,0,0.26458333,129.80115,1.7291461)"> - <rect - width="30" - x="134.41299" - y="494.46466" - height="30" - style="opacity:1;fill:#002950;fill-opacity:0.0784314;fill-rule:evenodd;stroke:none;stroke-width:1.047;stroke-linecap:square;stroke-linejoin:bevel" - id="tframe-normal" - ry="0" /> - <g - id="tframe-normal-top" - inkscape:label="#tframe-normal-top"> - <rect - y="528.32776" - x="134.625" - height="4" - width="30" - id="rect10491" - style="opacity:1;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:3.49984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" /> - <rect - y="530.82776" - x="134.625" - height="1.5" - width="30" - id="rect10493" - style="opacity:1;fill:#22ff00;fill-opacity:0;stroke:none;stroke-width:3.49984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" /> - </g> - <g - transform="matrix(0.13333333,0,0,1,146.675,0)" - id="tframe-normal-top-leftjunct" - inkscape:label="#tframe-normal-top-leftjunct"> - <rect - y="528.32776" - x="134.625" - height="4" - width="30" - id="rect10491-5" - style="opacity:1;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:3.49984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" /> - <rect - y="530.82776" - x="134.625" - height="1.5" - width="30" - id="rect10493-6" - style="opacity:1;fill:#22ff00;fill-opacity:0;stroke:none;stroke-width:3.49984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" /> - </g> - <g - transform="matrix(0.13333333,0,0,1,112.675,0)" - id="tframe-normal-top-rightjunct" - inkscape:label="#tframe-normal-top-rightjunct"> - <rect - y="528.32776" - x="134.625" - height="4" - width="30" - id="rect10491-5-9" - style="opacity:1;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:3.49984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" /> - <rect - y="530.82776" - x="134.625" - height="1.5" - width="30" - id="rect10493-6-1" - style="opacity:1;fill:#22ff00;fill-opacity:0;stroke:none;stroke-width:3.49984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" /> - </g> - </g> - </g> - <g - id="g2102"> - <path - id="button-normal" - d="m 6.8791668,3.96875 v 8.466666 H 15.345834 V 3.96875 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:1" /> - <rect - id="expand-button-normal" - x="7.9472862e-08" - y="-8.9457153e-09" - width="2.6458333" - height="2.6458333" - style="fill-rule:evenodd;stroke-width:0.264583" /> - <path - id="button-focused" - d="m 24.077088,3.9687502 v 8.4666658 h 8.466666 V 3.9687502 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:1" /> - <path - id="button-toggled" - d="m 57.679172,3.9687501 v 8.4666659 h 8.466666 V 3.9687501 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:1" /> - <path - style="fill:none;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 5.2916666,12.435417 1.5874995,1.587473 5e-7,1.05836 c 0,0 0,0 0,0 H 4.7624999 v -2.645834 z" - id="path1215" /> - <g - id="button-focused-bottomright" - transform="translate(3.1750001)"> - <g - transform="translate(1.5875)" - id="button-focused-bottomright-32"> - <g - transform="matrix(-0.21166666,0,0,-0.21166666,33.866641,22.754505)" - id="g5797"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1615-6" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1617-1" /> - </g> - </g> - <path - style="opacity:0.555;fill:url(#radialGradient1384);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 29.36875,14.022916 c 1.046282,-0.05345 1.576024,-0.834812 1.5875,-1.587499 h 1.852083 l 0,3.968749 -3.439584,0 z" - id="path1219-9" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-focused-bottomleft" - transform="translate(3.1750001)"> - <g - id="button-focused-bottomleft-54" - transform="translate(1.5875)"> - <g - transform="matrix(0,-0.21166666,0.21166666,0,8.9954956,18.520807)" - id="g5785"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1605-1" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1607-0" /> - </g> - </g> - <path - style="opacity:0.558719;fill:url(#radialGradient1444);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 20.902083,14.022916 c -1.046283,-0.05345 -1.576024,-0.834812 -1.5875,-1.587499 l -1.322917,0 0,3.968749 h 2.910417 z" - id="path1219-3-1" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-focused-bottom" - transform="translate(3.1750001)"> - <g - id="button-focused-bottom-54" - transform="translate(1.5875)"> - <g - transform="matrix(0,-0.21166666,0.26051282,0,6.6141675,18.520807)" - id="g5791"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1610-3" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1612-2" /> - </g> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1452);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-27" - width="8.4666662" - height="2.3812497" - x="-29.36875" - y="14.022917" - transform="scale(-1,1)" /> - </g> - <g - id="button-focused-topleft" - transform="translate(3.1750001)"> - <g - id="button-focused-topleft-54" - transform="matrix(0.21166666,0,0,0.21166666,14.816669,-6.3503384)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1635-4" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1637-5" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1420);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 20.902083,2.3812504 c -1.046283,0.05345 -1.576024,0.834812 -1.5875,1.587499 l -1.322917,6e-7 0,-2.6458334 2.910417,0 z" - id="path1219-3-6-0" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-focused-topright" - transform="translate(3.1750001)"> - <g - id="button-focused-topright-43" - transform="matrix(0,0.21166666,-0.21166666,0,39.68784,-2.1166402)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1625-6" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1627-5" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1404);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 29.368749,2.3812504 c 1.046283,0.05345 1.576024,0.834812 1.5875,1.587499 l 1.852084,6e-7 0,-2.6458334 -3.439584,0 z" - id="path1219-3-6-7-9" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-focused-top" - transform="translate(3.1750001)"> - <g - id="button-focused-top-43" - transform="matrix(0,0.21166666,-0.26051282,0,42.06917,-2.1166664)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1630-9" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1632-3" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1412);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-5-3" - width="8.4666653" - height="1.0583342" - x="-29.36875" - y="1.3229166" - transform="scale(-1,1)" - ry="0" /> - </g> - <g - id="button-focused-left" - transform="translate(3.1750001)"> - <g - id="button-focused-left-453" - transform="matrix(0.21166666,0,0,0.26051282,14.816669,-8.7316664)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1600-0" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1602-3" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1428);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-3-6" - width="8.4666662" - height="1.3229165" - x="-12.435416" - y="-19.314583" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="button-focused-right" - transform="translate(3.1750001)"> - <g - id="button-focused-right-12" - transform="matrix(-0.21166666,0,0,0.26051282,35.454168,-8.7316664)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1620-5" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1622-4" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1396);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-2-0" - width="8.4666662" - height="1.8520302" - x="-12.435416" - y="-32.808334" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="button-normal-bottomright"> - <g - id="button-normal-bottomright-23940" - transform="translate(1.5875)"> - <g - transform="matrix(-0.21166666,0,0,-0.21166666,19.843723,22.754505)" - id="g5779"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1615" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1617" /> - </g> - </g> - <path - style="opacity:0.555;fill:url(#radialGradient1384-3);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 15.345833,14.022915 c 1.046282,-0.05345 1.576024,-0.834811 1.5875,-1.587499 l 1.852083,10e-7 0,3.968749 h -3.439583 z" - id="path1219-9-5" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-normal-bottomleft"> - <g - id="button-normal-bottomleft-32" - transform="translate(1.5875)"> - <g - transform="matrix(0,-0.21166666,0.21166666,0,-5.0274221,18.520807)" - id="g5767"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1605" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1607" /> - </g> - </g> - <path - style="opacity:0.558719;fill:url(#radialGradient1444-4);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 6.8791659,14.022915 c -1.046283,-0.05345 -1.576024,-0.834811 -1.5875,-1.587499 l -1.322916,10e-7 v 3.968749 h 2.9104167 z" - id="path1219-3-1-6" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-normal-bottom"> - <g - id="button-normal-bottom-213" - transform="translate(1.5875)"> - <g - transform="matrix(0,-0.21166666,0.26051282,0,-7.4087501,18.520807)" - id="g5773"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1610" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1612" /> - </g> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1636);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-27-9" - width="8.4666662" - height="2.3812506" - x="-15.345833" - y="14.022916" - transform="scale(-1,1)" /> - </g> - <g - id="button-normal-topleft"> - <g - id="button-normal-topleft-21" - transform="matrix(0.21166666,0,0,0.21166666,0.79375008,-6.3503386)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1635" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1637" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1420-5);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 6.8791659,2.3812504 c -1.046283,0.05345 -1.576024,0.8348121 -1.5875,1.5874991 L 3.96875,3.96875 V 1.3229166 h 2.9104166 z" - id="path1219-3-6-0-3" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-normal-topright"> - <g - id="button-normal-topright-3829" - transform="matrix(0,0.21166666,-0.21166666,0,25.664922,-2.1166404)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1625" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1627" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1404-3);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 15.345832,2.3812504 c 1.046283,0.05345 1.576024,0.8348121 1.5875,1.5874991 l 1.852084,5e-7 0,-2.6458334 h -3.439583 z" - id="path1219-3-6-7-9-7" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-normal-top"> - <g - id="button-normal-top-3534" - transform="matrix(0,0.21166666,-0.26051282,0,28.046252,-2.1166666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1630" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1632" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1638);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-5-3-4" - width="8.4666662" - height="1.0583342" - x="-15.345833" - y="1.3229166" - transform="scale(-1,1)" - ry="0" /> - </g> - <g - id="button-normal-left"> - <g - id="button-normal-left-23" - transform="matrix(0.21166666,0,0,0.26051282,0.79375008,-8.7316666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1600" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1602" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1640);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-3-6-5" - width="8.4666662" - height="1.322916" - x="-12.435416" - y="-5.291666" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="button-normal-right"> - <g - id="button-normal-right-893" - transform="matrix(-0.21166666,0,0,0.26051282,21.43125,-8.7316666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1620" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1622" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1642);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-2-0-2" - width="8.4666662" - height="1.8520821" - x="-12.435416" - y="-18.785416" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="button-toggled-bottomright" - transform="translate(9.5249721)"> - <g - id="button-toggled-bottomright-78"> - <g - transform="matrix(-0.21166666,0,0,-0.21166666,62.70625,22.754505)" - id="g5831"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1697" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1699" /> - </g> - </g> - <path - style="opacity:0.555;fill:url(#radialGradient1384-30);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 56.620861,14.022917 c 1.046282,-0.05345 1.576024,-0.834812 1.5875,-1.587499 l 1.852054,-1e-6 v 3.968749 h -3.439583 z" - id="path1219-9-9" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-toggled-bottomleft" - transform="translate(9.5249721)"> - <g - id="button-toggled-bottomleft-76"> - <g - transform="matrix(0,-0.21166666,0.21166666,0,37.835105,18.520807)" - id="g5819"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1687" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1689" /> - </g> - </g> - <path - style="opacity:0.558719;fill:url(#radialGradient1444-7);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 48.154194,14.022917 c -1.046283,-0.05345 -1.576024,-0.834812 -1.5875,-1.587499 l -1.322945,-1e-6 v 3.968749 h 2.910417 z" - id="path1219-3-1-2" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-toggled-bottom" - transform="translate(9.5249721)"> - <g - id="button-toggled-bottom-8"> - <g - transform="matrix(0,-0.21166666,0.26051282,0,35.453776,18.520807)" - id="g5825"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1692" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1694" /> - </g> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1710);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-27-6" - width="8.4666958" - height="2.3812478" - x="-56.620861" - y="14.022919" - transform="scale(-1,1)" /> - </g> - <g - id="button-toggled-topleft" - transform="translate(9.5249721)"> - <g - id="button-toggled-topleft-34" - transform="matrix(0.21166666,0,0,0.21166666,42.068777,-6.3503386)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1717" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1719" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1420-9);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 48.154194,2.3812512 c -1.046283,0.05345 -1.576024,0.834812 -1.5875,1.587499 l -1.322945,-2e-7 V 1.3229166 h 2.910417 z" - id="path1219-3-6-0-6" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-toggled-topright" - transform="translate(9.5249721)"> - <g - id="button-toggled-topright-65" - transform="matrix(0,0.21166666,-0.21166666,0,66.939949,-2.1166404)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1707" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1709" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1404-8);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 56.62086,2.3812512 c 1.046283,0.05345 1.576024,0.834812 1.5875,1.587499 l 1.852055,-2e-7 V 1.3229166 h -3.439583 z" - id="path1219-3-6-7-9-4" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-toggled-top" - transform="translate(9.5249721)"> - <g - id="button-toggled-top-65" - transform="matrix(0,0.21166666,-0.26051282,0,69.321278,-2.1166666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1712" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1714" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1712);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-5-3-9" - width="8.4666424" - height="1.0583349" - x="-56.620831" - y="1.3229166" - transform="scale(-1,1)" - ry="0" /> - </g> - <g - id="button-toggled-left" - transform="translate(9.5249721)"> - <g - id="button-toggled-left-23" - transform="matrix(0.21166666,0,0,0.26051282,42.068777,-8.7316666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1682" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1684" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1714);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-3-6-50" - width="8.4666672" - height="1.3229471" - x="-12.435417" - y="-46.566696" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="button-toggled-right" - transform="translate(9.5249721)"> - <g - id="button-toggled-right-87" - transform="matrix(-0.21166666,0,0,0.26051282,62.706277,-8.7316666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1702" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1704" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1716);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-2-0-4" - width="8.4666653" - height="1.8520491" - x="-12.435416" - y="-60.060417" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <path - id="button-pressed" - d="m 41.804172,3.9687501 v 8.4666659 h 8.466666 V 3.9687501 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:1" /> - <g - id="button-pressed-bottomright" - transform="translate(-6.3500277)"> - <g - id="button-toggled-bottomright-78-4"> - <g - transform="matrix(-0.21166666,0,0,-0.21166666,62.70625,22.754505)" - id="g5831-7"> - <path - d="m 28.749876,44.584873 c -3.125,0 -5,1.562531 -5,4.166748 h 5 z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.912882;opacity:1" - id="path1697-8" /> - <path - d="m 28.75,42.5016 c -4.125,-4.2e-5 -7.50003,2.812484 -7.5,6.250021 h 2.5 c 0,-2.604176 1.875,-4.166681 5,-4.166681 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1;stroke-width:0.912872" - id="path1699-4" /> - </g> - </g> - <path - style="opacity:0.555;fill:url(#radialGradient1384-30-2);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 56.62086,13.758333 c 0.850835,0.0053 1.587627,-0.581679 1.587501,-1.322915 l 1.852054,-1e-6 v 3.968749 h -3.439583 z" - id="path1219-9-9-5" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-pressed-bottomleft" - transform="translate(-6.3500277)"> - <g - id="button-toggled-bottomleft-76-3"> - <g - transform="matrix(0,-0.21166666,0.21166666,0,37.835105,18.520807)" - id="g5819-6"> - <path - d="m 28.749897,43.751601 c -2.604218,0 -4.166749,1.875 -4.166749,5 h 4.166749 z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.912882;opacity:1" - id="path1687-1" /> - <path - d="m 28.75,41.2516 c -3.437568,-5.1e-5 -6.250148,3.37497 -6.250123,7.5 h 2.083374 c 0,-3.125 1.562531,-5 4.166749,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1;stroke-width:0.912882" - id="path1689-0" /> - </g> - </g> - <path - style="opacity:0.558719;fill:url(#radialGradient1444-7-5);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 48.154194,13.758333 c -0.889837,-0.0095 -1.586487,-0.600034 -1.5875,-1.322915 l -1.322945,-1e-6 v 3.968749 h 2.910417 z" - id="path1219-3-1-2-6" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-pressed-bottom" - transform="translate(-6.3500277)"> - <g - id="button-toggled-bottom-8-2"> - <g - transform="matrix(0,-0.21166666,0.26051282,0,35.453776,18.520807)" - id="g5825-0"> - <path - d="m 24.583148,48.751601 v 32.5 h 4.166749 v -32.5 z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.912882;opacity:1" - id="path1692-6" /> - <path - d="m 22.499877,48.7516 v 32.5 h 2.083374 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1;stroke-width:0.912882" - id="path1694-1" /> - </g> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1868);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-27-6-5" - width="8.4666929" - height="2.645834" - x="-56.620861" - y="13.758333" - transform="scale(-1,1)" /> - </g> - <g - id="button-pressed-topleft" - transform="translate(-6.3500277)"> - <g - id="button-toggled-topleft-34-4" - transform="matrix(0.21166666,0,0,0.21166666,42.068777,-6.3503386)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1717-7" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1719-6" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1420-9-9);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 48.154194,2.3812512 c -1.046283,0.05345 -1.576024,0.834812 -1.5875,1.587499 l -1.322945,-2e-7 V 1.3229166 h 2.910417 z" - id="path1219-3-6-0-6-5" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-pressed-topright" - transform="translate(-6.3500277)"> - <g - id="button-toggled-topright-665" - transform="matrix(0,0.21166666,-0.21166666,0,66.939949,-2.1166404)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" - id="path1707-3" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1709-7" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1404-8-7);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 56.62086,2.3812512 c 1.046283,0.05345 1.576024,0.834812 1.5875,1.587499 l 1.852055,-2e-7 V 1.3229166 h -3.439583 z" - id="path1219-3-6-7-9-4-4" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="button-pressed-top" - transform="translate(-6.3500277)"> - <g - id="button-toggled-top-65-2" - transform="matrix(0,0.21166666,-0.26051282,0,69.321278,-2.1166666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1712-5" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1714-4" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1870);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-5-3-9-7" - width="8.4666424" - height="1.0583349" - x="-56.620831" - y="1.3229166" - transform="scale(-1,1)" - ry="0" /> - </g> - <g - id="button-pressed-left" - transform="translate(-6.3500277)"> - <g - id="button-toggled-left-23-4" - transform="matrix(0.21166666,0,0,0.26051282,42.068777,-8.7316666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1682-3" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1684-0" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1874);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-3-6-50-7" - width="8.4666672" - height="1.3229471" - x="-12.435417" - y="-46.566696" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="button-pressed-right" - transform="translate(-6.3500277)"> - <g - id="button-toggled-right-87-6" - transform="matrix(-0.21166666,0,0,0.26051282,62.706277,-8.7316666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" - id="path1702-8" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1704-8" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient1878);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-2-0-4-4" - width="8.4666653" - height="1.8520491" - x="-12.435416" - y="-60.060417" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - </g> - <g - id="g6869"> - <path - id="combo-normal" - d="m 6.8791668,22.489583 v 8.466666 h 8.4666672 v -8.466666 z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:0.5" /> - <rect - id="expand-combo-normal" - x="1.2561239e-07" - y="18.520832" - width="2.6458333" - height="2.6458333" - style="fill-rule:evenodd;stroke-width:0.264583" /> - <path - id="combo-focused" - d="m 24.077088,22.489583 v 8.466666 h 8.466666 v -8.466666 z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:0.5" /> - <path - id="combo-toggled" - d="m 57.679172,22.489583 v 8.466666 h 8.466666 v -8.466666 z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:0.75" /> - <path - style="fill:none;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 5.2916666,30.95625 1.5874995,1.587473 5e-7,1.05836 c 0,0 0,0 0,0 H 4.7624999 v -2.645834 z" - id="path1215-6" /> - <g - id="combo-focused-bottomright" - transform="translate(3.1750001,18.520833)"> - <g - transform="translate(1.5875)" - id="button-focused-bottomright-32-3"> - <g - transform="matrix(-0.21166666,0,0,-0.21166666,33.866641,22.754505)" - id="g5797-6"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" - id="path1615-6-5" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1617-1-6" /> - </g> - </g> - <path - style="opacity:0.555;fill:url(#radialGradient1384-2);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 29.36875,14.022916 c 1.046282,-0.05345 1.576024,-0.834812 1.5875,-1.587499 h 1.852083 v 3.968749 h -3.439584 z" - id="path1219-9-3" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-focused-bottomleft" - transform="translate(3.1750001,18.520833)"> - <g - id="button-focused-bottomleft-54-4" - transform="translate(1.5875)"> - <g - transform="matrix(0,-0.21166666,0.21166666,0,8.9954956,18.520807)" - id="g5785-8"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" - id="path1605-1-1" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1607-0-2" /> - </g> - </g> - <path - style="opacity:0.558719;fill:url(#radialGradient1444-8);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 20.902083,14.022916 c -1.046283,-0.05345 -1.576024,-0.834812 -1.5875,-1.587499 h -1.322917 v 3.968749 h 2.910417 z" - id="path1219-3-1-9" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-focused-bottom" - transform="translate(3.1750001,18.520833)"> - <g - id="button-focused-bottom-54-9" - transform="translate(1.5875)"> - <g - transform="matrix(0,-0.21166666,0.26051282,0,6.6141675,18.520807)" - id="g5791-0"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" - id="path1610-3-8" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1612-2-8" /> - </g> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3135);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-27-5" - width="8.4666662" - height="2.3812497" - x="-29.36875" - y="14.022917" - transform="scale(-1,1)" /> - </g> - <g - id="combo-focused-topleft" - transform="translate(3.1750001,18.520833)"> - <g - id="button-focused-topleft-54-9" - transform="matrix(0.21166666,0,0,0.21166666,14.816669,-6.3503384)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" - id="path1635-4-6" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1637-5-3" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1420-4);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 20.902083,2.3812504 c -1.046283,0.05345 -1.576024,0.834812 -1.5875,1.587499 l -1.322917,6e-7 V 1.3229166 h 2.910417 z" - id="path1219-3-6-0-8" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-focused-topright" - transform="translate(3.1750001,18.520833)"> - <g - id="button-focused-topright-43-6" - transform="matrix(0,0.21166666,-0.21166666,0,39.68784,-2.1166402)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" - id="path1625-6-1" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1627-5-1" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1404-0);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 29.368749,2.3812504 c 1.046283,0.05345 1.576024,0.834812 1.5875,1.587499 l 1.852084,6e-7 V 1.3229166 h -3.439584 z" - id="path1219-3-6-7-9-5" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-focused-top" - transform="translate(3.1750001,18.520833)"> - <g - id="button-focused-top-43-8" - transform="matrix(0,0.21166666,-0.26051282,0,42.06917,-2.1166664)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" - id="path1630-9-4" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1632-3-8" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3137);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-5-3-1" - width="8.4666653" - height="1.0583342" - x="-29.36875" - y="1.3229166" - transform="scale(-1,1)" - ry="0" /> - </g> - <g - id="combo-focused-left" - transform="translate(3.1750001,18.520833)"> - <g - id="button-focused-left-453-3" - transform="matrix(0.21166666,0,0,0.26051282,14.816669,-8.7316664)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" - id="path1600-0-0" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1602-3-4" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3141);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-3-6-4" - width="8.4666662" - height="1.3229165" - x="-12.435416" - y="-19.314583" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="combo-focused-right" - transform="translate(3.1750001,18.520833)"> - <g - id="button-focused-right-12-4" - transform="matrix(-0.21166666,0,0,0.26051282,35.454168,-8.7316664)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" - id="path1620-5-7" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;fill:#${primary};fill-opacity:1" - id="path1622-4-6" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3145);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-2-0-3" - width="8.4666662" - height="1.8520302" - x="-12.435416" - y="-32.808334" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="combo-normal-bottomright" - transform="translate(4.6139532e-8,18.520833)"> - <g - id="button-normal-bottomright-23940-7" - transform="translate(1.5875)"> - <g - transform="matrix(-0.21166666,0,0,-0.21166666,19.843723,22.754505)" - id="g5779-5"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" - id="path1615-9" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1617-6" /> - </g> - </g> - <path - style="opacity:0.555;fill:url(#radialGradient1384-3-2);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 15.345833,14.022915 c 1.046282,-0.05345 1.576024,-0.834811 1.5875,-1.587499 l 1.852083,10e-7 v 3.968749 h -3.439583 z" - id="path1219-9-5-2" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-normal-bottomleft" - transform="translate(4.6139532e-8,18.520833)"> - <g - id="button-normal-bottomleft-32-7" - transform="translate(1.5875)"> - <g - transform="matrix(0,-0.21166666,0.21166666,0,-5.0274221,18.520807)" - id="g5767-8"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" - id="path1605-5" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1607-7" /> - </g> - </g> - <path - style="opacity:0.558719;fill:url(#radialGradient1444-4-6);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 6.8791659,14.022915 c -1.046283,-0.05345 -1.576024,-0.834811 -1.5875,-1.587499 l -1.322916,10e-7 v 3.968749 h 2.9104167 z" - id="path1219-3-1-6-4" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-normal-bottom" - transform="translate(4.6139532e-8,18.520833)"> - <g - id="button-normal-bottom-213-8" - transform="translate(1.5875)"> - <g - transform="matrix(0,-0.21166666,0.26051282,0,-7.4087501,18.520807)" - id="g5773-5"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" - id="path1610-9" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1612-7" /> - </g> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3147);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-27-9-5" - width="8.4666662" - height="2.3812506" - x="-15.345833" - y="14.022916" - transform="scale(-1,1)" /> - </g> - <g - id="combo-normal-topleft" - transform="translate(4.6139532e-8,18.520833)"> - <g - id="button-normal-topleft-21-8" - transform="matrix(0.21166666,0,0,0.21166666,0.79375008,-6.3503386)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" - id="path1635-8" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1637-3" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1420-5-1);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 6.8791659,2.3812504 c -1.046283,0.05345 -1.576024,0.8348121 -1.5875,1.5874991 L 3.96875,3.96875 V 1.3229166 h 2.9104166 z" - id="path1219-3-6-0-3-1" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-normal-topright" - transform="translate(4.6139532e-8,18.520833)"> - <g - id="button-normal-topright-3829-9" - transform="matrix(0,0.21166666,-0.21166666,0,25.664922,-2.1166404)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" - id="path1625-64" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1627-3" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1404-3-0);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 15.345832,2.3812504 c 1.046283,0.05345 1.576024,0.8348121 1.5875,1.5874991 l 1.852084,5e-7 V 1.3229166 h -3.439583 z" - id="path1219-3-6-7-9-7-3" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-normal-top" - transform="translate(4.6139532e-8,18.520833)"> - <g - id="button-normal-top-3534-8" - transform="matrix(0,0.21166666,-0.26051282,0,28.046252,-2.1166666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" - id="path1630-6" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1632-0" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3149);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-5-3-4-4" - width="8.4666662" - height="1.0583342" - x="-15.345833" - y="1.3229166" - transform="scale(-1,1)" - ry="0" /> - </g> - <g - id="combo-normal-left" - transform="translate(4.6139532e-8,18.520833)"> - <g - id="button-normal-left-23-8" - transform="matrix(0.21166666,0,0,0.26051282,0.79375008,-8.7316666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" - id="path1600-8" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1602-9" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3153);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-3-6-5-7" - width="8.4666662" - height="1.322916" - x="-12.435416" - y="-5.291666" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="combo-normal-right" - transform="translate(4.6139532e-8,18.520833)"> - <g - id="button-normal-right-893-6" - transform="matrix(-0.21166666,0,0,0.26051282,21.43125,-8.7316666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" - id="path1620-4" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" - id="path1622-3" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3157);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-2-0-2-0" - width="8.4666662" - height="1.8520821" - x="-12.435416" - y="-18.785416" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="combo-toggled-bottomright" - transform="translate(9.5249721,18.520833)"> - <g - id="button-toggled-bottomright-78-0"> - <g - transform="matrix(-0.21166666,0,0,-0.21166666,62.70625,22.754505)" - id="g5831-9"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.75" - id="path1697-2" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1699-5" /> - </g> - </g> - <path - style="opacity:0.555;fill:url(#radialGradient1384-30-6);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 56.620861,14.022917 c 1.046282,-0.05345 1.576024,-0.834812 1.5875,-1.587499 l 1.852054,-1e-6 v 3.968749 h -3.439583 z" - id="path1219-9-9-4" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-toggled-bottomleft" - transform="translate(9.5249721,18.520833)"> - <g - id="button-toggled-bottomleft-76-5"> - <g - transform="matrix(0,-0.21166666,0.21166666,0,37.835105,18.520807)" - id="g5819-9"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.75" - id="path1687-4" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1689-6" /> - </g> - </g> - <path - style="opacity:0.558719;fill:url(#radialGradient1444-7-1);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 48.154194,14.022917 c -1.046283,-0.05345 -1.576024,-0.834812 -1.5875,-1.587499 l -1.322945,-1e-6 v 3.968749 h 2.910417 z" - id="path1219-3-1-2-9" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-toggled-bottom" - transform="translate(9.5249721,18.520833)"> - <g - id="button-toggled-bottom-8-24"> - <g - transform="matrix(0,-0.21166666,0.26051282,0,35.453776,18.520807)" - id="g5825-7"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" - id="path1692-7" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1694-5" /> - </g> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3159);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-27-6-4" - width="8.4666958" - height="2.3812478" - x="-56.620861" - y="14.022919" - transform="scale(-1,1)" /> - </g> - <g - id="button-toggled-topleft-8" - transform="translate(9.5249721,18.520833)"> - <g - id="button-toggled-topleft-34-1" - transform="matrix(0.21166666,0,0,0.21166666,42.068777,-6.3503386)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.75" - id="path1717-2" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1719-8" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1420-9-5);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 48.154194,2.3812512 c -1.046283,0.05345 -1.576024,0.834812 -1.5875,1.587499 l -1.322945,-2e-7 V 1.3229166 h 2.910417 z" - id="path1219-3-6-0-6-9" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-toggled-topright" - transform="translate(9.5249721,18.520833)"> - <g - id="button-toggled-topright-65-6" - transform="matrix(0,0.21166666,-0.21166666,0,66.939949,-2.1166404)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.75" - id="path1707-8" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1709-0" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1404-8-9);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 56.62086,2.3812512 c 1.046283,0.05345 1.576024,0.834812 1.5875,1.587499 l 1.852055,-2e-7 V 1.3229166 h -3.439583 z" - id="path1219-3-6-7-9-4-2" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-toggled-top" - transform="translate(9.5249721,18.520833)"> - <g - id="button-toggled-top-65-0" - transform="matrix(0,0.21166666,-0.26051282,0,69.321278,-2.1166666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" - id="path1712-51" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1714-1" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3161);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-5-3-9-0" - width="8.4666424" - height="1.0583349" - x="-56.620831" - y="1.3229166" - transform="scale(-1,1)" - ry="0" /> - </g> - <g - id="button-toggled-left-8" - transform="translate(9.5249721,18.520833)"> - <g - id="button-toggled-left-23-5" - transform="matrix(0.21166666,0,0,0.26051282,42.068777,-8.7316666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" - id="path1682-0" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1684-6" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3165);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-3-6-50-4" - width="8.4666672" - height="1.3229471" - x="-12.435417" - y="-46.566696" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="combo-toggled-right" - transform="translate(9.5249721,18.520833)"> - <g - id="button-toggled-right-87-2" - transform="matrix(-0.21166666,0,0,0.26051282,62.706277,-8.7316666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" - id="path1702-5" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1704-86" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3169);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-2-0-4-2" - width="8.4666653" - height="1.8520491" - x="-12.435416" - y="-60.060417" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <path - id="combo-pressed" - d="m 41.804172,22.489583 v 8.466666 h 8.466666 v -8.466666 z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:0.75" /> - <g - id="combo-pressed-bottomright" - transform="translate(-6.3500277,18.520833)"> - <g - id="button-toggled-bottomright-78-4-7"> - <g - transform="matrix(-0.21166666,0,0,-0.21166666,62.70625,22.754505)" - id="g5831-7-2"> - <path - d="m 28.749876,44.584873 c -3.125,0 -5,1.562531 -5,4.166748 h 5 z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.912882;opacity:0.75" - id="path1697-8-4" /> - <path - d="m 28.75,42.5016 c -4.125,-4.2e-5 -7.50003,2.812484 -7.5,6.250021 h 2.5 c 0,-2.604176 1.875,-4.166681 5,-4.166681 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1;stroke-width:0.912872" - id="path1699-4-0" /> - </g> - </g> - <path - style="opacity:0.555;fill:url(#radialGradient1384-30-2-0);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 56.62086,13.758333 c 0.850835,0.0053 1.587627,-0.581679 1.587501,-1.322915 l 1.852054,-1e-6 v 3.968749 h -3.439583 z" - id="path1219-9-9-5-6" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-pressed-bottomleft" - transform="translate(-6.3500277,18.520833)"> - <g - id="button-toggled-bottomleft-76-3-9"> - <g - transform="matrix(0,-0.21166666,0.21166666,0,37.835105,18.520807)" - id="g5819-6-9"> - <path - d="m 28.749897,43.751601 c -2.604218,0 -4.166749,1.875 -4.166749,5 h 4.166749 z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.912882;opacity:0.75" - id="path1687-1-0" /> - <path - d="m 28.75,41.2516 c -3.437568,-5.1e-5 -6.250148,3.37497 -6.250123,7.5 h 2.083374 c 0,-3.125 1.562531,-5 4.166749,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1;stroke-width:0.912882" - id="path1689-0-8" /> - </g> - </g> - <path - style="opacity:0.558719;fill:url(#radialGradient1444-7-5-9);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 48.154194,13.758333 c -0.889837,-0.0095 -1.586487,-0.600034 -1.5875,-1.322915 l -1.322945,-1e-6 v 3.968749 h 2.910417 z" - id="path1219-3-1-2-6-1" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-pressed-bottom" - transform="translate(-6.3500277,18.520833)"> - <g - id="button-toggled-bottom-8-2-1"> - <g - transform="matrix(0,-0.21166666,0.26051282,0,35.453776,18.520807)" - id="g5825-0-1"> - <path - d="m 24.583148,48.751601 v 32.5 h 4.166749 v -32.5 z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.912882;opacity:0.75" - id="path1692-6-0" /> - <path - d="m 22.499877,48.7516 v 32.5 h 2.083374 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.75;fill:#${primary};fill-opacity:1;stroke-width:0.912882" - id="path1694-1-3" /> - </g> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3173);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-27-6-5-4" - width="8.4666929" - height="2.645834" - x="-56.620861" - y="13.758333" - transform="scale(-1,1)" /> - </g> - <g - id="combo-pressed-topleft" - transform="translate(-6.3500277,18.520833)"> - <g - id="button-toggled-topleft-34-4-3" - transform="matrix(0.21166666,0,0,0.21166666,42.068777,-6.3503386)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.75" - id="path1717-7-9" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1719-6-1" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1420-9-9-1);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 48.154194,2.3812512 c -1.046283,0.05345 -1.576024,0.834812 -1.5875,1.587499 l -1.322945,-2e-7 V 1.3229166 h 2.910417 z" - id="path1219-3-6-0-6-5-9" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-pressed-topright" - transform="translate(-6.3500277,18.520833)"> - <g - id="button-toggled-topright-65-9-9" - transform="matrix(0,0.21166666,-0.21166666,0,66.939949,-2.1166404)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.75" - id="path1707-3-3" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1709-7-3" /> - </g> - <path - style="opacity:0.559;fill:url(#radialGradient1404-8-7-7);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 56.62086,2.3812512 c 1.046283,0.05345 1.576024,0.834812 1.5875,1.587499 l 1.852055,-2e-7 V 1.3229166 h -3.439583 z" - id="path1219-3-6-7-9-4-4-8" - sodipodi:nodetypes="cccccc" /> - </g> - <g - id="combo-pressed-top" - transform="translate(-6.3500277,18.520833)"> - <g - id="button-toggled-top-65-2-5" - transform="matrix(0,0.21166666,-0.26051282,0,69.321278,-2.1166666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" - id="path1712-5-6" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1714-4-6" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3175);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-5-3-9-7-4" - width="8.4666424" - height="1.0583349" - x="-56.620831" - y="1.3229166" - transform="scale(-1,1)" - ry="0" /> - </g> - <g - id="combo-pressed-left" - transform="translate(-6.3500277,18.520833)"> - <g - id="button-toggled-left-23-4-0" - transform="matrix(0.21166666,0,0,0.26051282,42.068777,-8.7316666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" - id="path1682-3-4" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1684-0-6" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3177);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-3-6-50-7-2" - width="8.4666672" - height="1.3229471" - x="-12.435417" - y="-46.566696" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="combo-pressed-right" - transform="translate(-6.3500277,18.520833)"> - <g - id="button-toggled-right-87-6-7" - transform="matrix(-0.21166666,0,0,0.26051282,62.706277,-8.7316666)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" - id="path1702-8-5" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#${primary};fill-opacity:1" - id="path1704-8-6" /> - </g> - <rect - style="opacity:0.528671;fill:url(#linearGradient3179);fill-opacity:1;stroke:none;stroke-width:0.264999" - id="rect1241-2-0-4-4-9" - width="8.4666653" - height="1.8520491" - x="-12.435416" - y="-60.060417" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - </g> - <path - id="toolbar-handle" - d="m 166.6875,23.8125 c 0,0.730628 -0.59229,1.322916 -1.32292,1.322916 -0.73062,0 -1.32291,-0.592288 -1.32291,-1.322916 0,-1.763887 2.64583,-1.763887 2.64583,0 z" - style="opacity:0.16;fill:#ffffff;stroke-width:0.264583" - sodipodi:nodetypes="ssss" /> - <g - id="menuitem-tearoff-focused" - transform="matrix(0.26458333,0,0,0.26458333,285.6177,-168.40729)"> - <rect - style="opacity:0;fill:#141414" - id="rect149" - width="7" - height="9" - x="686.5" - y="-229.5" - transform="rotate(90)" /> - <path - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1" - id="path151" - d="m 227.2385,689 h -2.2462 v 2 h 2.2462 z m -4.4924,0 H 220.5 v 2 h 2.2461 z" /> - </g> - <g - id="menuitem-tearoff-normal" - transform="matrix(0.26458333,0,0,0.26458333,289.32186,-168.40729)"> - <rect - style="opacity:0;fill:#141414" - id="rect379" - width="7" - height="9" - x="686.5" - y="-229.5" - transform="rotate(90)" /> - <path - inkscape:connector-curvature="0" - style="fill:#646464" - id="path381" - d="m 227.2385,689 h -2.2462 v 2 h 2.2462 z m -4.4924,0 H 220.5 v 2 h 2.2461 z" /> - </g> - <rect - id="menubar-normal" - width="5.2916665" - height="5.2916665" - x="341.37527" - y="3.5036411" - style="opacity:0;fill:#1a1a1a;fill-opacity:1;stroke-width:0.264583" /> - <rect - id="menubar-normal-left" - width="5.2916665" - height="1.3229166" - x="3.5036411" - y="-341.37527" - transform="rotate(90)" - style="opacity:0;fill:#1a1a1a;fill-opacity:1;stroke-width:0.264583" /> - <rect - id="menubar-normal-topleft" - width="1.3229166" - height="1.3229166" - x="2.1807241" - y="-341.37527" - transform="rotate(90)" - style="opacity:0;fill:#1a1a1a;fill-opacity:1;stroke-width:0.264583" /> - <rect - id="menubar-normal-top" - width="5.2916665" - height="1.3229166" - x="341.37527" - y="2.1807241" - style="opacity:0;fill:#1a1a1a;fill-opacity:1;stroke-width:0.264583" /> - <rect - id="menubar-normal-right" - width="5.2916665" - height="1.3229166" - x="3.5036411" - y="-347.98987" - transform="rotate(90)" - style="opacity:0;fill:#1a1a1a;fill-opacity:1;stroke-width:0.264583" /> - <rect - id="menubar-normal-topright" - width="1.3229166" - height="1.3229166" - x="2.1807241" - y="-347.98987" - transform="rotate(90)" - style="opacity:0;fill:#1a1a1a;fill-opacity:1;stroke-width:0.264583" /> - <g - id="menubar-normal-bottomleft" - style="opacity:0" - transform="matrix(0.26458333,0,0,0.26458333,260.67737,-154.45261)"> - <rect - style="opacity:0.25;fill:#000000;fill-opacity:1" - id="rect1535" - width="5" - height="1" - x="300" - y="617" /> - <g - id="menubar-normal-bottomleft2" - transform="matrix(0.25,0,0,1,223.75,0)"> - <path - inkscape:connector-curvature="0" - style="opacity:0;fill:url(#linearGradient3473)" - id="path1537" - d="m 305,621 h 20 v -3 h -20 z" /> - </g> - </g> - <g - id="menubar-normal-bottomright" - style="opacity:0" - transform="matrix(0.26458333,0,0,0.26458333,260.67737,-154.45261)"> - <rect - style="opacity:0.25;fill:#000000;fill-opacity:1" - id="rect1541" - width="5" - height="1" - x="325" - y="617" /> - <g - id="menubar-normal-bottomright2" - transform="matrix(0.25,0,0,1,248.75,0)" - style="fill:#b6b6b6"> - <path - inkscape:connector-curvature="0" - style="opacity:0;fill:url(#linearGradient3475)" - id="path1543" - d="m 305,621 h 20 v -3 h -20 z" /> - </g> - </g> - <g - id="menubar-normal-bottom" - style="opacity:0" - transform="matrix(0.26458333,0,0,0.26458333,260.67737,-154.45261)"> - <rect - style="opacity:0.25;fill:#000000;fill-opacity:1" - id="rect1547" - width="20" - height="1" - x="305" - y="617" /> - <rect - style="opacity:0;fill:url(#linearGradient3477)" - id="rect1549" - width="20" - height="3" - x="305" - y="618" /> - </g> - <rect - id="menubar-normal-inactive" - width="5.2916665" - height="5.2916665" - x="350.63568" - y="3.5036411" - style="opacity:0;fill:#151515;fill-opacity:1;stroke-width:0.264583" /> - <rect - id="menubar-normal-inactive-left" - width="5.2916665" - height="1.3229166" - x="3.5036411" - y="-350.63568" - transform="rotate(90)" - style="opacity:0;fill:#151515;fill-opacity:1;stroke-width:0.264583" /> - <rect - id="menubar-normal-inactive-topleft" - width="1.3229166" - height="1.3229166" - x="2.1807241" - y="-350.63568" - transform="rotate(90)" - style="opacity:0;fill:#151515;fill-opacity:1;stroke-width:0.264583" /> - <rect - id="menubar-normal-inactive-top" - width="5.2916665" - height="1.3229166" - x="350.63568" - y="2.1807241" - style="opacity:0;fill:#151515;fill-opacity:1;stroke-width:0.264583" /> - <rect - id="menubar-normal-inactive-right" - width="5.2916665" - height="1.3229166" - x="3.5036411" - y="-357.25027" - transform="rotate(90)" - style="opacity:0;fill:#151515;fill-opacity:1;stroke-width:0.264583" /> - <rect - id="menubar-normal-inactive-topright" - width="1.3229166" - height="1.3229166" - x="2.1807241" - y="-357.25027" - transform="rotate(90)" - style="opacity:0;fill:#151515;fill-opacity:1;stroke-width:0.264583" /> - <g - transform="matrix(0.26458333,0,0,0.26458333,269.9378,-154.45261)" - id="menubar-normal-inactive-bottomleft" - style="opacity:0"> - <rect - style="opacity:0.25;fill:#000000;fill-opacity:1" - id="rect1535-1" - width="5" - height="1" - x="300" - y="617" /> - <g - id="menubar-normal-inactive-bottomleft2" - transform="matrix(0.25,0,0,1,223.75,0)"> - <path - inkscape:connector-curvature="0" - style="opacity:0;fill:url(#linearGradient3479)" - id="path1537-6" - d="m 305,621 h 20 v -3 h -20 z" /> - </g> - </g> - <g - transform="matrix(0.26458333,0,0,0.26458333,269.9378,-154.45261)" - id="menubar-normal-inactive-bottomright" - style="opacity:0"> - <rect - style="opacity:0.25;fill:#000000;fill-opacity:1" - id="rect1541-1" - width="5" - height="1" - x="325" - y="617" /> - <g - id="menubar-normal-inactive-bottomright2" - transform="matrix(0.25,0,0,1,248.75,0)" - style="fill:#b6b6b6"> - <path - inkscape:connector-curvature="0" - style="opacity:0;fill:url(#linearGradient2097)" - id="path1543-3" - d="m 305,621 h 20 v -3 h -20 z" /> - </g> - </g> - <g - transform="matrix(0.26458333,0,0,0.26458333,269.9378,-154.45261)" - id="menubar-normal-inactive-bottom" - style="opacity:0"> - <rect - style="opacity:0.25;fill:#000000;fill-opacity:1" - id="rect1547-6" - width="20" - height="1" - x="305" - y="617" /> - <rect - style="opacity:0;fill:url(#linearGradient2101)" - id="rect1549-7" - width="20" - height="3" - x="305" - y="618" /> - </g> - <rect - id="tab-tear" - width="3.96875" - height="3.96875" - x="70.114586" - y="133.61459" - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583" /> - <g - transform="matrix(0.26458333,0,0,0.26458333,15.081276,-0.26458363)" - id="g1363"> - <rect - id="expand-lineedit-normal" - x="220" - y="10" - width="10" - height="10" - style="fill-rule:evenodd" /> - <g - id="lineedit-normal-left" - transform="matrix(0.8,0,0,0.98461538,218,-32.001575)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="opacity:0.50026792;fill:#${surface};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" - id="path1281" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" - id="path1283" /> - </g> - <g - id="lineedit-normal-bottomleft" - transform="matrix(0,-0.8,0.8,0,201.99862,70.9999)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="opacity:0.50026792;fill:#${surface};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" - id="path1286" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" - id="path1288" /> - </g> - <g - id="lineedit-normal-bottom" - transform="matrix(0,-0.8,0.98461538,0,192.99832,71)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="opacity:0.50026792;fill:#${surface};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" - id="path1291" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" - id="path1293" /> - </g> - <g - id="lineedit-normal-bottomright" - transform="matrix(-0.8,0,0,-0.8,295.9998,87.00128)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="opacity:0.50026792;fill:#${surface};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" - id="path1296" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" - id="path1298" /> - </g> - <g - id="lineedit-normal-right" - transform="matrix(-0.8,0,0,0.98461538,295.9998,-32.001575)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="opacity:0.50026792;fill:#${surface};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" - id="path1301" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" - id="path1303" /> - </g> - <g - id="lineedit-normal-topright" - transform="matrix(0,0.8,-0.8,0,312.00118,-6.9999)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="opacity:0.50026792;fill:#${surface};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" - id="path1306" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" - id="path1308" /> - </g> - <g - id="lineedit-normal-top" - transform="matrix(0,0.8,-0.98461538,0,321.00148,-6.9999)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="opacity:0.50026792;fill:#${surface};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" - id="path1311" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" - id="path1313" /> - </g> - <g - id="lineedit-normal-topleft" - transform="matrix(0.8,0,0,0.8,218,-23.00128)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="opacity:0.50026792;fill:#${surface};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" - id="path1316" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" - id="path1318" /> - </g> - <path - id="lineedit-normal" - d="m 241,16 v 32 h 32 V 16 Z" - style="opacity:0.50026792;fill:#${surface};fill-rule:evenodd;fill-opacity:1" /> - <g - id="lineedit-focused-left" - transform="matrix(0.8,0,0,0.98461538,268,-32.001575)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="opacity:0.75;fill:#${surface};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" - id="path1322" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#${primary};fill-opacity:1" - id="path1324" /> - </g> - <g - id="lineedit-focused-bottomleft" - transform="matrix(0,-0.8,0.8,0,251.99862,70.9999)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="opacity:0.75;fill:#${surface};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" - id="path1327" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#${primary};fill-opacity:1" - id="path1329" /> - </g> - <g - id="lineedit-focused-bottom" - transform="matrix(0,-0.8,0.98461538,0,242.99832,71)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="opacity:0.75;fill:#${surface};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" - id="path1332" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#${primary};fill-opacity:1" - id="path1334" /> - </g> - <g - id="lineedit-focused-bottomright" - transform="matrix(-0.8,0,0,-0.8,345.9998,87.00128)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="opacity:0.75;fill:#${surface};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" - id="path1337" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#${primary};fill-opacity:1" - id="path1339" /> - </g> - <g - id="lineedit-focused-right" - transform="matrix(-0.8,0,0,0.98461538,345.9998,-32.001575)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="opacity:0.75;fill:#${surface};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" - id="path1342" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#${primary};fill-opacity:1" - id="path1344" /> - </g> - <g - id="lineedit-focused-topright" - transform="matrix(0,0.8,-0.8,0,362.00118,-6.9999)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="opacity:0.75;fill:#${surface};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" - id="path1347" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#${primary};fill-opacity:1" - id="path1349" /> - </g> - <g - id="lineedit-focused-top" - transform="matrix(0,0.8,-0.98461538,0,371.00148,-6.9999)"> - <path - transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" - d="M 2,21 V 53 H 6 V 21 Z" - style="opacity:0.75;fill:#${surface};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" - id="path1352" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#${primary};fill-opacity:1" - id="path1354" /> - </g> - <g - id="lineedit-focused-topleft" - transform="matrix(0.8,0,0,0.8,268,-23.00128)"> - <path - transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" - d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" - style="opacity:0.75;fill:#${surface};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" - id="path1357" /> - <path - d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" - style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#${primary};fill-opacity:1" - id="path1359" /> - </g> - <path - id="lineedit-focused" - d="m 291,16 v 32 h 32 V 16 Z" - style="opacity:0.75;fill:#${surface};fill-rule:evenodd;fill-opacity:1" /> - </g> - <g - id="g3680" - transform="matrix(0.26458333,0,0,0.26458333,4.4979166,24.60625)"> - <g - id="g3742" - transform="translate(4.999912,4.999989)"> - <g - id="radio-checked-normal" - transform="matrix(5.669285,0,0,5.669285,-1106.9987,-360.49961)"> - <path - id="rect4160-92" - d="m 207.69792,72.495834 c -1.17264,0 -2.11667,0.944033 -2.11667,2.116666 0,1.172634 0.94403,2.116667 2.11667,2.116667 1.17263,0 2.11666,-0.944033 2.11666,-2.116667 0,-1.172633 -0.94403,-2.116666 -2.11666,-2.116666 z m 0,0.264583 c 1.02605,0 1.85208,0.826029 1.85208,1.852083 0,1.026055 -0.82603,1.852084 -1.85208,1.852084 -1.02606,0 -1.85209,-0.826029 -1.85209,-1.852084 0,-1.026054 0.82603,-1.852083 1.85209,-1.852083 z" - class="ColorScheme-ButtonFocus" - fill="currentColor" - style="color:#${primary};opacity:1;fill:#${primary};fill-opacity:1;stroke-width:0.264583" /> - <rect - id="rect887-23" - class="ColorScheme-ButtonFocus" - x="206.375" - y="73.289597" - width="2.6458333" - height="2.6458333" - rx="52.916664" - fill="currentColor" - fill-rule="evenodd" - style="color:#${primary};stroke-width:0.264583;fill:#${primary}" /> - </g> - <path - id="radio-focused" - d="m 43.000088,50.500021 c -6.64804,0 -12.00004,5.35199 -12.00004,11.99998 0,6.648 5.352,11.99999 12.00004,11.99999 6.64796,0 11.99996,-5.35199 11.99996,-11.99999 0,-6.64799 -5.352,-11.99998 -11.99996,-11.99998 z m 0,1.49999 c 5.81695,0 10.49998,4.683 10.49998,10.49999 0,5.817 -4.68303,10.49999 -10.49998,10.49999 -5.81707,0 -10.50006,-4.68299 -10.50006,-10.49999 0,-5.81699 4.68299,-10.49999 10.50006,-10.49999 z" - class="ColorScheme-ButtonFocus" - fill="currentColor" - style="color:#${primary};fill:#${primary};fill-opacity:1;stroke-width:1.5" /> - <g - id="radio-checked-focused" - transform="matrix(5.669285,0,0,5.669285,-1079.9987,-360.49961)"> - <path - id="rect4160-92-6" - d="m 207.69792,72.495834 c -1.17264,0 -2.11667,0.944033 -2.11667,2.116666 0,1.172634 0.94403,2.116667 2.11667,2.116667 1.17263,0 2.11666,-0.944033 2.11666,-2.116667 0,-1.172633 -0.94403,-2.116666 -2.11666,-2.116666 z m 0,0.264583 c 1.02605,0 1.85208,0.826029 1.85208,1.852083 0,1.026055 -0.82603,1.852084 -1.85208,1.852084 -1.02606,0 -1.85209,-0.826029 -1.85209,-1.852084 0,-1.026054 0.82603,-1.852083 1.85209,-1.852083 z" - class="ColorScheme-ButtonFocus" - fill="currentColor" - style="color:#${primary};opacity:1;stroke-width:0.264583;fill:#${primary}" /> - <rect - id="rect887-23-7" - class="ColorScheme-ButtonFocus" - x="206.375" - y="73.289597" - width="2.6458333" - height="2.6458333" - rx="52.916664" - fill="currentColor" - fill-rule="evenodd" - style="color:#${primary};stroke-width:0.264583;fill:#${primary}" /> - </g> - <circle - style="opacity:1;fill:none;fill-opacity:1;stroke:#b2b3b5;stroke-width:1.1865;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="radio-normal" - cx="14.951006" - cy="62.329414" - r="11.846404" /> - </g> - <g - id="g3940"> - <path - id="checkbox-focused" - class="ColorScheme-ButtonFocus" - d="m 41,97.49999 c -1.66201,0 -3.00004,1.338 -3.00004,3 v 17.99998 c 0,1.66199 1.33803,3 3.00004,3 h 17.99996 c 1.66198,0 2.99997,-1.33801 2.99997,-3 v -17.99998 c 0,-1.662 -1.33799,-3 -2.99997,-3 z M 41,99 h 17.99996 c 0.83105,0 1.49999,0.66899 1.49999,1.49999 v 17.99998 c 0,0.831 -0.66894,1.5 -1.49999,1.5 H 41 c -0.83104,0 -1.50005,-0.669 -1.50005,-1.5 V 100.49999 C 39.49995,99.66899 40.16896,99 41,99 Z" - fill="currentColor" - style="color:#${primary};stroke-width:1.5;fill:#${primary}" /> - <g - id="checkbox-checked-normal" - transform="matrix(5.669285,0,0,5.669285,-1005.9987,-382.49949)"> - <path - id="rect4160-1" - class="ColorScheme-ButtonFocus" - d="m 190.23542,84.666666 c -0.29316,0 -0.52917,0.236009 -0.52917,0.529167 v 3.175 c 0,0.293158 0.23601,0.529167 0.52917,0.529167 h 3.175 c 0.29315,0 0.52916,-0.236009 0.52916,-0.529167 v -3.175 c 0,-0.293158 -0.23601,-0.529167 -0.52916,-0.529167 z m 0,0.264584 h 3.175 c 0.14658,0 0.26458,0.118004 0.26458,0.264583 v 3.175 c 0,0.146579 -0.118,0.264583 -0.26458,0.264583 h -3.175 c -0.14658,0 -0.26459,-0.118004 -0.26459,-0.264583 v -3.175 c 0,-0.146579 0.11801,-0.264583 0.26459,-0.264583 z" - fill="currentColor" - style="color:#${primary};fill:#${primary};fill-opacity:1;stroke-width:0.264583" /> - <path - id="rect887-2" - class="ColorScheme-ButtonFocus" - d="m 190.5,85.460416 h 2.64583 v 2.645833 H 190.5 Z" - fill="currentColor" - fill-rule="evenodd" - style="color:#${primary};stroke-width:0.264583;fill:#${primary}" /> - </g> - <g - id="checkbox-checked-focused" - transform="matrix(5.669285,0,0,5.669285,-1005.9987,-382.49949)"> - <path - id="rect4160-7" - class="ColorScheme-ButtonFocus" - d="m 195.79167,84.666666 c -0.29316,0 -0.52917,0.236009 -0.52917,0.529167 v 3.175 c 0,0.293158 0.23601,0.529167 0.52917,0.529167 h 3.175 c 0.29315,0 0.52916,-0.236009 0.52916,-0.529167 v -3.175 c 0,-0.293158 -0.23601,-0.529167 -0.52916,-0.529167 z m 0,0.264584 h 3.175 c 0.14658,0 0.26458,0.118004 0.26458,0.264583 v 3.175 c 0,0.146579 -0.118,0.264583 -0.26458,0.264583 h -3.175 c -0.14658,0 -0.26459,-0.118004 -0.26459,-0.264583 v -3.175 c 0,-0.146579 0.11801,-0.264583 0.26459,-0.264583 z" - fill="currentColor" - style="color:#${primary};stroke-width:0.264583;fill:#${primary}" /> - <path - id="rect887-0" - class="ColorScheme-ButtonFocus" - d="m 196.05625,85.460416 h 2.64583 v 2.645833 h -2.64583 z" - fill="currentColor" - fill-rule="evenodd" - style="color:#${primary};stroke-width:0.264583;fill:#${primary}" /> - </g> - <g - id="checkbox-tristate-normal" - transform="matrix(5.669285,0,0,5.669285,-1005.9987,-382.49949)"> - <path - id="rect4160-9" - class="ColorScheme-ButtonFocus" - d="m 201.08333,84.666666 c -0.29316,0 -0.52917,0.236009 -0.52917,0.529167 v 3.175 c 0,0.293158 0.23601,0.529167 0.52917,0.529167 h 3.175 c 0.29315,0 0.52916,-0.236009 0.52916,-0.529167 v -3.175 c 0,-0.293158 -0.23601,-0.529167 -0.52916,-0.529167 z m 0,0.264584 h 3.175 c 0.14658,0 0.26458,0.118004 0.26458,0.264583 v 3.175 c 0,0.146579 -0.118,0.264583 -0.26458,0.264583 h -3.175 c -0.14658,0 -0.26459,-0.118004 -0.26459,-0.264583 v -3.175 c 0,-0.146579 0.11801,-0.264583 0.26459,-0.264583 z" - fill="currentColor" - style="color:#${primary};fill:#${primary};fill-opacity:1;stroke-width:0.264583" /> - <path - id="rect887-3" - class="ColorScheme-ButtonFocus" - d="m 201.34791,85.460416 h 2.64583 v 2.645833 h -2.64583 z" - fill="currentColor" - fill-rule="evenodd" - style="color:#${primary};stroke-width:0.264583;fill:#${primary}" /> - <path - style="fill:none;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 201.87708,87.841666 h 1.5875 v -1.852084 z" - id="path2405" /> - <path - style="fill:#${base};fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 203.72916,87.841666 -2.11666,10e-7 2.11667,-2.116667 z" - id="path2407" - sodipodi:nodetypes="cccc" /> - </g> - <g - id="checkbox-tristate-focused" - transform="matrix(5.669285,0,0,5.669285,-1005.9987,-382.49949)"> - <path - id="rect4160-9-6" - class="ColorScheme-ButtonFocus" - d="m 206.375,84.666666 c -0.29316,0 -0.52917,0.236009 -0.52917,0.529167 v 3.175 c 0,0.293158 0.23601,0.529167 0.52917,0.529167 h 3.175 c 0.29315,0 0.52916,-0.236009 0.52916,-0.529167 v -3.175 c 0,-0.293158 -0.23601,-0.529167 -0.52916,-0.529167 z m 0,0.264584 h 3.175 c 0.14658,0 0.26458,0.118004 0.26458,0.264583 v 3.175 c 0,0.146579 -0.118,0.264583 -0.26458,0.264583 h -3.175 c -0.14658,0 -0.26459,-0.118004 -0.26459,-0.264583 v -3.175 c 0,-0.146579 0.11801,-0.264583 0.26459,-0.264583 z" - fill="currentColor" - style="color:#${primary};stroke-width:0.264583;fill:#${primary}" /> - <path - id="rect887-3-0" - class="ColorScheme-ButtonFocus" - d="m 206.63958,85.460416 h 2.64583 v 2.645833 h -2.64583 z" - fill="currentColor" - fill-rule="evenodd" - style="color:#${primary};stroke-width:0.264583;fill:#${primary}" /> - <path - style="fill:none;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 207.16875,87.841666 h 1.5875 v -1.852084 z" - id="path2405-6" /> - <path - style="fill:#${base};fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 209.02083,87.841666 -2.11666,10e-7 2.11667,-2.116667 z" - id="path2407-2" - sodipodi:nodetypes="cccc" /> - </g> - <rect - style="fill:none;fill-opacity:1;stroke:#b2b3b5;stroke-width:1.45134;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="checkbox-normal" - width="24" - height="24" - x="9" - y="97" - ry="2.8800001" /> - </g> - </g> - <rect - id="spin-separator-pressed" - x="208.22708" - y="29.104166" - width="0.52916664" - height="1.5875" - style="color:#000000;fill:#7a7a7c;fill-rule:evenodd;stroke-width:0.264583" /> - <rect - id="spin-separator-top-pressed" - x="208.22708" - y="27.516665" - width="0.52916664" - height="1.5875" - style="color:#000000;fill:#7a7a7c;fill-rule:evenodd;stroke-width:0.264583" /> - <rect - id="spin-separator-bottom-pressed" - x="208.22708" - y="30.691666" - width="0.52916664" - height="1.5875" - style="color:#000000;fill:#7a7a7c;fill-rule:evenodd;stroke-width:0.264583" /> - <rect - id="spin-separator-normal" - x="205.58124" - y="29.104166" - width="0.52916664" - height="1.5875" - style="color:#000000;opacity:0.18;fill:#ffffff;fill-rule:evenodd;stroke-width:0.264583" /> - <g - id="spin-separator-top-normal" - transform="matrix(0.26458333,0,0,0.26458333,135.46666,-97.631251)" - style="color:#000000;fill:#22252e;fill-rule:evenodd;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"> - <path - d="m 265,475 h 2 v 4 h -2 z" - style="opacity:0.18;fill:#ffffff" - id="path807" /> - <path - d="m 267,473 v 2 h -2 v -2 z" - style="fill:none" - id="path809" /> - </g> - <g - id="spin-separator-bottom-normal" - transform="matrix(0.26458333,0,0,-0.26458333,135.46666,157.42708)" - style="color:#000000;fill:#22252e;fill-rule:evenodd;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"> - <path - d="m 265,475 h 2 v 4 h -2 z" - style="opacity:0.18;fill:#ffffff" - id="path812" /> - <path - d="m 267,473 v 2 h -2 v -2 z" - style="fill:none" - id="path814" /> - </g> - <g - style="stroke:none" - id="tab-focused-topleft" - transform="matrix(0.35277536,0,0,0.35277536,83.255729,9.7891851)" - inkscape:label="#tab-focused-topleft"> - <path - style="fill:#${primary};fill-opacity:0.400587;fill-rule:evenodd;opacity:1" - id="path8932-3-4" - d="m 28.75,41.2516 c -7.500349,-1.89e-4 -7.500349,-1.89e-4 -7.5,7.5 h 7.5 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#2c2c2c;fill-opacity:0" - id="path8934-5-5" - d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" - inkscape:connector-curvature="0" /> - </g> - <path - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:0.40058717;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" - id="tab-focused" - d="m 93.397967,26.987548 v 8.466677 h 8.466663 v -8.466677 z" /> - <g - style="stroke:none" - id="tab-focused-top" - transform="matrix(0,0.35277776,-0.26051282,0,114.56505,16.845188)"> - <path - style="fill:#${primary};fill-opacity:0.40058717;fill-rule:evenodd;opacity:1" - id="path8926-6-2-3" - d="M 28.75,81.2514 V 48.7516 h -7.5 v 32.5 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#2c2c2c;fill-opacity:0" - id="path8928-7-3-7" - d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" - inkscape:connector-curvature="0" /> - </g> - <g - style="stroke:none" - id="tab-focused-right" - transform="matrix(-0.35277776,0,0,0.26051282,112.00694,14.287135)"> - <path - style="fill:#${primary};fill-opacity:0.40058717;fill-rule:evenodd;opacity:1" - id="path8926-6-2-7-6-4" - d="M 28.75,81.2514 V 48.7516 h -7.5 v 32.5 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#2c2c2c;fill-opacity:0" - id="path8928-7-3-5-2-3" - d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" - inkscape:connector-curvature="0" /> - </g> - <g - style="stroke:none;fill:#${primary}" - id="tab-focused-left" - transform="matrix(0.35277776,0,0,-0.26051282,83.255607,48.154582)"> - <path - style="fill:#${primary};fill-opacity:0.40058717;fill-rule:evenodd;opacity:1" - id="path8926-6-2-7-2-8" - d="M 28.75,81.2514 V 48.7516 h -7.5 v 32.5 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#${primary};fill-opacity:0" - id="path8928-7-3-5-7-6" - d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" - inkscape:connector-curvature="0" /> - </g> - <g - style="stroke:none" - id="tab-focused-topright" - transform="matrix(-0.35277536,0,0,0.35277536,112.00692,9.7891846)" - inkscape:label="#tab-focused-topright"> - <path - style="fill:#${primary};fill-opacity:0.400587;fill-rule:evenodd;opacity:1" - id="path8932-3-18-2" - d="m 28.75,41.2516 c -7.49992,-1.88e-4 -7.49992,-1.88e-4 -7.5,7.5 h 7.5 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#2c2c2c;fill-opacity:0" - id="path8934-5-92-6" - d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" - inkscape:connector-curvature="0" /> - </g> - <g - id="g4790" - transform="matrix(0.26458333,0,0,0.26458333,69.124701,-16.540762)"> - <g - id="tab-toggled-bottom" - transform="translate(87.072405,38.764108)"> - <path - inkscape:connector-curvature="0" - id="path8926-6-2-7-23" - d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" - style="fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;stroke:none;opacity:0" - transform="matrix(0,-1.3333333,-0.98461538,0,151.67049,196.08545)" /> - <path - style="fill:#282d32;fill-opacity:0;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 71.66892,165.75212 h 32 v 2 h -32 z" - id="path1778-7" - sodipodi:nodetypes="ccccc" /> - </g> - <g - inkscape:label="#tab-normal-bottomright" - transform="matrix(-1.3333242,0,0,-1.3333242,229.07435,261.518)" - id="tab-normal-bottomright-23-9" - style="fill-rule:evenodd;stroke:none" - inkscape:transform-center-x="-0.23473818" - inkscape:transform-center-y="3.8666083"> - <path - inkscape:connector-curvature="0" - id="path8932-3-6-2-2" - d="m 28.75,41.2516 c -3.98048,-0.114009 -7.614012,3.519519 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" - style="fill:#0082ff;fill-opacity:0;fill-rule:evenodd" /> - <path - inkscape:connector-curvature="0" - d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" - id="path8934-5-62-7-8" - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> - </g> - <g - inkscape:label="#tab-normal-bottomright" - transform="matrix(-1.3333242,0,0,-1.3333242,187.07435,261.54921)" - id="tab-normal-bottomright-23-6-3" - style="fill-rule:evenodd;stroke:none" - inkscape:transform-center-x="-0.23473818" - inkscape:transform-center-y="3.8666083"> - <path - inkscape:connector-curvature="0" - id="path8932-3-6-2-5-1" - d="m 28.75,41.2516 c -3.98048,-0.114009 -7.614012,3.519519 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" - style="fill:#0082ff;fill-opacity:0;fill-rule:evenodd" /> - <path - inkscape:connector-curvature="0" - d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" - id="path8934-5-62-7-3-2" - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> - </g> - <path - d="m 190.77236,196.51633 v -32.00004 h -32 v 32.00004 z" - id="tab-toggled" - style="fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;stroke:none;opacity:0" - inkscape:connector-curvature="0" /> - <g - style="stroke:none" - transform="matrix(1.3333242,0,0,1.3333242,120.43928,99.514568)" - inkscape:label="#tab-toggled-topleft" - id="tab-toggled-topleft-459"> - <path - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0;stroke:none" - id="path8934-5-9-76-3" - d="m 28.726542,44.251619 c -1.148437,-0.01172 -4.499979,0.562471 -4.499979,4.523417 h 3 c 0.01858,-0.649861 0.07859,-1.451093 1.49998,-1.546855 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" - id="path8934-5-5-6" - d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" - inkscape:connector-curvature="0" /> - </g> - <g - style="stroke:none" - transform="matrix(0,1.3333333,-0.98461538,0,238.77394,126.18296)" - id="g871"> - <path - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" - id="path8928-7-3-7-2" - d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0;stroke:none" - id="path8928-7-3-3-4-6" - d="m 24.250006,48.751605 v 32.5 h 3 v -32.5 z" - inkscape:connector-curvature="0" /> - </g> - <g - style="stroke:none" - transform="matrix(-1.3333242,0,0,1.3333242,229.10544,99.498938)" - inkscape:label="#tab-focused-topright" - id="g872"> - <path - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0;stroke:none" - id="path8934-5-9-7-0-7" - d="m 28.726542,44.251619 c -1.148437,-0.01172 -4.499979,0.562471 -4.499979,4.523417 h 3 c 0.01858,-0.649861 0.07859,-1.451093 1.49998,-1.546855 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" - id="path8934-5-92-6-9" - d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" - inkscape:connector-curvature="0" /> - </g> - <g - id="tab-toggled-right" - transform="rotate(-90,150.58717,117.59801)"> - <path - inkscape:connector-curvature="0" - id="path8926-6-2-7-23-1" - d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" - style="fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;stroke:none;opacity:0" - transform="matrix(0,-1.3333333,-0.98461538,0,151.67049,196.08545)" /> - <path - style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" - d="m 71.66892,165.75212 h 32 v 2 h -32 z" - id="path1778-7-9" /> - </g> - <g - id="tab-toggled-bottomright"> - <rect - style="fill-rule:evenodd;stroke:none;opacity:0;fill:#2a2e32;fill-opacity:1;stroke-width:5.01977;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" - id="rect2585-2" - width="7.5000534" - height="7.5000463" - x="-28.750004" - y="-48.775036" - transform="matrix(1.3333242,0,0,1.3333242,229.07435,261.518)" /> - <path - style="fill:#282d32;fill-opacity:0;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 190.74128,204.48505 8.00002,0.0312 v 2 l -8.00002,-0.0312 z" - id="path1765-9" - sodipodi:nodetypes="ccccc" /> - <path - style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" - d="m 198.74128,206.51627 v -10 h 2 v 10 z" - id="path1765-9-4" /> - </g> - <g - id="tab-toggled-bottomleft"> - <rect - style="fill-rule:evenodd;stroke:none;opacity:0;fill:#2a2e32;fill-opacity:1;stroke-width:5.01977;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" - id="rect2585-7-6" - width="7.5000534" - height="7.5000463" - x="-28.750004" - y="-48.775036" - transform="matrix(1.3333242,0,0,1.3333242,187.07435,261.54921)" /> - <path - style="fill:#282d32;fill-opacity:0;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 150.7413,204.51627 7.99998,0 v 2 l -7.99998,0 z" - id="path1765-5-9" - sodipodi:nodetypes="ccccc" /> - <path - style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" - d="m 148.74128,206.51627 v -10 h 2 v 10 z" - id="path1765-9-4-5" /> - </g> - <g - id="tab-toggled-top"> - <path - style="stroke:none;fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;opacity:0" - id="path8926-6-2-3-6" - d="M 28.75,81.2514 V 48.7516 h -7.5 v 32.5 z" - inkscape:connector-curvature="0" - transform="matrix(0,1.3333333,-0.98461538,0,238.77394,126.18296)" /> - <path - style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" - d="m 158.74128,154.51627 h 32 v 2 h -32 z" - id="path1778-7-0" /> - </g> - <g - id="tab-toggled-left" - transform="rotate(90,111.82303,204.67038)"> - <path - inkscape:connector-curvature="0" - id="path8926-6-2-7-23-1-6" - d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" - style="fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;stroke:none;opacity:0" - transform="matrix(0,-1.3333333,-0.98461538,0,151.67049,196.08545)" /> - <path - style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" - d="m 71.66892,165.75212 h 32 v 2 h -32 z" - id="path1778-7-9-1" /> - </g> - <path - style="fill:none;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 148.74127,164.51627 v -10 h 10 v 2 h -8 v 8 z" - id="path1772" /> - <path - style="fill:none;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 150.74127,164.51627 8,-8 v -2 h -10 v 10 z" - id="path1776" /> - <g - id="tab-toggled-topleft"> - <path - style="stroke:none;fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;opacity:0" - id="path8932-3-4-9" - d="m 28.75,41.2516 c -7.523351,-4.3e-5 -7.523351,-4.3e-5 -7.5,7.5 h 7.5 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" - transform="matrix(1.3333242,0,0,1.3333242,120.43928,99.514568)" /> - <path - style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" - d="m 150.74127,164.51627 c 1e-5,-8 -1.99999,-8 8,-8 v -2 c -9.95515,-0.11847 -9.96734,0.064 -10,10 z" - id="path1779" - sodipodi:nodetypes="ccccc" /> - </g> - <g - id="tab-toggled-topright"> - <path - style="stroke:none;fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;opacity:0" - id="path8932-3-18-2-8" - d="m 28.75,41.2516 c -7.476737,0.01168 -7.476737,0.01168 -7.5,7.5 h 7.5 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" - transform="matrix(-1.3333242,0,0,1.3333242,229.10544,99.498938)" /> - <path - style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" - d="m 198.74128,164.51627 c -1e-5,-8 1.99999,-8 -8,-8 v -2 c 9.95515,-0.11847 9.96734,0.064 10,10 z" - id="path1779-6" - sodipodi:nodetypes="ccccc" /> - </g> - </g> - <g - id="tab-focused-bottom" - transform="matrix(0.26458333,0,0,0.26458333,74.435532,-6.2926843)"> - <path - inkscape:connector-curvature="0" - id="path8926-6-2-7-27" - d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" - style="fill:#${primary};fill-opacity:0.40058717;fill-rule:evenodd;stroke:none;opacity:1" - transform="matrix(0,-1.3333333,-0.98461538,0,151.67049,196.08545)" /> - <path - style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" - d="m 71.66892,165.75212 h 32 v 2 h -32 z" - id="path1778-0" /> - </g> - <g - id="tab-focused-bottomright" - transform="translate(17.197933,-0.00826957)"> - <g - inkscape:label="#tab-normal-bottomright" - transform="matrix(-0.35277536,0,0,-0.35277536,94.808958,52.660799)" - id="tab-normal-bottomright-23-3" - style="fill-rule:evenodd;stroke:none" - inkscape:transform-center-x="-0.23473818" - inkscape:transform-center-y="3.8666083"> - <rect - style="opacity:1;fill:#${primary};fill-opacity:0.40058717;stroke:none;stroke-width:5.01977;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" - id="rect2585-6" - width="7.5000534" - height="7.5000463" - x="-28.750004" - y="-48.775036" - transform="scale(-1)" /> - <path - inkscape:connector-curvature="0" - id="path8932-3-6-2-0" - d="m 28.75,41.2516 c -3.98048,-0.114009 -7.614012,3.519519 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" - style="fill:#0082ff;fill-opacity:0;fill-rule:evenodd" /> - <path - inkscape:connector-curvature="0" - d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" - id="path8934-5-62-7-6" - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> - </g> - <path - style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" - d="m 84.666666,37.570833 h 2.645833 V 38.1 h -2.645833 z" - id="path1765-2" /> - </g> - <g - id="g2153"> - <g - inkscape:label="#tab-normal-topleft" - transform="matrix(0.35277536,0,0,0.35277536,66.057708,9.7808699)" - id="tab-normal-topleft" - style="fill-rule:evenodd;stroke:none"> - <path - inkscape:connector-curvature="0" - id="path8932-3" - d="m 28.75,41.2516 c -4.001503,-0.09752 -7.597523,3.498497 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" - style="fill:#3c3c3c;fill-opacity:0;fill-rule:evenodd" /> - <path - inkscape:connector-curvature="0" - d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" - id="path8934-5" - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#262626;fill-opacity:0" /> - </g> - <path - inkscape:connector-curvature="0" - id="tab-normal" - d="m 84.666667,26.987501 c -2.822226,0 -5.644452,0 -8.466677,0 0,2.822223 0,5.644443 0,8.466666 2.822225,0 5.644451,0 8.466677,0 0,-2.822223 0,-5.644443 0,-8.466666 z" - style="fill:#3c3c3c;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.264583" /> - <g - transform="matrix(0,0.35277776,-0.26051282,0,97.367082,16.845141)" - id="tab-normal-top" - style="fill-rule:evenodd;stroke:none"> - <path - inkscape:connector-curvature="0" - id="path8926-6-2" - d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" - style="fill:#3c3c3c;fill-opacity:0;fill-rule:evenodd" /> - <path - inkscape:connector-curvature="0" - d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" - id="path8928-7-3" - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#262626;fill-opacity:0" /> - </g> - <g - transform="matrix(0,-0.35277776,-0.26051282,0,97.367082,45.596527)" - id="tab-normal-bottom-213" - style="fill-rule:evenodd;stroke:none"> - <path - inkscape:connector-curvature="0" - d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" - id="path8928-7-3-5" - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> - </g> - <g - transform="matrix(-0.35277776,0,0,-0.26051282,94.809027,48.154585)" - id="tab-normal-right" - style="fill-rule:evenodd;stroke:none"> - <path - inkscape:connector-curvature="0" - id="path8926-6-2-7-6" - d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" - style="fill:#3c3c3c;fill-opacity:0;fill-rule:evenodd" /> - <path - inkscape:connector-curvature="0" - d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" - id="path8928-7-3-5-2" - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#262626;fill-opacity:0" /> - </g> - <g - transform="matrix(0.35277776,0,0,0.26051282,66.057629,14.287083)" - id="tab-normal-left" - style="fill-rule:evenodd;stroke:none"> - <path - inkscape:connector-curvature="0" - id="path8926-6-2-7-2" - d="m 28.75,48.7518 c 0,10.833267 0,21.666533 0,32.4998 -2.5,0 -5,0 -7.5,0 0,-10.833333 0,-21.666667 0,-32.5 2.5,6.7e-5 5,1.33e-4 7.5,2e-4 z" - style="fill:#3c3c3c;fill-opacity:0;fill-rule:evenodd" /> - <path - inkscape:connector-curvature="0" - d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" - id="path8928-7-3-5-7" - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#262626;fill-opacity:0" /> - </g> - <g - inkscape:label="#tab-normal-topright" - transform="matrix(-0.35277536,0,0,0.35277536,94.808958,9.7808697)" - id="tab-normal-topright" - style="fill-rule:evenodd;stroke:none"> - <path - inkscape:connector-curvature="0" - id="path8932-3-18" - d="m 28.75,41.2516 c -4.001503,-0.09752 -7.597523,3.498497 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" - style="fill:#3c3c3c;fill-opacity:0;fill-rule:evenodd" /> - <path - inkscape:connector-curvature="0" - d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" - id="path8934-5-92" - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#262626;fill-opacity:0" /> - </g> - <g - id="tab-normal-bottom" - transform="matrix(0.26458333,0,0,0.26458333,57.237598,-6.2844145)"> - <path - inkscape:connector-curvature="0" - id="path8926-6-2-7" - d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" - style="fill:#26292c;fill-opacity:0;fill-rule:evenodd;stroke:none" - transform="matrix(0,-1.3333333,-0.98461538,0,151.67049,196.08545)" /> - <path - style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" - d="m 71.66892,165.75212 h 32 v 2 h -32 z" - id="path1778" /> - </g> - <g - id="tab-normal-bottomright"> - <g - inkscape:label="#tab-normal-bottomright" - transform="matrix(-0.35277536,0,0,-0.35277536,94.808958,52.660799)" - id="tab-normal-bottomright-23" - style="fill-rule:evenodd;stroke:none" - inkscape:transform-center-x="-0.23473818" - inkscape:transform-center-y="3.8666083"> - <rect - style="opacity:1;fill:#26292c;fill-opacity:0;stroke:none;stroke-width:5.01977;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" - id="rect2585" - width="7.5000534" - height="7.5000463" - x="-28.750004" - y="-48.775036" - transform="scale(-1)" /> - <path - inkscape:connector-curvature="0" - id="path8932-3-6-2" - d="m 28.75,41.2516 c -3.98048,-0.114009 -7.614012,3.519519 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" - style="fill:#0082ff;fill-opacity:0;fill-rule:evenodd" /> - <path - inkscape:connector-curvature="0" - d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" - id="path8934-5-62-7" - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> - </g> - <path - style="fill:#b3b3b5;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;opacity:0.49991043" - d="m 84.666666,37.570833 h 2.645833 V 38.1 h -2.645833 z" - id="path1765" /> - </g> - <g - id="tab-normal-bottomleft" - transform="translate(-11.112501,-0.00825868)"> - <g - inkscape:label="#tab-normal-bottomright" - transform="matrix(-0.35277536,0,0,-0.35277536,94.808958,52.660799)" - id="tab-normal-bottomright-23-6" - style="fill-rule:evenodd;stroke:none" - inkscape:transform-center-x="-0.23473818" - inkscape:transform-center-y="3.8666083"> - <rect - style="opacity:1;fill:#26292c;fill-opacity:0;stroke:none;stroke-width:5.01977;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" - id="rect2585-7" - width="7.5000534" - height="7.5000463" - x="-28.750004" - y="-48.775036" - transform="scale(-1)" /> - <path - inkscape:connector-curvature="0" - id="path8932-3-6-2-5" - d="m 28.75,41.2516 c -3.98048,-0.114009 -7.614012,3.519519 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" - style="fill:#0082ff;fill-opacity:0;fill-rule:evenodd" /> - <path - inkscape:connector-curvature="0" - d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" - id="path8934-5-62-7-3" - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> - </g> - <path - style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" - d="m 84.666666,37.570833 h 2.645833 V 38.1 h -2.645833 z" - id="path1765-5" /> - </g> - </g> - <g - id="g1881" - transform="translate(1.5498176,-2.1552243)"> - <rect - style="fill:#eff0f3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.49874;stroke-linejoin:round" - id="grip-focused" - height="2.6458333" - y="41.842724" - x="182.3356" - width="2.6458333" /> - <rect - style="fill:#eff0f3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.49874;stroke-linejoin:round" - id="grip-pressed" - height="2.6458333" - y="41.842724" - x="186.03976" - width="2.6458333" /> - <rect - width="2.6458333" - x="178.63144" - y="41.842724" - height="2.6458333" - style="fill:url(#linearGradient1889);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.49874;stroke-linejoin:round" - id="grip-normal" /> - </g> - <g - id="g2538"> - <g - id="g2415"> - <path - style="fill:#${surface};fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="progress-pattern-disabled-topleft" - d="m 140.75833,57.943776 v -1.984375 c -1.05833,0 -1.98437,0.926041 -1.98437,1.984375 z" /> - <rect - width="1.984375" - x="138.77397" - y="57.943775" - height="4.2333331" - style="fill:#${surface};stroke:none;stroke-width:0.264583" - id="progress-pattern-disabled-left" /> - <use - width="450" - x="0" - y="0" - height="1230" - id="progress-pattern-disabled-top" - xlink:href="#progress-pattern-disabled-left" - transform="rotate(90,142.87501,60.060442)" - style="fill:#${surface}" /> - <use - width="450" - x="0" - y="0" - height="1230" - id="progress-pattern-disabled-topright" - xlink:href="#progress-pattern-disabled-topleft" - transform="rotate(90,142.87501,60.060442)" - style="fill:#${surface}" /> - <use - width="450" - x="0" - y="0" - height="1230" - id="progress-pattern-disabled-bottomright" - xlink:href="#progress-pattern-disabled-topleft" - transform="rotate(180,142.87502,60.060438)" - style="fill:#${surface}" /> - <use - width="450" - x="0" - y="0" - height="1230" - id="progress-pattern-disabled-right" - xlink:href="#progress-pattern-disabled-left" - transform="translate(6.2177087)" - style="fill:#${surface}" /> - <use - width="450" - x="0" - y="0" - height="1230" - id="progress-pattern-disabled-bottom" - xlink:href="#progress-pattern-disabled-left" - transform="rotate(-90,142.87501,60.060441)" - style="fill:#${surface}" /> - <use - width="450" - x="0" - y="0" - height="1230" - id="progress-pattern-disabled-bottomleft" - xlink:href="#progress-pattern-disabled-topleft" - transform="rotate(-90,142.87501,60.060441)" - style="fill:#${surface}" /> - <use - width="450" - x="0" - y="0" - height="1230" - id="progress-pattern-disabled" - xlink:href="#progress-pattern-disabled-left" - transform="matrix(2.1333333,0,0,1,-155.2928,9.5e-7)" - style="fill:#${surface}" /> - </g> - <g - id="g2426"> - <path - style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="progress-normal-left" - d="m 153.45833,64.822916 v -8.466614 h -2.64583 l 1.6e-4,8.466667 z" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="progress-normal-topleft" - d="m 153.45831,53.710469 c -1.45518,-1.3e-5 -2.64581,1.190612 -2.6458,2.645807 h 2.64581 z" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="progress-normal" - d="m 153.45833,56.356302 v 8.466667 h 8.46667 v -8.466667 z" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="progress-normal-right" - d="m 161.925,64.822916 v -8.466614 h 2.64583 l -1.6e-4,8.466667 z" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="progress-normal-topright" - d="m 161.92503,53.710469 c 1.45518,-1.3e-5 2.6458,1.190612 2.64579,2.645807 h -2.6458 z" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="progress-normal-top" - d="m 153.45836,56.356302 h 8.46661 v -2.645833 h -8.46666 z" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="progress-normal-bottom" - d="m 161.92495,64.822969 h -8.46662 v 2.645833 h 8.46667 z" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="progress-normal-bottomleft" - d="m 153.45833,67.468802 c -1.45519,0 -2.64582,-1.190625 -2.64581,-2.645817 l 2.64581,-2.7e-5 z" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - id="progress-normal-bottomright" - d="m 161.92499,67.468802 c 1.4552,0 2.64582,-1.190625 2.64582,-2.645817 l -2.64581,-1.6e-5 z" - inkscape:connector-curvature="0" /> - </g> - <g - id="g390" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none" - transform="matrix(0.26458333,0,0,0.26458333,121.70833,19.248411)"> - <path - inkscape:connector-curvature="0" - d="m 17.5,140.0003 v 32.4998 H 10 v -32.5 z" - id="progress-pattern-normal-left" - style="fill:#${primary};fill-opacity:1" /> - <path - inkscape:connector-curvature="0" - d="m 17.5,180.0001 c -4,0 -7.5,-3.5 -7.5,-7.5 h 7.5 z" - id="progress-pattern-normal-bottomleft" - style="fill:#${primary};fill-opacity:1" /> - <path - inkscape:connector-curvature="0" - d="m 10,140.0001 c 0,-4 3.5,-7.5 7.5,-7.5 v 7.5 z" - id="progress-pattern-normal-topleft" - style="fill:#${primary};fill-opacity:1" /> - <path - inkscape:connector-curvature="0" - d="M 17.5002,172.5002 H 50 v 7.5 H 17.5 Z" - id="progress-pattern-normal-bottom" - style="fill:#${primary};fill-opacity:1" /> - <path - inkscape:connector-curvature="0" - d="M 49.9998,140.0002 H 17.5 v -7.5 H 50 Z" - id="progress-pattern-normal-top" - style="fill:#${primary};fill-opacity:1" /> - <path - inkscape:connector-curvature="0" - d="m 17.5,172.5002 v -32.5 H 50 v 32.5 z" - id="progress-pattern-normal" - style="fill:#${primary};fill-opacity:1" /> - <path - inkscape:connector-curvature="0" - d="m 50,140.0004 v 32.4998 h 7.5 v -32.5 z" - id="progress-pattern-normal-right" - style="fill:#${primary};fill-opacity:1" /> - <path - inkscape:connector-curvature="0" - d="m 50,180.0002 c 4,0 7.5,-3.5 7.5,-7.5 H 50 Z" - id="progress-pattern-normal-bottomright" - style="fill:#${primary};fill-opacity:1" /> - <path - inkscape:connector-curvature="0" - d="m 57.5,140.0002 c 0,-4 -3.5,-7.5 -7.5,-7.5 v 7.5 z" - id="progress-pattern-normal-topright" - style="fill:#${primary};fill-opacity:1" /> - </g> - </g> - <g - id="g2441"> - <path - inkscape:connector-curvature="0" - id="header-pressed" - d="m 162.98333,72.760416 h -1.5875 v 1.5875 h 1.5875 z" - style="opacity:0.19;fill:#ffffff;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="header-toggled" - d="m 165.36458,72.760416 h -1.5875 v 1.5875 h 1.5875 z" - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="header-focused" - d="m 160.60209,72.760416 h -1.5875 v 1.5875 h 1.5875 z" - style="opacity:0.08;fill:#ffffff;stroke-width:0.264583" - sodipodi:nodetypes="ccccc" /> - <path - inkscape:connector-curvature="0" - id="header-normal-bottom" - d="m 161.13122,82.518149 h -1.5875 v 1.5875 h 1.5875 z" - style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="header-normal-bottomleft" - d="m 162.71872,82.518149 h -1.5875 v 1.5875 h 1.5875 z" - style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="header-normal-bottomright" - d="m 164.30622,82.518149 h -1.5875 v 1.5875 h 1.5875 z" - style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="header-normal-left" - d="m 164.30622,80.930649 v -1.5875 h -1.5875 v 1.5875 z" - style="opacity:0.00100002;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="header-normal-right" - d="m 162.71872,80.930649 v -1.5875 h -1.5875 v 1.5875 z" - style="opacity:0.00100002;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="header-normal-top" - d="m 161.13122,80.930649 h -1.5875 v 1.5875 h 1.5875 z" - style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="header-normal-topright" - d="m 162.71872,80.930649 h -1.5875 v 1.5875 h 1.5875 z" - style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="header-normal-topleft" - d="m 164.30622,80.930649 h -1.5875 v 1.5875 h 1.5875 z" - style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="header-normal" - d="m 161.13122,80.930649 v -1.5875 h -1.5875 v 1.5875 z" - style="fill:#36383e;fill-opacity:1;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="header-separator" - d="m 159.54372,79.343149 h -1.5875 v 1.5875 h 1.5875 z" - style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> - </g> - <g - id="button-default-indicator-7" - transform="matrix(0.26458333,0,0,0.26458333,136.59114,-10.252604)"> - <rect - style="opacity:0;fill:#7b7b7b" - id="rect139-5" - width="25" - height="25" - x="375" - y="87.5" /> - <path - style="opacity:0.00100002" - id="path141-3" - d="m 396.25,86.25 -17.5,17.5 h 17.5 z" /> - </g> - <path - style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 227.54166,0 v 148.16666 h 174.625 V 0 Z" - id="path3040" /> - <text - xml:space="preserve" - style="font-style:normal;font-weight:normal;font-size:4.44565px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.111141" - x="230.73593" - y="7.3030114" - id="text3044"><tspan - sodipodi:role="line" - id="tspan3042" - x="230.73593" - y="7.3030114" - style="stroke-width:0.111141">Invisible elements here</tspan></text> - <g - id="resize-grip-normal" - transform="matrix(0.26458333,0,0,0.26458333,130.96875,7.2760416)" - style="opacity:0.00100002"> - <rect - style="opacity:0;fill:#7b7b7b" - id="rect188" - width="25" - height="25" - x="375" - y="87.5" /> - <path - style="opacity:0.3" - id="path190" - d="m 400,95 -17.5,17.5 H 400 Z" /> - </g> - <g - id="resize-grip-focused" - transform="matrix(0.26458333,0,0,0.26458333,138.90625,7.2760416)" - style="opacity:0.00100002"> - <rect - style="opacity:0;fill:#7b7b7b" - id="rect193" - width="25" - height="25" - x="375" - y="87.5" /> - <path - style="fill:#00a0d7;fill-opacity:1" - id="path195" - d="m 398.5859,91.0859 c -7.80469,7.80469 -15.6094,15.6094 -23.4141,23.4141 8.9427,0 17.8854,0 26.8281,0 0,-8.94271 0,-17.8854 0,-26.8281 -1.13802,1.13802 -2.27604,2.27604 -3.41406,3.41406 z" /> - </g> - <g - id="g2506"> - <g - id="g2452"> - <rect - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - y="75.67083" - x="138.90623" - height="1.0583333" - width="2.1166666" - id="itemview-pressed-top" /> - <rect - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - y="78.845833" - x="138.90623" - height="1.0583333" - width="2.1166666" - id="itemview-pressed-bottom" /> - <path - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - d="m 138.90624,76.729164 h 2.11667 v 2.116666 h -2.11667 z" - id="itemview-pressed" /> - <path - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - d="m 141.02291,75.67083 c 1.05833,0 1.05833,1.058334 1.05833,1.058334 h -1.05833 z" - id="itemview-pressed-topright" /> - <path - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - d="m 141.02291,78.84583 h 1.05833 c 0,0 0,1.058334 -1.05833,1.058334 z" - id="itemview-pressed-bottomright" /> - <rect - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - y="76.729164" - x="141.0229" - height="2.1166666" - width="1.0583333" - id="itemview-pressed-right" /> - <rect - inkscape:label="#itemview-pressed-left" - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - y="76.729164" - x="137.84792" - height="2.1166666" - width="1.0583333" - id="itemview-pressed-left" /> - <path - inkscape:label="#itemview-pressed-topleft" - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - d="m 138.90624,75.67083 v 1.058334 h -1.05833 c 0,0 0,-1.058334 1.05833,-1.058334 z" - id="itemview-pressed-topleft" /> - <path - inkscape:label="#itemview-pressed-bottomleft" - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - d="m 137.84791,78.84583 h 1.05833 v 1.058334 c -1.05833,0 -1.05833,-1.058334 -1.05833,-1.058334 z" - id="itemview-pressed-bottomleft" /> - </g> - <g - id="g2463"> - <rect - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - y="75.67083" - x="143.93332" - height="1.0583333" - width="2.1166666" - id="itemview-toggled-top" /> - <rect - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - y="78.845833" - x="143.93332" - height="1.0583333" - width="2.1166666" - id="itemview-toggled-bottom" /> - <path - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - d="m 143.93333,76.729164 h 2.11666 v 2.116666 h -2.11666 z" - id="itemview-toggled" /> - <rect - inkscape:label="#itemview-toggled-right" - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - y="76.729164" - x="146.04999" - height="2.1166666" - width="1.0583333" - id="itemview-toggled-right" /> - <path - inkscape:label="#itemview-toggled-topright" - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - d="m 146.04999,75.67083 c 1.05834,0 1.05834,1.058334 1.05834,1.058334 h -1.05834 z" - id="itemview-toggled-topright" /> - <path - inkscape:label="#itemview-toggled-bottomright" - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - d="m 146.04999,78.84583 h 1.05834 c 0,0 0,1.058334 -1.05834,1.058334 z" - id="itemview-toggled-bottomright" /> - <rect - inkscape:label="#itemview-toggled-left" - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - y="76.729164" - x="142.87498" - height="2.1166666" - width="1.0583333" - id="itemview-toggled-left" /> - <path - inkscape:label="#itemview-toggled-topleft" - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - d="m 143.93333,75.67083 v 1.058334 h -1.05834 c 0,0 0,-1.058334 1.05834,-1.058334 z" - id="itemview-toggled-topleft" /> - <path - inkscape:label="#itemview-toggled-bottomleft" - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1;stroke-width:0.264583;opacity:0.75" - d="m 142.87499,78.84583 h 1.05834 v 1.058334 c -1.05834,0 -1.05834,-1.058334 -1.05834,-1.058334 z" - id="itemview-toggled-bottomleft" /> - </g> - <g - id="g2474"> - <rect - style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" - y="75.67083" - x="133.87917" - height="1.0583333" - width="2.1166666" - id="itemview-focused-top" /> - <rect - style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" - y="78.845833" - x="133.87917" - height="1.0583333" - width="2.1166666" - id="itemview-focused-bottom" /> - <path - style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" - d="m 133.87916,76.729164 h 2.11667 v 2.116666 h -2.11667 z" - id="itemview-focused" /> - <rect - style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" - y="76.729164" - x="135.99582" - height="2.1166666" - width="1.0583333" - id="itemview-focused-right" /> - <path - style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" - d="m 135.99583,75.67083 c 1.05833,0 1.05833,1.058334 1.05833,1.058334 h -1.05833 z" - id="itemview-focused-topright" /> - <path - style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" - d="m 135.99583,78.84583 h 1.05833 c 0,0 0,1.058334 -1.05833,1.058334 z" - id="itemview-focused-bottomright" /> - <rect - inkscape:label="#itemview-focused-left" - style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" - y="76.729164" - x="132.82083" - height="2.1166666" - width="1.0583333" - id="itemview-focused-left" /> - <path - inkscape:label="#itemview-focused-topleft" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" - d="m 133.87916,75.67083 v 1.058334 h -1.05833 c 0,0 0,-1.058334 1.05833,-1.058334 z" - id="itemview-focused-topleft" /> - <path - inkscape:label="#itemview-focused-bottomleft" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" - d="m 132.82083,78.84583 h 1.05833 v 1.058334 c -1.05833,0 -1.05833,-1.058334 -1.05833,-1.058334 z" - id="itemview-focused-bottomleft" /> - </g> - </g> - <g - id="tab-focused-bottomleft" - transform="translate(6.0854158,-0.00825868)"> - <g - inkscape:label="#tab-normal-bottomright" - transform="matrix(-0.35277536,0,0,-0.35277536,94.808958,52.660799)" - id="tab-normal-bottomright-23-3-6" - style="fill-rule:evenodd;stroke:none" - inkscape:transform-center-x="-0.23473818" - inkscape:transform-center-y="3.8666083"> - <rect - style="opacity:1;fill:#${primary};fill-opacity:0.400587;stroke:none;stroke-width:5.01977;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" - id="rect2585-6-7" - width="7.5000534" - height="7.5000463" - x="-28.750004" - y="-48.775036" - transform="scale(-1)" /> - <path - inkscape:connector-curvature="0" - id="path8932-3-6-2-0-5" - d="m 28.75,41.2516 c -3.98048,-0.114009 -7.614012,3.519519 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" - style="fill:#0082ff;fill-opacity:0;fill-rule:evenodd" /> - <path - inkscape:connector-curvature="0" - d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" - id="path8934-5-62-7-6-3" - style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> - </g> - <path - style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" - d="m 84.666666,37.570833 h 2.645833 V 38.1 h -2.645833 z" - id="path1765-2-5" /> - </g> - <g - id="g7998" - transform="matrix(0.26458333,0,0,0.26458333,92.604166,29.104166)"> - <g - style="fill:#808080;fill-opacity:1" - transform="translate(-242.76608,-863.35638)" - id="g6135"> - <g - style="fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="expand-scrollbarslider-normal-top" - transform="matrix(0,1,1,0,-740.91112,1013.957)"> - <path - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" - id="path2411" - d="m 143,1101 v 16.4064 0.094 h 12 v -16.5 h -12 z" /> - <path - sodipodi:nodetypes="ccccccc" - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" - id="path2413" - d="m 146.375,1100.9998 v 16.4064 0.094 l 8.625,2e-4 v -16.5 l -8.625,-2e-4 z" /> - </g> - <g - style="fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="expand-scrollbarslider-normal-topleft" - transform="matrix(0,1,1,0,-740.91112,1013.957)"> - <path - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" - id="path2423" - d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" /> - <path - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" - id="path2425" - d="m 155,1092.5 c -4,0.011 -8.625,2.7501 -8.625,8.4998 L 155,1101 Z" /> - </g> - <g - style="fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="expand-scrollbarslider-normal-topright" - transform="rotate(90,231.81613,1245.7731)"> - <path - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" - id="path2429" - d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" /> - <path - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" - id="path2431" - d="m 155,1092.5 c -4,0.011 -8.625,2.7501 -8.625,8.4998 L 155,1101 Z" /> - </g> - <g - style="fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="expand-scrollbarslider-normal-bottomleft" - transform="rotate(-90,291.52288,1032.434)"> - <path - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" - id="path2435" - d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" /> - <path - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" - id="path2437" - d="m 155,1092.5 c -4,0.011 -8.625,2.7501 -8.625,8.4998 L 155,1101 Z" /> - </g> - <g - style="fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="expand-scrollbarslider-normal-bottom" - transform="rotate(-90,291.52288,1032.434)"> - <path - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" - id="path2417" - d="m 143,1101 v 16.4064 0.094 h 12 v -16.5 h -12 z" /> - <path - sodipodi:nodetypes="ccccccc" - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" - id="path2419" - d="m 146.375,1100.9998 v 16.4064 0.094 l 8.625,2e-4 v -16.5 l -8.625,-2e-4 z" /> - </g> - <g - style="fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="expand-scrollbarslider-normal-bottomright" - transform="matrix(0,-1,-1,0,1477.5886,1323.9569)"> - <path - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" - id="path2441" - d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" /> - <path - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" - id="path2443" - d="m 155,1092.5 c -4,0.011 -8.625,2.7501 -8.625,8.4998 L 155,1101 Z" /> - </g> - </g> - <g - style="fill:#808080;fill-opacity:1" - transform="translate(-259.58603,-865.85648)" - id="g6155"> - <g - id="g4893"> - <g - transform="matrix(0,1,-1.3788159,0,1384.1178,946.45698)" - id="expand-scrollbarslider-focused-bottomright" - style="fill:#b4b4b4;fill-opacity:1;stroke:none"> - <rect - id="rect2387" - style="opacity:0;fill:#b4b4b4;fill-opacity:1" - height="8.702877" - y="669.797" - x="225" - width="12" /> - <path - d="M 225,670.8848 V 678.5 h 10.5 c 0,-4.35156 -4.5,-7.61523 -10.5,-7.61521 z" - id="path2389" - style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" - inkscape:connector-curvature="0" /> - </g> - <g - transform="matrix(0,1,-1.3788175,0,1384.1189,946.45698)" - id="expand-scrollbarslider-focused-topright" - style="fill:#b4b4b4;fill-opacity:1;stroke:none"> - <rect - id="rect2363" - style="opacity:0;fill:#b4b4b4;fill-opacity:1" - height="8.7029018" - y="669.79688" - x="213" - width="12" /> - <path - d="m 225,670.8847 c -6,4e-5 -10.5,3.2637 -10.5,7.6152 H 225 Z" - id="path2365" - style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" - inkscape:connector-curvature="0" /> - </g> - <g - transform="rotate(90,90.317132,1036.7742)" - id="expand-scrollbarslider-focused-top" - style="fill:#b4b4b4;fill-opacity:1;stroke:none"> - <rect - id="rect2351" - style="opacity:0;fill:#b4b4b4;fill-opacity:1" - height="22.999884" - y="678.49976" - x="212.99995" - width="12" /> - <path - d="m 214.5,678.5004 v 22.8687 0.131 h 10.4999 V 678.5007 H 214.5 Z" - id="path2353" - style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" - inkscape:connector-curvature="0" /> - </g> - <g - transform="rotate(90,90.317132,1036.7742)" - id="expand-scrollbarslider-focused-bottom" - style="fill:#b4b4b4;fill-opacity:1;stroke:none"> - <rect - id="rect2339" - style="opacity:0;fill:#b4b4b4;fill-opacity:1" - height="22.993509" - y="678.50287" - x="224.99998" - width="12.00004" /> - <path - d="m 225,678.5005 v 22.9992 h 10.5 c 2.2e-4,-0.0452 -2e-4,-0.086 0,-0.131 V 678.5001 H 225 Z" - id="path2341" - style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" - inkscape:connector-curvature="0" /> - </g> - <g - transform="matrix(0,1,1.3788159,0,-509.9349,946.45698)" - id="expand-scrollbarslider-focused-bottomleft" - style="fill:#b4b4b4;fill-opacity:1;stroke:none"> - <rect - id="rect2393" - style="opacity:0;fill:#b4b4b4;fill-opacity:1" - height="8.702877" - y="669.797" - x="225" - width="12" /> - <path - d="M 225,670.8848 V 678.5 h 10.5 c 0,-4.35156 -4.5,-7.61523 -10.5,-7.61521 z" - id="path2395" - style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" - inkscape:connector-curvature="0" /> - </g> - <g - transform="matrix(0,1,1.3788175,0,-509.93594,946.45698)" - id="expand-scrollbarslider-focused-topleft" - style="fill:#b4b4b4;fill-opacity:1;stroke:none"> - <rect - id="rect2369" - style="opacity:0;fill:#b4b4b4;fill-opacity:1" - height="8.7029018" - y="669.79688" - x="213" - width="12" /> - <path - d="m 225,670.8847 c -6,4e-5 -10.5,3.2637 -10.5,7.6152 H 225 Z" - id="path2371" - style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - style="fill:#808080;fill-opacity:1" - transform="translate(-268.40397,-865.85653)" - id="g6175"> - <g - style="fill:#b4b4b4;fill-opacity:1;stroke:none" - id="expand-scrollbarslider-pressed-bottomright" - transform="matrix(0,1,-1.3788159,0,1448.1179,946.45708)"> - <rect - width="12" - x="225" - y="669.797" - height="8.702877" - style="opacity:0;fill:#b4b4b4;fill-opacity:1" - id="rect2399" /> - <path - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" - id="path2401" - d="M 225,670.8848 V 678.5 h 10.5 c 0,-4.35156 -4.5,-7.61523 -10.5,-7.61521 z" /> - </g> - <g - style="fill:#b4b4b4;fill-opacity:1;stroke:none" - id="expand-scrollbarslider-pressed-topright" - transform="matrix(0,1,-1.3788175,0,1448.119,946.45708)"> - <rect - width="12" - x="213" - y="669.79688" - height="8.7029018" - style="opacity:0;fill:#b4b4b4;fill-opacity:1" - id="rect2375" /> - <path - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" - id="path2377" - d="m 225,670.8847 c -6,4e-5 -10.5,3.2637 -10.5,7.6152 H 225 Z" /> - </g> - <g - style="fill:#b4b4b4;fill-opacity:1;stroke:none" - id="expand-scrollbarslider-pressed-top" - transform="rotate(90,122.31713,1068.7743)"> - <rect - width="12" - x="212.99995" - y="678.49976" - height="22.999884" - style="opacity:0;fill:#b4b4b4;fill-opacity:1" - id="rect2357" /> - <path - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" - id="path2359" - d="m 214.5,678.5004 v 22.8687 0.131 h 10.4999 V 678.5007 H 214.5 Z" /> - </g> - <g - style="fill:#b4b4b4;fill-opacity:1;stroke:none" - id="expand-scrollbarslider-pressed-bottom" - transform="rotate(90,122.31713,1068.7743)"> - <rect - width="12.00004" - x="224.99998" - y="678.50287" - height="22.993509" - style="opacity:0;fill:#b4b4b4;fill-opacity:1" - id="rect2345" /> - <path - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" - id="path2347" - d="m 225,678.5005 v 22.9992 h 10.5 c 2.2e-4,-0.0452 -2e-4,-0.086 0,-0.131 V 678.5001 H 225 Z" /> - </g> - <g - style="fill:#b4b4b4;fill-opacity:1;stroke:none" - id="expand-scrollbarslider-pressed-bottomleft" - transform="matrix(0,1,1.3788159,0,-445.9349,946.45698)"> - <rect - width="12" - x="225" - y="669.797" - height="8.702877" - style="opacity:0;fill:#b4b4b4;fill-opacity:1" - id="rect2405" /> - <path - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" - id="path2407-26" - d="M 225,670.8848 V 678.5 h 10.5 c 0,-4.35156 -4.5,-7.61523 -10.5,-7.61521 z" /> - </g> - <g - style="fill:#b4b4b4;fill-opacity:1;stroke:none" - id="expand-scrollbarslider-pressed-topleft" - transform="matrix(0,1,1.3788175,0,-445.93594,946.45698)"> - <rect - width="12" - x="213" - y="669.79688" - height="8.7029018" - style="opacity:0;fill:#b4b4b4;fill-opacity:1" - id="rect2381" /> - <path - inkscape:connector-curvature="0" - style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" - id="path2383" - d="m 225,670.8847 c -6,4e-5 -10.5,3.2637 -10.5,7.6152 H 225 Z" /> - </g> - </g> - </g> - <g - id="g7853" - transform="matrix(0.26458333,0,0,0.26458333,95.627019,23.931541)"> - <rect - style="opacity:0.5;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6.74619" - id="scrollbarslider-normal" - width="10.666626" - height="42.666752" - x="302.90839" - y="269.55008" - class="ColorScheme-Text" /> - <g - style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" - id="scrollbarslider-normal-right" - transform="matrix(1.8750001,0,0,4.0000079,295.57496,239.68324)"> - <path - id="rect3838" - d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" - style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - inkscape:connector-curvature="0" - class="ColorScheme-Text" /> - <rect - style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1.23168" - id="rect3856" - width="1.4222221" - height="10.666667" - x="13.866665" - y="7.4666667" /> - </g> - <g - style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" - id="scrollbarslider-normal-topright" - transform="matrix(1.8750001,0,0,1.8749993,295.575,255.55004)"> - <rect - style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1.42222" - id="rect3852" - width="5.6888885" - height="5.6888885" - x="9.5999985" - y="1.7777776" /> - <path - id="rect3840" - d="m 9.6,3.2 v 4.2666667 h 4.266667 C 13.866667,5.1029333 11.963733,3.2 9.6,3.2 Z" - style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - inkscape:connector-curvature="0" - class="ColorScheme-Text" /> - </g> - <g - style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" - id="scrollbarslider-normal-bottomright" - transform="matrix(1.8750001,0,0,1.8749993,295.575,278.21684)"> - <rect - style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1.42222" - id="rect3862" - width="5.6888885" - height="5.6888885" - x="9.5999985" - y="18.133333" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - d="m 9.6,22.4 v -4.266667 h 4.266667 C 13.866667,20.497067 11.963733,22.4 9.6,22.4 Z" - id="path3871" - class="ColorScheme-Text" /> - </g> - <g - style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" - id="scrollbarslider-normal-left" - transform="matrix(-1.8749997,0,0,4.0000079,320.9083,239.68324)"> - <path - style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" - id="path3891" - inkscape:connector-curvature="0" - class="ColorScheme-Text" /> - <rect - style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1.23168" - id="rect3854" - width="1.4222221" - height="10.666667" - x="-15.28889" - y="7.4666667" - transform="scale(-1,1)" /> - </g> - <g - style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" - id="scrollbarslider-normal-topleft" - transform="matrix(-1.8749997,0,0,1.8749993,320.90834,255.55004)"> - <rect - style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1.42222" - id="rect3848" - width="5.6888885" - height="5.6888885" - x="-15.28889" - y="1.7777776" - transform="scale(-1,1)" /> - <path - style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - d="m 9.6,3.2 v 4.2666667 h 4.266667 C 13.866667,5.1029333 11.963733,3.2 9.6,3.2 Z" - id="path3895" - inkscape:connector-curvature="0" - class="ColorScheme-Text" /> - </g> - <g - style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" - id="scrollbarslider-normal-bottomleft" - transform="matrix(-1.8749997,0,0,1.8749993,320.90834,278.21684)"> - <rect - style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1.42222" - id="rect3858" - width="5.6888885" - height="5.6888885" - x="-15.28889" - y="18.133333" - transform="scale(-1,1)" /> - <path - id="path3901" - d="m 9.6,22.4 v -4.266667 h 4.266667 C 13.866667,20.497067 11.963733,22.4 9.6,22.4 Z" - style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - inkscape:connector-curvature="0" - class="ColorScheme-Text" /> - </g> - <g - style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" - transform="matrix(0,-1.8749993,-0.99999611,0,321.04164,287.55003)" - id="scrollbarslider-normal-top"> - <rect - style="opacity:0.01;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:3.89492" - id="rect3850-9" - width="10.666667" - height="5.6888885" - x="-18.133333" - y="-15.288889" - transform="matrix(0,-1,-1,0,0,0)" /> - <path - inkscape:connector-curvature="0" - id="path3909" - d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" - style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - class="ColorScheme-Text" /> - </g> - <g - style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" - id="scrollbarslider-normal-bottom" - transform="matrix(0,1.8749993,-0.99999611,0,321.04162,294.21684)"> - <rect - style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:3.89492" - id="rect3860" - width="10.666667" - height="5.6888885" - x="-18.133333" - y="9.5999994" - transform="rotate(-90)" /> - <path - style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" - id="path3915" - inkscape:connector-curvature="0" - class="ColorScheme-Text" /> - </g> - </g> - <g - id="g7826" - transform="matrix(0.26458333,0,0,0.26458333,91.632172,23.931541)"> - <rect - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6.7461" - id="scrollbarslider-focused" - width="10.666341" - height="42.666752" - x="362.34067" - y="269.55008" - class="ColorScheme-ButtonHover" /> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-focused-right" - transform="matrix(1.8750001,0,0,4.0000079,355.00687,239.68324)"> - <path - id="rect3838-4" - d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - inkscape:connector-curvature="0" - class="ColorScheme-ButtonHover" /> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.23168" - id="rect3904" - width="1.4222221" - height="10.666667" - x="13.866665" - y="7.4666667" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-focused-topright" - transform="matrix(1.8750001,0,0,1.8749993,355.00719,255.55004)"> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" - id="rect3894" - width="5.6888885" - height="5.6888885" - x="9.5999985" - y="1.7777761" /> - <path - id="rect3840-2" - d="m 9.6,3.2 v 4.2666667 h 4.266667 C 13.866667,5.1029333 11.963733,3.2 9.6,3.2 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - inkscape:connector-curvature="0" - class="ColorScheme-ButtonHover" /> - </g> - <g - id="scrollbarslider-focused-bottomright" - transform="matrix(1.8750001,0,0,1.8749993,355.00719,278.21684)" - style="fill:#4a7fbd;fill-opacity:0.952941"> - <path - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - d="m 9.6,22.4 v -4.266667 h 4.266667 C 13.866667,20.497067 11.963733,22.4 9.6,22.4 Z" - id="path3871-1" - class="ColorScheme-ButtonHover" /> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" - id="rect3908" - width="5.6888885" - height="5.6888885" - x="9.5999985" - y="18.133331" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-focused-left" - transform="matrix(-1.8749997,0,0,4.0000079,380.34068,239.68324)"> - <path - style="opacity:1;fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" - id="path3891-9" - inkscape:connector-curvature="0" - class="ColorScheme-ButtonHover" /> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.23168" - id="rect3902" - width="1.4222221" - height="10.666667" - x="-15.28889" - y="7.4666667" - transform="scale(-1,1)" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-focused-topleft" - transform="matrix(-1.8749997,0,0,1.8749993,380.341,255.55004)"> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" - id="rect3880" - width="5.6888885" - height="5.6888885" - x="-15.28889" - y="1.7777761" - transform="scale(-1,1)" /> - <path - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - d="m 9.6,3.2 v 4.2666667 h 4.266667 C 13.866667,5.1029333 11.963733,3.2 9.6,3.2 Z" - id="path3895-2" - inkscape:connector-curvature="0" - class="ColorScheme-ButtonHover" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-focused-bottomleft" - transform="matrix(-1.8749997,0,0,1.8749993,380.341,278.21684)"> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" - id="rect3890" - width="5.6888885" - height="5.6888885" - x="-15.28889" - y="18.133331" - transform="scale(-1,1)" /> - <path - id="path3901-9" - d="m 9.6,22.4 v -4.266667 h 4.266667 C 13.866667,20.497067 11.963733,22.4 9.6,22.4 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - inkscape:connector-curvature="0" - class="ColorScheme-ButtonHover" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - transform="matrix(0,-1.8749993,-0.9999694,0,380.47347,287.55004)" - id="scrollbarslider-focused-top"> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:3.89492" - id="rect3892" - width="10.666667" - height="5.6888885" - x="-18.133333" - y="-15.288891" - transform="matrix(0,-1,-1,0,0,0)" /> - <path - inkscape:connector-curvature="0" - id="path3909-6" - d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - class="ColorScheme-ButtonHover" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-focused-bottom" - transform="matrix(0,1.8749993,-0.9999694,0,380.47347,294.21684)"> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:3.89492" - id="rect3906" - width="10.666667" - height="5.6888885" - x="-18.133333" - y="9.5999975" - transform="rotate(-90)" /> - <path - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" - id="path3915-6" - inkscape:connector-curvature="0" - class="ColorScheme-ButtonHover" /> - </g> - </g> - <g - id="g7799" - transform="matrix(0.26458333,0,0,0.26458333,87.989953,23.931517)"> - <rect - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6.7462" - id="scrollbarslider-pressed" - width="10.666666" - height="42.666752" - x="421.77289" - y="269.55017" - class="ColorScheme-ButtonHover" /> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-pressed-right" - transform="matrix(1.8750001,0,0,4.0000079,414.43955,239.68334)"> - <path - id="rect3838-4-8" - d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - inkscape:connector-curvature="0" - class="ColorScheme-ButtonHover" /> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.23168" - id="rect3924" - width="1.4222221" - height="10.666667" - x="13.866665" - y="7.4666667" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-pressed-topright" - transform="matrix(1.8750001,0,0,1.8749993,414.43955,255.55014)"> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" - id="rect3920" - width="5.6888885" - height="5.6888885" - x="9.5999985" - y="1.7777756" /> - <path - id="rect3840-2-9" - d="m 9.6,3.2 v 4.2666667 h 4.266667 C 13.866667,5.1029333 11.963733,3.2 9.6,3.2 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - inkscape:connector-curvature="0" - class="ColorScheme-ButtonHover" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-pressed-bottomright" - transform="matrix(1.8750001,0,0,1.8749993,414.43955,278.21674)"> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" - id="rect3930" - width="5.6888885" - height="5.6888885" - x="9.5999985" - y="18.133331" /> - <path - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - d="m 9.6,22.4 v -4.266667 h 4.266667 C 13.866667,20.497067 11.963733,22.4 9.6,22.4 Z" - id="path3871-1-7" - class="ColorScheme-ButtonHover" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-pressed-left" - transform="matrix(-1.8749997,0,0,4.0000079,439.77287,239.68334)"> - <path - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" - id="path3891-9-4" - inkscape:connector-curvature="0" - class="ColorScheme-ButtonHover" /> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.23168" - id="rect3922-5" - width="1.4222221" - height="10.666667" - x="-15.28889" - y="7.4666667" - transform="scale(-1,1)" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-pressed-topleft" - transform="matrix(-1.8749997,0,0,1.8749993,439.77287,255.55014)"> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" - id="rect3916" - width="5.6888885" - height="5.6888885" - x="-15.28889" - y="1.7777756" - transform="scale(-1,1)" /> - <path - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - d="m 9.6,3.2 v 4.2666667 h 4.266667 C 13.866667,5.1029333 11.963733,3.2 9.6,3.2 Z" - id="path3895-2-1" - inkscape:connector-curvature="0" - class="ColorScheme-ButtonHover" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-pressed-bottomleft" - transform="matrix(-1.8749997,0,0,1.8749993,439.77287,278.21674)"> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" - id="rect3926" - width="5.6888885" - height="5.6888885" - x="-15.28889" - y="18.133331" - transform="scale(-1,1)" /> - <path - id="path3901-9-9" - d="m 9.6,22.4 v -4.266667 h 4.266667 C 13.866667,20.497067 11.963733,22.4 9.6,22.4 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - inkscape:connector-curvature="0" - class="ColorScheme-ButtonHover" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - transform="matrix(0,-1.8749993,-0.99999991,0,439.90621,287.55014)" - id="scrollbarslider-pressed-top"> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:3.89492" - id="rect3918" - width="10.666667" - height="5.6888885" - x="-18.133333" - y="-15.288891" - transform="matrix(0,-1,-1,0,0,0)" /> - <path - inkscape:connector-curvature="0" - id="path3909-6-1" - d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - class="ColorScheme-ButtonHover" /> - </g> - <g - style="fill:#4a7fbd;fill-opacity:0.952941" - id="scrollbarslider-pressed-bottom" - transform="matrix(0,1.8749993,-0.99999991,0,439.90621,294.21674)"> - <rect - style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:3.89492" - id="rect3928" - width="10.666667" - height="5.6888885" - x="-18.133333" - y="9.5999975" - transform="rotate(-90)" /> - <path - style="fill:#${primary};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" - d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" - id="path3915-6-3" - inkscape:connector-curvature="0" - class="ColorScheme-ButtonHover" /> - </g> - </g> - <g - id="common-normal-top" - transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> - <path - inkscape:connector-curvature="0" - style="fill:#a2a8b1;fill-opacity:0.60000002" - id="path1110" - d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z" - transform="scale(1,-1)" /> - </g> - <rect - id="common-normal" - width="10.583333" - height="10.583333" - x="11.377069" - y="-140.22917" - transform="scale(1,-1)" - style="opacity:1;stroke-width:0.264583;fill:#${base};fill-opacity:1" /> - <g - id="common-normal-topleft" - transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> - <path - inkscape:connector-curvature="0" - style="fill:#a2a8b1;fill-opacity:0.60000002" - id="path1114" - d="m 609,368.0314 c -1.10167,0 -0.99736,-0.10427 -0.99736,0.99736 H 609 Z" /> - </g> - <g - id="common-normal-topright" - transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> - <path - inkscape:connector-curvature="0" - style="fill:#a2a8b1;fill-opacity:0.60000002" - id="path1117" - d="m 650.99998,368.03139 c 1.10161,0 0.99736,-0.10427 0.99736,0.99736 h -0.99736 z" /> - </g> - <g - id="common-normal-left" - transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> - <path - inkscape:connector-curvature="0" - style="fill:#a2a8b1;fill-opacity:0.60000002" - id="path1120" - d="m -410.02869,-608.99998 h 40 V -608 h -40 z" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="common-normal-right" - transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)" - style="fill:#a2a8b1;fill-opacity:0.60000002"> - <path - inkscape:connector-curvature="0" - style="fill:#a2a8b1;fill-opacity:0.60000002" - id="path1123" - d="m 370.02878,651.00002 h 40 v 1.00004 h -40 z" - transform="matrix(0,1,1,0,0,0)" /> - </g> - <g - id="common-normal-bottom" - transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> - <path - inkscape:connector-curvature="0" - style="fill:#a2a8b1;fill-opacity:0.60000002" - id="path1126" - d="m 610.00043,411.02889 h 40 v 0.99986 h -40 z" /> - </g> - <g - id="common-normal-bottomleft" - transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> - <path - inkscape:connector-curvature="0" - style="fill:#a2a8b1;fill-opacity:0.60000002" - id="path1129" - d="m 609,412.02609 c -1.10167,0 -0.99736,0.10447 -0.99736,-0.99735 H 609 Z" /> - </g> - <g - id="common-normal-bottomright" - transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> - <path - inkscape:connector-curvature="0" - style="fill:#a2a8b1;fill-opacity:0.60000002" - id="path1132" - d="m 650.99998,412.02609 c 1.10161,0 0.99736,0.10447 0.99736,-0.99735 h -0.99736 z" /> - </g> - <g - id="common-focused-top" - transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> - <path - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1" - id="path1110-3" - d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z" - transform="scale(1,-1)" /> - </g> - <rect - id="common-focused" - width="10.583333" - height="10.583333" - x="25.410854" - y="-140.13322" - transform="scale(1,-1)" - style="opacity:1;stroke-width:0.264583;fill:#${base};fill-opacity:1" /> - <g - id="common-focused-topleft" - transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> - <path - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1" - id="path1114-6" - d="m 609,368.0314 c -1.10167,0 -0.99736,-0.10427 -0.99736,0.99736 H 609 Z" /> - </g> - <g - id="common-focused-topright" - transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> - <path - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1" - id="path1117-7" - d="m 650.99998,368.03139 c 1.10161,0 0.99736,-0.10427 0.99736,0.99736 h -0.99736 z" /> - </g> - <g - id="common-focused-left" - transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> - <path - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1" - id="path1120-5" - d="m -410.02869,-608.99998 h 40 V -608 h -40 z" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - <g - id="common-focused-right" - transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> - <path - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1" - id="path1123-3" - d="m 370.02878,651.00002 h 40 v 1.00004 h -40 z" - transform="matrix(0,1,1,0,0,0)" /> - </g> - <g - id="common-focused-bottom" - transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> - <path - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1" - id="path1126-5" - d="m 610.00043,411.02889 h 40 v 0.99986 h -40 z" /> - </g> - <g - id="common-focused-bottomleft" - transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> - <path - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1" - id="path1129-6" - d="m 609,412.02609 c -1.10167,0 -0.99736,0.10447 -0.99736,-0.99735 H 609 Z" /> - </g> - <g - id="common-focused-bottomright" - transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> - <path - inkscape:connector-curvature="0" - style="fill:#${primary};fill-opacity:1" - id="path1132-2" - d="m 650.99998,412.02609 c 1.10161,0 0.99736,0.10447 0.99736,-0.99735 h -0.99736 z" /> - </g> - <g - style="opacity:0" - id="g222" - transform="matrix(0.26458333,0,0,0.26458333,363.80208,-227.54166)" /> - <g - id="tabBarFrame-normal-bottom" - transform="matrix(0,-0.26458333,0.17638889,0,219.91418,53.97654)"> - <path - inkscape:connector-curvature="0" - style="opacity:0" - id="path272" - d="m 174,921.5 h -4 l 1.3e-4,-6 H 174 Z" /> - <path - inkscape:connector-curvature="0" - style="opacity:0.00100002;fill:#1e1e1e" - id="path274" - d="m 172,921.5 h -2 l 1e-4,-6 h 2 z" /> - </g> - <use - id="tabBarFrame-normal-bottomright" - width="100%" - height="100%" - x="0" - y="0" - transform="translate(1.0583344)" - xlink:href="#tabBarFrame-normal-bottom" /> - <use - id="tabBarFrame-normal-bottomleft" - width="100%" - height="100%" - x="0" - y="0" - xlink:href="#tabBarFrame-normal-bottom" - transform="translate(-1.0583322)" /> - <path - style="fill:#${surface};fill-opacity:0.504538;stroke-width:0.264583" - d="m 12.700054,146.84375 v 8.46666 h 8.46667 v -8.46666 z" - id="tabframe-normal" - inkscape:connector-curvature="0" /> - <g - transform="matrix(0.21166666,0,0,0.26051282,7.143853,134.14333)" - id="tabframe-normal-left" - style="fill:#${surface};fill-opacity:0.504538"> - <path - d="M 26.25,81.2514 V 48.7516 h -5 v 32.5 z" - id="path213" - style="opacity:1;fill:#${surface};fill-opacity:0.504538" - inkscape:connector-curvature="0" /> - <path - d="m 21.25,48.7516 v 32.5 h 2.49975 v -32.5 z" - id="path215" - style="opacity:0;fill:#${surface};fill-opacity:1" - inkscape:connector-curvature="0" /> - </g> - <g - transform="matrix(0.21166666,0,0,0.21166666,7.143853,137.05383)" - id="tabframe-normal-topleft" - style="fill:#${surface};fill-opacity:0.504538"> - <path - d="m 26.25,41.2516 h -5 v 5 h 5 z" - id="path218" - style="opacity:1;fill:#${surface};fill-opacity:0.504538" - inkscape:connector-curvature="0" /> - <path - d="m 26.25,41.2516 h -5 v 5 h 2.49987 l -3e-4,-2.5 h 2.50013 z" - id="path220" - style="opacity:0;fill:#${surface};fill-opacity:1" - inkscape:connector-curvature="0" /> - </g> - <use - xlink:href="#tabframe-normal-left" - transform="matrix(-1,0,0,1,33.866771,2.8334399e-7)" - y="0" - x="0" - height="100%" - width="100%" - id="tabframe-normal-right" - style="fill:#${surface};fill-opacity:0.504538" /> - <use - xlink:href="#tabframe-normal-topleft" - transform="matrix(-1,0,0,1,33.866771,2.8334399e-7)" - y="0" - x="0" - height="100%" - width="100%" - id="tabframe-normal-topright" - style="fill:#${surface};fill-opacity:0.504538" /> - <use - xlink:href="#tabframe-normal-left" - transform="rotate(90,16.933413,151.07706)" - y="0" - x="0" - height="100%" - width="100%" - id="tabframe-normal-top" - style="fill:#${surface};fill-opacity:0.504538" /> - <use - xlink:href="#tabframe-normal-left" - transform="rotate(-90,16.933393,151.07709)" - y="0" - x="0" - height="100%" - width="100%" - id="tabframe-normal-bottom" - style="fill:#${surface};fill-opacity:0.504538" /> - <use - xlink:href="#tabframe-normal-topleft" - transform="rotate(-90,16.933423,151.07711)" - y="0" - x="0" - height="100%" - width="100%" - id="tabframe-normal-bottomleft" - style="fill:#${surface};fill-opacity:0.504538" /> - <use - xlink:href="#tabframe-normal-topleft" - transform="rotate(180,16.933444,151.07706)" - y="0" - x="0" - height="100%" - width="100%" - id="tabframe-normal-bottomright" - style="fill:#${surface};fill-opacity:0.504538" /> - <g - id="g2861"> - <rect - id="tbutton-normal-bottom" - width="2.1166666" - height="2.1166666" - x="109.00834" - y="6.0854168" - style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-normal" - width="2.1166666" - height="2.1166666" - x="109.00834" - y="3.96875" /> - <rect - id="tbutton-normal-top" - width="2.1166666" - height="2.1166666" - x="109.00834" - y="1.8520834" - style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <path - id="tbutton-normal-topleft" - d="m 106.89167,3.9687501 h 2.11667 V 1.8520835 c -2.11667,0 -2.11667,2.1166666 -2.11667,2.1166666 z" - style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <path - style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-normal-bottomleft" - d="m 106.89167,6.0854168 h 2.11667 v 2.1166666 c -2.11667,0 -2.11667,-2.1166666 -2.11667,-2.1166666 z" /> - <rect - id="tbutton-normal-left" - width="2.1166666" - height="2.1166666" - x="106.89168" - y="3.96875" - style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <path - style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-normal-topright" - d="M 113.24167,3.9687501 H 111.125 V 1.8520835 c 2.11667,0 2.11667,2.1166666 2.11667,2.1166666 z" /> - <path - id="tbutton-normal-bottomright" - d="M 113.24167,6.0854168 H 111.125 v 2.1166666 c 2.11667,0 2.11667,-2.1166666 2.11667,-2.1166666 z" - style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-normal-right" - width="2.1166666" - height="2.1166666" - x="-113.24168" - y="3.96875" - transform="scale(-1,1)" /> - </g> - <g - id="g2894"> - <rect - style="opacity:0.899879;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-pressed-bottom" - width="2.1166666" - height="2.1166666" - x="134.80522" - y="6.0854168" /> - <rect - id="tbutton-pressed" - width="2.1166666" - height="2.1166666" - x="134.80522" - y="3.9687502" - style="opacity:0.899879;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:0.899879;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-pressed-top" - width="2.1166666" - height="2.1166666" - x="134.80522" - y="1.8520836" /> - <path - style="opacity:0.899879;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-pressed-topleft" - d="m 132.68855,3.9687501 h 2.11666 v -2.116667 c -2.11666,0 -2.11666,2.116667 -2.11666,2.116667 z" /> - <path - id="tbutton-pressed-bottomleft" - d="m 132.68855,6.0854171 h 2.11666 v 2.116666 c -2.11666,0 -2.11666,-2.116666 -2.11666,-2.116666 z" - style="opacity:0.899879;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:0.899879;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-pressed-left" - width="2.1166666" - height="2.1166666" - x="132.68854" - y="3.9687502" /> - <path - id="tbutton-pressed-topright" - d="m 139.03855,3.9687501 h -2.11667 v -2.116667 c 2.11667,0 2.11667,2.116667 2.11667,2.116667 z" - style="opacity:0.899879;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <path - style="opacity:0.899879;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-pressed-bottomright" - d="m 139.03855,6.0854171 h -2.11667 v 2.116666 c 2.11667,0 2.11667,-2.116666 2.11667,-2.116666 z" /> - <rect - id="tbutton-pressed-right" - width="2.1166666" - height="2.1166666" - x="-139.03856" - y="3.9687502" - transform="scale(-1,1)" - style="opacity:0.899879;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <g - id="g2872"> - <rect - style="opacity:0.5;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-pressed-bottom-9" - width="2.1166666" - height="2.1166666" - x="117.73959" - y="6.0854168" /> - <rect - id="tbutton-focused" - width="2.1166666" - height="2.1166666" - x="117.73959" - y="3.96875" - style="opacity:0.5;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:0.5;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-focused-top" - width="2.1166666" - height="2.1166666" - x="117.73959" - y="1.8520836" /> - <path - style="opacity:0.5;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-focused-topleft" - d="m 115.62291,3.9687502 h 2.11666 V 1.8520836 c -2.11666,0 -2.11666,2.1166666 -2.11666,2.1166666 z" /> - <path - id="tbutton-focused-bottomleft" - d="m 115.62291,6.0854169 h 2.11666 v 2.1166666 c -2.11666,0 -2.11666,-2.1166666 -2.11666,-2.1166666 z" - style="opacity:0.5;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:0.5;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-focused-left" - width="2.1166666" - height="2.1166666" - x="115.62289" - y="3.96875" /> - <path - id="tbutton-focused-topright" - d="m 121.97291,3.9687502 h -2.11667 V 1.8520836 c 2.11667,0 2.11667,2.1166666 2.11667,2.1166666 z" - style="opacity:0.5;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <path - style="opacity:0.5;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-focused-bottomright" - d="m 121.97291,6.0854169 h -2.11667 v 2.1166666 c 2.11667,0 2.11667,-2.1166666 2.11667,-2.1166666 z" /> - <rect - id="tbutton-focused-right" - width="2.1166666" - height="2.1166666" - x="-121.97291" - y="3.96875" - transform="scale(-1,1)" - style="opacity:0.5;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <g - id="g2883"> - <rect - style="opacity:0.750302;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-toggled-bottom" - width="2.1166666" - height="2.1166666" - x="126.33857" - y="6.0854168" /> - <rect - id="tbutton-toggled" - width="2.1166666" - height="2.1166666" - x="126.33857" - y="3.96875" - style="opacity:0.750302;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:0.750302;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-toggled-top" - width="2.1166666" - height="2.1166666" - x="126.33857" - y="1.8520836" /> - <path - style="opacity:0.750302;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-toggled-topleft" - d="m 124.22189,3.9687502 h 2.11666 V 1.8520836 c -2.11666,0 -2.11666,2.1166666 -2.11666,2.1166666 z" /> - <path - id="tbutton-toggled-bottomleft" - d="m 124.22189,6.0854169 h 2.11666 v 2.116667 c -2.11666,0 -2.11666,-2.116667 -2.11666,-2.116667 z" - style="opacity:0.750302;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:0.750302;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-toggled-left" - width="2.1166666" - height="2.1166666" - x="124.22188" - y="3.96875" /> - <path - id="tbutton-toggled-topright" - d="m 130.57189,3.9687502 h -2.11667 V 1.8520836 c 2.11667,0 2.11667,2.1166666 2.11667,2.1166666 z" - style="opacity:0.750302;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <path - style="opacity:0.750302;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="tbutton-toggled-bottomright" - d="m 130.57189,6.0854169 h -2.11667 v 2.116667 c 2.11667,0 2.11667,-2.116667 2.11667,-2.116667 z" /> - <rect - id="tbutton-toggled-right" - width="2.1166666" - height="2.1166666" - x="-130.5719" - y="3.96875" - transform="scale(-1,1)" - style="opacity:0.750302;fill:#${primary};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <rect - style="color:#${primary};opacity:0.902;fill:#${base};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - transform="scale(1,-1)" - y="-137.58334" - x="50.270836" - height="10.583333" - width="10.583333" - class="ColorScheme-ButtonFocus" - id="group-normal" /> - <g - id="focus-left-6" - transform="matrix(0.25190394,0,0,0.26458333,183.71207,27.516669)" - style="opacity:0;stroke-width:1.02486"> - <path - inkscape:connector-curvature="0" - style="opacity:0.19;fill:#ffffff;stroke-width:1.02486" - id="path1484" - d="m 183,121 v 10 h 2 v -10 z" /> - </g> - <g - id="focus-right-7" - transform="matrix(0.25190394,0,0,0.26458333,183.20827,27.516669)" - style="opacity:0;stroke-width:1.02486"> - <path - inkscape:connector-curvature="0" - style="opacity:0.19;fill:#ffffff;stroke-width:1.02486" - id="path1487-5" - d="m 197,121 v 10 h 2 v -10 z" /> - </g> - <g - id="focus-top-3" - transform="matrix(0.25190394,0,0,0.26458333,183.46017,27.781252)" - style="opacity:0;stroke-width:1.02486"> - <path - inkscape:connector-curvature="0" - style="opacity:0.19;fill:#ffffff;stroke-width:1.02486" - id="path1490" - d="m 186,118 v 2 h 10 v -2 z" /> - </g> - <g - id="focus-bottom-5" - transform="matrix(0.25190394,0,0,0.26458333,183.46017,27.252086)" - style="stroke-width:1.02486"> - <path - inkscape:connector-curvature="0" - style="opacity:0.7;fill:#${primary};fill-opacity:1;stroke-width:1.02486" - id="path1493" - d="m 186,132 v 2 h 10 v -2 z" /> - </g> - <path - inkscape:connector-curvature="0" - id="focus-bottomleft-6" - d="m 229.81049,62.177085 h 0.50381 v 0.529167 c -0.50381,0 -0.50381,-0.529167 -0.50381,-0.529167 z" - style="opacity:0.7;fill:#${primary};fill-opacity:1;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="focus-bottomright-2" - d="m 233.33715,62.177085 h -0.50381 v 0.529167 c 0.50381,0 0.50381,-0.529167 0.50381,-0.529167 z" - style="opacity:0.7;fill:#${primary};fill-opacity:1;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="focus-topleft-9" - d="m 229.81049,59.531252 h 0.50381 v -0.529166 c -0.50381,0 -0.50381,0.529166 -0.50381,0.529166 z" - style="opacity:0;fill:#ffffff;stroke-width:0.264583" /> - <path - inkscape:connector-curvature="0" - id="focus-topright-1" - d="m 233.33715,59.531252 h -0.50381 v -0.529166 c 0.50381,0 0.50381,0.529166 0.50381,0.529166 z" - style="opacity:0;fill:#ffffff;stroke-width:0.264583" /> - <g - id="g2533"> - <g - id="g2510"> - <rect - id="dock-focused" - width="7.9375" - height="7.9375" - x="196.83218" - y="122.74809" - style="opacity:0.6;fill:#${surface};stroke-width:0.264583" /> - <g - style="fill:#304048" - id="g127" - transform="matrix(0.26458333,0,0,0.26458333,89.146774,-186.81439)"> - <rect - id="dock-focused-left" - width="5" - height="30" - x="399.5" - y="1170" - style="opacity:0.15;fill:#000000;fill-opacity:1" /> - <rect - id="dock-focused-top" - width="5" - height="30" - x="-1167.5" - y="407" - transform="rotate(-90)" - style="opacity:0.15;fill:#000000;fill-opacity:1" /> - <rect - id="dock-focused-topleft" - width="5" - height="5" - x="399.5" - y="1162.5" - style="opacity:0.15;fill:#000000;fill-opacity:1" /> - <rect - id="dock-focused-topright" - width="5" - height="5" - x="439.5" - y="1162.5" - style="opacity:0.15;fill:#000000;fill-opacity:1" /> - <rect - id="dock-focused-right" - width="5" - height="30" - x="439.5" - y="1170" - style="opacity:0.15;fill:#000000;fill-opacity:1" /> - <rect - id="dock-focused-bottom" - width="5" - height="30" - x="-1207.5" - y="407" - transform="rotate(-90)" - style="opacity:0.15;fill:#000000;fill-opacity:1" /> - <rect - id="dock-focused-bottomright" - width="5" - height="5" - x="439.5" - y="1202.5" - style="opacity:0.15;fill:#000000;fill-opacity:1" /> - <rect - id="dock-focused-bottomleft" - width="5" - height="5" - x="399.5" - y="1202.5" - style="opacity:0.15;fill:#000000;fill-opacity:1" /> - </g> - </g> - <g - id="g2498"> - <rect - id="dock-normal" - width="7.9375" - height="7.9375" - x="183.07385" - y="122.74809" - style="opacity:0.6;fill:#${surface};stroke-width:0.264583" /> - <rect - style="opacity:0.6;fill:#${base};stroke-width:0.264583" - y="122.74811" - x="181.08948" - height="7.9375" - width="1.3229166" - id="dock-normal-left" /> - <rect - style="opacity:0.6;fill:#${base};stroke-width:0.264583" - y="120.76373" - x="181.08948" - height="1.3229166" - width="1.3229166" - id="dock-normal-topleft" /> - <rect - style="opacity:0.6;fill:#${base};stroke-width:0.264583" - transform="rotate(90)" - y="-191.01135" - x="120.76373" - height="7.9375" - width="1.3229166" - id="dock-normal-top" /> - <rect - style="opacity:0.6;fill:#${base};stroke-width:0.264583" - y="120.76373" - x="191.67282" - height="1.3229166" - width="1.3229166" - id="dock-normal-topright" /> - <rect - style="opacity:0.6;fill:#${base};stroke-width:0.264583" - y="122.74811" - x="191.67282" - height="7.9375" - width="1.3229166" - id="dock-normal-right" /> - <rect - style="opacity:0.6;fill:#${base};stroke-width:0.264583" - y="131.34706" - x="191.67282" - height="1.3229166" - width="1.3229166" - id="dock-normal-bottomright" /> - <rect - style="opacity:0.6;fill:#${base};stroke-width:0.264583" - transform="rotate(-90)" - y="183.07385" - x="-132.66998" - height="7.9375" - width="1.3229166" - id="dock-normal-bottom" /> - <rect - style="opacity:0.6;fill:#${base};stroke-width:0.264583" - y="131.34706" - x="181.08948" - height="1.3229166" - width="1.3229166" - id="dock-normal-bottomleft" /> - </g> - </g> - <g - id="spin-plus-normal" - transform="matrix(0.26458333,0,0,0.26458333,189.17709,-56.091665)"> - <rect - x="15" - y="317" - width="8" - height="8" - style="opacity:0.00100002;fill:#000000" - id="rect723" /> - <path - d="m 18,317 v 3 h -3 v 2 h 3 v 3 h 2 v -3 h 3 v -2 h -3 v -3 z" - style="fill:#fcfcfc;fill-opacity:1" - id="path725" /> - </g> - <g - id="spin-minus-normal" - transform="matrix(0.26458333,0,0,0.26458333,186.53126,-53.181248)"> - <rect - x="25" - y="317" - width="8" - height="8" - style="opacity:0.00100002;fill:#000000" - id="rect728" /> - <rect - transform="rotate(90)" - x="320" - y="-33" - width="2" - height="8" - style="fill:#fcfcfc;fill-opacity:1" - id="rect730" /> - </g> - <g - id="spin-plus-focused" - transform="matrix(0.26458333,0,0,0.26458333,191.82295,-56.091665)"> - <rect - x="15" - y="317" - width="8" - height="8" - style="opacity:0.00100002;fill:#000000" - id="rect733" /> - <path - d="m 18,317 v 3 h -3 v 2 h 3 v 3 h 2 v -3 h 3 v -2 h -3 v -3 z" - style="fill:#${primary};fill-opacity:1" - id="path735" /> - </g> - <g - id="spin-minus-focused" - transform="matrix(0.26458333,0,0,0.26458333,189.17709,-53.181248)"> - <rect - x="25" - y="317" - width="8" - height="8" - style="opacity:0.00100002;fill:#${primary}" - id="rect738" /> - <rect - transform="rotate(90)" - x="320" - y="-33" - width="2" - height="8" - style="fill:#${primary};fill-opacity:1" - id="rect740" /> - </g> - <g - id="spin-plus-pressed" - transform="matrix(0.26458333,0,0,0.26458333,194.46876,-56.091665)"> - <rect - x="15" - y="317" - width="8" - height="8" - style="opacity:0.00100002;fill:#000000" - id="rect743" /> - <path - d="m 18,317 v 3 h -3 v 2 h 3 v 3 h 2 v -3 h 3 v -2 h -3 v -3 z" - style="fill:#${primary};fill-opacity:1" - id="path745" /> - </g> - <g - id="spin-minus-pressed" - transform="matrix(0.26458333,0,0,0.26458333,191.82295,-53.181248)"> - <rect - x="25" - y="317" - width="8" - height="8" - style="opacity:0.00100002;fill:#${primary}" - id="rect748" /> - <rect - transform="rotate(90)" - x="320" - y="-33" - width="2" - height="8" - style="fill:#${primary};fill-opacity:1" - id="rect750" /> - </g> - <g - id="spin-plus-disabled" - transform="matrix(0.26458333,0,0,0.26458333,197.11459,-56.091665)"> - <rect - x="15" - y="317" - width="8" - height="8" - style="opacity:0.00100002;fill:#000000" - id="rect753" /> - <path - d="m 18,317 v 3 h -3 v 2 h 3 v 3 h 2 v -3 h 3 v -2 h -3 v -3 z" - style="opacity:0.25;fill:#ffffff" - id="path755" /> - </g> - <g - id="spin-minus-disabled" - transform="matrix(0.26458333,0,0,0.26458333,194.46876,-53.181248)"> - <rect - x="25" - y="317" - width="8" - height="8" - style="opacity:0.00100002;fill:#000000" - id="rect758" /> - <rect - transform="rotate(90)" - x="320" - y="-33" - width="2" - height="8" - style="opacity:0.25;fill:#ffffff" - id="rect760" /> - </g> - <g - id="spin-down-normal" - transform="matrix(0.97271715,0,0,-1,10.550402,70.781069)"> - <rect - style="opacity:0.599999;fill:#${primary};fill-opacity:0;stroke-width:0.177316" - id="rect1706-5" - width="2.1266627" - height="1.4451504" - x="187.71689" - y="32.416485" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" - style="fill:#fcfcfc;fill-opacity:1;stroke-width:0.159346;enable-background:new" - id="spin-up-normal-1-6" /> - </g> - <g - id="spin-up-pressed" - transform="matrix(0.97271715,0,0,1,15.697697,1.8470603)"> - <rect - style="opacity:0.599999;fill:#${primary};fill-opacity:0;stroke-width:0.178545" - id="rect1706-9" - width="2.1266644" - height="1.4652596" - x="187.71689" - y="32.406433" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" - style="fill:#${primary};fill-opacity:1;stroke-width:0.159346;enable-background:new" - id="spin-up-normal-1-1" /> - </g> - <g - id="spin-down-pressed" - transform="matrix(0.97271715,0,0,-1,15.697697,70.771012)"> - <rect - style="opacity:0.599999;fill:#${primary};fill-opacity:0;stroke-width:0.178546" - id="rect1706-0" - width="2.1266644" - height="1.4652674" - x="187.71689" - y="32.406429" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" - style="fill:#${primary};fill-opacity:1;stroke-width:0.159346;enable-background:new" - id="spin-up-normal-1-9" /> - </g> - <g - id="spin-up-focused" - transform="matrix(0.97271715,0,0,1,13.124049,1.8470603)"> - <rect - style="opacity:0.599999;fill:#${primary};fill-opacity:0;stroke-width:0.178545" - id="rect1706-6" - width="2.1266632" - height="1.4652596" - x="187.71689" - y="32.406433" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" - style="fill:#${primary};fill-opacity:1;stroke-width:0.159346;enable-background:new" - id="spin-up-normal-1-0" /> - </g> - <g - id="spin-down-focused" - transform="matrix(0.97271715,0,0,-1,13.124049,70.771012)"> - <rect - style="opacity:0.599999;fill:#${primary};fill-opacity:0;stroke-width:0.178546" - id="rect1706-2" - width="2.1266632" - height="1.4652674" - x="187.71689" - y="32.406429" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" - style="fill:#${primary};fill-opacity:1;stroke-width:0.159346;enable-background:new" - id="spin-up-normal-1-61" /> - </g> - <g - id="spin-up-disabled" - transform="matrix(0.97271715,0,0,1,18.271345,1.8470603)"> - <rect - style="opacity:0.599999;fill:#${primary};fill-opacity:0;stroke-width:0.178545" - id="rect1706-6-7" - width="2.1266625" - height="1.4652596" - x="187.71689" - y="32.406433" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" - style="fill:#ffffff;fill-opacity:0.25098;stroke-width:0.159346;enable-background:new" - id="spin-up-normal-1-0-9" /> - </g> - <g - id="spin-down-disabled" - transform="matrix(0.97271715,0,0,-1,18.271345,70.771012)"> - <rect - style="opacity:0.599999;fill:#${primary};fill-opacity:0;stroke-width:0.178546" - id="rect1706-2-0" - width="2.1266625" - height="1.4652674" - x="187.71689" - y="32.406429" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" - style="fill:#ffffff;fill-opacity:0.25098;stroke-width:0.159346;enable-background:new" - id="spin-up-normal-1-61-2" /> - </g> - <g - id="spin-up-normal" - transform="matrix(0.97271715,0,0,1,10.550402,1.8470603)"> - <rect - style="opacity:0.599999;fill:#${primary};fill-opacity:0;stroke-width:0.178545" - id="rect1706-9-7" - width="2.1266627" - height="1.4652596" - x="187.71689" - y="32.406433" /> - <path - class="ColorScheme-Text" - sodipodi:nodetypes="ccccccc" - d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" - style="fill:#fcfcfc;fill-opacity:1;stroke-width:0.159346;enable-background:new" - id="spin-up-normal-1-1-5" /> - </g> - <g - id="g7761" - transform="matrix(0.26458333,0,0,0.26458333,-114.52046,62.369541)"> - <g - transform="translate(390.61724,-793.96816)" - id="g5705"> - <path - id="menuitem-toggled" - d="m 296.58841,840.24083 v 48 h 48 v -48 z" - style="display:inline;opacity:1;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" - inkscape:label="#menuitem-toggled" /> - <g - transform="translate(439.58841,311.24082)" - style="display:inline" - id="menuitem-toggled-right" - inkscape:label="#menuitem-toggled-right"> - <path - id="path10356-8-6" - d="m -91,529 v 47.99995 h -1 V 529 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - d="M -91.500031,528.99999 V 577 H -95 v -48.00001 z" - id="path6862-0-93" /> - </g> - <g - transform="translate(439.58841,311.24082)" - style="display:inline" - id="menuitem-toggled-top" - inkscape:label="#menuitem-toggled-top"> - <path - inkscape:connector-curvature="0" - id="path10332-8-4" - d="m -94.999998,525.00001 v 0.99998 H -143 v -0.99998 z" - style="fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - d="M -143,525.49999 V 529 l 48,10e-6 v -3.5 z" - id="path6864-0-5" /> - </g> - <g - id="menuitem-toggled-topleft" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" - transform="matrix(1.0000055,0,0,1.0000055,289.58839,788.30162)" - inkscape:label="#menuitem-toggled-topleft"> - <path - inkscape:connector-curvature="0" - id="path4714-5-3" - d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - inkscape:connector-curvature="0" - id="path4714-3-4" - d="M 6.9999835,48.438938 A 3.4999828,3.4999828 0 0 0 3.5000007,51.93892 h 3.4999828 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - <g - id="menuitem-toggled-topright" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" - transform="matrix(0,1.0000055,-1.0000055,0,396.52759,833.2408)" - inkscape:label="#menuitem-toggled-topright"> - <path - inkscape:connector-curvature="0" - id="path4714-7-4" - d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - inkscape:connector-curvature="0" - id="path4714-3-5-4" - d="M 6.9999835,48.438948 A 3.4999728,3.4999728 0 0 0 3.5000107,51.93892 h 3.4999728 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - <g - id="menuitem-toggled-bottomright" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" - transform="matrix(-1.0000055,0,0,-1.0000055,351.58843,940.18003)" - inkscape:label="#menuitem-toggled-bottomright"> - <path - inkscape:connector-curvature="0" - id="path4714-7-5-0" - d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - inkscape:connector-curvature="0" - id="path4714-3-5-6-7" - d="m 6.9999835,48.438944 a 3.4999518,3.4999813 0 0 0 -3.4999518,3.49998 h 3.4999518 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - <g - style="display:inline" - id="menuitem-toggled-left" - transform="matrix(-1,0,0,1,201.58841,311.24083)" - inkscape:label="#menuitem-toggled-left"> - <path - id="path10356-8-1-6" - d="m -91,529 v 47.99995 h -1 V 529 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m -91.5,529 v 48 H -95 v -48 z" - id="path6862-0-9-8" /> - </g> - <g - style="display:inline" - id="menuitem-toggled-bottom" - transform="matrix(1,0,0,-1,439.58841,1417.2408)" - inkscape:label="#menuitem-toggled-bottom"> - <path - inkscape:connector-curvature="0" - id="path10332-8-9-4" - d="m -143,525.00001 v 0.99998 h 48.000002 v -0.99998 z" - style="fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - d="M -143,525.49999 V 529 l 47.999998,10e-6 V 525.5 Z" - id="path6864-0-70-3" /> - </g> - <g - id="menuitem-toggled-bottomleft" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" - transform="matrix(0,-1.0000055,1.0000055,0,244.6492,895.24086)" - inkscape:label="#menuitem-toggled-bottomleft"> - <path - inkscape:connector-curvature="0" - id="path4714-7-5-6-4" - d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - inkscape:connector-curvature="0" - id="path4714-3-5-6-0-9" - d="M 6.9999835,48.438948 A 3.4999728,3.4999728 0 0 0 3.5000107,51.93892 h 3.4999728 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - </g> - <g - transform="translate(392.22978,-794.3605)" - id="g5732"> - <path - id="menuitem-pressed" - d="m 222.60349,840.63315 v 48 h 48 v -48 z" - style="display:inline;opacity:1;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" - inkscape:label="#menuitem-pressed" /> - <g - transform="translate(365.60349,311.63314)" - style="display:inline" - id="menuitem-pressed-top" - inkscape:label="#menuitem-pressed-top"> - <path - inkscape:connector-curvature="0" - id="path10332-8-4-9" - d="m -94.999998,525.00001 v 0.99998 H -143 v -0.99998 z" - style="fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - d="M -143,525.49999 V 529 l 48,10e-6 v -3.5 z" - id="path6864-0-5-3" /> - </g> - <g - id="menuitem-pressed-topright" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" - transform="matrix(0,1.0000055,-1.0000055,0,322.5427,833.63313)" - inkscape:label="#menuitem-pressed-topright"> - <path - inkscape:connector-curvature="0" - id="path4714-7-4-0" - d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - inkscape:connector-curvature="0" - id="path4714-3-5-4-6" - d="M 6.9999835,48.438948 A 3.4999728,3.4999728 0 0 0 3.5000107,51.93892 h 3.4999728 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - <g - transform="translate(365.60349,311.63316)" - style="display:inline" - id="menuitem-pressed-right" - inkscape:label="#menuitem-pressed-right"> - <path - id="path10356-8-6-2" - d="m -91,529 v 47.99995 h -1 V 529 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - d="M -91.500031,528.99999 V 577 H -95 v -48.00001 z" - id="path6862-0-93-3" /> - </g> - <g - id="menuitem-pressed-bottomright" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" - transform="matrix(-1.0000055,0,0,-1.0000055,277.60349,940.57232)" - inkscape:label="#menuitem-pressed-bottomright"> - <path - inkscape:connector-curvature="0" - id="path4714-7-5-0-5" - d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - inkscape:connector-curvature="0" - id="path4714-3-5-6-7-9" - d="m 6.9999835,48.438944 a 3.4999518,3.4999813 0 0 0 -3.4999518,3.49998 h 3.4999518 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - <g - style="display:inline" - id="menuitem-pressed-bottom" - transform="matrix(1,0,0,-1,365.60349,1417.6332)" - inkscape:label="#menuitem-pressed-bottom"> - <path - inkscape:connector-curvature="0" - id="path10332-8-9-4-1" - d="m -143,525.00001 v 0.99998 h 48.000002 v -0.99998 z" - style="fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - d="M -143,525.49999 V 529 l 47.999998,10e-6 V 525.5 Z" - id="path6864-0-70-3-2" /> - </g> - <g - id="menuitem-pressed-bottomleft" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" - transform="matrix(0,-1.0000055,1.0000055,0,170.66428,895.63321)" - inkscape:label="#menuitem-pressed-bottomleft"> - <path - inkscape:connector-curvature="0" - id="path4714-7-5-6-4-3" - d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - inkscape:connector-curvature="0" - id="path4714-3-5-6-0-9-1" - d="M 6.9999835,48.438948 A 3.4999728,3.4999728 0 0 0 3.5000107,51.93892 h 3.4999728 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - <g - style="display:inline" - id="menuitem-pressed-left" - transform="matrix(-1,0,0,1,127.60349,311.63315)" - inkscape:label="#menuitem-presed-left"> - <path - id="path10356-8-1-6-6" - d="m -91,529 v 47.99995 h -1 V 529 Z" - style="fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m -91.5,529 v 48 H -95 v -48 z" - id="path6862-0-9-8-1" /> - </g> - <g - id="menuitem-pressed-topleft" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" - transform="matrix(1.0000055,0,0,1.0000055,215.60347,788.69394)" - inkscape:label="#menuitem-pressed-topleft"> - <path - inkscape:connector-curvature="0" - id="path4714-5-3-6" - d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - inkscape:connector-curvature="0" - id="path4714-3-4-3" - d="M 6.9999835,48.438938 A 3.4999828,3.4999828 0 0 0 3.5000007,51.93892 h 3.4999828 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:#${primary};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - </g> - <g - transform="translate(390.61718,-795.71416)" - id="g5810"> - <g - id="mask-left" - transform="matrix(0,1,1,0,-211.25,586.95275)" - style="display:inline;opacity:1;fill:#ffffff"> - <path - inkscape:connector-curvature="0" - id="path4486" - d="m 253.99999,347 h 50 l 10e-6,4 h -50 z" - style="fill:#ffffff;fill-opacity:1;stroke:none" /> - </g> - <rect - id="mask-center" - width="50" - height="50" - x="139.75" - y="840.95276" - style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none" /> - <g - transform="translate(-114.25,489.95275)" - id="mask-topright" - style="display:inline;fill:#ffffff"> - <path - inkscape:connector-curvature="0" - id="path4714-5-9" - d="m 308,350.99999 a 4,4 0 0 0 -4,-4 v 4 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:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - <g - transform="translate(-114.25,489.95275)" - id="mask-top" - style="display:inline;fill:#ffffff"> - <path - inkscape:connector-curvature="0" - id="path4128" - d="m 253.99999,347 h 50 l 10e-6,4 h -50 z" - style="fill:#ffffff;fill-opacity:1;stroke:none" /> - </g> - <g - id="mask-bottomright" - transform="matrix(1,0,0,-1,-60.25,1295.9527)" - style="display:inline;fill:#ffffff"> - <path - inkscape:connector-curvature="0" - id="path4714-5-28" - d="m 250,400.99993 a 4,4 0 0 1 4,4 h -4 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:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - <g - id="mask-bottom" - transform="matrix(1,0,0,-1,-114.25,1241.9527)" - style="display:inline;fill:#ffffff"> - <path - inkscape:connector-curvature="0" - id="path4464" - d="m 253.99999,347 h 50 l 10e-6,4 h -50 z" - style="fill:#ffffff;fill-opacity:1;stroke:none" /> - </g> - <g - id="mask-bottomleft" - transform="rotate(180,221.87501,647.97634)" - style="display:inline;fill:#ffffff"> - <path - inkscape:connector-curvature="0" - id="path4714-5-2" - d="m 308.00003,404.99993 a 4,4 0 0 0 -4,-4 v 4 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:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - <g - id="mask-right" - transform="rotate(90,-23.10137,563.85138)" - style="display:inline;fill:#ffffff"> - <path - inkscape:connector-curvature="0" - id="path4478" - d="m 253.99999,347 h 50 l 10e-6,4 h -50 z" - style="fill:#ffffff;fill-opacity:1;stroke:none" /> - </g> - <g - id="mask-topleft" - transform="matrix(-1,0,0,1,443.75003,489.95276)" - style="display:inline;opacity:1;fill:#ffffff"> - <path - inkscape:connector-curvature="0" - id="path4714-5" - d="m 304.00003,346.99999 a 4,4 0 0 1 4,4 h -4 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:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - <rect - id="menu-normal" - width="50" - height="50" - x="139.75" - y="840.95282" - style="display:inline;opacity:0.85;fill:#${surface};fill-opacity:0.956863;stroke:none" - inkscape:label="menu-normal" /> - <g - id="menu-shadow-top" - transform="translate(77,-42.5)"> - <g - style="display:inline;fill:#26272a;fill-opacity:1" - id="top" - transform="matrix(1,0,0,0.57142372,-127.25,735.45402)"> - <path - inkscape:connector-curvature="0" - style="display:inline;opacity:0.85;fill:#${surface};fill-opacity:0.956863;stroke:none" - d="M 189.99998,251.99991 H 240 v 6.99991 h -50.00001 z" - id="path4382-5" /> - </g> - <g - transform="matrix(0,-1,-1,0,369.75,1167.4527)" - id="shadow-top" - style="display:inline;opacity:1"> - <rect - style="opacity:0.6;fill:url(#linearGradient3576);fill-opacity:1;stroke:none" - transform="rotate(-90)" - y="288" - x="-307" - height="10" - width="50" - id="rect4279" /> - <rect - transform="matrix(0,-1,-1,0,0,0)" - y="-288.50003" - x="-307" - height="0.5" - width="50" - id="rect4309" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - </g> - <g - id="menu-shadow-topright" - transform="translate(77,-42.5)"> - <g - id="g3486"> - <g - id="topright" - transform="rotate(90,-355.88187,520.57087)" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - id="path4714-2" - d="m 7,47.938995 a 4,4 0 0 0 -4,4 h 4 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.85;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#${surface};fill-opacity:0.956863;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - <g - transform="translate(37.749999,747.51375)" - style="display:inline" - id="shadow-topright"> - <g - style="display:inline;fill:url(#radialGradient5249);fill-opacity:1" - transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" - id="topright-3"> - <path - transform="matrix(0,-0.23529412,0.23529412,0,1.1176471,69.586054)" - id="path4714-2-6" - d="m 75,11 v 10 a 3.9999958,4.0000002 0 0 1 4,4 H 89 A 14,14 0 0 0 75,11 Z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient5251);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 5.9411765,51.938995 h 0.117647 A 0.94117647,0.94117647 0 0 1 7,50.997819 v -0.117647 a 1.0588235,1.0588235 0 0 0 -1.0588235,1.058823 z" - id="path4714-2-31" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - </g> - <g - id="menu-shadow-right" - transform="translate(77,-42.5)"> - <g - style="display:inline;fill:#343031" - id="right" - transform="matrix(0.57142857,0,0,1,-24.39286,624.45284)"> - <path - style="display:inline;opacity:0.85;fill:#${surface};fill-opacity:0.956863;stroke:none" - d="m 247,258.99982 v 50 l -7,10e-6 v -50 z" - id="path4396" - inkscape:connector-curvature="0" /> - </g> - <g - transform="matrix(1,0,0,-1,-171.25,1190.4527)" - id="shadow-right" - style="display:inline;opacity:1"> - <rect - style="opacity:0.6;fill:url(#linearGradient3578);fill-opacity:1;stroke:none" - transform="rotate(-90)" - y="288" - x="-307" - height="10" - width="50" - id="rect4279-6" /> - <rect - transform="matrix(0,-1,-1,0,0,0)" - y="-288.50003" - x="-307" - height="0.5" - width="50" - id="rect4309-1" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - </g> - <g - id="menu-shadow-topleft" - transform="translate(77,-42.5)"> - <g - transform="translate(55.749997,831.51374)" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" - id="topleft"> - <path - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.85;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#${surface};fill-opacity:0.956863;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 z" - id="path4714" - inkscape:connector-curvature="0" /> - </g> - <g - transform="matrix(-1,0,0,1,137.75,747.51375)" - id="shadow-topleft" - style="display:inline"> - <g - id="topright-3-5" - transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" - style="display:inline;fill:url(#radialGradient5249-2);fill-opacity:1"> - <path - inkscape:connector-curvature="0" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient5251-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 75,11 v 10 a 3.9999958,4.0000002 0 0 1 4,4 H 89 A 14,14 0 0 0 75,11 Z" - id="path4714-2-6-4" - transform="matrix(0,-0.23529412,0.23529412,0,1.1176471,69.586054)" /> - <path - inkscape:connector-curvature="0" - id="path4714-2-31-7" - d="m 5.9411765,51.938995 h 0.117647 A 0.94117647,0.94117647 0 0 1 7,50.997819 v -0.117647 a 1.0588235,1.0588235 0 0 0 -1.0588235,1.058823 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - </g> - </g> - <g - id="menu-shadow-left" - inkscape:label="#menu-shadow-left" - transform="translate(77,-42.5)"> - <g - style="display:inline;fill:#343031;fill-opacity:1" - id="left" - transform="matrix(0.57143143,0,0,1,-45.821963,624.45284)"> - <path - style="display:inline;opacity:0.85;fill:#${surface};fill-opacity:0.956863;stroke:none" - d="m 183.00002,258.99981 v 50 l 7,10e-6 v -50 z" - id="path4418" - inkscape:connector-curvature="0" /> - </g> - <g - transform="rotate(180,173.375,595.22637)" - id="shadow-left" - style="display:inline;opacity:1"> - <rect - style="opacity:0.6;fill:url(#linearGradient3463);fill-opacity:1;stroke:none" - transform="rotate(-90)" - y="288" - x="-307" - height="10" - width="50" - id="rect4279-6-9" /> - <rect - transform="matrix(0,-1,-1,0,0,0)" - y="-288.50003" - x="-307" - height="0.5" - width="50" - id="rect4309-1-3" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - </g> - <g - id="menu-shadow-bottom" - transform="translate(77,-42.5)"> - <g - style="display:inline;fill:#343031;fill-opacity:1" - id="bottom" - transform="matrix(-1,0,0,-0.57142372,302.75,1081.4515)"> - <path - inkscape:connector-curvature="0" - style="display:inline;opacity:0.85;fill:#${surface};fill-opacity:0.956863;stroke:none" - d="M 189.99998,251.99991 H 240 v 6.99991 h -50.00001 z" - id="path4382-9" /> - </g> - <g - transform="rotate(90,-139.85137,509.60137)" - id="shadow-bottom" - style="display:inline;opacity:1"> - <rect - style="opacity:0.6;fill:url(#linearGradient3461);fill-opacity:1;stroke:none" - transform="rotate(-90)" - y="288" - x="-307" - height="10" - width="50" - id="rect4279-4" /> - <rect - transform="matrix(0,-1,-1,0,0,0)" - y="-288.50003" - x="-307" - height="0.5" - width="50" - id="rect4309-4" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - </g> - <g - id="menu-shadow-bottomright" - transform="translate(77,-42.5)"> - <g - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" - inkscape:label="#bottomright" - id="bottomright" - transform="rotate(180,59.875002,492.69587)"> - <path - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.85;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#${surface};fill-opacity:0.956863;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 7,47.938995 a 4,4 0 0 0 -4,4 h 4 z" - id="path4714-0" - inkscape:connector-curvature="0" /> - </g> - <g - transform="matrix(1,0,0,-1,37.749999,1069.3917)" - id="shadow-bottomright" - style="display:inline"> - <g - id="topright-3-0" - transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" - style="display:inline;fill:url(#radialGradient5249-7);fill-opacity:1"> - <path - inkscape:connector-curvature="0" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient5251-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 75,11 v 10 a 3.9999958,4.0000002 0 0 1 4,4 H 89 A 14,14 0 0 0 75,11 Z" - id="path4714-2-6-7" - transform="matrix(0,-0.23529412,0.23529412,0,1.1176471,69.586054)" /> - <path - inkscape:connector-curvature="0" - id="path4714-2-31-8" - d="m 5.9411765,51.938995 h 0.117647 A 0.94117647,0.94117647 0 0 1 7,50.997819 v -0.117647 a 1.0588235,1.0588235 0 0 0 -1.0588235,1.058823 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - </g> - </g> - <g - id="menu-shadow-bottomleft" - transform="translate(77,-42.5)"> - <g - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" - transform="rotate(-90,475.63187,464.82087)" - id="bottomleft"> - <path - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.85;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#${surface};fill-opacity:0.956863;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 2.999995,51.938997 a 4,4 0 0 1 4,-4 v 4 z" - id="path4714-0-6" - inkscape:connector-curvature="0" /> - </g> - <g - transform="rotate(180,68.875,534.69586)" - id="shadow-bottomleft" - style="display:inline"> - <g - id="topright-3-5-8" - transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" - style="display:inline;fill:url(#radialGradient5249-2-5);fill-opacity:1"> - <path - inkscape:connector-curvature="0" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient5251-1-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 75,11 v 10 a 3.9999958,4.0000002 0 0 1 4,4 H 89 A 14,14 0 0 0 75,11 Z" - id="path4714-2-6-4-8" - transform="matrix(0,-0.23529412,0.23529412,0,1.1176471,69.586054)" /> - <path - inkscape:connector-curvature="0" - id="path4714-2-31-7-4" - d="m 5.9411765,51.938995 h 0.117647 A 0.94117647,0.94117647 0 0 1 7,50.997819 v -0.117647 a 1.0588235,1.0588235 0 0 0 -1.0588235,1.058823 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - </g> - </g> - <g - id="g5239" - transform="translate(-2.7500001,-73.250003)"> - <rect - id="menu-shadow-hint-top" - height="9.1250219" - y="900.5777" - x="165.56252" - width="2.5" - style="fill:#b74aff;stroke:none;stroke-width:1.46528" /> - <rect - transform="rotate(-90)" - id="menu-shadow-hint-right" - height="9.59375" - y="197" - x="-940.30035" - width="2.5" - style="fill:#b74aff;stroke:none;stroke-width:1.15034" /> - <rect - id="menu-shadow-hint-bottom" - height="9.636507" - y="968.63446" - x="164.875" - width="2.5" - style="fill:#b74aff;stroke:none;stroke-width:1.1529" /> - <rect - transform="rotate(-90)" - id="menu-shadow-hint-left" - height="9.4364891" - y="128.56145" - x="-943.70276" - width="2.5" - style="fill:#b74aff;stroke:none;stroke-width:1.14095" /> - </g> - </g> - </g> - <path - d="m 32.279186,101.07083 h 12.7 v 12.70001 h -12.7 z" - id="tooltip-normal" - style="opacity:0.3;fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" - inkscape:connector-curvature="0" /> - <g - transform="matrix(0.26458333,0,0,0.26458333,-0.06798092,-85.130467)" - id="tooltip-normal-left" - style="stroke:none;fill:#${surface}"> - <path - d="m 116.257,703.753 h 6 v 48 h -6 z" - id="tooltip-normal-left0" - style="opacity:0.3;fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:1" - inkscape:connector-curvature="0" /> - </g> - <g - transform="matrix(0.26458333,0,0,0.26458333,-0.06826092,-85.395257)" - id="tooltip-normal-topleft" - style="stroke:none;stroke-width:1;fill:#${surface}"> - <path - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:1" - d="m 122.25573,698.75378 c -3.32289,10e-4 -5.99768,2.6768 -5.99768,6.00001 h 6.00002 z" - id="path3597-5" /> - </g> - <g - style="stroke:none;fill:#${surface}" - id="tooltip-normal-top" - transform="matrix(0,0.26458333,-0.26458333,0,231.18051,68.723673)"> - <path - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:1" - id="path4216" - d="m 116.257,703.753 h 6 v 48 h -6 z" /> - </g> - <g - style="stroke:none;stroke-width:1;fill:#${surface}" - id="tooltip-normal-topright" - transform="matrix(0,0.26458333,-0.26458333,0,231.4453,68.723392)"> - <path - id="path4212" - d="m 122.25573,698.75378 c -3.32289,10e-4 -5.99768,2.6768 -5.99768,6.00001 h 6.00002 z" - style="opacity:0.3;fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:1" - inkscape:connector-curvature="0" /> - </g> - <g - style="stroke:none;fill:#${surface}" - id="tooltip-normal-right" - transform="matrix(-0.26458333,0,0,0.26458333,77.326342,-85.130467)"> - <path - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:1" - id="path4208" - d="m 116.257,703.753 h 6 v 48 h -6 z" /> - </g> - <g - style="stroke:none;stroke-width:1;fill:#${surface}" - id="tooltip-normal-bottomright" - transform="matrix(-0.26458333,0,0,-0.26458333,77.326615,300.23694)"> - <path - id="path4204" - d="m 122.25573,698.75378 c -3.32289,10e-4 -5.99768,2.6768 -5.99768,6.00001 h 6.00002 z" - style="opacity:0.3;fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:1" - inkscape:connector-curvature="0" /> - </g> - <g - style="stroke:none;fill:#${surface}" - id="tooltip-normal-bottom" - transform="matrix(0,-0.26458333,0.26458333,0,-153.92212,146.11799)"> - <path - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:1" - id="path4200" - d="m 116.257,703.753 h 6 v 48 h -6 z" /> - </g> - <g - style="stroke:none;stroke-width:1;fill:#${surface}" - id="tooltip-normal-bottomleft" - transform="matrix(0,-0.26458333,0.26458333,0,-154.18692,146.11828)"> - <path - id="path4196" - d="m 122.25573,698.75378 c -3.32289,10e-4 -5.99768,2.6768 -5.99768,6.00001 h 6.00002 z" - style="opacity:0.3;fill:#${surface};fill-opacity:1;fill-rule:evenodd;stroke-width:1" - inkscape:connector-curvature="0" /> - </g> - <g - style="fill-rule:evenodd;stroke:none" - transform="matrix(0.26458333,0,0,0.26458333,-9.3892199,-133.7684)" - id="tooltip-shadow-top"> - <g - transform="matrix(1,0,0,0.57142372,-127.25,735.45402)" - id="top-3" - style="display:inline;fill:#26272a;fill-opacity:1"> - <path - id="path4382-5-5" - d="M 189.99998,251.99991 H 240 v 10.49993 h -50.00001 z" - style="display:inline;opacity:0.3;fill:#${surface};fill-opacity:1;stroke:none;stroke-width:1" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - style="display:inline;opacity:0.00100002;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1" - d="M 189.99998,251.99991 H 240 v 1.74984 h -50.00001 z" - id="path3581-6" /> - </g> - <g - style="display:inline;opacity:1" - id="shadow-top-2" - transform="matrix(0,-1,-1,0,369.75,1167.4527)"> - <rect - id="rect4279-9" - width="50" - height="6.9999042" - x="-307" - y="288" - transform="rotate(-90)" - style="opacity:0.75;fill:url(#linearGradient4646);fill-opacity:1;stroke:none;stroke-width:1" /> - <rect - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="rect4309-12" - width="50" - height="0.99992359" - x="-307" - y="-288.99997" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - </g> - <g - style="fill-rule:evenodd;stroke:none" - transform="matrix(0.26458333,0,0,0.26458333,-8.8600579,-133.76852)" - id="tooltip-shadow-topright"> - <g - id="g3486-7"> - <g - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" - transform="rotate(90,-355.88187,520.57087)" - id="topright-0"> - <path - id="path3595-9" - transform="rotate(-90,33.969715,445.96927)" - d="m 426,408 v 7 a 6,6 0 0 1 6,6 h 7 c -10e-5,-8.07721 -4.9229,-13 -13,-13 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.75;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4124);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path3545-3" - transform="rotate(-90,-212.50675,351.44574)" - d="m 85,565.95312 v 1 a 6,6 0 0 1 6,6 h 1 a 7.0000002,7.0000002 0 0 0 -7,-7 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#${surface};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 9.0002659,47.938995 a 6,6 0 0 0 -5.9999999,6 h 5.9999999 z" - id="path4714-2-6-3" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path3550-0" - transform="rotate(-90,-212.50675,351.44574)" - d="m 85,566.95312 v 1 a 5,5 0 0 1 5,5 h 1 a 6,6 0 0 0 -6,-6 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.00100002;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - </g> - <g - id="shadow-topright-6" - style="display:inline" - transform="translate(37.749999,747.51375)"> - <g - id="topright-3-2" - transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" - style="display:inline;fill:url(#radialGradient4126);fill-opacity:1" /> - </g> - </g> - </g> - <g - style="fill-rule:evenodd;stroke:none" - transform="matrix(0.26458333,0,0,0.26458333,-8.8600559,-133.23926)" - id="tooltip-shadow-right"> - <g - transform="matrix(0.57142857,0,0,1,-24.39286,624.45284)" - id="right-6" - style="display:inline;fill:#343031"> - <path - inkscape:connector-curvature="0" - id="path4396-1" - d="m 247.00001,258.99982 v 50 l -10.5,10e-6 v -50 z" - style="display:inline;opacity:0.3;fill:#${surface};fill-opacity:1;stroke:none;stroke-width:1" /> - <path - style="display:inline;opacity:0.00100002;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1" - d="m 247,258.99982 v 50 l -1.74996,10e-6 v -50 z" - id="path3583-8" - inkscape:connector-curvature="0" /> - </g> - <g - style="display:inline;opacity:1" - id="shadow-right-7" - transform="matrix(1,0,0,-1,-171.25,1190.4527)"> - <rect - id="rect4279-6-92" - width="50" - height="7.0000081" - x="-307" - y="288" - transform="rotate(-90)" - style="opacity:0.75;fill:url(#linearGradient4648);fill-opacity:1;stroke:none;stroke-width:1" /> - <rect - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="rect4309-1-0" - width="50" - height="0.99998951" - x="-307" - y="-289.00003" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - </g> - <g - style="fill-rule:evenodd;stroke:none" - transform="matrix(0.26458333,0,0,0.26458333,-9.9183939,-133.23935)" - inkscape:label="#menu-shadow-left" - id="tooltip-shadow-left"> - <g - transform="matrix(0.57143143,0,0,1,-45.821963,624.45284)" - id="left-2" - style="display:inline;fill:#343031;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - id="path4418-3" - d="m 183.00003,258.99981 v 50 l 10.49998,10e-6 v -50 z" - style="display:inline;opacity:0.3;fill:#${surface};fill-opacity:1;stroke:none;stroke-width:1" /> - <path - style="display:inline;opacity:0.00100002;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1" - d="m 183.00002,258.99981 v 50 l 1.75002,10e-6 v -50 z" - id="path3592-7" - inkscape:connector-curvature="0" /> - </g> - <g - style="display:inline;opacity:1" - id="shadow-left-5" - transform="rotate(180,173.375,595.22637)"> - <rect - id="rect4279-6-9-9" - width="50" - height="6.9999719" - x="-307" - y="288" - transform="rotate(-90)" - style="opacity:0.75;fill:url(#linearGradient4650);fill-opacity:1;stroke:none;stroke-width:1" /> - <rect - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="rect4309-1-3-2" - width="50" - height="0.99994951" - x="-307" - y="-289" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - </g> - <g - style="fill-rule:evenodd;stroke:none" - transform="matrix(0.26458333,0,0,0.26458333,-9.3892249,-132.71014)" - id="tooltip-shadow-bottom"> - <g - transform="matrix(-1,0,0,-0.57142372,302.75,1081.4515)" - id="bottom-2" - style="display:inline;fill:#343031;fill-opacity:1"> - <path - id="path4382-9-8" - d="M 189.99998,251.9999 H 240 v 10.49995 h -50.00001 z" - style="display:inline;opacity:0.3;fill:#${surface};fill-opacity:1;stroke:none;stroke-width:1" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - style="display:inline;opacity:0.00100002;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1" - d="M 189.99998,251.99991 H 240 v 1.75024 h -50.00001 z" - id="path3585-9" /> - </g> - <g - style="display:inline;opacity:1" - id="shadow-bottom-7" - transform="rotate(90,-139.85137,509.60137)"> - <rect - id="rect4279-4-3" - width="50" - height="7.0002661" - x="-307" - y="288" - transform="rotate(-90)" - style="opacity:0.75;fill:url(#linearGradient4652);fill-opacity:1;stroke:none;stroke-width:1" /> - <rect - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="rect4309-4-6" - width="50" - height="0.99987543" - x="-307" - y="-288.99991" - transform="matrix(0,-1,-1,0,0,0)" /> - </g> - </g> - <rect - id="tooltip-shadow-hint-top" - height="1.8520879" - y="97.068031" - x="13.232652" - width="0.66145831" - style="fill:#b74aff;fill-rule:evenodd;stroke:none;stroke-width:0.369647" /> - <rect - transform="rotate(-90)" - id="tooltip-shadow-hint-right" - height="1.8520746" - y="22.030058" - x="-107.98209" - width="0.66145831" - style="fill:#b74aff;fill-rule:evenodd;stroke:none;stroke-width:0.290195" /> - <rect - id="tooltip-shadow-hint-bottom" - height="1.8520833" - y="115.32428" - x="13.232652" - width="0.66145831" - style="fill:#b74aff;fill-rule:evenodd;stroke:none;stroke-width:0.290843" /> - <rect - transform="rotate(-90)" - id="tooltip-shadow-hint-left" - height="1.8520625" - y="3.7737992" - x="-108.18052" - width="0.66145831" - style="fill:#b74aff;fill-rule:evenodd;stroke:none;stroke-width:0.294844" /> - <g - id="tooltip-shadow-topleft" - transform="matrix(-0.26458333,0,0,0.26458333,36.515985,-133.76852)" - style="fill-rule:evenodd;stroke:none"> - <g - id="g4188"> - <g - id="g4182" - transform="rotate(90,-355.88187,520.57087)" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1"> - <path - id="path4174" - transform="matrix(0,1,1,0,-411.99955,-322.061)" - d="m 376,408 c -8.07698,0 -12.9999,4.92291 -13,13 h 7 a 5.9999999,5.9999999 0 0 1 6,-6 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.75;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4192);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 85,565.95312 v 1 a 6,6 0 0 1 6,6 h 1 a 7.0000002,7.0000002 0 0 0 -7,-7 z" - transform="rotate(-90,-212.50675,351.44574)" - id="path4176" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path4178" - d="m 9.0002659,47.938995 a 6,6 0 0 0 -5.9999999,6 h 5.9999999 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#${surface};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - transform="rotate(-90,-212.50675,351.44574)" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.00100002;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 85,566.95312 v 1 a 5,5 0 0 1 5,5 h 1 a 6,6 0 0 0 -6,-6 z" - id="path4180" - inkscape:connector-curvature="0" /> - </g> - <g - transform="translate(37.749999,747.51375)" - style="display:inline" - id="g4186"> - <g - style="display:inline;fill:url(#radialGradient4194);fill-opacity:1" - transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" - id="g4184" /> - </g> - </g> - </g> - <g - id="tooltip-shadow-bottomright" - transform="matrix(0.26458333,0,0,-0.26458333,-8.8600579,348.01285)" - style="fill-rule:evenodd;stroke:none"> - <g - id="g4166"> - <g - id="g4160" - transform="rotate(90,-355.88187,520.57087)" - style="display:inline;opacity:1;fill:#26272a;fill-opacity:1"> - <path - id="path4152-5" - transform="matrix(0,-1,-1,0,480.00007,479.93898)" - d="m 432,471 a 5.9999999,5.9999999 0 0 1 -6,6 v 7 c 8.0771,0 12.9999,-4.92279 13,-13 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.75;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4170);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 85,565.95312 v 1 a 6,6 0 0 1 6,6 h 1 a 7.0000002,7.0000002 0 0 0 -7,-7 z" - transform="rotate(-90,-212.50675,351.44574)" - id="path4154" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path4156" - d="m 9.0002659,47.938995 a 6,6 0 0 0 -5.9999999,6 h 5.9999999 z" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#${surface};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.00100002;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#${surface};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 85,566.95312 v 1 a 5,5 0 0 1 5,5 h 1 a 6,6 0 0 0 -6,-6 z" - transform="rotate(-90,-212.50675,351.44574)" - id="path4158" - inkscape:connector-curvature="0" /> - </g> - <g - transform="translate(37.749999,747.51375)" - style="display:inline" - id="g4164"> - <g - style="display:inline;fill:url(#radialGradient4172);fill-opacity:1" - transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" - id="g4162" /> - </g> - </g> - </g> - </g> - </svg> -'' diff --git a/home/qt/theme.kvconfig.mustache b/home/qt/theme.kvconfig.mustache new file mode 100644 index 0000000..30f7973 --- /dev/null +++ b/home/qt/theme.kvconfig.mustache @@ -0,0 +1,497 @@ +[%General] +author=Keystistic +comment=Breeze for Kvantum, based on Breeze Plasma theme and color scheme & Monochrome KDE Kvantum theme +x11drag=menubar_and_primary_toolbar +alt_mnemonic=true +left_tabs=true +attach_active_tab=true +mirror_doc_tabs=true +group_toolbar_buttons=false +toolbar_item_spacing=1 +toolbar_interior_spacing=3 +spread_progressbar=true +composite=true +menu_shadow_depth=5 +menu_separator_height=6 +tooltip_shadow_depth=6 +splitter_width=4 +scroll_width=6 +scroll_arrows=false +scroll_min_extent=60 +slider_width=5 +slider_handle_width=18 +slider_handle_length=18 +center_toolbar_handle=true +check_size=16 +textless_progressbar=false +progressbar_thickness=6 +menubar_mouse_tracking=true +toolbutton_style=1 +double_click=false +translucent_windows=false +blurring=true +popup_blurring=true +vertical_spin_indicators=true +spin_button_width=32 +fill_rubberband=false +merge_menubar_with_toolbar=true +small_icon_size=16 +large_icon_size=32 +button_icon_size=22 +toolbar_icon_size=22 +combo_as_lineedit=true +animate_states=false +button_contents_shift=true +combo_menu=true +hide_combo_checkboxes=true +combo_focus_rect=true +groupbox_top_label=true +inline_spin_indicators=false +joined_inactive_tabs=false +layout_spacing={{innerGap}} +layout_margin={{innerGap}} +scrollbar_in_view=true +transient_scrollbar=true +transient_groove=false +submenu_overlap=0 +tooltip_delay=-1 +tree_branch_line=true +dark_titlebar=true +opaque=QMPlay2,kaffeine,kmplayer,subtitlecomposer,vlc,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam +reduce_window_opacity=0 +scrollable_menu=false +submenu_delay=250 +no_inactiveness=false +no_window_pattern=false +reduce_menu_opacity=0 +respect_DE=true +click_behavior=0 +contrast=1.30 +dialog_button_layout=0 +drag_from_buttons=false +intensity=1.10 +saturation=1.20 +shadowless_popup=false + +[GeneralColors] +window.color=#{{colors.base}} +base.color=#{{colors.surface}} +alt.base.color=#{{colors.surface}} +button.color=#{{colors.surface}} +light.color=#{{colors.surface}} +mid.light.color=#{{colors.base}} +dark.color=#1e1e1e +mid.color=#{{colors.base}} +highlight.color=#{{colors.primary}} +inactive.highlight.color=#{{colors.primary}} +text.color=#{{colors.text}} +window.text.color=#{{colors.text}} +button.text.color=#{{colors.text}} +disabled.text.color=#{{colors.subtext}}70 +tooltip.text.color=#{{colors.text}} +highlight.text.color=#{{colors.base}} +link.color=#{{colors.normal.blue}} +link.visited.color=#{{colors.normal.magenta}} +progress.indicator.text.color=#{{colors.text}} + +[Hacks] +transparent_ktitle_label=false +transparent_dolphin_view=false +transparent_pcmanfm_sidepane=false +blur_translucent=true +transparent_menutitle=false +transparent_arrow_button=false +respect_darkness=true +kcapacitybar_as_progressbar=true +force_size_grip=true +iconless_pushbutton=false +iconless_menu=false +disabled_icon_opacity=100 +lxqtmainmenu_iconsize=22 +normal_default_pushbutton=true +single_top_toolbar=true +tint_on_mouseover=0 +transparent_pcmanfm_view=false +middle_click_scroll=false +no_selection_tint=false +opaque_colors=false +centered_forms=false +kinetic_scrolling=false +noninteger_translucency=false + +[PanelButtonCommand] +frame=true +frame.element=button +frame.top={{innerGap}} +frame.bottom={{innerGap}} +frame.left={{innerGap}} +frame.right={{innerGap}} +interior=true +interior.element=button +indicator.size=8 +text.normal.color=#{{colors.text}} +text.focus.color=white +text.press.color=#{{colors.base}} +text.toggle.color=white +text.shadow=0 +text.margin=1 +text.iconspacing=4 +indicator.element=arrow +text.margin.top={{innerGap}} +text.margin.bottom={{innerGap}} +text.margin.left={{innerGap}} +text.margin.right={{innerGap}} +min_width=+0.3font +min_height=+0.3font +frame.expansion=8 + +[PanelButtonTool] +inherits=PanelButtonCommand + +[Dock] +inherits=PanelButtonCommand +interior.element=dock +frame.element=dock +frame.top=1 +frame.bottom=1 +frame.left=1 +frame.right=1 +text.normal.color=#{{colors.text}} + +[DockTitle] +inherits=PanelButtonCommand +frame=false +interior=false +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.subtext}} +text.bold=false + +[IndicatorSpinBox] +inherits=PanelButtonCommand +frame=true +interior=true +frame.left=1 +indicator.element=spin +indicator.size=10 +text.normal.color=#{{colors.text}} + +[RadioButton] +inherits=PanelButtonCommand +frame=false +interior.element=radio +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.subtext}} + +[CheckBox] +inherits=PanelButtonCommand +frame=false +interior.element=checkbox +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.subtext}} + +[Focus] +inherits=PanelButtonCommand +frame=true +frame.element=focus +frame.top=1 +frame.bottom=1 +frame.left=1 +frame.right=1 +frame.patternsize={{innerGap}}0 + +[GenericFrame] +inherits=PanelButtonCommand +frame=true +interior=false +frame.element=common +interior.element=common +frame.top=1 +frame.bottom=1 +frame.left=1 +frame.right=1 + +[LineEdit] +inherits=PanelButtonCommand +frame.element=lineedit +interior.element=lineedit +text.margin.left=0 +text.margin.right=0 + +[DropDownButton] +inherits=PanelButtonCommand +indicator.element=arrow-down + +[IndicatorArrow] +indicator.element=arrow +indicator.size=8 + +[ToolboxTab] +inherits=PanelButtonCommand +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.subtext}} +text.press.color=#{{colors.subtext}} + +[Tab] +inherits=PanelButtonCommand +interior.element=tab +text.margin.left={{outerGap}} +text.margin.right={{outerGap}} +text.margin.top={{innerGap}} +text.margin.bottom={{innerGap}} +frame.element=tab +indicator.element=tab +indicator.size=16 +frame.top={{innerGap}} +frame.bottom={{innerGap}} +frame.left={{innerGap}} +frame.right={{innerGap}} +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.text}} +text.toggle.color=#{{colors.text}} +frame.expansion=0 + +[TabFrame] +inherits=PanelButtonCommand +frame.element=tabframe +interior.element=tabframe +frame.top={{innerGap}} +frame.bottom={{innerGap}} +frame.left={{innerGap}} +frame.right={{innerGap}} + +[TreeExpander] +inherits=PanelButtonCommand +indicator.size=12 +indicator.element=tree + +[HeaderSection] +inherits=PanelButtonCommand +interior.element=header +frame.element=header +frame.top=1 +frame.bottom=1 +frame.left=1 +frame.right=1 +text.bold=false +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.subtext}} +text.press.color=#{{colors.base}} +text.toggle.color=#{{colors.text}} +frame.expansion=0 + +[SizeGrip] +indicator.element=resize-grip +/ +[Toolbar] +inherits=PanelButtonCommand +indicator.element=toolbar +indicator.size=5 +text.margin=0 +frame=true +interior.element=menubar +frame.element=menubar +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.subtext}} +frame.left=0 +frame.right=0 +frame.top=0 +frame.bottom=1 +frame.expansion=0 + +[Slider] +inherits=PanelButtonCommand +frame.element=slider +interior.element=slider +frame.top={{innerGap}} +frame.bottom={{innerGap}} +frame.left={{innerGap}} +frame.right={{innerGap}} + +[SliderCursor] +inherits=PanelButtonCommand +frame=false +interior.element=slidercursor + +[Progressbar] +inherits=PanelButtonCommand +frame.element=progress +interior.element=progress +text.margin=0 +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.subtext}} +text.press.color=#{{colors.base}} +text.toggle.color=#{{colors.text}} +text.bold=false +frame.expansion={{innerGap}} + +[ProgressbarContents] +inherits=PanelButtonCommand +frame=true +frame.element=progress-pattern +interior.element=progress-pattern + +[ItemView] +inherits=PanelButtonCommand +text.margin=0 +frame.element=itemview +interior.element=itemview +frame.top={{innerGap}} +frame.bottom={{innerGap}} +frame.left={{innerGap}} +frame.right={{innerGap}} +text.margin.top={{innerGap}} +text.margin.bottom={{innerGap}} +text.margin.left={{innerGap}} +text.margin.right={{innerGap}} +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.subtext}} +text.press.color=#{{colors.base}} +text.toggle.color=#{{colors.text}} +min_width=+0.3font +min_height=+0.3font +frame.expansion=0 + +[Splitter] +indicator.size=48 + +[Scrollbar] +inherits=PanelButtonCommand +indicator.element=arrow +indicator.size=8 + +[ScrollbarSlider] +inherits=PanelButtonCommand +interior.element=scrollbarslider +interior=true +frame=false +frame.expansion={{innerGap}}8 + +[ScrollbarGroove] +inherits=PanelButtonCommand +interior.element=scrollbargroove +interior=true +frame=false +frame.expansion={{innerGap}}8 + +[MenuItem] +inherits=PanelButtonCommand +frame=true +frame.element=menuitem +interior.element=menuitem +indicator.element=menuitem +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.base}} +text.margin.top=1 +text.margin.bottom=1 +text.margin.left={{innerGap}} +text.margin.right={{innerGap}} +frame.top={{innerGap}} +frame.bottom={{innerGap}} +frame.left={{innerGap}} +frame.right={{innerGap}} +text.bold=false +min_width=+0.3font +min_height=+0.3font +frame.expansion=0 + +[MenuBar] +inherits=PanelButtonCommand +frame.element=menubar +interior.element=menubar +text.normal.color=#{{colors.text}} +frame.bottom=0 +frame.expansion=0 + +[MenuBarItem] +inherits=PanelButtonCommand +interior=true +interior.element=menubaritem +frame.element=menubaritem +frame.top={{innerGap}} +frame.bottom={{innerGap}} +frame.left={{innerGap}} +frame.right={{innerGap}} +text.margin.left={{innerGap}} +text.margin.right={{innerGap}} +text.margin.top=0 +text.margin.bottom=0 +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.base}} +frame.expansion=0 + +[TitleBar] +inherits=PanelButtonCommand +frame=false +text.margin.top={{innerGap}} +text.margin.bottom={{innerGap}} +text.margin.left={{innerGap}} +text.margin.right={{innerGap}} +interior.element=titlebar +indicator.size=16 +indicator.element=mdi +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.subtext}} +text.bold=true +text.italic=false +frame.expansion=0 + +[ComboBox] +inherits=PanelButtonCommand +interior.element=combo +frame.element=combo +text.press.color=#{{colors.subtext}} +indicator.element=carrow + +[Menu] +inherits=PanelButtonCommand +frame.top=1 +frame.bottom=1 +frame.left=1 +frame.right=1 +frame.element=menu +interior.element=menu +text.normal.color=#{{colors.text}} +text.shadow=false +frame.expansion=0 + +[GroupBox] +inherits=GenericFrame +frame=false +text.shadow=0 +text.margin=0 +text.normal.color=#{{colors.text}} +text.focus.color=#{{colors.subtext}} +text.bold=true +frame.expansion=0 + +[TabBarFrame] +inherits=GenericFrame +frame=true +frame.element=tabBarFrame +interior=false +frame.top={{innerGap}} +frame.bottom={{innerGap}} +frame.left={{innerGap}} +frame.right={{innerGap}} + +[ToolTip] +inherits=GenericFrame +frame.top={{innerGap}} +frame.bottom={{innerGap}} +frame.left={{innerGap}} +frame.right={{innerGap}} +interior=true +text.shadow=0 +text.margin=0 +interior.element=tooltip +frame.element=tooltip +frame.expansion=0 + +[StatusBar] +inherits=GenericFrame +frame=false +interior=false + +[Window] +interior=true +interior.element=window diff --git a/home/qt/theme.svg.mustache b/home/qt/theme.svg.mustache new file mode 100644 index 0000000..0ed3c9e --- /dev/null +++ b/home/qt/theme.svg.mustache @@ -0,0 +1,9512 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="210mm" + height="297mm" + viewBox="0 0 210 297" + version="1.1" + id="svg2140" + sodipodi:docname="theme.svg" + inkscape:version="1.4.3 (0d15f75042, 2025-12-25)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <defs + id="defs2134"> + <linearGradient + inkscape:collect="always" + id="linearGradient2542"> + <stop + style="stop-color:#{{primary}};stop-opacity:1" + offset="0" + id="stop2538" /> + <stop + style="stop-color:#{{primary}};stop-opacity:1" + offset="1" + id="stop2540" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1887"> + <stop + style="stop-color:#eff0f3;stop-opacity:1;" + offset="0" + id="stop1883" /> + <stop + style="stop-color:#eff0f3;stop-opacity:0;" + offset="1" + id="stop1885" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1450"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop1446" /> + <stop + style="stop-color:#000003;stop-opacity:0" + offset="1" + id="stop1448" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1442"> + <stop + style="stop-color:#000000;stop-opacity:0.945" + offset="0" + id="stop1438" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop1440" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1426"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop1422" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop1424" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1418"> + <stop + style="stop-color:#000000;stop-opacity:0.945" + offset="0" + id="stop1414" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop1416" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1410"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop1406" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop1408" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1402"> + <stop + style="stop-color:#000000;stop-opacity:0.945" + offset="0" + id="stop1398" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop1400" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1390"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop1386" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop1388" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1382"> + <stop + style="stop-color:#000000;stop-opacity:0.949" + offset="0" + id="stop1378" /> + <stop + style="stop-color:#000000;stop-opacity:0" + offset="1" + id="stop1380" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1221"> + <stop + style="stop-color:#{{primary}};stop-opacity:1" + offset="0" + id="stop1217" /> + <stop + style="stop-color:#{{primary}};stop-opacity:1" + offset="1" + id="stop1219" /> + </linearGradient> + <linearGradient + id="linearGradient1572" + x1="2.0000992" + x2="2.0000992" + y1="20.999998" + y2="53" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient2542" /> + <linearGradient + id="linearGradient1546" + x1="6.0000992" + x2="6.0000992" + y1="20.999998" + y2="53" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient2542" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1382" + id="radialGradient1384" + cx="29.36875" + cy="12.7" + fx="29.36875" + fy="12.7" + r="1.3229165" + gradientTransform="matrix(2.4716102e-6,3.0000009,-2.5999998,-1.1727622e-6,62.388675,-75.670845)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1390" + id="linearGradient1396" + x1="-8.4666662" + y1="-29.36875" + x2="-8.4666662" + y2="-32.808334" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1402" + id="radialGradient1404" + cx="29.36875" + cy="4.3656249" + fx="29.36875" + fy="4.3656249" + r="1.322917" + gradientTransform="matrix(2.5999993,1.2622532e-6,6.1307476e-7,1.9999996,-46.989981,-4.7625349)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1410" + id="linearGradient1412" + x1="-25.135416" + y1="3.96875" + x2="-25.135416" + y2="1.3229166" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1418" + id="radialGradient1420" + cx="20.902082" + cy="4.1010423" + fx="20.902082" + fy="4.1010423" + r="1.0583335" + gradientTransform="matrix(-8.2838747e-6,-2.4999995,2.7499978,6.6301223e-7,9.6243972,56.223944)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1426" + id="linearGradient1428" + x1="-8.2020836" + y1="-20.902082" + x2="-8.2020836" + y2="-17.991667" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1444" + cx="20.902082" + cy="12.964582" + fx="20.902082" + fy="12.964582" + r="1.0583335" + gradientTransform="matrix(-2.7499995,-1.0461745e-5,-5.1141699e-7,-3.7499992,78.382805,61.052809)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1450" + id="linearGradient1452" + x1="-25.135416" + y1="12.435416" + x2="-25.135416" + y2="16.404167" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1444-4" + cx="20.902082" + cy="12.964582" + fx="20.902082" + fy="12.964582" + r="1.0583335" + gradientTransform="matrix(-2.7499991,1.8961962e-7,-1.6193457e-5,-3.7499998,64.360085,61.052594)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1382" + id="radialGradient1384-3" + cx="29.36875" + cy="12.7" + fx="29.36875" + fy="12.7" + r="1.3229165" + gradientTransform="matrix(2.220955e-7,3.000001,-2.6000006,-2.5823267e-6,48.365833,-75.670829)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1404-3" + cx="29.36875" + cy="4.3656249" + fx="29.36875" + fy="4.3656249" + r="1.322917" + gradientTransform="matrix(2.5999998,2.3462963e-6,2.3727629e-7,1.9999996,-61.012911,-4.7625668)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1420-5" + cx="20.902082" + cy="4.1010423" + fx="20.902082" + fy="4.1010423" + r="1.0583335" + gradientTransform="matrix(2.3963138e-6,-2.4999984,2.7499972,1.0995879e-5,-4.3987408,56.223876)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1450" + id="linearGradient1636" + gradientUnits="userSpaceOnUse" + x1="-25.135416" + y1="12.435416" + x2="-25.135416" + y2="16.404167" + gradientTransform="translate(14.022917)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1410" + id="linearGradient1638" + gradientUnits="userSpaceOnUse" + x1="-25.135416" + y1="3.96875" + x2="-25.135416" + y2="1.3229166" + gradientTransform="translate(14.022917)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1426" + id="linearGradient1640" + gradientUnits="userSpaceOnUse" + x1="-8.2020836" + y1="-20.902082" + x2="-8.2020836" + y2="-17.991667" + gradientTransform="translate(2.9524621e-8,14.022917)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1390" + id="linearGradient1642" + gradientUnits="userSpaceOnUse" + x1="-8.4666662" + y1="-29.36875" + x2="-8.4666662" + y2="-32.808334" + gradientTransform="translate(2.9524621e-8,14.022917)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1444-7" + cx="20.902082" + cy="12.964582" + fx="20.902082" + fy="12.964582" + r="1.0583335" + gradientTransform="matrix(-2.7500265,-6.0200034e-7,-1.4147023e-5,-3.749998,105.63566,61.052588)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1382" + id="radialGradient1384-30" + cx="29.36875" + cy="12.7" + fx="29.36875" + fy="12.7" + r="1.3229165" + gradientTransform="matrix(6.2145235e-6,3.0000002,-2.5999784,8.905799e-7,89.640403,-75.670848)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1404-8" + cx="29.36875" + cy="4.3656249" + fx="29.36875" + fy="4.3656249" + r="1.322917" + gradientTransform="matrix(2.5999775,-2.5082547e-5,2.2403951e-5,2.0000003,-19.737324,-4.7617635)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1420-9" + cx="20.902082" + cy="4.1010423" + fx="20.902082" + fy="4.1010423" + r="1.0583335" + gradientTransform="matrix(-7.0097051e-6,-2.5000005,2.750025,2.4408325e-7,36.87637,56.223966)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1450" + id="linearGradient1710" + gradientUnits="userSpaceOnUse" + x1="-25.135416" + y1="12.435416" + x2="-25.135387" + y2="16.404167" + gradientTransform="translate(-27.252111)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1410" + id="linearGradient1712" + gradientUnits="userSpaceOnUse" + x1="-25.135416" + y1="3.96875" + x2="-25.135387" + y2="1.3229166" + gradientTransform="translate(-27.252111)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1426" + id="linearGradient1714" + gradientUnits="userSpaceOnUse" + x1="-8.2020836" + y1="-20.902082" + x2="-8.2020826" + y2="-17.991638" + gradientTransform="translate(-9.95512e-7,-27.252111)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1390" + id="linearGradient1716" + gradientUnits="userSpaceOnUse" + x1="-8.4666662" + y1="-29.36875" + x2="-8.4666653" + y2="-32.808304" + gradientTransform="translate(-9.95512e-7,-27.252111)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1382" + id="radialGradient1384-30-2" + cx="29.36875" + cy="12.7" + fx="29.36875" + fy="12.7" + r="1.3229165" + gradientTransform="matrix(6.2145235e-6,3.0000002,-2.5999784,8.905799e-7,89.640403,-75.670848)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1444-7-5" + cx="20.902082" + cy="12.964582" + fx="20.902082" + fy="12.964582" + r="1.0583335" + gradientTransform="matrix(-2.7500265,-6.0200034e-7,-1.4147023e-5,-3.749998,105.63566,61.052588)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1420-9-9" + cx="20.902082" + cy="4.1010423" + fx="20.902082" + fy="4.1010423" + r="1.0583335" + gradientTransform="matrix(-7.0097051e-6,-2.5000005,2.750025,2.4408325e-7,36.87637,56.223966)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1404-8-7" + cx="29.36875" + cy="4.3656249" + fx="29.36875" + fy="4.3656249" + r="1.322917" + gradientTransform="matrix(2.5999775,-2.5082547e-5,2.2403951e-5,2.0000003,-19.737324,-4.7617635)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1450" + id="linearGradient1868" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-27.252111)" + x1="-25.135416" + y1="12.435416" + x2="-25.135387" + y2="16.404167" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1410" + id="linearGradient1870" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-27.252111)" + x1="-25.135416" + y1="3.96875" + x2="-25.135387" + y2="1.3229166" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1426" + id="linearGradient1874" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-9.95512e-7,-27.252111)" + x1="-8.2020836" + y1="-20.902082" + x2="-8.2020826" + y2="-17.991638" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1390" + id="linearGradient1878" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-9.95512e-7,-27.252111)" + x1="-8.4666662" + y1="-29.36875" + x2="-8.4666653" + y2="-32.808304" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1382" + id="radialGradient1384-2" + cx="29.36875" + cy="12.7" + fx="29.36875" + fy="12.7" + r="1.3229165" + gradientTransform="matrix(2.4716102e-6,3.0000009,-2.5999998,-1.1727622e-6,62.388675,-75.670845)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1444-8" + cx="20.902082" + cy="12.964582" + fx="20.902082" + fy="12.964582" + r="1.0583335" + gradientTransform="matrix(-2.7499995,-1.0461745e-5,-5.1141699e-7,-3.7499992,78.382805,61.052809)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1420-4" + cx="20.902082" + cy="4.1010423" + fx="20.902082" + fy="4.1010423" + r="1.0583335" + gradientTransform="matrix(-8.2838747e-6,-2.4999995,2.7499978,6.6301223e-7,9.6243972,56.223944)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1404-0" + cx="29.36875" + cy="4.3656249" + fx="29.36875" + fy="4.3656249" + r="1.322917" + gradientTransform="matrix(2.5999993,1.2622532e-6,6.1307476e-7,1.9999996,-46.989981,-4.7625349)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1382" + id="radialGradient1384-3-2" + cx="29.36875" + cy="12.7" + fx="29.36875" + fy="12.7" + r="1.3229165" + gradientTransform="matrix(2.220955e-7,3.000001,-2.6000006,-2.5823267e-6,48.365833,-75.670829)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1444-4-6" + cx="20.902082" + cy="12.964582" + fx="20.902082" + fy="12.964582" + r="1.0583335" + gradientTransform="matrix(-2.7499991,1.8961962e-7,-1.6193457e-5,-3.7499998,64.360085,61.052594)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1420-5-1" + cx="20.902082" + cy="4.1010423" + fx="20.902082" + fy="4.1010423" + r="1.0583335" + gradientTransform="matrix(2.3963138e-6,-2.4999984,2.7499972,1.0995879e-5,-4.3987408,56.223876)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1404-3-0" + cx="29.36875" + cy="4.3656249" + fx="29.36875" + fy="4.3656249" + r="1.322917" + gradientTransform="matrix(2.5999998,2.3462963e-6,2.3727629e-7,1.9999996,-61.012911,-4.7625668)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1382" + id="radialGradient1384-30-6" + cx="29.36875" + cy="12.7" + fx="29.36875" + fy="12.7" + r="1.3229165" + gradientTransform="matrix(6.2145235e-6,3.0000002,-2.5999784,8.905799e-7,89.640403,-75.670848)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1444-7-1" + cx="20.902082" + cy="12.964582" + fx="20.902082" + fy="12.964582" + r="1.0583335" + gradientTransform="matrix(-2.7500265,-6.0200034e-7,-1.4147023e-5,-3.749998,105.63566,61.052588)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1420-9-5" + cx="20.902082" + cy="4.1010423" + fx="20.902082" + fy="4.1010423" + r="1.0583335" + gradientTransform="matrix(-7.0097051e-6,-2.5000005,2.750025,2.4408325e-7,36.87637,56.223966)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1404-8-9" + cx="29.36875" + cy="4.3656249" + fx="29.36875" + fy="4.3656249" + r="1.322917" + gradientTransform="matrix(2.5999775,-2.5082547e-5,2.2403951e-5,2.0000003,-19.737324,-4.7617635)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient1572-4" + x1="2.0000992" + x2="2.0000992" + y1="20.999998" + y2="53" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient1221" /> + <linearGradient + id="linearGradient1546-9" + x1="6.0000992" + x2="6.0000992" + y1="20.999998" + y2="53" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient1221" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1382" + id="radialGradient1384-30-2-0" + cx="29.36875" + cy="12.7" + fx="29.36875" + fy="12.7" + r="1.3229165" + gradientTransform="matrix(6.2145235e-6,3.0000002,-2.5999784,8.905799e-7,89.640403,-75.670848)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1444-7-5-9" + cx="20.902082" + cy="12.964582" + fx="20.902082" + fy="12.964582" + r="1.0583335" + gradientTransform="matrix(-2.7500265,-6.0200034e-7,-1.4147023e-5,-3.749998,105.63566,61.052588)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1420-9-9-1" + cx="20.902082" + cy="4.1010423" + fx="20.902082" + fy="4.1010423" + r="1.0583335" + gradientTransform="matrix(-7.0097051e-6,-2.5000005,2.750025,2.4408325e-7,36.87637,56.223966)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1442" + id="radialGradient1404-8-7-7" + cx="29.36875" + cy="4.3656249" + fx="29.36875" + fy="4.3656249" + r="1.322917" + gradientTransform="matrix(2.5999775,-2.5082547e-5,2.2403951e-5,2.0000003,-19.737324,-4.7617635)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1450" + id="linearGradient3135" + gradientUnits="userSpaceOnUse" + x1="-25.135416" + y1="12.435416" + x2="-25.135416" + y2="16.404167" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1410" + id="linearGradient3137" + gradientUnits="userSpaceOnUse" + x1="-25.135416" + y1="3.96875" + x2="-25.135416" + y2="1.3229166" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1426" + id="linearGradient3141" + gradientUnits="userSpaceOnUse" + x1="-8.2020836" + y1="-20.902082" + x2="-8.2020836" + y2="-17.991667" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1390" + id="linearGradient3145" + gradientUnits="userSpaceOnUse" + x1="-8.4666662" + y1="-29.36875" + x2="-8.4666662" + y2="-32.808334" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1450" + id="linearGradient3147" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(14.022917)" + x1="-25.135416" + y1="12.435416" + x2="-25.135416" + y2="16.404167" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1410" + id="linearGradient3149" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(14.022917)" + x1="-25.135416" + y1="3.96875" + x2="-25.135416" + y2="1.3229166" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1426" + id="linearGradient3153" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(2.9524621e-8,14.022917)" + x1="-8.2020836" + y1="-20.902082" + x2="-8.2020836" + y2="-17.991667" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1390" + id="linearGradient3157" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(2.9524621e-8,14.022917)" + x1="-8.4666662" + y1="-29.36875" + x2="-8.4666662" + y2="-32.808334" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1450" + id="linearGradient3159" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-27.252111)" + x1="-25.135416" + y1="12.435416" + x2="-25.135387" + y2="16.404167" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1410" + id="linearGradient3161" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-27.252111)" + x1="-25.135416" + y1="3.96875" + x2="-25.135387" + y2="1.3229166" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1426" + id="linearGradient3165" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-9.95512e-7,-27.252111)" + x1="-8.2020836" + y1="-20.902082" + x2="-8.2020826" + y2="-17.991638" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1390" + id="linearGradient3169" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-9.95512e-7,-27.252111)" + x1="-8.4666662" + y1="-29.36875" + x2="-8.4666653" + y2="-32.808304" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1450" + id="linearGradient3173" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-27.252111)" + x1="-25.135416" + y1="12.435416" + x2="-25.135387" + y2="16.404167" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1410" + id="linearGradient3175" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-27.252111)" + x1="-25.135416" + y1="3.96875" + x2="-25.135387" + y2="1.3229166" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1426" + id="linearGradient3177" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-9.95512e-7,-27.252111)" + x1="-8.2020836" + y1="-20.902082" + x2="-8.2020826" + y2="-17.991638" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1390" + id="linearGradient3179" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-9.95512e-7,-27.252111)" + x1="-8.4666662" + y1="-29.36875" + x2="-8.4666653" + y2="-32.808304" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1887" + id="linearGradient1889" + x1="178.63144" + y1="43.16564" + x2="181.27727" + y2="43.16564" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient4465-3"> + <stop + style="stop-color:#000000;stop-opacity:0.50980395" + offset="0" + id="stop4467-6" /> + <stop + style="stop-color:#000000;stop-opacity:0" + offset="1" + id="stop4469-7" /> + </linearGradient> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" + gradientUnits="userSpaceOnUse" + id="radialGradient2104" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" + gradientUnits="userSpaceOnUse" + id="radialGradient2112" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient2120" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" + gradientUnits="userSpaceOnUse" + id="radialGradient2128" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" + gradientUnits="userSpaceOnUse" + id="radialGradient2136" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient2144" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" + gradientUnits="userSpaceOnUse" + id="radialGradient2152" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" + gradientUnits="userSpaceOnUse" + id="radialGradient2160" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient2168" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" + gradientUnits="userSpaceOnUse" + id="radialGradient2176" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" + gradientUnits="userSpaceOnUse" + id="radialGradient2184" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient2192" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" + gradientUnits="userSpaceOnUse" + id="radialGradient2354" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" + gradientUnits="userSpaceOnUse" + id="radialGradient2362" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient2370" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" + gradientUnits="userSpaceOnUse" + id="radialGradient2378" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" + gradientUnits="userSpaceOnUse" + id="radialGradient2386" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient2394" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" + gradientUnits="userSpaceOnUse" + id="radialGradient2402" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" + gradientUnits="userSpaceOnUse" + id="radialGradient2410" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient2418" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" + gradientUnits="userSpaceOnUse" + id="radialGradient2426" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" + gradientUnits="userSpaceOnUse" + id="radialGradient2434" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient2442" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1971" + id="linearGradient2097" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.625,0,0,0.5,271.875,591.5)" + x1="65.800003" + y1="47" + x2="65.800003" + y2="59" /> + <linearGradient + id="linearGradient1971"> + <stop + style="stop-opacity:0.4;stop-color:#000000" + id="stop2" + offset="0" /> + <stop + style="stop-opacity:0" + id="stop4" + offset="1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1971" + id="linearGradient2101" + gradientUnits="userSpaceOnUse" + x1="315" + y1="615" + x2="315" + y2="621" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1971" + id="linearGradient3473" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.625,0,0,0.5,271.875,591.5)" + x1="65.800003" + y1="47" + x2="65.800003" + y2="59" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1971" + id="linearGradient3475" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.625,0,0,0.5,271.875,591.5)" + x1="65.800003" + y1="47" + x2="65.800003" + y2="59" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1971" + id="linearGradient3477" + gradientUnits="userSpaceOnUse" + x1="315" + y1="615" + x2="315" + y2="621" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1971" + id="linearGradient3479" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.625,0,0,0.5,271.875,591.5)" + x1="65.800003" + y1="47" + x2="65.800003" + y2="59" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" + gradientUnits="userSpaceOnUse" + id="radialGradient2032" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" + gradientUnits="userSpaceOnUse" + id="radialGradient2040" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient2048" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" + gradientUnits="userSpaceOnUse" + id="radialGradient2056" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" + gradientUnits="userSpaceOnUse" + id="radialGradient2064" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient2072" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" + gradientUnits="userSpaceOnUse" + id="radialGradient2080" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" + gradientUnits="userSpaceOnUse" + id="radialGradient2088" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient2096" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(2.8889021,-6.5516655e-5,6.5542258e-5,2.8889544,55.275243,210.81222)" + gradientUnits="userSpaceOnUse" + id="radialGradient2104-5" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="54.064175" + fx="8.5572634" + cy="54.064175" + cx="8.5572634" + gradientTransform="matrix(3.7777959,1.8621496e-5,-1.8583571e-5,3.777869,47.673237,162.75329)" + gradientUnits="userSpaceOnUse" + id="radialGradient2112-3" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient2120-5" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4465-3" + id="linearGradient3461" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.71428571,0,0,1,-317.71429,1250.3622)" + x1="83.600006" + y1="-966.36224" + x2="83.599998" + y2="-952.362" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4465-3" + id="radialGradient5249" + cx="5.3529415" + cy="50.291935" + fx="5.3529415" + fy="50.291935" + r="1.6470588" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4465-3" + id="radialGradient5251" + gradientUnits="userSpaceOnUse" + cx="75" + cy="25" + fx="75" + fy="25" + r="1.6470588" + gradientTransform="matrix(8.4999882,-1.5178555e-6,1.5178576e-6,8.5000001,-562.49915,-187.49989)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4465-3" + id="linearGradient3463" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.71428571,0,0,1,-317.71429,1250.3622)" + x1="83.600006" + y1="-966.36218" + x2="83.599998" + y2="-952.362" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4465-3" + id="radialGradient5249-2" + cx="5.3529415" + cy="50.291935" + fx="5.3529415" + fy="50.291935" + r="1.6470588" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4465-3" + id="radialGradient5251-1" + gradientUnits="userSpaceOnUse" + cx="75" + cy="25" + fx="75" + fy="25" + r="1.6470588" + gradientTransform="matrix(8.4999882,-1.5178555e-6,1.5178576e-6,8.5000001,-562.49915,-187.49989)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4465-3" + id="radialGradient5249-7" + cx="5.3529415" + cy="50.291935" + fx="5.3529415" + fy="50.291935" + r="1.6470588" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4465-3" + id="radialGradient5251-2" + gradientUnits="userSpaceOnUse" + cx="75" + cy="25" + fx="75" + fy="25" + r="1.6470588" + gradientTransform="matrix(8.4999882,-1.5178555e-6,1.5178576e-6,8.5000001,-562.49915,-187.49989)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4465-3" + id="radialGradient5249-2-5" + cx="5.3529415" + cy="50.291935" + fx="5.3529415" + fy="50.291935" + r="1.6470588" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4465-3" + id="radialGradient5251-1-4" + gradientUnits="userSpaceOnUse" + cx="75" + cy="25" + fx="75" + fy="25" + r="1.6470588" + gradientTransform="matrix(8.4999882,-1.5178555e-6,1.5178576e-6,8.5000001,-562.49915,-187.49989)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4465-3" + id="linearGradient3576" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.71428571,0,0,1,-317.71429,1250.3622)" + x1="83.600006" + y1="-966.36224" + x2="83.599998" + y2="-952.362" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4465-3" + id="linearGradient3578" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.71428571,0,0,1,-317.71429,1250.3622)" + x1="83.600006" + y1="-966.36218" + x2="83.599998" + y2="-952.362" /> + <linearGradient + y2="-953.79071" + x2="83.600006" + y1="-968.0766" + x1="83.600006" + gradientTransform="matrix(0.71428571,0,0,0.69999041,-317.71429,961.64431)" + gradientUnits="userSpaceOnUse" + id="linearGradient4646" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="52.481663" + fx="10.139689" + cy="52.481663" + cx="10.139689" + gradientTransform="matrix(1.1111111,1.0790853e-7,-9.8937098e-8,1.1111112,416.73368,360.68702)" + gradientUnits="userSpaceOnUse" + id="radialGradient4124" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient4126" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <linearGradient + y2="-953.79077" + x2="83.600182" + y1="-968.07648" + x1="83.600182" + gradientTransform="matrix(0.71428571,0,0,0.7000008,-317.71429,961.65431)" + gradientUnits="userSpaceOnUse" + id="linearGradient4648" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <linearGradient + y2="-953.79077" + x2="83.600601" + y1="-966.64795" + x1="83.600601" + gradientTransform="matrix(0.71428571,0,0,0.6999972,-317.71429,961.65084)" + gradientUnits="userSpaceOnUse" + id="linearGradient4650" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <linearGradient + y2="-953.79071" + x2="83.600029" + y1="-968.07587" + x1="83.600029" + gradientTransform="matrix(0.71428571,0,0,0.70002659,-317.71429,961.67913)" + gradientUnits="userSpaceOnUse" + id="linearGradient4652" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="52.481644" + fx="10.139699" + cy="52.481644" + cx="10.139699" + gradientTransform="matrix(-1.1111112,3.8696897e-8,3.8696898e-8,1.1111112,385.26633,360.68704)" + gradientUnits="userSpaceOnUse" + id="radialGradient4192" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient4194" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="52.481403" + fx="10.13969" + cy="52.481403" + cx="10.13969" + gradientTransform="matrix(1.1111111,1.6409232e-7,1.7306375e-7,-1.1111112,416.73367,531.31263)" + gradientUnits="userSpaceOnUse" + id="radialGradient4170" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient4172" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="52.481445" + fx="10.139711" + cy="52.481445" + cx="10.139711" + gradientTransform="matrix(-1.1111112,-3.7764946e-7,3.6867801e-7,-1.1111109,385.26634,531.31269)" + gradientUnits="userSpaceOnUse" + id="radialGradient4148" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + <radialGradient + r="1.6470588" + fy="50.291935" + fx="5.3529415" + cy="50.291935" + cx="5.3529415" + gradientUnits="userSpaceOnUse" + id="radialGradient4150" + xlink:href="#linearGradient4465-3" + inkscape:collect="always" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#a1a1a1" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.57647059" + inkscape:pageshadow="2" + inkscape:zoom="1.1115599" + inkscape:cx="277.5379" + inkscape:cy="167.78223" + inkscape:document-units="mm" + inkscape:document-rotation="0" + showgrid="true" + inkscape:window-width="1954" + inkscape:window-height="1236" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:pagecheckerboard="true" + inkscape:snap-bbox="true" + inkscape:current-layer="layer1" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid3300" + color="#3c82ff" + opacity="0.30196078" + empcolor="#3296ff" + empopacity="0.30196078" + empspacing="5" + dotted="false" + originx="0" + originy="0" + spacingx="0.13229167" + spacingy="0.13229167" + snapvisiblegridlinesonly="true" + enabled="true" + visible="true" + units="mm" /> + </sodipodi:namedview> + <metadata + id="metadata2137"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="tooltip-shadow-bottomleft" + transform="matrix(-0.26458333,0,0,-0.26458333,36.516001,348.01288)" + style="fill-rule:evenodd;stroke:none"> + <g + id="g4144"> + <g + id="g4138" + transform="rotate(90,-355.88187,520.57087)" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1"> + <path + id="path4130" + transform="rotate(90,401.0306,78.96954)" + d="m 363,471 c 10e-5,8.07723 4.92288,13 13,13 v -7 a 6,6 0 0 1 -6,-6 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.75;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4148);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 85,565.95312 v 1 a 6,6 0 0 1 6,6 h 1 a 7.0000002,7.0000002 0 0 0 -7,-7 z" + transform="rotate(-90,-212.50675,351.44574)" + id="path4132" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path4134" + d="m 9.0002659,47.938995 a 6,6 0 0 0 -5.9999999,6 h 5.9999999 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#{{surface}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.00100002;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#{{surface}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 85,566.95312 v 1 a 5,5 0 0 1 5,5 h 1 a 6,6 0 0 0 -6,-6 z" + transform="rotate(-90,-212.50675,351.44574)" + id="path4136" + inkscape:connector-curvature="0" /> + </g> + <g + transform="translate(37.749999,747.51375)" + style="display:inline" + id="g4142"> + <g + style="display:inline;fill:url(#radialGradient4150);fill-opacity:1" + transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" + id="g4140" /> + </g> + </g> + </g> + <g + id="g2943" + transform="translate(11.906251,-5.0899878)"> + <g + id="arrow-plus-normal" + transform="matrix(0.26458333,0,0,0.26458333,173.0375,13.821237)"> + <rect + y="-29" + x="-11" + height="14" + width="14" + style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" + id="rect8-1-2-1-3-7-1-2-6-2" /> + <path + id="rect2452-2-9" + style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" + d="m -4,-27 v 4 h -4 v 1 h 4 v 4 h 1 v -4 h 4 v -1 h -4 v -4 z" + sodipodi:nodetypes="ccccccccccccc" /> + </g> + <g + id="arrow-minus-normal" + transform="matrix(0.26458333,0,0,0.26458333,177.53542,18.054571)"> + <rect + id="rect8-1-2-1-3-7-1-1-27" + style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" + width="14" + height="14" + x="-28" + y="-29" /> + <rect + y="-23" + x="-26" + height="1" + width="9" + id="rect2452-9-8-0" + style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.26458333,0,0,0.26458333,177.27083,13.821237)" + id="arrow-plus-focused"> + <rect + id="rect8-1-2-1-3-7-1-2-6-9-3" + style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" + width="14" + height="14" + x="-11" + y="-29" /> + <path + sodipodi:nodetypes="ccccccccccccc" + d="m -4,-27 v 4 h -4 v 1 h 4 v 4 h 1 v -4 h 4 v -1 h -4 v -4 z" + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" + id="rect2452-2-2-6" /> + </g> + <g + transform="matrix(0.26458333,0,0,0.26458333,181.76875,18.054571)" + id="arrow-minus-focused"> + <rect + y="-29" + x="-28" + height="14" + width="14" + style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" + id="rect8-1-2-1-3-7-1-1-2-6" /> + <rect + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" + id="rect2452-9-8-3-2" + width="9" + height="1" + x="-26" + y="-23" /> + </g> + <g + style="opacity:0.3" + id="arrow-plus-disabled" + transform="matrix(0.26458333,0,0,0.26458333,185.7375,13.821237)"> + <rect + y="-29" + x="-11" + height="14" + width="14" + style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" + id="rect8-1-2-1-3-7-1-2-6-9-5-1" /> + <path + id="rect2452-2-2-9-8" + style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" + d="m -4,-27 v 4 h -4 v 1 h 4 v 4 h 1 v -4 h 4 v -1 h -4 v -4 z" + sodipodi:nodetypes="ccccccccccccc" /> + </g> + <g + style="opacity:0.3" + id="arrow-minus-disabled" + transform="matrix(0.26458333,0,0,0.26458333,190.23542,18.054571)"> + <rect + id="rect8-1-2-1-3-7-1-1-2-2-9" + style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" + width="14" + height="14" + x="-28" + y="-29" /> + <rect + y="-23" + x="-26" + height="1" + width="9" + id="rect2452-9-8-3-8-2" + style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" /> + </g> + <g + id="arrow-plus-pressed" + transform="matrix(0.26458333,0,0,0.26458333,181.50417,13.821237)"> + <rect + y="-29" + x="-11" + height="14" + width="14" + style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" + id="rect8-1-2-1-3-7-1-2-6-9-6-2" /> + <path + id="rect2452-2-2-7-3" + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" + d="m -4,-27 v 4 h -4 v 1 h 4 v 4 h 1 v -4 h 4 v -1 h -4 v -4 z" + sodipodi:nodetypes="ccccccccccccc" /> + </g> + <g + id="arrow-minus-pressed" + transform="matrix(0.26458333,0,0,0.26458333,186.00208,18.054571)"> + <rect + id="rect8-1-2-1-3-7-1-1-2-3-5" + style="opacity:0.003;fill:#010102;fill-opacity:1;stroke:none;stroke-width:0.636364;stroke-opacity:1" + width="14" + height="14" + x="-28" + y="-29" /> + <rect + y="-23" + x="-26" + height="1" + width="9" + id="rect2452-9-8-3-5-9" + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" /> + </g> + </g> + <g + id="g2800"> + <path + id="mdi-minimize-focused" + style="fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-opacity:1" + d="m 161.925,7.7358207 a 1.5875,1.5875 0 0 0 -1.5875,1.5875 1.5875,1.5875 0 0 0 1.5875,1.5875003 1.5875,1.5875 0 0 0 1.5875,-1.5875003 1.5875,1.5875 0 0 0 -1.5875,-1.5875 z m -0.78031,0.962215 0.51573,0.515731 0.26458,0.264584 0.26458,-0.264584 0.51573,-0.515731 0.18707,0.187069 -0.7028,0.702799 -0.26458,0.264583 -0.26458,-0.264583 -0.7028,-0.702799 z" /> + <g + id="mdi-minimize-normal" + transform="matrix(0.26458333,0,0,0.26458333,97.631251,12.498321)"> + <rect + style="opacity:0.003;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" + id="rect2819-9-8-9" + width="12" + height="12" + x="-249" + y="32" + transform="scale(-1)" /> + <path + d="M 240.05078,-40.363281 239.34375,-39.65625 242,-37 l 1,1 1,-1 2.65625,-2.65625 -0.70703,-0.707031 -1.94922,1.949219 -1,1 -1,-1 z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" + id="rect3157" /> + </g> + <g + id="mdi-maximize-normal" + transform="matrix(0.26458333,0,0,0.26458333,98.160417,12.498321)"> + <rect + y="-44" + x="223" + height="12" + width="12" + id="rect2819-9-6" + style="opacity:0.003;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" /> + <path + d="m 229,-41 -1,1 -2.65625,2.65625 0.70703,0.707031 1.94922,-1.949219 1,-1 1,1 1.94922,1.949219 0.70703,-0.707031 L 230,-40 Z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" + id="rect3151" /> + </g> + <g + id="mdi-restore-normal" + transform="matrix(0.26458333,0,0,0.26458333,108.21458,13.292071)"> + <rect + style="opacity:0.003;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" + id="rect3196-2" + width="12" + height="12" + x="209" + y="-47" /> + <path + d="m 215,-44.652344 -3.65625,3.65625 3.65625,3.658203 3.65625,-3.658203 z m 0,1.414063 2.24219,2.242187 -2.24219,2.244141 -2.24219,-2.244141 z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" + id="rect3173-1-9" + sodipodi:nodetypes="cccccccccc" /> + </g> + <g + id="mdi-menu-normal" + transform="matrix(0.26458333,0,0,0.26458333,93.927084,12.762904)"> + <rect + y="-45" + x="275" + height="12" + width="12" + id="rect3196-2-9-8" + style="opacity:0.003;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5;stroke-opacity:1" /> + <path + d="m 277.5,-43 v 1 h 7 v -1 z m 0,3 v 1 h 7 v -1 z m 0,3 v 1 h 7 v -1 z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:4.67707;stroke-opacity:1" + id="rect3261" /> + </g> + <path + style="fill:#da4453;fill-opacity:1;stroke-width:0.264583" + d="m 155.575,7.7358207 a 1.5875,1.5875 0 0 0 -1.5875,1.5875 1.5875,1.5875 0 0 0 1.5875,1.5875003 1.5875,1.5875 0 0 0 1.5875,-1.5875003 1.5875,1.5875 0 0 0 -1.5875,-1.5875 z m -0.60668,0.79375 0.60668,0.606681 0.60668,-0.606681 0.18707,0.187068 -0.60668,0.606682 0.60668,0.606681 -0.18707,0.1870693 -0.60668,-0.6066823 -0.60668,0.6066823 -0.18707,-0.1870693 0.60668,-0.606681 -0.60668,-0.606682 z" + id="mdi-close-focused" /> + <path + sodipodi:nodetypes="sssssccccccccccc" + d="m 158.75,7.7358207 c -0.87675,0 -1.5875,0.710747 -1.5875,1.5875 0,0.8767523 0.71075,1.5875003 1.5875,1.5875003 0.87675,0 1.5875,-0.710748 1.5875,-1.5875003 0,-0.876753 -0.71075,-1.5875 -1.5875,-1.5875 z m 0,0.79375 0.26458,0.264583 0.7028,0.7028 -0.18707,0.187068 -0.51573,-0.515731 -0.26458,-0.264584 -0.26458,0.264584 -0.51573,0.515731 -0.18707,-0.187068 0.7028,-0.7028 z" + style="fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-opacity:1" + id="mdi-maximize-focused" /> + <path + id="mdi-restore-focused" + style="fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-opacity:1" + d="m 165.1,7.7358207 a 1.5875,1.5875 0 0 0 -1.5875,1.5875 1.5875,1.5875 0 0 0 1.5875,1.5875003 1.5875,1.5875 0 0 0 1.5875,-1.5875003 1.5875,1.5875 0 0 0 -1.5875,-1.5875 z m 0,0.621151 0.96738,0.967383 L 165.1,10.292254 164.13262,9.3243547 Z m 0,0.374137 -0.59325,0.593246 0.59325,0.593762 0.59325,-0.593762 z" /> + <use + style="opacity:0.5" + height="100%" + width="100%" + transform="translate(3.0654166e-6,3.4395837)" + id="mdi-minimize-pressed" + xlink:href="#mdi-minimize-focused" + y="0" + x="0" /> + <use + style="opacity:0.5" + height="100%" + width="100%" + transform="translate(3.0654166e-6,3.4395837)" + id="mdi-close-pressed" + xlink:href="#mdi-close-focused" + y="0" + x="0" /> + <use + style="opacity:0.5" + height="100%" + width="100%" + transform="translate(3.0654166e-6,3.4395837)" + id="mdi-maximize-pressed" + xlink:href="#mdi-maximize-focused" + y="0" + x="0" /> + <use + style="opacity:0.5" + height="100%" + width="100%" + transform="translate(3.0654166e-6,3.4395837)" + id="mdi-restore-pressed" + xlink:href="#mdi-restore-focused" + y="0" + x="0" /> + <use + style="opacity:0.3" + height="100%" + width="100%" + transform="translate(3.0654166e-6,3.1749997)" + id="mdi-minimize-disabled" + xlink:href="#mdi-minimize-normal" + y="0" + x="0" /> + <use + style="opacity:0.3" + height="100%" + width="100%" + transform="translate(3.0654166e-6,3.1749997)" + id="mdi-maximize-disabled" + xlink:href="#mdi-maximize-normal" + y="0" + x="0" /> + <use + style="opacity:0.3" + height="100%" + width="100%" + transform="translate(-3.0654166e-6,3.1749993)" + id="mdi-close-disabled" + xlink:href="#mdi-close-normal" + y="0" + x="0" /> + <use + style="opacity:0.3" + height="100%" + width="100%" + transform="translate(3.0654166e-6,3.1749997)" + id="mdi-restore-disabled" + xlink:href="#mdi-restore-normal" + y="0" + x="0" /> + <path + style="fill:#fcfcfc;fill-opacity:1;stroke-width:0.264583" + d="m 155.575,0.85665365 a 1.5875,1.5875 0 0 0 -1.5875,1.58750005 1.5875,1.5875 0 0 0 1.5875,1.5875 1.5875,1.5875 0 0 0 1.5875,-1.5875 1.5875,1.5875 0 0 0 -1.5875,-1.58750005 z m -0.60668,0.79375005 0.60668,0.606682 0.60668,-0.606682 0.18707,0.187069 -0.60668,0.606681 0.60668,0.606682 -0.18707,0.187068 -0.60668,-0.606681 -0.60668,0.606681 -0.18707,-0.187068 0.60668,-0.606682 -0.60668,-0.606681 z" + id="mdi-close-normal" /> + </g> + <g + id="g2879" + transform="translate(0.34078094,-4.0449502)"> + <use + height="100%" + width="100%" + transform="translate(7.4083369)" + id="arrow-up-pressed" + xlink:href="#arrow-up-normal" + y="0" + x="0" /> + <use + height="100%" + width="100%" + transform="translate(7.4083369)" + id="arrow-down-pressed" + xlink:href="#arrow-down-normal" + y="0" + x="0" /> + <use + height="100%" + width="100%" + transform="translate(7.4083369)" + id="arrow-right-pressed" + xlink:href="#arrow-right-normal" + y="0" + x="0" /> + <use + height="100%" + width="100%" + transform="translate(7.4083369)" + id="arrow-left-pressed" + xlink:href="#arrow-left-normal" + y="0" + x="0" /> + <use + style="opacity:0.3" + height="100%" + width="100%" + transform="translate(11.112497)" + id="arrow-up-disabled" + xlink:href="#arrow-up-normal" + y="0" + x="0" /> + <use + style="opacity:0.3" + height="100%" + width="100%" + transform="translate(11.112497)" + id="arrow-down-disabled" + xlink:href="#arrow-down-normal" + y="0" + x="0" /> + <use + style="opacity:0.3" + height="100%" + width="100%" + transform="translate(11.112497)" + id="arrow-right-disabled" + xlink:href="#arrow-right-normal" + y="0" + x="0" /> + <use + style="opacity:0.3" + height="100%" + width="100%" + transform="translate(11.112497)" + id="arrow-left-disabled" + xlink:href="#arrow-left-normal" + y="0" + x="0" /> + <g + style="enable-background:new" + transform="matrix(-0.26458333,0,0,-0.26458333,186.00208,19.377487)" + id="arrow-up-normal"> + <rect + id="rect4266-5" + width="14" + height="14" + x="4" + y="4" + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-3" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + id="arrow-down-normal" + transform="matrix(0.26458333,0,0,0.26458333,180.18125,17.260821)" + style="enable-background:new"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="4" + x="4" + height="14" + width="14" + id="rect4266-5-7" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + id="rect909-7-3-7-3-5-2-0-3-3" /> + </g> + <g + id="arrow-left-normal" + transform="matrix(0,0.26458333,-0.26458333,0,186.00208,20.964988)" + style="enable-background:new"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="4" + x="4" + height="14" + width="14" + id="rect4266-5-6" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + id="rect909-7-3-7-3-5-2-0-3-9" /> + </g> + <g + transform="matrix(0,-0.26458333,0.26458333,0,180.18125,30.489987)" + id="arrow-right-normal"> + <rect + id="rect4266-5-7-8" + width="14" + height="14" + x="4" + y="4" + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-3-3-2" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + style="enable-background:new" + transform="matrix(0.26458333,0,0,0.26458333,183.88542,17.260821)" + id="arrow-down-focused"> + <rect + id="rect4266-5-7-1" + width="14" + height="14" + x="4" + y="4" + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-3-3-1" + style="opacity:1;fill:#{{primary}};fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + id="arrow-up-focused" + transform="matrix(-0.26458333,0,0,-0.26458333,189.70625,19.377487)" + style="enable-background:new"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="4" + x="4" + height="14" + width="14" + id="rect4266-5-9" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + style="opacity:1;fill:#{{primary}};fill-opacity:1" + id="rect909-7-3-7-3-5-2-0-3-4" /> + </g> + <g + style="enable-background:new" + transform="matrix(0,0.26458333,-0.26458333,0,189.70625,20.964988)" + id="arrow-left-focused"> + <rect + id="rect4266-5-6-8" + width="14" + height="14" + x="4" + y="4" + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-3-9-2" + style="opacity:1;fill:#{{primary}};fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + id="arrow-right-focused" + transform="matrix(0,-0.26458333,0.26458333,0,183.88542,30.489987)"> + <rect + style="opacity:0.00100002;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="4" + x="4" + height="14" + width="14" + id="rect4266-5-7-8-0" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + style="opacity:1;fill:#{{primary}};fill-opacity:1" + id="rect909-7-3-7-3-5-2-0-3-3-2-1" /> + </g> + </g> + <g + id="g2917"> + <g + style="enable-background:new" + transform="matrix(0,-0.26458333,0.26458333,0,197.64376,10.117071)" + id="tree-plus-normal"> + <rect + id="rect4266-0" + width="12" + height="12" + x="5" + y="5" + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-6" + style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke-width:0.957427" + d="M 16,11.666666 15.312499,11 10.500001,15.666665 5.6875008,11 5,11.666668 10.500001,17 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + id="tree-plus-focused" + transform="matrix(0,-0.26458333,0.26458333,0,201.08334,10.117071)" + style="enable-background:new"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="5" + x="5" + height="12" + width="12" + id="rect4266-0-1" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16,11.666666 15.312499,11 10.500001,15.666665 5.6875008,11 5,11.666668 10.500001,17 Z" + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke-width:0.957427" + id="rect909-7-3-7-3-5-2-0-6-1" /> + </g> + <g + id="tree-plus-disabled" + transform="matrix(0,-0.26458333,0.26458333,0,204.52292,10.117071)" + style="opacity:0.3;enable-background:new"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="5" + x="5" + height="12" + width="12" + id="rect4266-0-0" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16,11.666666 15.312499,11 10.500001,15.666665 5.6875008,11 5,11.666668 10.500001,17 Z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke-width:0.957427" + id="rect909-7-3-7-3-5-2-0-6-12" /> + </g> + <g + transform="matrix(0,-0.26458333,0.26458333,0,196.85001,14.350404)" + style="enable-background:new" + id="tree-minus-normal"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="8" + x="7" + height="12" + width="12" + id="rect4266-0-3" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 12.833334,19.5 13.5,18.812499 8.833335,14.000001 13.5,9.1875008 12.833332,8.5 7.5,14.000001 Z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke-width:0.957427" + id="rect909-7-3-7-3-5-2-0-6-8" /> + </g> + <g + style="enable-background:new" + transform="matrix(0,-0.26458333,0.26458333,0,200.28959,14.350404)" + id="tree-minus-focused"> + <rect + id="rect4266-0-3-1" + width="12" + height="12" + x="7" + y="8" + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-6-8-7" + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke-width:0.957427" + d="M 12.833334,19.5 13.5,18.812499 8.833335,14.000001 13.5,9.1875008 12.833332,8.5 7.5,14.000001 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + id="tree-minus-disabled" + transform="matrix(0,-0.26458333,0.26458333,0,203.72917,14.350404)" + style="opacity:0.3;enable-background:new"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.09091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="8" + x="7" + height="12" + width="12" + id="rect4266-0-3-1-0" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 12.833334,19.5 13.5,18.812499 8.833335,14.000001 13.5,9.1875008 12.833332,8.5 7.5,14.000001 Z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke-width:0.957427" + id="rect909-7-3-7-3-5-2-0-6-8-7-6" /> + </g> + <g + id="carrow-plus-normal" + transform="matrix(-0.26458333,0,0,-0.26458333,203.2,19.112904)" + style="enable-background:new"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="4" + x="4" + height="14" + width="14" + id="rect4266-5-93" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + id="rect909-7-3-7-3-5-2-0-3-42" /> + </g> + <g + style="enable-background:new" + transform="matrix(0.26458333,0,0,0.26458333,197.37917,16.996237)" + id="carrow-minus-normal"> + <rect + id="rect4266-5-7-19" + width="14" + height="14" + x="4" + y="4" + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-3-3-22" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + id="carrow-minus-focused" + transform="matrix(0.26458333,0,0,0.26458333,201.08333,16.996237)" + style="enable-background:new"> + <rect + style="opacity:0.00100002;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="4" + x="4" + height="14" + width="14" + id="rect4266-5-7-1-1" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + style="opacity:1;fill:#{{primary}};fill-opacity:1" + id="rect909-7-3-7-3-5-2-0-3-3-1-4" /> + </g> + <g + style="enable-background:new" + transform="matrix(-0.26458333,0,0,-0.26458333,206.90417,19.112904)" + id="carrow-plus-focused"> + <rect + id="rect4266-5-9-3" + width="14" + height="14" + x="4" + y="4" + style="opacity:0.00100002;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-3-4-4" + style="opacity:1;fill:#{{primary}};fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + style="opacity:0.3;enable-background:new" + transform="matrix(-0.26458333,0,0,-0.26458333,210.60833,19.112904)" + id="carrow-plus-disabled"> + <rect + id="rect4266-5-93-0" + width="14" + height="14" + x="4" + y="4" + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-3-42-3" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + id="carrow-minus-disabled" + transform="matrix(0.26458333,0,0,0.26458333,204.7875,16.996237)" + style="opacity:0.3;enable-background:new"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="4" + x="4" + height="14" + width="14" + id="rect4266-5-7-19-1" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + id="rect909-7-3-7-3-5-2-0-3-3-22-0" /> + </g> + </g> + <g + id="g2954" + transform="translate(2.116672,-1.8520835)"> + <g + id="splitter-grip-pressed" + transform="matrix(0.26458333,0,0,0.26458333,108.47916,-37.041666)"> + <rect + ry="0" + y="150" + x="153" + height="32" + width="6" + id="rect2011" + style="opacity:0.003;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:4.33011" + rx="0" /> + <rect + style="opacity:0.90000002;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:2.5" + id="rect2009" + width="2" + height="32" + x="155" + y="150" + ry="1" /> + </g> + <g + transform="matrix(0.26458333,0,0,0.26458333,104.51041,-37.041666)" + id="splitter-grip-normal"> + <rect + rx="0" + style="opacity:0.003;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:4.33011" + id="rect2011-0" + width="6" + height="32" + x="153" + y="150" + ry="0" /> + <rect + ry="1" + y="150" + x="155" + height="32" + width="2" + id="rect2009-2" + style="opacity:0.4;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:2.5" /> + </g> + <g + transform="matrix(0.26458333,0,0,0.26458333,106.62708,-37.041666)" + id="splitter-grip-focused"> + <rect + rx="0" + style="opacity:0.003;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:4.33011" + id="rect2044" + width="6" + height="32" + x="153" + y="150" + ry="0" /> + <rect + ry="1" + y="150" + x="155" + height="32" + width="2" + id="rect2046" + style="opacity:0.90000002;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:2.5" /> + </g> + </g> + <g + id="g2838"> + <g + id="dock-close" + transform="matrix(0.26458333,0,0,0.26458333,102.3047,-112.39447)"> + <rect + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:0.059091;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4614" + width="13.000015" + height="12.999986" + x="271.53571" + y="438.79803" /> + <g + id="g4631"> + <rect + ry="2.0000045" + y="440.798" + x="273.53571" + height="8.9999943" + width="8.9999857" + id="rect4577-9-1" + style="opacity:0.003;fill:#da4453;fill-opacity:1;stroke:none;stroke-width:1.25001" /> + <path + id="rect4622" + style="color:#eff0f1;opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:0.139615;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 275.53575,442.79801 v 0.88379 l 1.61622,1.61622 -1.61622,1.61621 v 0.88379 h 0.88379 l 1.61621,-1.61622 1.61622,1.61622 h 0.88379 v -0.88379 l -1.61622,-1.61621 1.61622,-1.61622 v -0.88379 h -0.88379 l -1.61622,1.61622 -1.61621,-1.61622 z" /> + </g> + </g> + <g + transform="matrix(0.26458333,0,0,0.26458333,102.30471,-116.09864)" + id="dock-restore"> + <rect + y="438.79803" + x="271.53571" + height="12.999986" + width="13.000015" + id="rect4614-0" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:0.059091;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <g + id="g4631-4"> + <rect + style="opacity:0.003;fill:#da4453;fill-opacity:1;stroke:none;stroke-width:1.25001" + id="rect4577-9-1-6" + width="8.9999857" + height="8.9999943" + x="273.53571" + y="440.798" + ry="2.0000045" /> + <path + transform="translate(10.53575,227.79801)" + d="m 267,215 -2,2 v 1 l 2,2 h 1 l 2,-2 v -1 l -2,-2 z m 0.19922,1 h 0.60156 L 269,217.19922 v 0.60156 L 267.80078,219 h -0.60156 L 266,217.80078 v -0.60156 z" + style="color:#eff0f1;opacity:1;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:0.139615;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4622-2" /> + </g> + </g> + </g> + <g + id="g2845" + transform="translate(-35.983345,-0.7940083)"> + <g + id="g1438"> + <path + style="opacity:0.4;fill:#fcfcfc;fill-opacity:1;stroke-width:0.264583" + d="m 189.51947,19.31484 a 2.1166666,2.1166666 0 0 0 -2.11667,-2.11667 2.1166666,2.1166666 0 0 0 -2.11667,2.11667 2.1166666,2.1166666 0 0 0 2.11667,2.11666 2.1166666,2.1166666 0 0 0 2.11667,-2.11666 m -1.05834,-0.87128 -0.87153,0.87128 0.87127,0.87127 -0.18706,0.18706 -0.87128,-0.87127 -0.87127,0.87127 -0.18706,-0.18706 0.87128,-0.87127 -0.87128,-0.87128 0.18706,-0.18706 0.87127,0.87128 0.87128,-0.87128 0.18706,0.18706" + id="tab-close-normal" /> + <path + id="tab-close-focused" + d="m 193.7528,19.31484 a 2.1166666,2.1166666 0 0 0 -2.11667,-2.11667 2.1166666,2.1166666 0 0 0 -2.11666,2.11667 2.1166666,2.1166666 0 0 0 2.11666,2.11666 2.1166666,2.1166666 0 0 0 2.11667,-2.11666 m -1.05833,-0.87128 -0.87154,0.87128 0.87127,0.87127 -0.18706,0.18706 -0.87127,-0.87127 -0.87127,0.87127 -0.18707,-0.18706 0.87128,-0.87127 -0.87128,-0.87128 0.18707,-0.18706 0.87127,0.87128 0.87127,-0.87128 0.18706,0.18706" + style="opacity:0.75;fill:#da4453;fill-opacity:1;stroke-width:0.264583" /> + <path + id="tab-close-pressed" + d="m 197.98613,19.31484 a 2.1166666,2.1166666 0 0 0 -2.11666,-2.11667 2.1166666,2.1166666 0 0 0 -2.11667,2.11667 2.1166666,2.1166666 0 0 0 2.11667,2.11666 2.1166666,2.1166666 0 0 0 2.11666,-2.11666 m -1.05833,-0.87128 -0.87154,0.87128 0.87127,0.87127 -0.18706,0.18706 -0.87127,-0.87127 -0.87127,0.87127 -0.18706,-0.18706 0.87127,-0.87127 -0.87127,-0.87128 0.18706,-0.18706 0.87127,0.87128 0.87127,-0.87128 0.18706,0.18706" + style="opacity:0.3;fill:#da4453;fill-opacity:1;stroke-width:0.264583" /> + <path + id="tab-close-toggled" + d="m 202.21947,19.31484 a 2.1166666,2.1166666 0 0 0 -2.11667,-2.11667 2.1166666,2.1166666 0 0 0 -2.11667,2.11667 2.1166666,2.1166666 0 0 0 2.11667,2.11666 2.1166666,2.1166666 0 0 0 2.11667,-2.11666 m -1.05834,-0.87128 -0.87153,0.87128 0.87127,0.87127 -0.18706,0.18706 -0.87127,-0.87127 -0.87128,0.87127 -0.18706,-0.18706 0.87127,-0.87127 -0.87127,-0.87128 0.18706,-0.18706 0.87128,0.87128 0.87127,-0.87128 0.18706,0.18706" + style="fill:#da4453;fill-opacity:1;stroke-width:0.264583" /> + <path + id="tab-close-disabled" + d="m 206.4528,19.31484 a 2.1166666,2.1166666 0 0 0 -2.11667,-2.11667 2.1166666,2.1166666 0 0 0 -2.11666,2.11667 2.1166666,2.1166666 0 0 0 2.11666,2.11666 2.1166666,2.1166666 0 0 0 2.11667,-2.11666 m -1.05833,-0.87128 -0.87154,0.87128 0.87127,0.87127 -0.18706,0.18706 -0.87127,-0.87127 -0.87127,0.87127 -0.18706,-0.18706 0.87127,-0.87127 -0.87127,-0.87128 0.18706,-0.18706 0.87127,0.87128 0.87127,-0.87128 0.18706,0.18706" + style="opacity:0.15;fill:#fcfcfc;fill-opacity:1;stroke-width:0.264583" /> + </g> + </g> + <g + id="g2730" + transform="translate(0,11.641668)"> + <g + id="slidercursor-normal" + transform="matrix(0.26458333,0,0,0.26458333,127.26449,51.064586)"> + <rect + y="-19" + x="269" + height="20" + width="20" + id="rect9106" + style="opacity:0.003;fill:#000000;fill-opacity:1" /> + <path + id="path3924" + style="opacity:0.3;fill:#b2b3b4;fill-opacity:0.80000001;stroke-width:2.25" + d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z" + sodipodi:nodetypes="ssssss" /> + <circle + style="fill:#{{base}};fill-opacity:1;stroke-width:2" + r="8" + cy="-8.9999733" + cx="279" + id="circle2383" /> + </g> + <g + transform="matrix(0.26458333,0,0,0.26458333,127.26449,45.772916)" + id="slidercursor-focused"> + <rect + style="opacity:0.003;fill:#000000;fill-opacity:1" + id="rect9116" + width="20" + height="20" + x="269" + y="-19" /> + <path + d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z m 0.01,1 a 7.9999998,7.9999998 0 0 1 8,8 7.9999998,7.9999998 0 0 1 -8,8 7.9999998,7.9999998 0 0 1 -8,-8 7.9999998,7.9999998 0 0 1 8,-8 z" + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke-width:2.25" + id="path9118" /> + <circle + id="circle9120" + cx="279" + cy="-8.9999733" + r="8" + style="fill:#{{base}};fill-opacity:1;stroke-width:2" /> + </g> + <g + id="slidercursor-pressed" + transform="matrix(0.26458333,0,0,0.26458333,127.26449,40.481249)"> + <rect + y="-19" + x="269" + height="20" + width="20" + id="rect9128" + style="opacity:0.003;fill:#000000;fill-opacity:1" /> + <path + id="path9130" + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke-width:2.25" + d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z m 0.01,1 a 7.9999998,7.9999998 0 0 1 8,8 7.9999998,7.9999998 0 0 1 -8,8 7.9999998,7.9999998 0 0 1 -8,-8 7.9999998,7.9999998 0 0 1 8,-8 z" /> + <circle + style="fill:#{{base}};fill-opacity:1;stroke-width:2" + r="8" + cy="-8.9999733" + cx="279" + id="circle9132" /> + </g> + <g + transform="matrix(0.26458333,0,0,0.26458333,127.26449,34.925)" + id="slidercursor-disabled"> + <rect + style="opacity:0.003;fill:#000000;fill-opacity:1" + id="rect9106-2" + width="20" + height="20" + x="269" + y="-19" /> + <path + d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z m 0.01,1 a 7.9999998,7.9999998 0 0 1 8,8 7.9999998,7.9999998 0 0 1 -8,8 7.9999998,7.9999998 0 0 1 -8,-8 7.9999998,7.9999998 0 0 1 8,-8 z" + style="opacity:0.15;fill:#b2b3b4;fill-opacity:0.80000001;stroke-width:2.25" + id="path3924-3" /> + <circle + id="circle2383-0" + cx="279" + cy="-8.9999733" + r="8" + style="fill:#{{base}};fill-opacity:1;stroke-width:2" /> + </g> + </g> + <g + id="g2826" + transform="translate(19.830454,-9.2737129)"> + <g + style="enable-background:new" + transform="matrix(0,-0.26458333,0.26458333,0,151.27875,26.722918)" + id="menuitem-right-normal"> + <rect + id="rect4266-3" + width="14" + height="14" + x="4" + y="4" + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-8" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + id="menuitem-up-normal" + transform="matrix(-0.26458333,0,0,-0.26458333,157.09959,23.018752)" + style="enable-background:new"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="4" + x="4" + height="14" + width="14" + id="rect4266-3-8" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + id="rect909-7-3-7-3-5-2-0-8-7" /> + </g> + <g + id="menuitem-down-normal" + transform="matrix(0.26458333,0,0,0.26458333,151.27875,24.606251)" + style="enable-background:new"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="4" + x="4" + height="14" + width="14" + id="rect4266-3-9" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + id="rect909-7-3-7-3-5-2-0-8-9" /> + </g> + <g + style="enable-background:new" + transform="matrix(0,0.26458333,-0.26458333,0,157.09959,28.310418)" + id="menuitem-left-normal"> + <rect + id="rect4266-3-9-1" + width="14" + height="14" + x="4" + y="4" + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-8-9-0" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + id="menuitem-right-focused" + transform="matrix(0,-0.26458333,0.26458333,0,155.24751,26.722916)" + style="enable-background:new"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="4" + x="4" + height="14" + width="14" + id="rect4266-3-5" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + id="rect909-7-3-7-3-5-2-0-8-8" /> + </g> + <g + style="enable-background:new" + transform="matrix(-0.26458333,0,0,-0.26458333,161.06834,23.018752)" + id="menuitem-up-focused"> + <rect + id="rect4266-3-8-9" + width="14" + height="14" + x="4" + y="4" + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-8-7-3" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + <path + id="path4150" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + style="enable-background:new" + transform="matrix(0.26458333,0,0,0.26458333,155.24751,24.606251)" + id="menuitem-down-focused"> + <rect + id="rect4266-3-9-0" + width="14" + height="14" + x="4" + y="4" + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="rect909-7-3-7-3-5-2-0-8-9-1" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + <path + id="path4152" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + sodipodi:nodetypes="ccccccc" + class="ColorScheme-Text" /> + </g> + <g + id="menuitem-left-focused" + transform="matrix(0,0.26458333,-0.26458333,0,161.06834,28.310415)" + style="enable-background:new"> + <rect + style="opacity:0.00100002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + y="4" + x="4" + height="14" + width="14" + id="rect4266-3-9-1-2" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="M 16.656853,8.995106 15.949745,8.288 10.999999,13.237745 6.05025,8.288 5.3431422,8.995108 10.999999,14.65196 Z" + style="opacity:1;fill:#fcfcfc;fill-opacity:1" + id="rect909-7-3-7-3-5-2-0-8-9-0-9" /> + </g> + </g> + <g + id="button-default-indicator" + transform="matrix(0.26458333,0,0,0.26458333,133.28386,24.804689)"> + <rect + style="opacity:0;fill:#7b7b7b" + id="rect139" + width="25" + height="25" + x="375" + y="87.5" /> + <path + style="opacity:0.00100002" + id="path141" + d="m 396.25,86.25 -17.5,17.5 h 17.5 z" /> + </g> + <g + id="focus-left" + transform="matrix(0.25190394,0,0,0.26458333,194.29541,17.594793)" + style="opacity:0;stroke-width:1.02486"> + <path + inkscape:connector-curvature="0" + style="opacity:0.19;fill:#ffffff;stroke-width:1.02486" + id="path1484-6" + d="m 183,121 v 10 h 2 v -10 z" /> + </g> + <g + id="focus-right" + transform="matrix(0.25190394,0,0,0.26458333,193.7916,17.594793)" + style="opacity:0;stroke-width:1.02486"> + <path + inkscape:connector-curvature="0" + style="opacity:0.19;fill:#ffffff;stroke-width:1.02486" + id="path1487" + d="m 197,121 v 10 h 2 v -10 z" /> + </g> + <g + id="focus-top" + transform="matrix(0.25190394,0,0,0.26458333,194.04351,17.859376)" + style="opacity:0;stroke-width:1.02486"> + <path + inkscape:connector-curvature="0" + style="opacity:0.19;fill:#ffffff;stroke-width:1.02486" + id="path1490-7" + d="m 186,118 v 2 h 10 v -2 z" /> + </g> + <g + id="focus-bottom" + transform="matrix(0.25190394,0,0,0.26458333,194.04351,17.330209)" + style="opacity:0.200224;stroke-width:1.02486"> + <path + inkscape:connector-curvature="0" + style="opacity:0.7;fill:#{{primary}};fill-opacity:1;stroke-width:1.02486" + id="path1493-5" + d="m 186,132 v 2 h 10 v -2 z" /> + </g> + <path + inkscape:connector-curvature="0" + id="focus-bottomleft" + d="m 240.39383,52.255209 h 0.50381 v 0.529167 c -0.50381,0 -0.50381,-0.529167 -0.50381,-0.529167 z" + style="opacity:0.200224;fill:#{{primary}};fill-opacity:1;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="focus-bottomright" + d="m 243.92049,52.255209 h -0.50381 v 0.529167 c 0.50381,0 0.50381,-0.529167 0.50381,-0.529167 z" + style="opacity:0.200224;fill:#{{primary}};fill-opacity:1;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="focus-topleft" + d="m 240.39383,49.609376 h 0.50381 V 49.08021 c -0.50381,0 -0.50381,0.529166 -0.50381,0.529166 z" + style="opacity:0;fill:#ffffff;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="focus-topright" + d="m 243.92049,49.609376 h -0.50381 V 49.08021 c 0.50381,0 0.50381,0.529166 0.50381,0.529166 z" + style="opacity:0;fill:#ffffff;stroke-width:0.264583" /> + <g + id="g2773" + transform="translate(0,11.641668)"> + <path + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="slider-toggled-topleft" + d="m 187.85417,38.76138 c -1.75895,0 -3.175,1.41605 -3.175,3.175 h 3.175 z" /> + <path + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="slider-toggled-left" + d="m 184.67917,41.93638 v 4.340833 0.02487 h 3.175 v -4.365625 h -3.175 z" /> + <path + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="slider-toggled-topright" + d="m 187.85417,38.76138 c 1.75895,0 3.175,1.41605 3.175,3.175 h -3.175 z" /> + <path + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="slider-toggled-right" + d="m 187.85417,41.93638 v 4.340833 0.02487 h 3.175 v -4.365625 h -3.175 z" /> + <use + width="450" + x="0" + y="0" + height="1230" + xlink:href="#slider-toggled-topleft" + id="slider-toggled-bottomleft" + transform="matrix(1,0,0,-1,5.6666662e-7,88.238489)" + style="fill:#{{primary}}" /> + <use + width="450" + x="0" + y="0" + height="1230" + xlink:href="#slider-toggled-topright" + id="slider-toggled-bottomright" + transform="matrix(1,0,0,-1,5.6666662e-7,88.238489)" + style="fill:#{{primary}}" /> + <path + style="fill:#b3b3b5;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" + id="slider-normal-left" + d="m 177.27083,41.804087 v 4.340833 0.02487 h 3.175 v -4.365625 h -3.175 z" /> + <path + style="fill:#b3b3b5;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" + id="slider-normal-right" + d="m 180.44583,41.804087 v 4.340833 0.02487 h 3.175 v -4.365625 h -3.175 z" /> + <path + style="fill:#b3b3b5;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" + id="slider-normal-bottomleft" + d="m 180.44583,49.344816 c -1.75895,0 -3.175,-1.41605 -3.175,-3.175 h 3.175 z" /> + <path + style="fill:#b3b3b5;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" + id="slider-normal-bottomright" + d="m 180.44583,49.344816 c 1.75895,0 3.175,-1.41605 3.175,-3.175 h -3.175 z" /> + <path + style="fill:#b3b3b5;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" + id="slider-normal-topright" + d="m 183.62083,41.804165 c 0,-1.75895 -1.41605,-3.175 -3.175,-3.175 v 3.175 z" /> + <path + style="fill:#b3b3b5;fill-opacity:0.49803922;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" + id="slider-normal-topleft" + d="m 180.44583,38.629165 c -1.75895,0 -3.175,1.41605 -3.175,3.175 h 3.175 z" /> + </g> + <g + id="g2751" + transform="translate(0,11.641668)"> + <g + id="slidercursor-tickless-normal" + transform="matrix(0.26458333,0,0,0.26458333,133.88175,51.064587)"> + <rect + y="-19" + x="269" + height="20" + width="20" + id="rect9106-6" + style="opacity:0.003;fill:#000000;fill-opacity:1" /> + <path + id="path3924-2" + style="opacity:0.3;fill:#b2b3b4;fill-opacity:0.80000001;stroke-width:2.25" + d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z" + sodipodi:nodetypes="ssssss" /> + <circle + style="fill:#{{base}};fill-opacity:1;stroke-width:2" + r="8" + cy="-8.9999733" + cx="279" + id="circle2383-6" /> + </g> + <g + transform="matrix(0.26458333,0,0,0.26458333,133.88175,45.772917)" + id="slidercursor-tickless-focused"> + <rect + style="opacity:0.003;fill:#000000;fill-opacity:1" + id="rect9116-9" + width="20" + height="20" + x="269" + y="-19" /> + <path + d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z m 0.01,1 a 7.9999998,7.9999998 0 0 1 8,8 7.9999998,7.9999998 0 0 1 -8,8 7.9999998,7.9999998 0 0 1 -8,-8 7.9999998,7.9999998 0 0 1 8,-8 z" + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke-width:2.25" + id="path9118-2" /> + <circle + id="circle9120-0" + cx="279" + cy="-8.9999733" + r="8" + style="fill:#{{base}};fill-opacity:1;stroke-width:2" /> + </g> + <g + id="slidercursor-tickless-pressed" + transform="matrix(0.26458333,0,0,0.26458333,133.88175,40.48125)"> + <rect + y="-19" + x="269" + height="20" + width="20" + id="rect9128-7" + style="opacity:0.003;fill:#000000;fill-opacity:1" /> + <path + id="path9130-5" + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke-width:2.25" + d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z m 0.01,1 a 7.9999998,7.9999998 0 0 1 8,8 7.9999998,7.9999998 0 0 1 -8,8 7.9999998,7.9999998 0 0 1 -8,-8 7.9999998,7.9999998 0 0 1 8,-8 z" /> + <circle + style="fill:#{{base}};fill-opacity:1;stroke-width:2" + r="8" + cy="-8.9999733" + cx="279" + id="circle9132-9" /> + </g> + <g + transform="matrix(0.26458333,0,0,0.26458333,133.88175,34.925001)" + id="slidercursor-tickless-disabled"> + <rect + style="opacity:0.003;fill:#000000;fill-opacity:1" + id="rect9106-2-2" + width="20" + height="20" + x="269" + y="-19" /> + <path + d="M 278.99023,-18 C 274.02349,-17.995 270,-13.96675 270,-9 c 0,4.97056 4.02944,9 9,9 4.97056,0 9,-4.02944 9,-9 0,-4.97056 -4.02944,-9 -9,-9 z m 0.01,1 a 7.9999998,7.9999998 0 0 1 8,8 7.9999998,7.9999998 0 0 1 -8,8 7.9999998,7.9999998 0 0 1 -8,-8 7.9999998,7.9999998 0 0 1 8,-8 z" + style="opacity:0.15;fill:#b2b3b4;fill-opacity:0.80000001;stroke-width:2.25" + id="path3924-3-8" /> + <circle + id="circle2383-0-9" + cx="279" + cy="-8.9999733" + r="8" + style="fill:#{{base}};fill-opacity:1;stroke-width:2" /> + </g> + </g> + <g + id="g1936" + transform="matrix(0.26458333,0,0,0.26458333,43.225268,-144.85447)"> + <g + id="dial-notches" + transform="translate(384.49988,133.75005)" + style="fill:#ffffff"> + <rect + style="opacity:0" + id="rect109" + width="45" + height="45" + x="202.5" + y="667.5" /> + <g + style="fill:#5a5a5a" + id="g114"> + <path + id="dial-notches0" + d="m 214.625,670 -1.75,1 2.25,3.9063 1.75,-1 z m 20.75,0 -2.25,3.9063 1.75,1 2.25,-3.9063 z M 202.5,689 v 2 h 4.5 v -2 z m 40.5,0 v 2 h 4.5 v -2 z m -27.875,16.0938 -2.25,3.9062 1.75,1 2.25,-3.9062 z m 19.75,0 -1.75,1 2.25,3.9062 1.75,-1 z" + style="fill:#{{primary}};fill-opacity:1" /> + <path + id="path112" + d="m 222.9062,667.5938 -0.5,0.0625 0.3125,2.9688 0.5,-0.0312 -0.3125,-3 z m 4.1875,0 -0.3125,3 0.5,0.0312 0.3125,-2.9688 -0.5,-0.0625 z m -8.8125,0.9375 -0.4688,0.1562 0.9375,2.8438 0.4688,-0.1562 z m 13.4375,0 -0.9375,2.8438 0.4688,0.1562 0.9375,-2.8438 z m -21.5938,4.5938 -0.375,0.3125 2.0312,2.25 0.3438,-0.3438 -2,-2.2188 z m 29.75,0 -2,2.2188 0.3438,0.3438 2.0312,-2.25 -0.375,-0.3125 z m -32.9375,3.4375 -0.2812,0.4062 2.4062,1.7812 0.3125,-0.4062 z m 36.125,0 -2.4375,1.7812 0.3125,0.4062 2.4062,-1.7812 z m -38.5,4.0625 -0.2188,0.4375 2.75,1.25 0.1875,-0.4688 -2.7188,-1.2188 z m 40.875,0 -2.7188,1.2188 0.1875,0.4688 2.75,-1.25 -0.2188,-0.4375 z m -42.4062,4.4375 -0.0937,0.5 2.9375,0.625 0.0937,-0.5 z m 43.9375,0 -2.9375,0.625 0.0937,0.5 2.9375,-0.625 z m -41.0938,8.75 -2.9375,0.625 0.0937,0.5 2.9375,-0.625 z m 38.25,0 -0.0937,0.5 2.9375,0.625 0.0937,-0.5 z m -37.0312,3.875 -2.75,1.25 0.2188,0.4375 2.7188,-1.2188 -0.1875,-0.4688 z m 35.8125,0 -0.1875,0.4688 2.7188,1.2188 0.2188,-0.4375 -2.75,-1.25 z m -33.8438,3.5625 -2.4062,1.7812 0.2812,0.4062 2.4375,-1.7812 z m 31.875,0 -0.3125,0.4062 2.4375,1.7812 0.2812,-0.4062 z m -29.1562,3.0625 -2.0312,2.25 0.375,0.3125 2,-2.2188 -0.3438,-0.3438 z m 26.4375,0 -0.3438,0.3438 2,2.2188 0.375,-0.3125 -2.0312,-2.25 z" /> + </g> + </g> + <circle + id="dial-handle" + cx="558.99988" + cy="830.00006" + r="5" + style="fill:#{{primary}};fill-opacity:1" /> + <rect + id="dial" + width="45" + height="45" + x="486.62891" + y="791.48175" + rx="22.5" + ry="22.5" + style="opacity:1;fill:#{{base}};fill-opacity:1" /> + </g> + <g + id="g1454" + transform="translate(3.9687547,10.318751)"> + <path + d="m 188.64792,129.91042 h 7.9375 v 7.9375 h -7.9375 z" + id="window-normal" + style="opacity:0.749881;fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;paint-order:normal" + inkscape:connector-curvature="0" /> + <path + d="m 197.11458,129.91042 h 7.9375 v 7.9375 h -7.9375 z" + id="window-normal-inactive" + style="opacity:0.75032;fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;paint-order:normal" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="fill:#{{surface}};fill-opacity:0.75294119;stroke:none;stroke-width:0.264583" + id="titlebar-normal" + d="m 196.58541,139.96458 v 8.46667 h 8.46667 v -8.46667 z" /> + <use + width="100%" + x="0" + y="0" + height="100%" + xlink:href="#titlebar-normal" + id="titlebar-focused" + transform="translate(-9.260413)" + style="fill:#{{surface}}" /> + <g + id="g7768" + transform="matrix(0.26458333,0,0,0.26458333,129.80115,1.7291461)"> + <rect + width="30" + x="134.41299" + y="494.46466" + height="30" + style="opacity:1;fill:#002950;fill-opacity:0.0784314;fill-rule:evenodd;stroke:none;stroke-width:1.047;stroke-linecap:square;stroke-linejoin:bevel" + id="tframe-normal" + ry="0" /> + <g + id="tframe-normal-top" + inkscape:label="#tframe-normal-top"> + <rect + y="528.32776" + x="134.625" + height="4" + width="30" + id="rect10491" + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:3.49984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" /> + <rect + y="530.82776" + x="134.625" + height="1.5" + width="30" + id="rect10493" + style="opacity:1;fill:#22ff00;fill-opacity:0;stroke:none;stroke-width:3.49984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" /> + </g> + <g + transform="matrix(0.13333333,0,0,1,146.675,0)" + id="tframe-normal-top-leftjunct" + inkscape:label="#tframe-normal-top-leftjunct"> + <rect + y="528.32776" + x="134.625" + height="4" + width="30" + id="rect10491-5" + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:3.49984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" /> + <rect + y="530.82776" + x="134.625" + height="1.5" + width="30" + id="rect10493-6" + style="opacity:1;fill:#22ff00;fill-opacity:0;stroke:none;stroke-width:3.49984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" /> + </g> + <g + transform="matrix(0.13333333,0,0,1,112.675,0)" + id="tframe-normal-top-rightjunct" + inkscape:label="#tframe-normal-top-rightjunct"> + <rect + y="528.32776" + x="134.625" + height="4" + width="30" + id="rect10491-5-9" + style="opacity:1;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:3.49984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" /> + <rect + y="530.82776" + x="134.625" + height="1.5" + width="30" + id="rect10493-6-1" + style="opacity:1;fill:#22ff00;fill-opacity:0;stroke:none;stroke-width:3.49984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" /> + </g> + </g> + </g> + <g + id="g2102"> + <path + id="button-normal" + d="m 6.8791668,3.96875 v 8.466666 H 15.345834 V 3.96875 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:1" /> + <rect + id="expand-button-normal" + x="7.9472862e-08" + y="-8.9457153e-09" + width="2.6458333" + height="2.6458333" + style="fill-rule:evenodd;stroke-width:0.264583" /> + <path + id="button-focused" + d="m 24.077088,3.9687502 v 8.4666658 h 8.466666 V 3.9687502 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:1" /> + <path + id="button-toggled" + d="m 57.679172,3.9687501 v 8.4666659 h 8.466666 V 3.9687501 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:1" /> + <path + style="fill:none;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 5.2916666,12.435417 1.5874995,1.587473 5e-7,1.05836 c 0,0 0,0 0,0 H 4.7624999 v -2.645834 z" + id="path1215" /> + <g + id="button-focused-bottomright" + transform="translate(3.1750001)"> + <g + transform="translate(1.5875)" + id="button-focused-bottomright-32"> + <g + transform="matrix(-0.21166666,0,0,-0.21166666,33.866641,22.754505)" + id="g5797"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1615-6" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1617-1" /> + </g> + </g> + <path + style="opacity:0.555;fill:url(#radialGradient1384);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 29.36875,14.022916 c 1.046282,-0.05345 1.576024,-0.834812 1.5875,-1.587499 h 1.852083 l 0,3.968749 -3.439584,0 z" + id="path1219-9" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-focused-bottomleft" + transform="translate(3.1750001)"> + <g + id="button-focused-bottomleft-54" + transform="translate(1.5875)"> + <g + transform="matrix(0,-0.21166666,0.21166666,0,8.9954956,18.520807)" + id="g5785"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1605-1" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1607-0" /> + </g> + </g> + <path + style="opacity:0.558719;fill:url(#radialGradient1444);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 20.902083,14.022916 c -1.046283,-0.05345 -1.576024,-0.834812 -1.5875,-1.587499 l -1.322917,0 0,3.968749 h 2.910417 z" + id="path1219-3-1" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-focused-bottom" + transform="translate(3.1750001)"> + <g + id="button-focused-bottom-54" + transform="translate(1.5875)"> + <g + transform="matrix(0,-0.21166666,0.26051282,0,6.6141675,18.520807)" + id="g5791"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1610-3" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1612-2" /> + </g> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1452);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-27" + width="8.4666662" + height="2.3812497" + x="-29.36875" + y="14.022917" + transform="scale(-1,1)" /> + </g> + <g + id="button-focused-topleft" + transform="translate(3.1750001)"> + <g + id="button-focused-topleft-54" + transform="matrix(0.21166666,0,0,0.21166666,14.816669,-6.3503384)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1635-4" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1637-5" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1420);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 20.902083,2.3812504 c -1.046283,0.05345 -1.576024,0.834812 -1.5875,1.587499 l -1.322917,6e-7 0,-2.6458334 2.910417,0 z" + id="path1219-3-6-0" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-focused-topright" + transform="translate(3.1750001)"> + <g + id="button-focused-topright-43" + transform="matrix(0,0.21166666,-0.21166666,0,39.68784,-2.1166402)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1625-6" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1627-5" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1404);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 29.368749,2.3812504 c 1.046283,0.05345 1.576024,0.834812 1.5875,1.587499 l 1.852084,6e-7 0,-2.6458334 -3.439584,0 z" + id="path1219-3-6-7-9" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-focused-top" + transform="translate(3.1750001)"> + <g + id="button-focused-top-43" + transform="matrix(0,0.21166666,-0.26051282,0,42.06917,-2.1166664)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1630-9" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1632-3" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1412);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-5-3" + width="8.4666653" + height="1.0583342" + x="-29.36875" + y="1.3229166" + transform="scale(-1,1)" + ry="0" /> + </g> + <g + id="button-focused-left" + transform="translate(3.1750001)"> + <g + id="button-focused-left-453" + transform="matrix(0.21166666,0,0,0.26051282,14.816669,-8.7316664)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1600-0" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1602-3" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1428);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-3-6" + width="8.4666662" + height="1.3229165" + x="-12.435416" + y="-19.314583" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="button-focused-right" + transform="translate(3.1750001)"> + <g + id="button-focused-right-12" + transform="matrix(-0.21166666,0,0,0.26051282,35.454168,-8.7316664)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1620-5" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1622-4" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1396);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-2-0" + width="8.4666662" + height="1.8520302" + x="-12.435416" + y="-32.808334" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="button-normal-bottomright"> + <g + id="button-normal-bottomright-23940" + transform="translate(1.5875)"> + <g + transform="matrix(-0.21166666,0,0,-0.21166666,19.843723,22.754505)" + id="g5779"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1615" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1617" /> + </g> + </g> + <path + style="opacity:0.555;fill:url(#radialGradient1384-3);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 15.345833,14.022915 c 1.046282,-0.05345 1.576024,-0.834811 1.5875,-1.587499 l 1.852083,10e-7 0,3.968749 h -3.439583 z" + id="path1219-9-5" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-normal-bottomleft"> + <g + id="button-normal-bottomleft-32" + transform="translate(1.5875)"> + <g + transform="matrix(0,-0.21166666,0.21166666,0,-5.0274221,18.520807)" + id="g5767"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1605" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1607" /> + </g> + </g> + <path + style="opacity:0.558719;fill:url(#radialGradient1444-4);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 6.8791659,14.022915 c -1.046283,-0.05345 -1.576024,-0.834811 -1.5875,-1.587499 l -1.322916,10e-7 v 3.968749 h 2.9104167 z" + id="path1219-3-1-6" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-normal-bottom"> + <g + id="button-normal-bottom-213" + transform="translate(1.5875)"> + <g + transform="matrix(0,-0.21166666,0.26051282,0,-7.4087501,18.520807)" + id="g5773"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1610" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1612" /> + </g> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1636);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-27-9" + width="8.4666662" + height="2.3812506" + x="-15.345833" + y="14.022916" + transform="scale(-1,1)" /> + </g> + <g + id="button-normal-topleft"> + <g + id="button-normal-topleft-21" + transform="matrix(0.21166666,0,0,0.21166666,0.79375008,-6.3503386)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1635" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1637" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1420-5);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 6.8791659,2.3812504 c -1.046283,0.05345 -1.576024,0.8348121 -1.5875,1.5874991 L 3.96875,3.96875 V 1.3229166 h 2.9104166 z" + id="path1219-3-6-0-3" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-normal-topright"> + <g + id="button-normal-topright-3829" + transform="matrix(0,0.21166666,-0.21166666,0,25.664922,-2.1166404)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1625" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1627" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1404-3);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 15.345832,2.3812504 c 1.046283,0.05345 1.576024,0.8348121 1.5875,1.5874991 l 1.852084,5e-7 0,-2.6458334 h -3.439583 z" + id="path1219-3-6-7-9-7" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-normal-top"> + <g + id="button-normal-top-3534" + transform="matrix(0,0.21166666,-0.26051282,0,28.046252,-2.1166666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1630" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1632" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1638);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-5-3-4" + width="8.4666662" + height="1.0583342" + x="-15.345833" + y="1.3229166" + transform="scale(-1,1)" + ry="0" /> + </g> + <g + id="button-normal-left"> + <g + id="button-normal-left-23" + transform="matrix(0.21166666,0,0,0.26051282,0.79375008,-8.7316666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1600" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1602" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1640);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-3-6-5" + width="8.4666662" + height="1.322916" + x="-12.435416" + y="-5.291666" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="button-normal-right"> + <g + id="button-normal-right-893" + transform="matrix(-0.21166666,0,0,0.26051282,21.43125,-8.7316666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1620" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1622" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1642);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-2-0-2" + width="8.4666662" + height="1.8520821" + x="-12.435416" + y="-18.785416" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="button-toggled-bottomright" + transform="translate(9.5249721)"> + <g + id="button-toggled-bottomright-78"> + <g + transform="matrix(-0.21166666,0,0,-0.21166666,62.70625,22.754505)" + id="g5831"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1697" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1699" /> + </g> + </g> + <path + style="opacity:0.555;fill:url(#radialGradient1384-30);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 56.620861,14.022917 c 1.046282,-0.05345 1.576024,-0.834812 1.5875,-1.587499 l 1.852054,-1e-6 v 3.968749 h -3.439583 z" + id="path1219-9-9" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-toggled-bottomleft" + transform="translate(9.5249721)"> + <g + id="button-toggled-bottomleft-76"> + <g + transform="matrix(0,-0.21166666,0.21166666,0,37.835105,18.520807)" + id="g5819"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1687" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1689" /> + </g> + </g> + <path + style="opacity:0.558719;fill:url(#radialGradient1444-7);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 48.154194,14.022917 c -1.046283,-0.05345 -1.576024,-0.834812 -1.5875,-1.587499 l -1.322945,-1e-6 v 3.968749 h 2.910417 z" + id="path1219-3-1-2" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-toggled-bottom" + transform="translate(9.5249721)"> + <g + id="button-toggled-bottom-8"> + <g + transform="matrix(0,-0.21166666,0.26051282,0,35.453776,18.520807)" + id="g5825"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1692" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1694" /> + </g> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1710);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-27-6" + width="8.4666958" + height="2.3812478" + x="-56.620861" + y="14.022919" + transform="scale(-1,1)" /> + </g> + <g + id="button-toggled-topleft" + transform="translate(9.5249721)"> + <g + id="button-toggled-topleft-34" + transform="matrix(0.21166666,0,0,0.21166666,42.068777,-6.3503386)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1717" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1719" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1420-9);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 48.154194,2.3812512 c -1.046283,0.05345 -1.576024,0.834812 -1.5875,1.587499 l -1.322945,-2e-7 V 1.3229166 h 2.910417 z" + id="path1219-3-6-0-6" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-toggled-topright" + transform="translate(9.5249721)"> + <g + id="button-toggled-topright-65" + transform="matrix(0,0.21166666,-0.21166666,0,66.939949,-2.1166404)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1707" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1709" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1404-8);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 56.62086,2.3812512 c 1.046283,0.05345 1.576024,0.834812 1.5875,1.587499 l 1.852055,-2e-7 V 1.3229166 h -3.439583 z" + id="path1219-3-6-7-9-4" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-toggled-top" + transform="translate(9.5249721)"> + <g + id="button-toggled-top-65" + transform="matrix(0,0.21166666,-0.26051282,0,69.321278,-2.1166666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1712" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1714" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1712);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-5-3-9" + width="8.4666424" + height="1.0583349" + x="-56.620831" + y="1.3229166" + transform="scale(-1,1)" + ry="0" /> + </g> + <g + id="button-toggled-left" + transform="translate(9.5249721)"> + <g + id="button-toggled-left-23" + transform="matrix(0.21166666,0,0,0.26051282,42.068777,-8.7316666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1682" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1684" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1714);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-3-6-50" + width="8.4666672" + height="1.3229471" + x="-12.435417" + y="-46.566696" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="button-toggled-right" + transform="translate(9.5249721)"> + <g + id="button-toggled-right-87" + transform="matrix(-0.21166666,0,0,0.26051282,62.706277,-8.7316666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1702" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1704" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1716);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-2-0-4" + width="8.4666653" + height="1.8520491" + x="-12.435416" + y="-60.060417" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <path + id="button-pressed" + d="m 41.804172,3.9687501 v 8.4666659 h 8.466666 V 3.9687501 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:1" /> + <g + id="button-pressed-bottomright" + transform="translate(-6.3500277)"> + <g + id="button-toggled-bottomright-78-4"> + <g + transform="matrix(-0.21166666,0,0,-0.21166666,62.70625,22.754505)" + id="g5831-7"> + <path + d="m 28.749876,44.584873 c -3.125,0 -5,1.562531 -5,4.166748 h 5 z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.912882;opacity:1" + id="path1697-8" /> + <path + d="m 28.75,42.5016 c -4.125,-4.2e-5 -7.50003,2.812484 -7.5,6.250021 h 2.5 c 0,-2.604176 1.875,-4.166681 5,-4.166681 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1;stroke-width:0.912872" + id="path1699-4" /> + </g> + </g> + <path + style="opacity:0.555;fill:url(#radialGradient1384-30-2);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 56.62086,13.758333 c 0.850835,0.0053 1.587627,-0.581679 1.587501,-1.322915 l 1.852054,-1e-6 v 3.968749 h -3.439583 z" + id="path1219-9-9-5" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-pressed-bottomleft" + transform="translate(-6.3500277)"> + <g + id="button-toggled-bottomleft-76-3"> + <g + transform="matrix(0,-0.21166666,0.21166666,0,37.835105,18.520807)" + id="g5819-6"> + <path + d="m 28.749897,43.751601 c -2.604218,0 -4.166749,1.875 -4.166749,5 h 4.166749 z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.912882;opacity:1" + id="path1687-1" /> + <path + d="m 28.75,41.2516 c -3.437568,-5.1e-5 -6.250148,3.37497 -6.250123,7.5 h 2.083374 c 0,-3.125 1.562531,-5 4.166749,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1;stroke-width:0.912882" + id="path1689-0" /> + </g> + </g> + <path + style="opacity:0.558719;fill:url(#radialGradient1444-7-5);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 48.154194,13.758333 c -0.889837,-0.0095 -1.586487,-0.600034 -1.5875,-1.322915 l -1.322945,-1e-6 v 3.968749 h 2.910417 z" + id="path1219-3-1-2-6" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-pressed-bottom" + transform="translate(-6.3500277)"> + <g + id="button-toggled-bottom-8-2"> + <g + transform="matrix(0,-0.21166666,0.26051282,0,35.453776,18.520807)" + id="g5825-0"> + <path + d="m 24.583148,48.751601 v 32.5 h 4.166749 v -32.5 z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.912882;opacity:1" + id="path1692-6" /> + <path + d="m 22.499877,48.7516 v 32.5 h 2.083374 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1;stroke-width:0.912882" + id="path1694-1" /> + </g> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1868);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-27-6-5" + width="8.4666929" + height="2.645834" + x="-56.620861" + y="13.758333" + transform="scale(-1,1)" /> + </g> + <g + id="button-pressed-topleft" + transform="translate(-6.3500277)"> + <g + id="button-toggled-topleft-34-4" + transform="matrix(0.21166666,0,0,0.21166666,42.068777,-6.3503386)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1717-7" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1719-6" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1420-9-9);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 48.154194,2.3812512 c -1.046283,0.05345 -1.576024,0.834812 -1.5875,1.587499 l -1.322945,-2e-7 V 1.3229166 h 2.910417 z" + id="path1219-3-6-0-6-5" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-pressed-topright" + transform="translate(-6.3500277)"> + <g + id="button-toggled-topright-665" + transform="matrix(0,0.21166666,-0.21166666,0,66.939949,-2.1166404)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:1" + id="path1707-3" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1709-7" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1404-8-7);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 56.62086,2.3812512 c 1.046283,0.05345 1.576024,0.834812 1.5875,1.587499 l 1.852055,-2e-7 V 1.3229166 h -3.439583 z" + id="path1219-3-6-7-9-4-4" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="button-pressed-top" + transform="translate(-6.3500277)"> + <g + id="button-toggled-top-65-2" + transform="matrix(0,0.21166666,-0.26051282,0,69.321278,-2.1166666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1712-5" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1714-4" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1870);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-5-3-9-7" + width="8.4666424" + height="1.0583349" + x="-56.620831" + y="1.3229166" + transform="scale(-1,1)" + ry="0" /> + </g> + <g + id="button-pressed-left" + transform="translate(-6.3500277)"> + <g + id="button-toggled-left-23-4" + transform="matrix(0.21166666,0,0,0.26051282,42.068777,-8.7316666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1682-3" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1684-0" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1874);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-3-6-50-7" + width="8.4666672" + height="1.3229471" + x="-12.435417" + y="-46.566696" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="button-pressed-right" + transform="translate(-6.3500277)"> + <g + id="button-toggled-right-87-6" + transform="matrix(-0.21166666,0,0,0.26051282,62.706277,-8.7316666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:1" + id="path1702-8" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1704-8" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient1878);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-2-0-4-4" + width="8.4666653" + height="1.8520491" + x="-12.435416" + y="-60.060417" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + </g> + <g + id="g6869"> + <path + id="combo-normal" + d="m 6.8791668,22.489583 v 8.466666 h 8.4666672 v -8.466666 z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:0.5" /> + <rect + id="expand-combo-normal" + x="1.2561239e-07" + y="18.520832" + width="2.6458333" + height="2.6458333" + style="fill-rule:evenodd;stroke-width:0.264583" /> + <path + id="combo-focused" + d="m 24.077088,22.489583 v 8.466666 h 8.466666 v -8.466666 z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:0.5" /> + <path + id="combo-toggled" + d="m 57.679172,22.489583 v 8.466666 h 8.466666 v -8.466666 z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:0.75" /> + <path + style="fill:none;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 5.2916666,30.95625 1.5874995,1.587473 5e-7,1.05836 c 0,0 0,0 0,0 H 4.7624999 v -2.645834 z" + id="path1215-6" /> + <g + id="combo-focused-bottomright" + transform="translate(3.1750001,18.520833)"> + <g + transform="translate(1.5875)" + id="button-focused-bottomright-32-3"> + <g + transform="matrix(-0.21166666,0,0,-0.21166666,33.866641,22.754505)" + id="g5797-6"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" + id="path1615-6-5" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1617-1-6" /> + </g> + </g> + <path + style="opacity:0.555;fill:url(#radialGradient1384-2);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 29.36875,14.022916 c 1.046282,-0.05345 1.576024,-0.834812 1.5875,-1.587499 h 1.852083 v 3.968749 h -3.439584 z" + id="path1219-9-3" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-focused-bottomleft" + transform="translate(3.1750001,18.520833)"> + <g + id="button-focused-bottomleft-54-4" + transform="translate(1.5875)"> + <g + transform="matrix(0,-0.21166666,0.21166666,0,8.9954956,18.520807)" + id="g5785-8"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" + id="path1605-1-1" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1607-0-2" /> + </g> + </g> + <path + style="opacity:0.558719;fill:url(#radialGradient1444-8);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 20.902083,14.022916 c -1.046283,-0.05345 -1.576024,-0.834812 -1.5875,-1.587499 h -1.322917 v 3.968749 h 2.910417 z" + id="path1219-3-1-9" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-focused-bottom" + transform="translate(3.1750001,18.520833)"> + <g + id="button-focused-bottom-54-9" + transform="translate(1.5875)"> + <g + transform="matrix(0,-0.21166666,0.26051282,0,6.6141675,18.520807)" + id="g5791-0"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" + id="path1610-3-8" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1612-2-8" /> + </g> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3135);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-27-5" + width="8.4666662" + height="2.3812497" + x="-29.36875" + y="14.022917" + transform="scale(-1,1)" /> + </g> + <g + id="combo-focused-topleft" + transform="translate(3.1750001,18.520833)"> + <g + id="button-focused-topleft-54-9" + transform="matrix(0.21166666,0,0,0.21166666,14.816669,-6.3503384)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" + id="path1635-4-6" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1637-5-3" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1420-4);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 20.902083,2.3812504 c -1.046283,0.05345 -1.576024,0.834812 -1.5875,1.587499 l -1.322917,6e-7 V 1.3229166 h 2.910417 z" + id="path1219-3-6-0-8" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-focused-topright" + transform="translate(3.1750001,18.520833)"> + <g + id="button-focused-topright-43-6" + transform="matrix(0,0.21166666,-0.21166666,0,39.68784,-2.1166402)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" + id="path1625-6-1" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1627-5-1" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1404-0);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 29.368749,2.3812504 c 1.046283,0.05345 1.576024,0.834812 1.5875,1.587499 l 1.852084,6e-7 V 1.3229166 h -3.439584 z" + id="path1219-3-6-7-9-5" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-focused-top" + transform="translate(3.1750001,18.520833)"> + <g + id="button-focused-top-43-8" + transform="matrix(0,0.21166666,-0.26051282,0,42.06917,-2.1166664)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" + id="path1630-9-4" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1632-3-8" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3137);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-5-3-1" + width="8.4666653" + height="1.0583342" + x="-29.36875" + y="1.3229166" + transform="scale(-1,1)" + ry="0" /> + </g> + <g + id="combo-focused-left" + transform="translate(3.1750001,18.520833)"> + <g + id="button-focused-left-453-3" + transform="matrix(0.21166666,0,0,0.26051282,14.816669,-8.7316664)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" + id="path1600-0-0" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1602-3-4" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3141);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-3-6-4" + width="8.4666662" + height="1.3229165" + x="-12.435416" + y="-19.314583" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="combo-focused-right" + transform="translate(3.1750001,18.520833)"> + <g + id="button-focused-right-12-4" + transform="matrix(-0.21166666,0,0,0.26051282,35.454168,-8.7316664)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" + id="path1620-5-7" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;fill:#{{primary}};fill-opacity:1" + id="path1622-4-6" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3145);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-2-0-3" + width="8.4666662" + height="1.8520302" + x="-12.435416" + y="-32.808334" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="combo-normal-bottomright" + transform="translate(4.6139532e-8,18.520833)"> + <g + id="button-normal-bottomright-23940-7" + transform="translate(1.5875)"> + <g + transform="matrix(-0.21166666,0,0,-0.21166666,19.843723,22.754505)" + id="g5779-5"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" + id="path1615-9" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1617-6" /> + </g> + </g> + <path + style="opacity:0.555;fill:url(#radialGradient1384-3-2);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 15.345833,14.022915 c 1.046282,-0.05345 1.576024,-0.834811 1.5875,-1.587499 l 1.852083,10e-7 v 3.968749 h -3.439583 z" + id="path1219-9-5-2" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-normal-bottomleft" + transform="translate(4.6139532e-8,18.520833)"> + <g + id="button-normal-bottomleft-32-7" + transform="translate(1.5875)"> + <g + transform="matrix(0,-0.21166666,0.21166666,0,-5.0274221,18.520807)" + id="g5767-8"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" + id="path1605-5" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1607-7" /> + </g> + </g> + <path + style="opacity:0.558719;fill:url(#radialGradient1444-4-6);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 6.8791659,14.022915 c -1.046283,-0.05345 -1.576024,-0.834811 -1.5875,-1.587499 l -1.322916,10e-7 v 3.968749 h 2.9104167 z" + id="path1219-3-1-6-4" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-normal-bottom" + transform="translate(4.6139532e-8,18.520833)"> + <g + id="button-normal-bottom-213-8" + transform="translate(1.5875)"> + <g + transform="matrix(0,-0.21166666,0.26051282,0,-7.4087501,18.520807)" + id="g5773-5"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" + id="path1610-9" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1612-7" /> + </g> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3147);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-27-9-5" + width="8.4666662" + height="2.3812506" + x="-15.345833" + y="14.022916" + transform="scale(-1,1)" /> + </g> + <g + id="combo-normal-topleft" + transform="translate(4.6139532e-8,18.520833)"> + <g + id="button-normal-topleft-21-8" + transform="matrix(0.21166666,0,0,0.21166666,0.79375008,-6.3503386)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" + id="path1635-8" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1637-3" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1420-5-1);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 6.8791659,2.3812504 c -1.046283,0.05345 -1.576024,0.8348121 -1.5875,1.5874991 L 3.96875,3.96875 V 1.3229166 h 2.9104166 z" + id="path1219-3-6-0-3-1" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-normal-topright" + transform="translate(4.6139532e-8,18.520833)"> + <g + id="button-normal-topright-3829-9" + transform="matrix(0,0.21166666,-0.21166666,0,25.664922,-2.1166404)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.5" + id="path1625-64" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1627-3" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1404-3-0);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 15.345832,2.3812504 c 1.046283,0.05345 1.576024,0.8348121 1.5875,1.5874991 l 1.852084,5e-7 V 1.3229166 h -3.439583 z" + id="path1219-3-6-7-9-7-3" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-normal-top" + transform="translate(4.6139532e-8,18.520833)"> + <g + id="button-normal-top-3534-8" + transform="matrix(0,0.21166666,-0.26051282,0,28.046252,-2.1166666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" + id="path1630-6" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1632-0" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3149);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-5-3-4-4" + width="8.4666662" + height="1.0583342" + x="-15.345833" + y="1.3229166" + transform="scale(-1,1)" + ry="0" /> + </g> + <g + id="combo-normal-left" + transform="translate(4.6139532e-8,18.520833)"> + <g + id="button-normal-left-23-8" + transform="matrix(0.21166666,0,0,0.26051282,0.79375008,-8.7316666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" + id="path1600-8" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1602-9" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3153);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-3-6-5-7" + width="8.4666662" + height="1.322916" + x="-12.435416" + y="-5.291666" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="combo-normal-right" + transform="translate(4.6139532e-8,18.520833)"> + <g + id="button-normal-right-893-6" + transform="matrix(-0.21166666,0,0,0.26051282,21.43125,-8.7316666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.5" + id="path1620-4" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.599926;fill:#a1a9b1;fill-opacity:1" + id="path1622-3" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3157);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-2-0-2-0" + width="8.4666662" + height="1.8520821" + x="-12.435416" + y="-18.785416" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="combo-toggled-bottomright" + transform="translate(9.5249721,18.520833)"> + <g + id="button-toggled-bottomright-78-0"> + <g + transform="matrix(-0.21166666,0,0,-0.21166666,62.70625,22.754505)" + id="g5831-9"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.75" + id="path1697-2" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1699-5" /> + </g> + </g> + <path + style="opacity:0.555;fill:url(#radialGradient1384-30-6);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 56.620861,14.022917 c 1.046282,-0.05345 1.576024,-0.834812 1.5875,-1.587499 l 1.852054,-1e-6 v 3.968749 h -3.439583 z" + id="path1219-9-9-4" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-toggled-bottomleft" + transform="translate(9.5249721,18.520833)"> + <g + id="button-toggled-bottomleft-76-5"> + <g + transform="matrix(0,-0.21166666,0.21166666,0,37.835105,18.520807)" + id="g5819-9"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.75" + id="path1687-4" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1689-6" /> + </g> + </g> + <path + style="opacity:0.558719;fill:url(#radialGradient1444-7-1);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 48.154194,14.022917 c -1.046283,-0.05345 -1.576024,-0.834812 -1.5875,-1.587499 l -1.322945,-1e-6 v 3.968749 h 2.910417 z" + id="path1219-3-1-2-9" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-toggled-bottom" + transform="translate(9.5249721,18.520833)"> + <g + id="button-toggled-bottom-8-24"> + <g + transform="matrix(0,-0.21166666,0.26051282,0,35.453776,18.520807)" + id="g5825-7"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" + id="path1692-7" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1694-5" /> + </g> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3159);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-27-6-4" + width="8.4666958" + height="2.3812478" + x="-56.620861" + y="14.022919" + transform="scale(-1,1)" /> + </g> + <g + id="button-toggled-topleft-8" + transform="translate(9.5249721,18.520833)"> + <g + id="button-toggled-topleft-34-1" + transform="matrix(0.21166666,0,0,0.21166666,42.068777,-6.3503386)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.75" + id="path1717-2" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1719-8" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1420-9-5);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 48.154194,2.3812512 c -1.046283,0.05345 -1.576024,0.834812 -1.5875,1.587499 l -1.322945,-2e-7 V 1.3229166 h 2.910417 z" + id="path1219-3-6-0-6-9" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-toggled-topright" + transform="translate(9.5249721,18.520833)"> + <g + id="button-toggled-topright-65-6" + transform="matrix(0,0.21166666,-0.21166666,0,66.939949,-2.1166404)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.75" + id="path1707-8" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1709-0" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1404-8-9);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 56.62086,2.3812512 c 1.046283,0.05345 1.576024,0.834812 1.5875,1.587499 l 1.852055,-2e-7 V 1.3229166 h -3.439583 z" + id="path1219-3-6-7-9-4-2" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-toggled-top" + transform="translate(9.5249721,18.520833)"> + <g + id="button-toggled-top-65-0" + transform="matrix(0,0.21166666,-0.26051282,0,69.321278,-2.1166666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" + id="path1712-51" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1714-1" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3161);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-5-3-9-0" + width="8.4666424" + height="1.0583349" + x="-56.620831" + y="1.3229166" + transform="scale(-1,1)" + ry="0" /> + </g> + <g + id="button-toggled-left-8" + transform="translate(9.5249721,18.520833)"> + <g + id="button-toggled-left-23-5" + transform="matrix(0.21166666,0,0,0.26051282,42.068777,-8.7316666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" + id="path1682-0" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1684-6" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3165);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-3-6-50-4" + width="8.4666672" + height="1.3229471" + x="-12.435417" + y="-46.566696" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="combo-toggled-right" + transform="translate(9.5249721,18.520833)"> + <g + id="button-toggled-right-87-2" + transform="matrix(-0.21166666,0,0,0.26051282,62.706277,-8.7316666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" + id="path1702-5" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1704-86" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3169);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-2-0-4-2" + width="8.4666653" + height="1.8520491" + x="-12.435416" + y="-60.060417" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <path + id="combo-pressed" + d="m 41.804172,22.489583 v 8.466666 h 8.466666 v -8.466666 z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583;opacity:0.75" /> + <g + id="combo-pressed-bottomright" + transform="translate(-6.3500277,18.520833)"> + <g + id="button-toggled-bottomright-78-4-7"> + <g + transform="matrix(-0.21166666,0,0,-0.21166666,62.70625,22.754505)" + id="g5831-7-2"> + <path + d="m 28.749876,44.584873 c -3.125,0 -5,1.562531 -5,4.166748 h 5 z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.912882;opacity:0.75" + id="path1697-8-4" /> + <path + d="m 28.75,42.5016 c -4.125,-4.2e-5 -7.50003,2.812484 -7.5,6.250021 h 2.5 c 0,-2.604176 1.875,-4.166681 5,-4.166681 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1;stroke-width:0.912872" + id="path1699-4-0" /> + </g> + </g> + <path + style="opacity:0.555;fill:url(#radialGradient1384-30-2-0);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 56.62086,13.758333 c 0.850835,0.0053 1.587627,-0.581679 1.587501,-1.322915 l 1.852054,-1e-6 v 3.968749 h -3.439583 z" + id="path1219-9-9-5-6" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-pressed-bottomleft" + transform="translate(-6.3500277,18.520833)"> + <g + id="button-toggled-bottomleft-76-3-9"> + <g + transform="matrix(0,-0.21166666,0.21166666,0,37.835105,18.520807)" + id="g5819-6-9"> + <path + d="m 28.749897,43.751601 c -2.604218,0 -4.166749,1.875 -4.166749,5 h 4.166749 z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.912882;opacity:0.75" + id="path1687-1-0" /> + <path + d="m 28.75,41.2516 c -3.437568,-5.1e-5 -6.250148,3.37497 -6.250123,7.5 h 2.083374 c 0,-3.125 1.562531,-5 4.166749,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1;stroke-width:0.912882" + id="path1689-0-8" /> + </g> + </g> + <path + style="opacity:0.558719;fill:url(#radialGradient1444-7-5-9);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 48.154194,13.758333 c -0.889837,-0.0095 -1.586487,-0.600034 -1.5875,-1.322915 l -1.322945,-1e-6 v 3.968749 h 2.910417 z" + id="path1219-3-1-2-6-1" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-pressed-bottom" + transform="translate(-6.3500277,18.520833)"> + <g + id="button-toggled-bottom-8-2-1"> + <g + transform="matrix(0,-0.21166666,0.26051282,0,35.453776,18.520807)" + id="g5825-0-1"> + <path + d="m 24.583148,48.751601 v 32.5 h 4.166749 v -32.5 z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.912882;opacity:0.75" + id="path1692-6-0" /> + <path + d="m 22.499877,48.7516 v 32.5 h 2.083374 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.75;fill:#{{primary}};fill-opacity:1;stroke-width:0.912882" + id="path1694-1-3" /> + </g> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3173);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-27-6-5-4" + width="8.4666929" + height="2.645834" + x="-56.620861" + y="13.758333" + transform="scale(-1,1)" /> + </g> + <g + id="combo-pressed-topleft" + transform="translate(-6.3500277,18.520833)"> + <g + id="button-toggled-topleft-34-4-3" + transform="matrix(0.21166666,0,0,0.21166666,42.068777,-6.3503386)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.75" + id="path1717-7-9" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1719-6-1" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1420-9-9-1);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 48.154194,2.3812512 c -1.046283,0.05345 -1.576024,0.834812 -1.5875,1.587499 l -1.322945,-2e-7 V 1.3229166 h 2.910417 z" + id="path1219-3-6-0-6-5-9" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-pressed-topright" + transform="translate(-6.3500277,18.520833)"> + <g + id="button-toggled-topright-65-9-9" + transform="matrix(0,0.21166666,-0.21166666,0,66.939949,-2.1166404)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.8;opacity:0.75" + id="path1707-3-3" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1709-7-3" /> + </g> + <path + style="opacity:0.559;fill:url(#radialGradient1404-8-7-7);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 56.62086,2.3812512 c 1.046283,0.05345 1.576024,0.834812 1.5875,1.587499 l 1.852055,-2e-7 V 1.3229166 h -3.439583 z" + id="path1219-3-6-7-9-4-4-8" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="combo-pressed-top" + transform="translate(-6.3500277,18.520833)"> + <g + id="button-toggled-top-65-2-5" + transform="matrix(0,0.21166666,-0.26051282,0,69.321278,-2.1166666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" + id="path1712-5-6" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1714-4-6" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3175);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-5-3-9-7-4" + width="8.4666424" + height="1.0583349" + x="-56.620831" + y="1.3229166" + transform="scale(-1,1)" + ry="0" /> + </g> + <g + id="combo-pressed-left" + transform="translate(-6.3500277,18.520833)"> + <g + id="button-toggled-left-23-4-0" + transform="matrix(0.21166666,0,0,0.26051282,42.068777,-8.7316666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" + id="path1682-3-4" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1684-0-6" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3177);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-3-6-50-7-2" + width="8.4666672" + height="1.3229471" + x="-12.435417" + y="-46.566696" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="combo-pressed-right" + transform="translate(-6.3500277,18.520833)"> + <g + id="button-toggled-right-87-6-7" + transform="matrix(-0.21166666,0,0,0.26051282,62.706277,-8.7316666)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke-width:0.88752;opacity:0.75" + id="path1702-8-5" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:1;fill:#{{primary}};fill-opacity:1" + id="path1704-8-6" /> + </g> + <rect + style="opacity:0.528671;fill:url(#linearGradient3179);fill-opacity:1;stroke:none;stroke-width:0.264999" + id="rect1241-2-0-4-4-9" + width="8.4666653" + height="1.8520491" + x="-12.435416" + y="-60.060417" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + </g> + <path + id="toolbar-handle" + d="m 166.6875,23.8125 c 0,0.730628 -0.59229,1.322916 -1.32292,1.322916 -0.73062,0 -1.32291,-0.592288 -1.32291,-1.322916 0,-1.763887 2.64583,-1.763887 2.64583,0 z" + style="opacity:0.16;fill:#ffffff;stroke-width:0.264583" + sodipodi:nodetypes="ssss" /> + <g + id="menuitem-tearoff-focused" + transform="matrix(0.26458333,0,0,0.26458333,285.6177,-168.40729)"> + <rect + style="opacity:0;fill:#141414" + id="rect149" + width="7" + height="9" + x="686.5" + y="-229.5" + transform="rotate(90)" /> + <path + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1" + id="path151" + d="m 227.2385,689 h -2.2462 v 2 h 2.2462 z m -4.4924,0 H 220.5 v 2 h 2.2461 z" /> + </g> + <g + id="menuitem-tearoff-normal" + transform="matrix(0.26458333,0,0,0.26458333,289.32186,-168.40729)"> + <rect + style="opacity:0;fill:#141414" + id="rect379" + width="7" + height="9" + x="686.5" + y="-229.5" + transform="rotate(90)" /> + <path + inkscape:connector-curvature="0" + style="fill:#646464" + id="path381" + d="m 227.2385,689 h -2.2462 v 2 h 2.2462 z m -4.4924,0 H 220.5 v 2 h 2.2461 z" /> + </g> + <rect + id="menubar-normal" + width="5.2916665" + height="5.2916665" + x="341.37527" + y="3.5036411" + style="opacity:0;fill:#1a1a1a;fill-opacity:1;stroke-width:0.264583" /> + <rect + id="menubar-normal-left" + width="5.2916665" + height="1.3229166" + x="3.5036411" + y="-341.37527" + transform="rotate(90)" + style="opacity:0;fill:#1a1a1a;fill-opacity:1;stroke-width:0.264583" /> + <rect + id="menubar-normal-topleft" + width="1.3229166" + height="1.3229166" + x="2.1807241" + y="-341.37527" + transform="rotate(90)" + style="opacity:0;fill:#1a1a1a;fill-opacity:1;stroke-width:0.264583" /> + <rect + id="menubar-normal-top" + width="5.2916665" + height="1.3229166" + x="341.37527" + y="2.1807241" + style="opacity:0;fill:#1a1a1a;fill-opacity:1;stroke-width:0.264583" /> + <rect + id="menubar-normal-right" + width="5.2916665" + height="1.3229166" + x="3.5036411" + y="-347.98987" + transform="rotate(90)" + style="opacity:0;fill:#1a1a1a;fill-opacity:1;stroke-width:0.264583" /> + <rect + id="menubar-normal-topright" + width="1.3229166" + height="1.3229166" + x="2.1807241" + y="-347.98987" + transform="rotate(90)" + style="opacity:0;fill:#1a1a1a;fill-opacity:1;stroke-width:0.264583" /> + <g + id="menubar-normal-bottomleft" + style="opacity:0" + transform="matrix(0.26458333,0,0,0.26458333,260.67737,-154.45261)"> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1" + id="rect1535" + width="5" + height="1" + x="300" + y="617" /> + <g + id="menubar-normal-bottomleft2" + transform="matrix(0.25,0,0,1,223.75,0)"> + <path + inkscape:connector-curvature="0" + style="opacity:0;fill:url(#linearGradient3473)" + id="path1537" + d="m 305,621 h 20 v -3 h -20 z" /> + </g> + </g> + <g + id="menubar-normal-bottomright" + style="opacity:0" + transform="matrix(0.26458333,0,0,0.26458333,260.67737,-154.45261)"> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1" + id="rect1541" + width="5" + height="1" + x="325" + y="617" /> + <g + id="menubar-normal-bottomright2" + transform="matrix(0.25,0,0,1,248.75,0)" + style="fill:#b6b6b6"> + <path + inkscape:connector-curvature="0" + style="opacity:0;fill:url(#linearGradient3475)" + id="path1543" + d="m 305,621 h 20 v -3 h -20 z" /> + </g> + </g> + <g + id="menubar-normal-bottom" + style="opacity:0" + transform="matrix(0.26458333,0,0,0.26458333,260.67737,-154.45261)"> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1" + id="rect1547" + width="20" + height="1" + x="305" + y="617" /> + <rect + style="opacity:0;fill:url(#linearGradient3477)" + id="rect1549" + width="20" + height="3" + x="305" + y="618" /> + </g> + <rect + id="menubar-normal-inactive" + width="5.2916665" + height="5.2916665" + x="350.63568" + y="3.5036411" + style="opacity:0;fill:#151515;fill-opacity:1;stroke-width:0.264583" /> + <rect + id="menubar-normal-inactive-left" + width="5.2916665" + height="1.3229166" + x="3.5036411" + y="-350.63568" + transform="rotate(90)" + style="opacity:0;fill:#151515;fill-opacity:1;stroke-width:0.264583" /> + <rect + id="menubar-normal-inactive-topleft" + width="1.3229166" + height="1.3229166" + x="2.1807241" + y="-350.63568" + transform="rotate(90)" + style="opacity:0;fill:#151515;fill-opacity:1;stroke-width:0.264583" /> + <rect + id="menubar-normal-inactive-top" + width="5.2916665" + height="1.3229166" + x="350.63568" + y="2.1807241" + style="opacity:0;fill:#151515;fill-opacity:1;stroke-width:0.264583" /> + <rect + id="menubar-normal-inactive-right" + width="5.2916665" + height="1.3229166" + x="3.5036411" + y="-357.25027" + transform="rotate(90)" + style="opacity:0;fill:#151515;fill-opacity:1;stroke-width:0.264583" /> + <rect + id="menubar-normal-inactive-topright" + width="1.3229166" + height="1.3229166" + x="2.1807241" + y="-357.25027" + transform="rotate(90)" + style="opacity:0;fill:#151515;fill-opacity:1;stroke-width:0.264583" /> + <g + transform="matrix(0.26458333,0,0,0.26458333,269.9378,-154.45261)" + id="menubar-normal-inactive-bottomleft" + style="opacity:0"> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1" + id="rect1535-1" + width="5" + height="1" + x="300" + y="617" /> + <g + id="menubar-normal-inactive-bottomleft2" + transform="matrix(0.25,0,0,1,223.75,0)"> + <path + inkscape:connector-curvature="0" + style="opacity:0;fill:url(#linearGradient3479)" + id="path1537-6" + d="m 305,621 h 20 v -3 h -20 z" /> + </g> + </g> + <g + transform="matrix(0.26458333,0,0,0.26458333,269.9378,-154.45261)" + id="menubar-normal-inactive-bottomright" + style="opacity:0"> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1" + id="rect1541-1" + width="5" + height="1" + x="325" + y="617" /> + <g + id="menubar-normal-inactive-bottomright2" + transform="matrix(0.25,0,0,1,248.75,0)" + style="fill:#b6b6b6"> + <path + inkscape:connector-curvature="0" + style="opacity:0;fill:url(#linearGradient2097)" + id="path1543-3" + d="m 305,621 h 20 v -3 h -20 z" /> + </g> + </g> + <g + transform="matrix(0.26458333,0,0,0.26458333,269.9378,-154.45261)" + id="menubar-normal-inactive-bottom" + style="opacity:0"> + <rect + style="opacity:0.25;fill:#000000;fill-opacity:1" + id="rect1547-6" + width="20" + height="1" + x="305" + y="617" /> + <rect + style="opacity:0;fill:url(#linearGradient2101)" + id="rect1549-7" + width="20" + height="3" + x="305" + y="618" /> + </g> + <rect + id="tab-tear" + width="3.96875" + height="3.96875" + x="70.114586" + y="133.61459" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583" /> + <g + transform="matrix(0.26458333,0,0,0.26458333,15.081276,-0.26458363)" + id="g1363"> + <rect + id="expand-lineedit-normal" + x="220" + y="10" + width="10" + height="10" + style="fill-rule:evenodd" /> + <g + id="lineedit-normal-left" + transform="matrix(0.8,0,0,0.98461538,218,-32.001575)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="opacity:0.50026792;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" + id="path1281" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" + id="path1283" /> + </g> + <g + id="lineedit-normal-bottomleft" + transform="matrix(0,-0.8,0.8,0,201.99862,70.9999)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="opacity:0.50026792;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" + id="path1286" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" + id="path1288" /> + </g> + <g + id="lineedit-normal-bottom" + transform="matrix(0,-0.8,0.98461538,0,192.99832,71)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="opacity:0.50026792;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" + id="path1291" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" + id="path1293" /> + </g> + <g + id="lineedit-normal-bottomright" + transform="matrix(-0.8,0,0,-0.8,295.9998,87.00128)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="opacity:0.50026792;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" + id="path1296" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" + id="path1298" /> + </g> + <g + id="lineedit-normal-right" + transform="matrix(-0.8,0,0,0.98461538,295.9998,-32.001575)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="opacity:0.50026792;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" + id="path1301" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" + id="path1303" /> + </g> + <g + id="lineedit-normal-topright" + transform="matrix(0,0.8,-0.8,0,312.00118,-6.9999)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="opacity:0.50026792;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" + id="path1306" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" + id="path1308" /> + </g> + <g + id="lineedit-normal-top" + transform="matrix(0,0.8,-0.98461538,0,321.00148,-6.9999)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="opacity:0.50026792;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" + id="path1311" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" + id="path1313" /> + </g> + <g + id="lineedit-normal-topleft" + transform="matrix(0.8,0,0,0.8,218,-23.00128)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="opacity:0.50026792;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" + id="path1316" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#a1a9b1;fill-opacity:1" + id="path1318" /> + </g> + <path + id="lineedit-normal" + d="m 241,16 v 32 h 32 V 16 Z" + style="opacity:0.50026792;fill:#{{surface}};fill-rule:evenodd;fill-opacity:1" /> + <g + id="lineedit-focused-left" + transform="matrix(0.8,0,0,0.98461538,268,-32.001575)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="opacity:0.75;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" + id="path1322" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#{{primary}};fill-opacity:1" + id="path1324" /> + </g> + <g + id="lineedit-focused-bottomleft" + transform="matrix(0,-0.8,0.8,0,251.99862,70.9999)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="opacity:0.75;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" + id="path1327" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#{{primary}};fill-opacity:1" + id="path1329" /> + </g> + <g + id="lineedit-focused-bottom" + transform="matrix(0,-0.8,0.98461538,0,242.99832,71)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="opacity:0.75;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" + id="path1332" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#{{primary}};fill-opacity:1" + id="path1334" /> + </g> + <g + id="lineedit-focused-bottomright" + transform="matrix(-0.8,0,0,-0.8,345.9998,87.00128)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="opacity:0.75;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" + id="path1337" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#{{primary}};fill-opacity:1" + id="path1339" /> + </g> + <g + id="lineedit-focused-right" + transform="matrix(-0.8,0,0,0.98461538,345.9998,-32.001575)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="opacity:0.75;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" + id="path1342" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#{{primary}};fill-opacity:1" + id="path1344" /> + </g> + <g + id="lineedit-focused-topright" + transform="matrix(0,0.8,-0.8,0,362.00118,-6.9999)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="opacity:0.75;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" + id="path1347" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#{{primary}};fill-opacity:1" + id="path1349" /> + </g> + <g + id="lineedit-focused-top" + transform="matrix(0,0.8,-0.98461538,0,371.00148,-6.9999)"> + <path + transform="matrix(1.25,0,0,1.015625,21.249876,27.423476)" + d="M 2,21 V 53 H 6 V 21 Z" + style="opacity:0.75;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.88752;fill-opacity:1" + id="path1352" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#{{primary}};fill-opacity:1" + id="path1354" /> + </g> + <g + id="lineedit-focused-topleft" + transform="matrix(0.8,0,0,0.8,268,-23.00128)"> + <path + transform="matrix(1.25,0,0,1.25,21.249876,22.501601)" + d="M 6,17 C 3.5,17 2,18.5 2,21 H 6 Z" + style="opacity:0.75;fill:#{{surface}};fill-rule:evenodd;stroke-width:0.8;fill-opacity:1" + id="path1357" /> + <path + d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z" + style="color:#000000;text-indent:0;text-transform:none;opacity:0.50021693;fill:#{{primary}};fill-opacity:1" + id="path1359" /> + </g> + <path + id="lineedit-focused" + d="m 291,16 v 32 h 32 V 16 Z" + style="opacity:0.75;fill:#{{surface}};fill-rule:evenodd;fill-opacity:1" /> + </g> + <g + id="g3680" + transform="matrix(0.26458333,0,0,0.26458333,4.4979166,24.60625)"> + <g + id="g3742" + transform="translate(4.999912,4.999989)"> + <g + id="radio-checked-normal" + transform="matrix(5.669285,0,0,5.669285,-1106.9987,-360.49961)"> + <path + id="rect4160-92" + d="m 207.69792,72.495834 c -1.17264,0 -2.11667,0.944033 -2.11667,2.116666 0,1.172634 0.94403,2.116667 2.11667,2.116667 1.17263,0 2.11666,-0.944033 2.11666,-2.116667 0,-1.172633 -0.94403,-2.116666 -2.11666,-2.116666 z m 0,0.264583 c 1.02605,0 1.85208,0.826029 1.85208,1.852083 0,1.026055 -0.82603,1.852084 -1.85208,1.852084 -1.02606,0 -1.85209,-0.826029 -1.85209,-1.852084 0,-1.026054 0.82603,-1.852083 1.85209,-1.852083 z" + class="ColorScheme-ButtonFocus" + fill="currentColor" + style="color:#{{primary}};opacity:1;fill:#{{primary}};fill-opacity:1;stroke-width:0.264583" /> + <rect + id="rect887-23" + class="ColorScheme-ButtonFocus" + x="206.375" + y="73.289597" + width="2.6458333" + height="2.6458333" + rx="52.916664" + fill="currentColor" + fill-rule="evenodd" + style="color:#{{primary}};stroke-width:0.264583;fill:#{{primary}}" /> + </g> + <path + id="radio-focused" + d="m 43.000088,50.500021 c -6.64804,0 -12.00004,5.35199 -12.00004,11.99998 0,6.648 5.352,11.99999 12.00004,11.99999 6.64796,0 11.99996,-5.35199 11.99996,-11.99999 0,-6.64799 -5.352,-11.99998 -11.99996,-11.99998 z m 0,1.49999 c 5.81695,0 10.49998,4.683 10.49998,10.49999 0,5.817 -4.68303,10.49999 -10.49998,10.49999 -5.81707,0 -10.50006,-4.68299 -10.50006,-10.49999 0,-5.81699 4.68299,-10.49999 10.50006,-10.49999 z" + class="ColorScheme-ButtonFocus" + fill="currentColor" + style="color:#{{primary}};fill:#{{primary}};fill-opacity:1;stroke-width:1.5" /> + <g + id="radio-checked-focused" + transform="matrix(5.669285,0,0,5.669285,-1079.9987,-360.49961)"> + <path + id="rect4160-92-6" + d="m 207.69792,72.495834 c -1.17264,0 -2.11667,0.944033 -2.11667,2.116666 0,1.172634 0.94403,2.116667 2.11667,2.116667 1.17263,0 2.11666,-0.944033 2.11666,-2.116667 0,-1.172633 -0.94403,-2.116666 -2.11666,-2.116666 z m 0,0.264583 c 1.02605,0 1.85208,0.826029 1.85208,1.852083 0,1.026055 -0.82603,1.852084 -1.85208,1.852084 -1.02606,0 -1.85209,-0.826029 -1.85209,-1.852084 0,-1.026054 0.82603,-1.852083 1.85209,-1.852083 z" + class="ColorScheme-ButtonFocus" + fill="currentColor" + style="color:#{{primary}};opacity:1;stroke-width:0.264583;fill:#{{primary}}" /> + <rect + id="rect887-23-7" + class="ColorScheme-ButtonFocus" + x="206.375" + y="73.289597" + width="2.6458333" + height="2.6458333" + rx="52.916664" + fill="currentColor" + fill-rule="evenodd" + style="color:#{{primary}};stroke-width:0.264583;fill:#{{primary}}" /> + </g> + <circle + style="opacity:1;fill:none;fill-opacity:1;stroke:#b2b3b5;stroke-width:1.1865;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="radio-normal" + cx="14.951006" + cy="62.329414" + r="11.846404" /> + </g> + <g + id="g3940"> + <path + id="checkbox-focused" + class="ColorScheme-ButtonFocus" + d="m 41,97.49999 c -1.66201,0 -3.00004,1.338 -3.00004,3 v 17.99998 c 0,1.66199 1.33803,3 3.00004,3 h 17.99996 c 1.66198,0 2.99997,-1.33801 2.99997,-3 v -17.99998 c 0,-1.662 -1.33799,-3 -2.99997,-3 z M 41,99 h 17.99996 c 0.83105,0 1.49999,0.66899 1.49999,1.49999 v 17.99998 c 0,0.831 -0.66894,1.5 -1.49999,1.5 H 41 c -0.83104,0 -1.50005,-0.669 -1.50005,-1.5 V 100.49999 C 39.49995,99.66899 40.16896,99 41,99 Z" + fill="currentColor" + style="color:#{{primary}};stroke-width:1.5;fill:#{{primary}}" /> + <g + id="checkbox-checked-normal" + transform="matrix(5.669285,0,0,5.669285,-1005.9987,-382.49949)"> + <path + id="rect4160-1" + class="ColorScheme-ButtonFocus" + d="m 190.23542,84.666666 c -0.29316,0 -0.52917,0.236009 -0.52917,0.529167 v 3.175 c 0,0.293158 0.23601,0.529167 0.52917,0.529167 h 3.175 c 0.29315,0 0.52916,-0.236009 0.52916,-0.529167 v -3.175 c 0,-0.293158 -0.23601,-0.529167 -0.52916,-0.529167 z m 0,0.264584 h 3.175 c 0.14658,0 0.26458,0.118004 0.26458,0.264583 v 3.175 c 0,0.146579 -0.118,0.264583 -0.26458,0.264583 h -3.175 c -0.14658,0 -0.26459,-0.118004 -0.26459,-0.264583 v -3.175 c 0,-0.146579 0.11801,-0.264583 0.26459,-0.264583 z" + fill="currentColor" + style="color:#{{primary}};fill:#{{primary}};fill-opacity:1;stroke-width:0.264583" /> + <path + id="rect887-2" + class="ColorScheme-ButtonFocus" + d="m 190.5,85.460416 h 2.64583 v 2.645833 H 190.5 Z" + fill="currentColor" + fill-rule="evenodd" + style="color:#{{primary}};stroke-width:0.264583;fill:#{{primary}}" /> + </g> + <g + id="checkbox-checked-focused" + transform="matrix(5.669285,0,0,5.669285,-1005.9987,-382.49949)"> + <path + id="rect4160-7" + class="ColorScheme-ButtonFocus" + d="m 195.79167,84.666666 c -0.29316,0 -0.52917,0.236009 -0.52917,0.529167 v 3.175 c 0,0.293158 0.23601,0.529167 0.52917,0.529167 h 3.175 c 0.29315,0 0.52916,-0.236009 0.52916,-0.529167 v -3.175 c 0,-0.293158 -0.23601,-0.529167 -0.52916,-0.529167 z m 0,0.264584 h 3.175 c 0.14658,0 0.26458,0.118004 0.26458,0.264583 v 3.175 c 0,0.146579 -0.118,0.264583 -0.26458,0.264583 h -3.175 c -0.14658,0 -0.26459,-0.118004 -0.26459,-0.264583 v -3.175 c 0,-0.146579 0.11801,-0.264583 0.26459,-0.264583 z" + fill="currentColor" + style="color:#{{primary}};stroke-width:0.264583;fill:#{{primary}}" /> + <path + id="rect887-0" + class="ColorScheme-ButtonFocus" + d="m 196.05625,85.460416 h 2.64583 v 2.645833 h -2.64583 z" + fill="currentColor" + fill-rule="evenodd" + style="color:#{{primary}};stroke-width:0.264583;fill:#{{primary}}" /> + </g> + <g + id="checkbox-tristate-normal" + transform="matrix(5.669285,0,0,5.669285,-1005.9987,-382.49949)"> + <path + id="rect4160-9" + class="ColorScheme-ButtonFocus" + d="m 201.08333,84.666666 c -0.29316,0 -0.52917,0.236009 -0.52917,0.529167 v 3.175 c 0,0.293158 0.23601,0.529167 0.52917,0.529167 h 3.175 c 0.29315,0 0.52916,-0.236009 0.52916,-0.529167 v -3.175 c 0,-0.293158 -0.23601,-0.529167 -0.52916,-0.529167 z m 0,0.264584 h 3.175 c 0.14658,0 0.26458,0.118004 0.26458,0.264583 v 3.175 c 0,0.146579 -0.118,0.264583 -0.26458,0.264583 h -3.175 c -0.14658,0 -0.26459,-0.118004 -0.26459,-0.264583 v -3.175 c 0,-0.146579 0.11801,-0.264583 0.26459,-0.264583 z" + fill="currentColor" + style="color:#{{primary}};fill:#{{primary}};fill-opacity:1;stroke-width:0.264583" /> + <path + id="rect887-3" + class="ColorScheme-ButtonFocus" + d="m 201.34791,85.460416 h 2.64583 v 2.645833 h -2.64583 z" + fill="currentColor" + fill-rule="evenodd" + style="color:#{{primary}};stroke-width:0.264583;fill:#{{primary}}" /> + <path + style="fill:none;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 201.87708,87.841666 h 1.5875 v -1.852084 z" + id="path2405" /> + <path + style="fill:#{{base}};fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 203.72916,87.841666 -2.11666,10e-7 2.11667,-2.116667 z" + id="path2407" + sodipodi:nodetypes="cccc" /> + </g> + <g + id="checkbox-tristate-focused" + transform="matrix(5.669285,0,0,5.669285,-1005.9987,-382.49949)"> + <path + id="rect4160-9-6" + class="ColorScheme-ButtonFocus" + d="m 206.375,84.666666 c -0.29316,0 -0.52917,0.236009 -0.52917,0.529167 v 3.175 c 0,0.293158 0.23601,0.529167 0.52917,0.529167 h 3.175 c 0.29315,0 0.52916,-0.236009 0.52916,-0.529167 v -3.175 c 0,-0.293158 -0.23601,-0.529167 -0.52916,-0.529167 z m 0,0.264584 h 3.175 c 0.14658,0 0.26458,0.118004 0.26458,0.264583 v 3.175 c 0,0.146579 -0.118,0.264583 -0.26458,0.264583 h -3.175 c -0.14658,0 -0.26459,-0.118004 -0.26459,-0.264583 v -3.175 c 0,-0.146579 0.11801,-0.264583 0.26459,-0.264583 z" + fill="currentColor" + style="color:#{{primary}};stroke-width:0.264583;fill:#{{primary}}" /> + <path + id="rect887-3-0" + class="ColorScheme-ButtonFocus" + d="m 206.63958,85.460416 h 2.64583 v 2.645833 h -2.64583 z" + fill="currentColor" + fill-rule="evenodd" + style="color:#{{primary}};stroke-width:0.264583;fill:#{{primary}}" /> + <path + style="fill:none;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 207.16875,87.841666 h 1.5875 v -1.852084 z" + id="path2405-6" /> + <path + style="fill:#{{base}};fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 209.02083,87.841666 -2.11666,10e-7 2.11667,-2.116667 z" + id="path2407-2" + sodipodi:nodetypes="cccc" /> + </g> + <rect + style="fill:none;fill-opacity:1;stroke:#b2b3b5;stroke-width:1.45134;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="checkbox-normal" + width="24" + height="24" + x="9" + y="97" + ry="2.8800001" /> + </g> + </g> + <rect + id="spin-separator-pressed" + x="208.22708" + y="29.104166" + width="0.52916664" + height="1.5875" + style="color:#000000;fill:#7a7a7c;fill-rule:evenodd;stroke-width:0.264583" /> + <rect + id="spin-separator-top-pressed" + x="208.22708" + y="27.516665" + width="0.52916664" + height="1.5875" + style="color:#000000;fill:#7a7a7c;fill-rule:evenodd;stroke-width:0.264583" /> + <rect + id="spin-separator-bottom-pressed" + x="208.22708" + y="30.691666" + width="0.52916664" + height="1.5875" + style="color:#000000;fill:#7a7a7c;fill-rule:evenodd;stroke-width:0.264583" /> + <rect + id="spin-separator-normal" + x="205.58124" + y="29.104166" + width="0.52916664" + height="1.5875" + style="color:#000000;opacity:0.18;fill:#ffffff;fill-rule:evenodd;stroke-width:0.264583" /> + <g + id="spin-separator-top-normal" + transform="matrix(0.26458333,0,0,0.26458333,135.46666,-97.631251)" + style="color:#000000;fill:#22252e;fill-rule:evenodd;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"> + <path + d="m 265,475 h 2 v 4 h -2 z" + style="opacity:0.18;fill:#ffffff" + id="path807" /> + <path + d="m 267,473 v 2 h -2 v -2 z" + style="fill:none" + id="path809" /> + </g> + <g + id="spin-separator-bottom-normal" + transform="matrix(0.26458333,0,0,-0.26458333,135.46666,157.42708)" + style="color:#000000;fill:#22252e;fill-rule:evenodd;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"> + <path + d="m 265,475 h 2 v 4 h -2 z" + style="opacity:0.18;fill:#ffffff" + id="path812" /> + <path + d="m 267,473 v 2 h -2 v -2 z" + style="fill:none" + id="path814" /> + </g> + <g + style="stroke:none" + id="tab-focused-topleft" + transform="matrix(0.35277536,0,0,0.35277536,83.255729,9.7891851)" + inkscape:label="#tab-focused-topleft"> + <path + style="fill:#{{primary}};fill-opacity:0.400587;fill-rule:evenodd;opacity:1" + id="path8932-3-4" + d="m 28.75,41.2516 c -7.500349,-1.89e-4 -7.500349,-1.89e-4 -7.5,7.5 h 7.5 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#2c2c2c;fill-opacity:0" + id="path8934-5-5" + d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" + inkscape:connector-curvature="0" /> + </g> + <path + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:0.40058717;fill-rule:evenodd;stroke:none;stroke-width:0.264583;opacity:1" + id="tab-focused" + d="m 93.397967,26.987548 v 8.466677 h 8.466663 v -8.466677 z" /> + <g + style="stroke:none" + id="tab-focused-top" + transform="matrix(0,0.35277776,-0.26051282,0,114.56505,16.845188)"> + <path + style="fill:#{{primary}};fill-opacity:0.40058717;fill-rule:evenodd;opacity:1" + id="path8926-6-2-3" + d="M 28.75,81.2514 V 48.7516 h -7.5 v 32.5 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#2c2c2c;fill-opacity:0" + id="path8928-7-3-7" + d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" + inkscape:connector-curvature="0" /> + </g> + <g + style="stroke:none" + id="tab-focused-right" + transform="matrix(-0.35277776,0,0,0.26051282,112.00694,14.287135)"> + <path + style="fill:#{{primary}};fill-opacity:0.40058717;fill-rule:evenodd;opacity:1" + id="path8926-6-2-7-6-4" + d="M 28.75,81.2514 V 48.7516 h -7.5 v 32.5 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#2c2c2c;fill-opacity:0" + id="path8928-7-3-5-2-3" + d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" + inkscape:connector-curvature="0" /> + </g> + <g + style="stroke:none;fill:#{{primary}}" + id="tab-focused-left" + transform="matrix(0.35277776,0,0,-0.26051282,83.255607,48.154582)"> + <path + style="fill:#{{primary}};fill-opacity:0.40058717;fill-rule:evenodd;opacity:1" + id="path8926-6-2-7-2-8" + d="M 28.75,81.2514 V 48.7516 h -7.5 v 32.5 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#{{primary}};fill-opacity:0" + id="path8928-7-3-5-7-6" + d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" + inkscape:connector-curvature="0" /> + </g> + <g + style="stroke:none" + id="tab-focused-topright" + transform="matrix(-0.35277536,0,0,0.35277536,112.00692,9.7891846)" + inkscape:label="#tab-focused-topright"> + <path + style="fill:#{{primary}};fill-opacity:0.400587;fill-rule:evenodd;opacity:1" + id="path8932-3-18-2" + d="m 28.75,41.2516 c -7.49992,-1.88e-4 -7.49992,-1.88e-4 -7.5,7.5 h 7.5 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#2c2c2c;fill-opacity:0" + id="path8934-5-92-6" + d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" + inkscape:connector-curvature="0" /> + </g> + <g + id="g4790" + transform="matrix(0.26458333,0,0,0.26458333,69.124701,-16.540762)"> + <g + id="tab-toggled-bottom" + transform="translate(87.072405,38.764108)"> + <path + inkscape:connector-curvature="0" + id="path8926-6-2-7-23" + d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" + style="fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;stroke:none;opacity:0" + transform="matrix(0,-1.3333333,-0.98461538,0,151.67049,196.08545)" /> + <path + style="fill:#282d32;fill-opacity:0;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.66892,165.75212 h 32 v 2 h -32 z" + id="path1778-7" + sodipodi:nodetypes="ccccc" /> + </g> + <g + inkscape:label="#tab-normal-bottomright" + transform="matrix(-1.3333242,0,0,-1.3333242,229.07435,261.518)" + id="tab-normal-bottomright-23-9" + style="fill-rule:evenodd;stroke:none" + inkscape:transform-center-x="-0.23473818" + inkscape:transform-center-y="3.8666083"> + <path + inkscape:connector-curvature="0" + id="path8932-3-6-2-2" + d="m 28.75,41.2516 c -3.98048,-0.114009 -7.614012,3.519519 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" + style="fill:#0082ff;fill-opacity:0;fill-rule:evenodd" /> + <path + inkscape:connector-curvature="0" + d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" + id="path8934-5-62-7-8" + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> + </g> + <g + inkscape:label="#tab-normal-bottomright" + transform="matrix(-1.3333242,0,0,-1.3333242,187.07435,261.54921)" + id="tab-normal-bottomright-23-6-3" + style="fill-rule:evenodd;stroke:none" + inkscape:transform-center-x="-0.23473818" + inkscape:transform-center-y="3.8666083"> + <path + inkscape:connector-curvature="0" + id="path8932-3-6-2-5-1" + d="m 28.75,41.2516 c -3.98048,-0.114009 -7.614012,3.519519 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" + style="fill:#0082ff;fill-opacity:0;fill-rule:evenodd" /> + <path + inkscape:connector-curvature="0" + d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" + id="path8934-5-62-7-3-2" + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> + </g> + <path + d="m 190.77236,196.51633 v -32.00004 h -32 v 32.00004 z" + id="tab-toggled" + style="fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;stroke:none;opacity:0" + inkscape:connector-curvature="0" /> + <g + style="stroke:none" + transform="matrix(1.3333242,0,0,1.3333242,120.43928,99.514568)" + inkscape:label="#tab-toggled-topleft" + id="tab-toggled-topleft-459"> + <path + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0;stroke:none" + id="path8934-5-9-76-3" + d="m 28.726542,44.251619 c -1.148437,-0.01172 -4.499979,0.562471 -4.499979,4.523417 h 3 c 0.01858,-0.649861 0.07859,-1.451093 1.49998,-1.546855 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" + id="path8934-5-5-6" + d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" + inkscape:connector-curvature="0" /> + </g> + <g + style="stroke:none" + transform="matrix(0,1.3333333,-0.98461538,0,238.77394,126.18296)" + id="g871"> + <path + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" + id="path8928-7-3-7-2" + d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0;stroke:none" + id="path8928-7-3-3-4-6" + d="m 24.250006,48.751605 v 32.5 h 3 v -32.5 z" + inkscape:connector-curvature="0" /> + </g> + <g + style="stroke:none" + transform="matrix(-1.3333242,0,0,1.3333242,229.10544,99.498938)" + inkscape:label="#tab-focused-topright" + id="g872"> + <path + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0;stroke:none" + id="path8934-5-9-7-0-7" + d="m 28.726542,44.251619 c -1.148437,-0.01172 -4.499979,0.562471 -4.499979,4.523417 h 3 c 0.01858,-0.649861 0.07859,-1.451093 1.49998,-1.546855 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" + id="path8934-5-92-6-9" + d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" + inkscape:connector-curvature="0" /> + </g> + <g + id="tab-toggled-right" + transform="rotate(-90,150.58717,117.59801)"> + <path + inkscape:connector-curvature="0" + id="path8926-6-2-7-23-1" + d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" + style="fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;stroke:none;opacity:0" + transform="matrix(0,-1.3333333,-0.98461538,0,151.67049,196.08545)" /> + <path + style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" + d="m 71.66892,165.75212 h 32 v 2 h -32 z" + id="path1778-7-9" /> + </g> + <g + id="tab-toggled-bottomright"> + <rect + style="fill-rule:evenodd;stroke:none;opacity:0;fill:#2a2e32;fill-opacity:1;stroke-width:5.01977;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" + id="rect2585-2" + width="7.5000534" + height="7.5000463" + x="-28.750004" + y="-48.775036" + transform="matrix(1.3333242,0,0,1.3333242,229.07435,261.518)" /> + <path + style="fill:#282d32;fill-opacity:0;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 190.74128,204.48505 8.00002,0.0312 v 2 l -8.00002,-0.0312 z" + id="path1765-9" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" + d="m 198.74128,206.51627 v -10 h 2 v 10 z" + id="path1765-9-4" /> + </g> + <g + id="tab-toggled-bottomleft"> + <rect + style="fill-rule:evenodd;stroke:none;opacity:0;fill:#2a2e32;fill-opacity:1;stroke-width:5.01977;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" + id="rect2585-7-6" + width="7.5000534" + height="7.5000463" + x="-28.750004" + y="-48.775036" + transform="matrix(1.3333242,0,0,1.3333242,187.07435,261.54921)" /> + <path + style="fill:#282d32;fill-opacity:0;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 150.7413,204.51627 7.99998,0 v 2 l -7.99998,0 z" + id="path1765-5-9" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" + d="m 148.74128,206.51627 v -10 h 2 v 10 z" + id="path1765-9-4-5" /> + </g> + <g + id="tab-toggled-top"> + <path + style="stroke:none;fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;opacity:0" + id="path8926-6-2-3-6" + d="M 28.75,81.2514 V 48.7516 h -7.5 v 32.5 z" + inkscape:connector-curvature="0" + transform="matrix(0,1.3333333,-0.98461538,0,238.77394,126.18296)" /> + <path + style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" + d="m 158.74128,154.51627 h 32 v 2 h -32 z" + id="path1778-7-0" /> + </g> + <g + id="tab-toggled-left" + transform="rotate(90,111.82303,204.67038)"> + <path + inkscape:connector-curvature="0" + id="path8926-6-2-7-23-1-6" + d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" + style="fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;stroke:none;opacity:0" + transform="matrix(0,-1.3333333,-0.98461538,0,151.67049,196.08545)" /> + <path + style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" + d="m 71.66892,165.75212 h 32 v 2 h -32 z" + id="path1778-7-9-1" /> + </g> + <path + style="fill:none;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 148.74127,164.51627 v -10 h 10 v 2 h -8 v 8 z" + id="path1772" /> + <path + style="fill:none;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 150.74127,164.51627 8,-8 v -2 h -10 v 10 z" + id="path1776" /> + <g + id="tab-toggled-topleft"> + <path + style="stroke:none;fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;opacity:0" + id="path8932-3-4-9" + d="m 28.75,41.2516 c -7.523351,-4.3e-5 -7.523351,-4.3e-5 -7.5,7.5 h 7.5 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" + transform="matrix(1.3333242,0,0,1.3333242,120.43928,99.514568)" /> + <path + style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" + d="m 150.74127,164.51627 c 1e-5,-8 -1.99999,-8 8,-8 v -2 c -9.95515,-0.11847 -9.96734,0.064 -10,10 z" + id="path1779" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="tab-toggled-topright"> + <path + style="stroke:none;fill:#2a2e32;fill-opacity:1;fill-rule:evenodd;opacity:0" + id="path8932-3-18-2-8" + d="m 28.75,41.2516 c -7.476737,0.01168 -7.476737,0.01168 -7.5,7.5 h 7.5 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" + transform="matrix(-1.3333242,0,0,1.3333242,229.10544,99.498938)" /> + <path + style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" + d="m 198.74128,164.51627 c -1e-5,-8 1.99999,-8 -8,-8 v -2 c 9.95515,-0.11847 9.96734,0.064 10,10 z" + id="path1779-6" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <g + id="tab-focused-bottom" + transform="matrix(0.26458333,0,0,0.26458333,74.435532,-6.2926843)"> + <path + inkscape:connector-curvature="0" + id="path8926-6-2-7-27" + d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" + style="fill:#{{primary}};fill-opacity:0.40058717;fill-rule:evenodd;stroke:none;opacity:1" + transform="matrix(0,-1.3333333,-0.98461538,0,151.67049,196.08545)" /> + <path + style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" + d="m 71.66892,165.75212 h 32 v 2 h -32 z" + id="path1778-0" /> + </g> + <g + id="tab-focused-bottomright" + transform="translate(17.197933,-0.00826957)"> + <g + inkscape:label="#tab-normal-bottomright" + transform="matrix(-0.35277536,0,0,-0.35277536,94.808958,52.660799)" + id="tab-normal-bottomright-23-3" + style="fill-rule:evenodd;stroke:none" + inkscape:transform-center-x="-0.23473818" + inkscape:transform-center-y="3.8666083"> + <rect + style="opacity:1;fill:#{{primary}};fill-opacity:0.40058717;stroke:none;stroke-width:5.01977;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" + id="rect2585-6" + width="7.5000534" + height="7.5000463" + x="-28.750004" + y="-48.775036" + transform="scale(-1)" /> + <path + inkscape:connector-curvature="0" + id="path8932-3-6-2-0" + d="m 28.75,41.2516 c -3.98048,-0.114009 -7.614012,3.519519 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" + style="fill:#0082ff;fill-opacity:0;fill-rule:evenodd" /> + <path + inkscape:connector-curvature="0" + d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" + id="path8934-5-62-7-6" + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> + </g> + <path + style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" + d="m 84.666666,37.570833 h 2.645833 V 38.1 h -2.645833 z" + id="path1765-2" /> + </g> + <g + id="g2153"> + <g + inkscape:label="#tab-normal-topleft" + transform="matrix(0.35277536,0,0,0.35277536,66.057708,9.7808699)" + id="tab-normal-topleft" + style="fill-rule:evenodd;stroke:none"> + <path + inkscape:connector-curvature="0" + id="path8932-3" + d="m 28.75,41.2516 c -4.001503,-0.09752 -7.597523,3.498497 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" + style="fill:#3c3c3c;fill-opacity:0;fill-rule:evenodd" /> + <path + inkscape:connector-curvature="0" + d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" + id="path8934-5" + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#262626;fill-opacity:0" /> + </g> + <path + inkscape:connector-curvature="0" + id="tab-normal" + d="m 84.666667,26.987501 c -2.822226,0 -5.644452,0 -8.466677,0 0,2.822223 0,5.644443 0,8.466666 2.822225,0 5.644451,0 8.466677,0 0,-2.822223 0,-5.644443 0,-8.466666 z" + style="fill:#3c3c3c;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.264583" /> + <g + transform="matrix(0,0.35277776,-0.26051282,0,97.367082,16.845141)" + id="tab-normal-top" + style="fill-rule:evenodd;stroke:none"> + <path + inkscape:connector-curvature="0" + id="path8926-6-2" + d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" + style="fill:#3c3c3c;fill-opacity:0;fill-rule:evenodd" /> + <path + inkscape:connector-curvature="0" + d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" + id="path8928-7-3" + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#262626;fill-opacity:0" /> + </g> + <g + transform="matrix(0,-0.35277776,-0.26051282,0,97.367082,45.596527)" + id="tab-normal-bottom-213" + style="fill-rule:evenodd;stroke:none"> + <path + inkscape:connector-curvature="0" + d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" + id="path8928-7-3-5" + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> + </g> + <g + transform="matrix(-0.35277776,0,0,-0.26051282,94.809027,48.154585)" + id="tab-normal-right" + style="fill-rule:evenodd;stroke:none"> + <path + inkscape:connector-curvature="0" + id="path8926-6-2-7-6" + d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" + style="fill:#3c3c3c;fill-opacity:0;fill-rule:evenodd" /> + <path + inkscape:connector-curvature="0" + d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" + id="path8928-7-3-5-2" + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#262626;fill-opacity:0" /> + </g> + <g + transform="matrix(0.35277776,0,0,0.26051282,66.057629,14.287083)" + id="tab-normal-left" + style="fill-rule:evenodd;stroke:none"> + <path + inkscape:connector-curvature="0" + id="path8926-6-2-7-2" + d="m 28.75,48.7518 c 0,10.833267 0,21.666533 0,32.4998 -2.5,0 -5,0 -7.5,0 0,-10.833333 0,-21.666667 0,-32.5 2.5,6.7e-5 5,1.33e-4 7.5,2e-4 z" + style="fill:#3c3c3c;fill-opacity:0;fill-rule:evenodd" /> + <path + inkscape:connector-curvature="0" + d="m 21.25,48.7516 v 32.5 h 3 v -32.5 z" + id="path8928-7-3-5-7" + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#262626;fill-opacity:0" /> + </g> + <g + inkscape:label="#tab-normal-topright" + transform="matrix(-0.35277536,0,0,0.35277536,94.808958,9.7808697)" + id="tab-normal-topright" + style="fill-rule:evenodd;stroke:none"> + <path + inkscape:connector-curvature="0" + id="path8932-3-18" + d="m 28.75,41.2516 c -4.001503,-0.09752 -7.597523,3.498497 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" + style="fill:#3c3c3c;fill-opacity:0;fill-rule:evenodd" /> + <path + inkscape:connector-curvature="0" + d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" + id="path8934-5-92" + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#262626;fill-opacity:0" /> + </g> + <g + id="tab-normal-bottom" + transform="matrix(0.26458333,0,0,0.26458333,57.237598,-6.2844145)"> + <path + inkscape:connector-curvature="0" + id="path8926-6-2-7" + d="m 28.75,81.2514 c 0,-10.833267 0,-21.666533 0,-32.4998 -2.5,0 -5,0 -7.5,0 0,10.833333 0,21.666667 0,32.5 2.5,-6.7e-5 5,-1.33e-4 7.5,-2e-4 z" + style="fill:#26292c;fill-opacity:0;fill-rule:evenodd;stroke:none" + transform="matrix(0,-1.3333333,-0.98461538,0,151.67049,196.08545)" /> + <path + style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" + d="m 71.66892,165.75212 h 32 v 2 h -32 z" + id="path1778" /> + </g> + <g + id="tab-normal-bottomright"> + <g + inkscape:label="#tab-normal-bottomright" + transform="matrix(-0.35277536,0,0,-0.35277536,94.808958,52.660799)" + id="tab-normal-bottomright-23" + style="fill-rule:evenodd;stroke:none" + inkscape:transform-center-x="-0.23473818" + inkscape:transform-center-y="3.8666083"> + <rect + style="opacity:1;fill:#26292c;fill-opacity:0;stroke:none;stroke-width:5.01977;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" + id="rect2585" + width="7.5000534" + height="7.5000463" + x="-28.750004" + y="-48.775036" + transform="scale(-1)" /> + <path + inkscape:connector-curvature="0" + id="path8932-3-6-2" + d="m 28.75,41.2516 c -3.98048,-0.114009 -7.614012,3.519519 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" + style="fill:#0082ff;fill-opacity:0;fill-rule:evenodd" /> + <path + inkscape:connector-curvature="0" + d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" + id="path8934-5-62-7" + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> + </g> + <path + style="fill:#b3b3b5;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;opacity:0.49991043" + d="m 84.666666,37.570833 h 2.645833 V 38.1 h -2.645833 z" + id="path1765" /> + </g> + <g + id="tab-normal-bottomleft" + transform="translate(-11.112501,-0.00825868)"> + <g + inkscape:label="#tab-normal-bottomright" + transform="matrix(-0.35277536,0,0,-0.35277536,94.808958,52.660799)" + id="tab-normal-bottomright-23-6" + style="fill-rule:evenodd;stroke:none" + inkscape:transform-center-x="-0.23473818" + inkscape:transform-center-y="3.8666083"> + <rect + style="opacity:1;fill:#26292c;fill-opacity:0;stroke:none;stroke-width:5.01977;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" + id="rect2585-7" + width="7.5000534" + height="7.5000463" + x="-28.750004" + y="-48.775036" + transform="scale(-1)" /> + <path + inkscape:connector-curvature="0" + id="path8932-3-6-2-5" + d="m 28.75,41.2516 c -3.98048,-0.114009 -7.614012,3.519519 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" + style="fill:#0082ff;fill-opacity:0;fill-rule:evenodd" /> + <path + inkscape:connector-curvature="0" + d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" + id="path8934-5-62-7-3" + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> + </g> + <path + style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" + d="m 84.666666,37.570833 h 2.645833 V 38.1 h -2.645833 z" + id="path1765-5" /> + </g> + </g> + <g + id="g1881" + transform="translate(1.5498176,-2.1552243)"> + <rect + style="fill:#eff0f3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.49874;stroke-linejoin:round" + id="grip-focused" + height="2.6458333" + y="41.842724" + x="182.3356" + width="2.6458333" /> + <rect + style="fill:#eff0f3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.49874;stroke-linejoin:round" + id="grip-pressed" + height="2.6458333" + y="41.842724" + x="186.03976" + width="2.6458333" /> + <rect + width="2.6458333" + x="178.63144" + y="41.842724" + height="2.6458333" + style="fill:url(#linearGradient1889);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.49874;stroke-linejoin:round" + id="grip-normal" /> + </g> + <g + id="g2538"> + <g + id="g2415"> + <path + style="fill:#{{surface}};fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="progress-pattern-disabled-topleft" + d="m 140.75833,57.943776 v -1.984375 c -1.05833,0 -1.98437,0.926041 -1.98437,1.984375 z" /> + <rect + width="1.984375" + x="138.77397" + y="57.943775" + height="4.2333331" + style="fill:#{{surface}};stroke:none;stroke-width:0.264583" + id="progress-pattern-disabled-left" /> + <use + width="450" + x="0" + y="0" + height="1230" + id="progress-pattern-disabled-top" + xlink:href="#progress-pattern-disabled-left" + transform="rotate(90,142.87501,60.060442)" + style="fill:#{{surface}}" /> + <use + width="450" + x="0" + y="0" + height="1230" + id="progress-pattern-disabled-topright" + xlink:href="#progress-pattern-disabled-topleft" + transform="rotate(90,142.87501,60.060442)" + style="fill:#{{surface}}" /> + <use + width="450" + x="0" + y="0" + height="1230" + id="progress-pattern-disabled-bottomright" + xlink:href="#progress-pattern-disabled-topleft" + transform="rotate(180,142.87502,60.060438)" + style="fill:#{{surface}}" /> + <use + width="450" + x="0" + y="0" + height="1230" + id="progress-pattern-disabled-right" + xlink:href="#progress-pattern-disabled-left" + transform="translate(6.2177087)" + style="fill:#{{surface}}" /> + <use + width="450" + x="0" + y="0" + height="1230" + id="progress-pattern-disabled-bottom" + xlink:href="#progress-pattern-disabled-left" + transform="rotate(-90,142.87501,60.060441)" + style="fill:#{{surface}}" /> + <use + width="450" + x="0" + y="0" + height="1230" + id="progress-pattern-disabled-bottomleft" + xlink:href="#progress-pattern-disabled-topleft" + transform="rotate(-90,142.87501,60.060441)" + style="fill:#{{surface}}" /> + <use + width="450" + x="0" + y="0" + height="1230" + id="progress-pattern-disabled" + xlink:href="#progress-pattern-disabled-left" + transform="matrix(2.1333333,0,0,1,-155.2928,9.5e-7)" + style="fill:#{{surface}}" /> + </g> + <g + id="g2426"> + <path + style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="progress-normal-left" + d="m 153.45833,64.822916 v -8.466614 h -2.64583 l 1.6e-4,8.466667 z" + inkscape:connector-curvature="0" /> + <path + style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="progress-normal-topleft" + d="m 153.45831,53.710469 c -1.45518,-1.3e-5 -2.64581,1.190612 -2.6458,2.645807 h 2.64581 z" + inkscape:connector-curvature="0" /> + <path + style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="progress-normal" + d="m 153.45833,56.356302 v 8.466667 h 8.46667 v -8.466667 z" + inkscape:connector-curvature="0" /> + <path + style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="progress-normal-right" + d="m 161.925,64.822916 v -8.466614 h 2.64583 l -1.6e-4,8.466667 z" + inkscape:connector-curvature="0" /> + <path + style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="progress-normal-topright" + d="m 161.92503,53.710469 c 1.45518,-1.3e-5 2.6458,1.190612 2.64579,2.645807 h -2.6458 z" + inkscape:connector-curvature="0" /> + <path + style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="progress-normal-top" + d="m 153.45836,56.356302 h 8.46661 v -2.645833 h -8.46666 z" + inkscape:connector-curvature="0" /> + <path + style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="progress-normal-bottom" + d="m 161.92495,64.822969 h -8.46662 v 2.645833 h 8.46667 z" + inkscape:connector-curvature="0" /> + <path + style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="progress-normal-bottomleft" + d="m 153.45833,67.468802 c -1.45519,0 -2.64582,-1.190625 -2.64581,-2.645817 l 2.64581,-2.7e-5 z" + inkscape:connector-curvature="0" /> + <path + style="opacity:0.49849315;fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + id="progress-normal-bottomright" + d="m 161.92499,67.468802 c 1.4552,0 2.64582,-1.190625 2.64582,-2.645817 l -2.64581,-1.6e-5 z" + inkscape:connector-curvature="0" /> + </g> + <g + id="g390" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.26458333,0,0,0.26458333,121.70833,19.248411)"> + <path + inkscape:connector-curvature="0" + d="m 17.5,140.0003 v 32.4998 H 10 v -32.5 z" + id="progress-pattern-normal-left" + style="fill:#{{primary}};fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + d="m 17.5,180.0001 c -4,0 -7.5,-3.5 -7.5,-7.5 h 7.5 z" + id="progress-pattern-normal-bottomleft" + style="fill:#{{primary}};fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + d="m 10,140.0001 c 0,-4 3.5,-7.5 7.5,-7.5 v 7.5 z" + id="progress-pattern-normal-topleft" + style="fill:#{{primary}};fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + d="M 17.5002,172.5002 H 50 v 7.5 H 17.5 Z" + id="progress-pattern-normal-bottom" + style="fill:#{{primary}};fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + d="M 49.9998,140.0002 H 17.5 v -7.5 H 50 Z" + id="progress-pattern-normal-top" + style="fill:#{{primary}};fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + d="m 17.5,172.5002 v -32.5 H 50 v 32.5 z" + id="progress-pattern-normal" + style="fill:#{{primary}};fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + d="m 50,140.0004 v 32.4998 h 7.5 v -32.5 z" + id="progress-pattern-normal-right" + style="fill:#{{primary}};fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + d="m 50,180.0002 c 4,0 7.5,-3.5 7.5,-7.5 H 50 Z" + id="progress-pattern-normal-bottomright" + style="fill:#{{primary}};fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + d="m 57.5,140.0002 c 0,-4 -3.5,-7.5 -7.5,-7.5 v 7.5 z" + id="progress-pattern-normal-topright" + style="fill:#{{primary}};fill-opacity:1" /> + </g> + </g> + <g + id="g2441"> + <path + inkscape:connector-curvature="0" + id="header-pressed" + d="m 162.98333,72.760416 h -1.5875 v 1.5875 h 1.5875 z" + style="opacity:0.19;fill:#ffffff;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="header-toggled" + d="m 165.36458,72.760416 h -1.5875 v 1.5875 h 1.5875 z" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="header-focused" + d="m 160.60209,72.760416 h -1.5875 v 1.5875 h 1.5875 z" + style="opacity:0.08;fill:#ffffff;stroke-width:0.264583" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="header-normal-bottom" + d="m 161.13122,82.518149 h -1.5875 v 1.5875 h 1.5875 z" + style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="header-normal-bottomleft" + d="m 162.71872,82.518149 h -1.5875 v 1.5875 h 1.5875 z" + style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="header-normal-bottomright" + d="m 164.30622,82.518149 h -1.5875 v 1.5875 h 1.5875 z" + style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="header-normal-left" + d="m 164.30622,80.930649 v -1.5875 h -1.5875 v 1.5875 z" + style="opacity:0.00100002;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="header-normal-right" + d="m 162.71872,80.930649 v -1.5875 h -1.5875 v 1.5875 z" + style="opacity:0.00100002;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="header-normal-top" + d="m 161.13122,80.930649 h -1.5875 v 1.5875 h 1.5875 z" + style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="header-normal-topright" + d="m 162.71872,80.930649 h -1.5875 v 1.5875 h 1.5875 z" + style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="header-normal-topleft" + d="m 164.30622,80.930649 h -1.5875 v 1.5875 h 1.5875 z" + style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="header-normal" + d="m 161.13122,80.930649 v -1.5875 h -1.5875 v 1.5875 z" + style="fill:#36383e;fill-opacity:1;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="header-separator" + d="m 159.54372,79.343149 h -1.5875 v 1.5875 h 1.5875 z" + style="fill:#212327;fill-opacity:1;stroke-width:0.264583" /> + </g> + <g + id="button-default-indicator-7" + transform="matrix(0.26458333,0,0,0.26458333,136.59114,-10.252604)"> + <rect + style="opacity:0;fill:#7b7b7b" + id="rect139-5" + width="25" + height="25" + x="375" + y="87.5" /> + <path + style="opacity:0.00100002" + id="path141-3" + d="m 396.25,86.25 -17.5,17.5 h 17.5 z" /> + </g> + <path + style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 227.54166,0 v 148.16666 h 174.625 V 0 Z" + id="path3040" /> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:4.44565px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.111141" + x="230.73593" + y="7.3030114" + id="text3044"><tspan + sodipodi:role="line" + id="tspan3042" + x="230.73593" + y="7.3030114" + style="stroke-width:0.111141">Invisible elements here</tspan></text> + <g + id="resize-grip-normal" + transform="matrix(0.26458333,0,0,0.26458333,130.96875,7.2760416)" + style="opacity:0.00100002"> + <rect + style="opacity:0;fill:#7b7b7b" + id="rect188" + width="25" + height="25" + x="375" + y="87.5" /> + <path + style="opacity:0.3" + id="path190" + d="m 400,95 -17.5,17.5 H 400 Z" /> + </g> + <g + id="resize-grip-focused" + transform="matrix(0.26458333,0,0,0.26458333,138.90625,7.2760416)" + style="opacity:0.00100002"> + <rect + style="opacity:0;fill:#7b7b7b" + id="rect193" + width="25" + height="25" + x="375" + y="87.5" /> + <path + style="fill:#00a0d7;fill-opacity:1" + id="path195" + d="m 398.5859,91.0859 c -7.80469,7.80469 -15.6094,15.6094 -23.4141,23.4141 8.9427,0 17.8854,0 26.8281,0 0,-8.94271 0,-17.8854 0,-26.8281 -1.13802,1.13802 -2.27604,2.27604 -3.41406,3.41406 z" /> + </g> + <g + id="g2506"> + <g + id="g2452"> + <rect + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + y="75.67083" + x="138.90623" + height="1.0583333" + width="2.1166666" + id="itemview-pressed-top" /> + <rect + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + y="78.845833" + x="138.90623" + height="1.0583333" + width="2.1166666" + id="itemview-pressed-bottom" /> + <path + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + d="m 138.90624,76.729164 h 2.11667 v 2.116666 h -2.11667 z" + id="itemview-pressed" /> + <path + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + d="m 141.02291,75.67083 c 1.05833,0 1.05833,1.058334 1.05833,1.058334 h -1.05833 z" + id="itemview-pressed-topright" /> + <path + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + d="m 141.02291,78.84583 h 1.05833 c 0,0 0,1.058334 -1.05833,1.058334 z" + id="itemview-pressed-bottomright" /> + <rect + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + y="76.729164" + x="141.0229" + height="2.1166666" + width="1.0583333" + id="itemview-pressed-right" /> + <rect + inkscape:label="#itemview-pressed-left" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + y="76.729164" + x="137.84792" + height="2.1166666" + width="1.0583333" + id="itemview-pressed-left" /> + <path + inkscape:label="#itemview-pressed-topleft" + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + d="m 138.90624,75.67083 v 1.058334 h -1.05833 c 0,0 0,-1.058334 1.05833,-1.058334 z" + id="itemview-pressed-topleft" /> + <path + inkscape:label="#itemview-pressed-bottomleft" + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + d="m 137.84791,78.84583 h 1.05833 v 1.058334 c -1.05833,0 -1.05833,-1.058334 -1.05833,-1.058334 z" + id="itemview-pressed-bottomleft" /> + </g> + <g + id="g2463"> + <rect + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + y="75.67083" + x="143.93332" + height="1.0583333" + width="2.1166666" + id="itemview-toggled-top" /> + <rect + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + y="78.845833" + x="143.93332" + height="1.0583333" + width="2.1166666" + id="itemview-toggled-bottom" /> + <path + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + d="m 143.93333,76.729164 h 2.11666 v 2.116666 h -2.11666 z" + id="itemview-toggled" /> + <rect + inkscape:label="#itemview-toggled-right" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + y="76.729164" + x="146.04999" + height="2.1166666" + width="1.0583333" + id="itemview-toggled-right" /> + <path + inkscape:label="#itemview-toggled-topright" + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + d="m 146.04999,75.67083 c 1.05834,0 1.05834,1.058334 1.05834,1.058334 h -1.05834 z" + id="itemview-toggled-topright" /> + <path + inkscape:label="#itemview-toggled-bottomright" + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + d="m 146.04999,78.84583 h 1.05834 c 0,0 0,1.058334 -1.05834,1.058334 z" + id="itemview-toggled-bottomright" /> + <rect + inkscape:label="#itemview-toggled-left" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + y="76.729164" + x="142.87498" + height="2.1166666" + width="1.0583333" + id="itemview-toggled-left" /> + <path + inkscape:label="#itemview-toggled-topleft" + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + d="m 143.93333,75.67083 v 1.058334 h -1.05834 c 0,0 0,-1.058334 1.05834,-1.058334 z" + id="itemview-toggled-topleft" /> + <path + inkscape:label="#itemview-toggled-bottomleft" + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.264583;opacity:0.75" + d="m 142.87499,78.84583 h 1.05834 v 1.058334 c -1.05834,0 -1.05834,-1.058334 -1.05834,-1.058334 z" + id="itemview-toggled-bottomleft" /> + </g> + <g + id="g2474"> + <rect + style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" + y="75.67083" + x="133.87917" + height="1.0583333" + width="2.1166666" + id="itemview-focused-top" /> + <rect + style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" + y="78.845833" + x="133.87917" + height="1.0583333" + width="2.1166666" + id="itemview-focused-bottom" /> + <path + style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" + d="m 133.87916,76.729164 h 2.11667 v 2.116666 h -2.11667 z" + id="itemview-focused" /> + <rect + style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" + y="76.729164" + x="135.99582" + height="2.1166666" + width="1.0583333" + id="itemview-focused-right" /> + <path + style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" + d="m 135.99583,75.67083 c 1.05833,0 1.05833,1.058334 1.05833,1.058334 h -1.05833 z" + id="itemview-focused-topright" /> + <path + style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" + d="m 135.99583,78.84583 h 1.05833 c 0,0 0,1.058334 -1.05833,1.058334 z" + id="itemview-focused-bottomright" /> + <rect + inkscape:label="#itemview-focused-left" + style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" + y="76.729164" + x="132.82083" + height="2.1166666" + width="1.0583333" + id="itemview-focused-left" /> + <path + inkscape:label="#itemview-focused-topleft" + inkscape:connector-curvature="0" + style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" + d="m 133.87916,75.67083 v 1.058334 h -1.05833 c 0,0 0,-1.058334 1.05833,-1.058334 z" + id="itemview-focused-topleft" /> + <path + inkscape:label="#itemview-focused-bottomleft" + inkscape:connector-curvature="0" + style="opacity:0.2;fill:#ffffff;stroke-width:0.264583" + d="m 132.82083,78.84583 h 1.05833 v 1.058334 c -1.05833,0 -1.05833,-1.058334 -1.05833,-1.058334 z" + id="itemview-focused-bottomleft" /> + </g> + </g> + <g + id="tab-focused-bottomleft" + transform="translate(6.0854158,-0.00825868)"> + <g + inkscape:label="#tab-normal-bottomright" + transform="matrix(-0.35277536,0,0,-0.35277536,94.808958,52.660799)" + id="tab-normal-bottomright-23-3-6" + style="fill-rule:evenodd;stroke:none" + inkscape:transform-center-x="-0.23473818" + inkscape:transform-center-y="3.8666083"> + <rect + style="opacity:1;fill:#{{primary}};fill-opacity:0.400587;stroke:none;stroke-width:5.01977;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.784314;paint-order:markers fill stroke" + id="rect2585-6-7" + width="7.5000534" + height="7.5000463" + x="-28.750004" + y="-48.775036" + transform="scale(-1)" /> + <path + inkscape:connector-curvature="0" + id="path8932-3-6-2-0-5" + d="m 28.75,41.2516 c -3.98048,-0.114009 -7.614012,3.519519 -7.5,7.5 2.5,0 5,0 7.5,0 0,-2.5 0,-5 0,-7.5 z" + style="fill:#0082ff;fill-opacity:0;fill-rule:evenodd" /> + <path + inkscape:connector-curvature="0" + d="m 28.75,41.2516 c -4.12502,0 -7.5,3.37499 -7.5,7.5 h 3 c 0,-2.6249 1.875,-4.5 4.5,-4.5 z" + id="path8934-5-62-7-6-3" + style="color:#000000;line-height:normal;font-family:Sans;text-indent:0;text-align:start;text-transform:none;fill:#0082ff;fill-opacity:0" /> + </g> + <path + style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.49991043" + d="m 84.666666,37.570833 h 2.645833 V 38.1 h -2.645833 z" + id="path1765-2-5" /> + </g> + <g + id="g7998" + transform="matrix(0.26458333,0,0,0.26458333,92.604166,29.104166)"> + <g + style="fill:#808080;fill-opacity:1" + transform="translate(-242.76608,-863.35638)" + id="g6135"> + <g + style="fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="expand-scrollbarslider-normal-top" + transform="matrix(0,1,1,0,-740.91112,1013.957)"> + <path + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" + id="path2411" + d="m 143,1101 v 16.4064 0.094 h 12 v -16.5 h -12 z" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" + id="path2413" + d="m 146.375,1100.9998 v 16.4064 0.094 l 8.625,2e-4 v -16.5 l -8.625,-2e-4 z" /> + </g> + <g + style="fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="expand-scrollbarslider-normal-topleft" + transform="matrix(0,1,1,0,-740.91112,1013.957)"> + <path + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" + id="path2423" + d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" + id="path2425" + d="m 155,1092.5 c -4,0.011 -8.625,2.7501 -8.625,8.4998 L 155,1101 Z" /> + </g> + <g + style="fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="expand-scrollbarslider-normal-topright" + transform="rotate(90,231.81613,1245.7731)"> + <path + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" + id="path2429" + d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" + id="path2431" + d="m 155,1092.5 c -4,0.011 -8.625,2.7501 -8.625,8.4998 L 155,1101 Z" /> + </g> + <g + style="fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="expand-scrollbarslider-normal-bottomleft" + transform="rotate(-90,291.52288,1032.434)"> + <path + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" + id="path2435" + d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" + id="path2437" + d="m 155,1092.5 c -4,0.011 -8.625,2.7501 -8.625,8.4998 L 155,1101 Z" /> + </g> + <g + style="fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="expand-scrollbarslider-normal-bottom" + transform="rotate(-90,291.52288,1032.434)"> + <path + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" + id="path2417" + d="m 143,1101 v 16.4064 0.094 h 12 v -16.5 h -12 z" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" + id="path2419" + d="m 146.375,1100.9998 v 16.4064 0.094 l 8.625,2e-4 v -16.5 l -8.625,-2e-4 z" /> + </g> + <g + style="fill:#b4b4b4;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="expand-scrollbarslider-normal-bottomright" + transform="matrix(0,-1,-1,0,1477.5886,1323.9569)"> + <path + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" + id="path2441" + d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;opacity:0.5" + id="path2443" + d="m 155,1092.5 c -4,0.011 -8.625,2.7501 -8.625,8.4998 L 155,1101 Z" /> + </g> + </g> + <g + style="fill:#808080;fill-opacity:1" + transform="translate(-259.58603,-865.85648)" + id="g6155"> + <g + id="g4893"> + <g + transform="matrix(0,1,-1.3788159,0,1384.1178,946.45698)" + id="expand-scrollbarslider-focused-bottomright" + style="fill:#b4b4b4;fill-opacity:1;stroke:none"> + <rect + id="rect2387" + style="opacity:0;fill:#b4b4b4;fill-opacity:1" + height="8.702877" + y="669.797" + x="225" + width="12" /> + <path + d="M 225,670.8848 V 678.5 h 10.5 c 0,-4.35156 -4.5,-7.61523 -10.5,-7.61521 z" + id="path2389" + style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(0,1,-1.3788175,0,1384.1189,946.45698)" + id="expand-scrollbarslider-focused-topright" + style="fill:#b4b4b4;fill-opacity:1;stroke:none"> + <rect + id="rect2363" + style="opacity:0;fill:#b4b4b4;fill-opacity:1" + height="8.7029018" + y="669.79688" + x="213" + width="12" /> + <path + d="m 225,670.8847 c -6,4e-5 -10.5,3.2637 -10.5,7.6152 H 225 Z" + id="path2365" + style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" + inkscape:connector-curvature="0" /> + </g> + <g + transform="rotate(90,90.317132,1036.7742)" + id="expand-scrollbarslider-focused-top" + style="fill:#b4b4b4;fill-opacity:1;stroke:none"> + <rect + id="rect2351" + style="opacity:0;fill:#b4b4b4;fill-opacity:1" + height="22.999884" + y="678.49976" + x="212.99995" + width="12" /> + <path + d="m 214.5,678.5004 v 22.8687 0.131 h 10.4999 V 678.5007 H 214.5 Z" + id="path2353" + style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" + inkscape:connector-curvature="0" /> + </g> + <g + transform="rotate(90,90.317132,1036.7742)" + id="expand-scrollbarslider-focused-bottom" + style="fill:#b4b4b4;fill-opacity:1;stroke:none"> + <rect + id="rect2339" + style="opacity:0;fill:#b4b4b4;fill-opacity:1" + height="22.993509" + y="678.50287" + x="224.99998" + width="12.00004" /> + <path + d="m 225,678.5005 v 22.9992 h 10.5 c 2.2e-4,-0.0452 -2e-4,-0.086 0,-0.131 V 678.5001 H 225 Z" + id="path2341" + style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(0,1,1.3788159,0,-509.9349,946.45698)" + id="expand-scrollbarslider-focused-bottomleft" + style="fill:#b4b4b4;fill-opacity:1;stroke:none"> + <rect + id="rect2393" + style="opacity:0;fill:#b4b4b4;fill-opacity:1" + height="8.702877" + y="669.797" + x="225" + width="12" /> + <path + d="M 225,670.8848 V 678.5 h 10.5 c 0,-4.35156 -4.5,-7.61523 -10.5,-7.61521 z" + id="path2395" + style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(0,1,1.3788175,0,-509.93594,946.45698)" + id="expand-scrollbarslider-focused-topleft" + style="fill:#b4b4b4;fill-opacity:1;stroke:none"> + <rect + id="rect2369" + style="opacity:0;fill:#b4b4b4;fill-opacity:1" + height="8.7029018" + y="669.79688" + x="213" + width="12" /> + <path + d="m 225,670.8847 c -6,4e-5 -10.5,3.2637 -10.5,7.6152 H 225 Z" + id="path2371" + style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <g + style="fill:#808080;fill-opacity:1" + transform="translate(-268.40397,-865.85653)" + id="g6175"> + <g + style="fill:#b4b4b4;fill-opacity:1;stroke:none" + id="expand-scrollbarslider-pressed-bottomright" + transform="matrix(0,1,-1.3788159,0,1448.1179,946.45708)"> + <rect + width="12" + x="225" + y="669.797" + height="8.702877" + style="opacity:0;fill:#b4b4b4;fill-opacity:1" + id="rect2399" /> + <path + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" + id="path2401" + d="M 225,670.8848 V 678.5 h 10.5 c 0,-4.35156 -4.5,-7.61523 -10.5,-7.61521 z" /> + </g> + <g + style="fill:#b4b4b4;fill-opacity:1;stroke:none" + id="expand-scrollbarslider-pressed-topright" + transform="matrix(0,1,-1.3788175,0,1448.119,946.45708)"> + <rect + width="12" + x="213" + y="669.79688" + height="8.7029018" + style="opacity:0;fill:#b4b4b4;fill-opacity:1" + id="rect2375" /> + <path + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" + id="path2377" + d="m 225,670.8847 c -6,4e-5 -10.5,3.2637 -10.5,7.6152 H 225 Z" /> + </g> + <g + style="fill:#b4b4b4;fill-opacity:1;stroke:none" + id="expand-scrollbarslider-pressed-top" + transform="rotate(90,122.31713,1068.7743)"> + <rect + width="12" + x="212.99995" + y="678.49976" + height="22.999884" + style="opacity:0;fill:#b4b4b4;fill-opacity:1" + id="rect2357" /> + <path + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" + id="path2359" + d="m 214.5,678.5004 v 22.8687 0.131 h 10.4999 V 678.5007 H 214.5 Z" /> + </g> + <g + style="fill:#b4b4b4;fill-opacity:1;stroke:none" + id="expand-scrollbarslider-pressed-bottom" + transform="rotate(90,122.31713,1068.7743)"> + <rect + width="12.00004" + x="224.99998" + y="678.50287" + height="22.993509" + style="opacity:0;fill:#b4b4b4;fill-opacity:1" + id="rect2345" /> + <path + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" + id="path2347" + d="m 225,678.5005 v 22.9992 h 10.5 c 2.2e-4,-0.0452 -2e-4,-0.086 0,-0.131 V 678.5001 H 225 Z" /> + </g> + <g + style="fill:#b4b4b4;fill-opacity:1;stroke:none" + id="expand-scrollbarslider-pressed-bottomleft" + transform="matrix(0,1,1.3788159,0,-445.9349,946.45698)"> + <rect + width="12" + x="225" + y="669.797" + height="8.702877" + style="opacity:0;fill:#b4b4b4;fill-opacity:1" + id="rect2405" /> + <path + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" + id="path2407-26" + d="M 225,670.8848 V 678.5 h 10.5 c 0,-4.35156 -4.5,-7.61523 -10.5,-7.61521 z" /> + </g> + <g + style="fill:#b4b4b4;fill-opacity:1;stroke:none" + id="expand-scrollbarslider-pressed-topleft" + transform="matrix(0,1,1.3788175,0,-445.93594,946.45698)"> + <rect + width="12" + x="213" + y="669.79688" + height="8.7029018" + style="opacity:0;fill:#b4b4b4;fill-opacity:1" + id="rect2381" /> + <path + inkscape:connector-curvature="0" + style="fill:#b2b3b4;fill-opacity:1;fill-rule:evenodd;opacity:0.5" + id="path2383" + d="m 225,670.8847 c -6,4e-5 -10.5,3.2637 -10.5,7.6152 H 225 Z" /> + </g> + </g> + </g> + <g + id="g7853" + transform="matrix(0.26458333,0,0,0.26458333,95.627019,23.931541)"> + <rect + style="opacity:0.5;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6.74619" + id="scrollbarslider-normal" + width="10.666626" + height="42.666752" + x="302.90839" + y="269.55008" + class="ColorScheme-Text" /> + <g + style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" + id="scrollbarslider-normal-right" + transform="matrix(1.8750001,0,0,4.0000079,295.57496,239.68324)"> + <path + id="rect3838" + d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" + style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + <rect + style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1.23168" + id="rect3856" + width="1.4222221" + height="10.666667" + x="13.866665" + y="7.4666667" /> + </g> + <g + style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" + id="scrollbarslider-normal-topright" + transform="matrix(1.8750001,0,0,1.8749993,295.575,255.55004)"> + <rect + style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1.42222" + id="rect3852" + width="5.6888885" + height="5.6888885" + x="9.5999985" + y="1.7777776" /> + <path + id="rect3840" + d="m 9.6,3.2 v 4.2666667 h 4.266667 C 13.866667,5.1029333 11.963733,3.2 9.6,3.2 Z" + style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + </g> + <g + style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" + id="scrollbarslider-normal-bottomright" + transform="matrix(1.8750001,0,0,1.8749993,295.575,278.21684)"> + <rect + style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1.42222" + id="rect3862" + width="5.6888885" + height="5.6888885" + x="9.5999985" + y="18.133333" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + d="m 9.6,22.4 v -4.266667 h 4.266667 C 13.866667,20.497067 11.963733,22.4 9.6,22.4 Z" + id="path3871" + class="ColorScheme-Text" /> + </g> + <g + style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" + id="scrollbarslider-normal-left" + transform="matrix(-1.8749997,0,0,4.0000079,320.9083,239.68324)"> + <path + style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" + id="path3891" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + <rect + style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1.23168" + id="rect3854" + width="1.4222221" + height="10.666667" + x="-15.28889" + y="7.4666667" + transform="scale(-1,1)" /> + </g> + <g + style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" + id="scrollbarslider-normal-topleft" + transform="matrix(-1.8749997,0,0,1.8749993,320.90834,255.55004)"> + <rect + style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1.42222" + id="rect3848" + width="5.6888885" + height="5.6888885" + x="-15.28889" + y="1.7777776" + transform="scale(-1,1)" /> + <path + style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + d="m 9.6,3.2 v 4.2666667 h 4.266667 C 13.866667,5.1029333 11.963733,3.2 9.6,3.2 Z" + id="path3895" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + </g> + <g + style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" + id="scrollbarslider-normal-bottomleft" + transform="matrix(-1.8749997,0,0,1.8749993,320.90834,278.21684)"> + <rect + style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:1.42222" + id="rect3858" + width="5.6888885" + height="5.6888885" + x="-15.28889" + y="18.133333" + transform="scale(-1,1)" /> + <path + id="path3901" + d="m 9.6,22.4 v -4.266667 h 4.266667 C 13.866667,20.497067 11.963733,22.4 9.6,22.4 Z" + style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + </g> + <g + style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" + transform="matrix(0,-1.8749993,-0.99999611,0,321.04164,287.55003)" + id="scrollbarslider-normal-top"> + <rect + style="opacity:0.01;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:3.89492" + id="rect3850-9" + width="10.666667" + height="5.6888885" + x="-18.133333" + y="-15.288889" + transform="matrix(0,-1,-1,0,0,0)" /> + <path + inkscape:connector-curvature="0" + id="path3909" + d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" + style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + class="ColorScheme-Text" /> + </g> + <g + style="fill:#b3b3b5;fill-opacity:1;opacity:0.5" + id="scrollbarslider-normal-bottom" + transform="matrix(0,1.8749993,-0.99999611,0,321.04162,294.21684)"> + <rect + style="opacity:0;fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:3.89492" + id="rect3860" + width="10.666667" + height="5.6888885" + x="-18.133333" + y="9.5999994" + transform="rotate(-90)" /> + <path + style="opacity:1;fill:#b3b3b5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" + id="path3915" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + </g> + </g> + <g + id="g7826" + transform="matrix(0.26458333,0,0,0.26458333,91.632172,23.931541)"> + <rect + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6.7461" + id="scrollbarslider-focused" + width="10.666341" + height="42.666752" + x="362.34067" + y="269.55008" + class="ColorScheme-ButtonHover" /> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-focused-right" + transform="matrix(1.8750001,0,0,4.0000079,355.00687,239.68324)"> + <path + id="rect3838-4" + d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + inkscape:connector-curvature="0" + class="ColorScheme-ButtonHover" /> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.23168" + id="rect3904" + width="1.4222221" + height="10.666667" + x="13.866665" + y="7.4666667" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-focused-topright" + transform="matrix(1.8750001,0,0,1.8749993,355.00719,255.55004)"> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" + id="rect3894" + width="5.6888885" + height="5.6888885" + x="9.5999985" + y="1.7777761" /> + <path + id="rect3840-2" + d="m 9.6,3.2 v 4.2666667 h 4.266667 C 13.866667,5.1029333 11.963733,3.2 9.6,3.2 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + inkscape:connector-curvature="0" + class="ColorScheme-ButtonHover" /> + </g> + <g + id="scrollbarslider-focused-bottomright" + transform="matrix(1.8750001,0,0,1.8749993,355.00719,278.21684)" + style="fill:#4a7fbd;fill-opacity:0.952941"> + <path + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + d="m 9.6,22.4 v -4.266667 h 4.266667 C 13.866667,20.497067 11.963733,22.4 9.6,22.4 Z" + id="path3871-1" + class="ColorScheme-ButtonHover" /> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" + id="rect3908" + width="5.6888885" + height="5.6888885" + x="9.5999985" + y="18.133331" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-focused-left" + transform="matrix(-1.8749997,0,0,4.0000079,380.34068,239.68324)"> + <path + style="opacity:1;fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" + id="path3891-9" + inkscape:connector-curvature="0" + class="ColorScheme-ButtonHover" /> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.23168" + id="rect3902" + width="1.4222221" + height="10.666667" + x="-15.28889" + y="7.4666667" + transform="scale(-1,1)" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-focused-topleft" + transform="matrix(-1.8749997,0,0,1.8749993,380.341,255.55004)"> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" + id="rect3880" + width="5.6888885" + height="5.6888885" + x="-15.28889" + y="1.7777761" + transform="scale(-1,1)" /> + <path + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + d="m 9.6,3.2 v 4.2666667 h 4.266667 C 13.866667,5.1029333 11.963733,3.2 9.6,3.2 Z" + id="path3895-2" + inkscape:connector-curvature="0" + class="ColorScheme-ButtonHover" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-focused-bottomleft" + transform="matrix(-1.8749997,0,0,1.8749993,380.341,278.21684)"> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" + id="rect3890" + width="5.6888885" + height="5.6888885" + x="-15.28889" + y="18.133331" + transform="scale(-1,1)" /> + <path + id="path3901-9" + d="m 9.6,22.4 v -4.266667 h 4.266667 C 13.866667,20.497067 11.963733,22.4 9.6,22.4 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + inkscape:connector-curvature="0" + class="ColorScheme-ButtonHover" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + transform="matrix(0,-1.8749993,-0.9999694,0,380.47347,287.55004)" + id="scrollbarslider-focused-top"> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:3.89492" + id="rect3892" + width="10.666667" + height="5.6888885" + x="-18.133333" + y="-15.288891" + transform="matrix(0,-1,-1,0,0,0)" /> + <path + inkscape:connector-curvature="0" + id="path3909-6" + d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + class="ColorScheme-ButtonHover" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-focused-bottom" + transform="matrix(0,1.8749993,-0.9999694,0,380.47347,294.21684)"> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:3.89492" + id="rect3906" + width="10.666667" + height="5.6888885" + x="-18.133333" + y="9.5999975" + transform="rotate(-90)" /> + <path + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" + id="path3915-6" + inkscape:connector-curvature="0" + class="ColorScheme-ButtonHover" /> + </g> + </g> + <g + id="g7799" + transform="matrix(0.26458333,0,0,0.26458333,87.989953,23.931517)"> + <rect + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6.7462" + id="scrollbarslider-pressed" + width="10.666666" + height="42.666752" + x="421.77289" + y="269.55017" + class="ColorScheme-ButtonHover" /> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-pressed-right" + transform="matrix(1.8750001,0,0,4.0000079,414.43955,239.68334)"> + <path + id="rect3838-4-8" + d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + inkscape:connector-curvature="0" + class="ColorScheme-ButtonHover" /> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.23168" + id="rect3924" + width="1.4222221" + height="10.666667" + x="13.866665" + y="7.4666667" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-pressed-topright" + transform="matrix(1.8750001,0,0,1.8749993,414.43955,255.55014)"> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" + id="rect3920" + width="5.6888885" + height="5.6888885" + x="9.5999985" + y="1.7777756" /> + <path + id="rect3840-2-9" + d="m 9.6,3.2 v 4.2666667 h 4.266667 C 13.866667,5.1029333 11.963733,3.2 9.6,3.2 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + inkscape:connector-curvature="0" + class="ColorScheme-ButtonHover" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-pressed-bottomright" + transform="matrix(1.8750001,0,0,1.8749993,414.43955,278.21674)"> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" + id="rect3930" + width="5.6888885" + height="5.6888885" + x="9.5999985" + y="18.133331" /> + <path + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + d="m 9.6,22.4 v -4.266667 h 4.266667 C 13.866667,20.497067 11.963733,22.4 9.6,22.4 Z" + id="path3871-1-7" + class="ColorScheme-ButtonHover" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-pressed-left" + transform="matrix(-1.8749997,0,0,4.0000079,439.77287,239.68334)"> + <path + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" + id="path3891-9-4" + inkscape:connector-curvature="0" + class="ColorScheme-ButtonHover" /> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.23168" + id="rect3922-5" + width="1.4222221" + height="10.666667" + x="-15.28889" + y="7.4666667" + transform="scale(-1,1)" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-pressed-topleft" + transform="matrix(-1.8749997,0,0,1.8749993,439.77287,255.55014)"> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" + id="rect3916" + width="5.6888885" + height="5.6888885" + x="-15.28889" + y="1.7777756" + transform="scale(-1,1)" /> + <path + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + d="m 9.6,3.2 v 4.2666667 h 4.266667 C 13.866667,5.1029333 11.963733,3.2 9.6,3.2 Z" + id="path3895-2-1" + inkscape:connector-curvature="0" + class="ColorScheme-ButtonHover" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-pressed-bottomleft" + transform="matrix(-1.8749997,0,0,1.8749993,439.77287,278.21674)"> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:1.42222" + id="rect3926" + width="5.6888885" + height="5.6888885" + x="-15.28889" + y="18.133331" + transform="scale(-1,1)" /> + <path + id="path3901-9-9" + d="m 9.6,22.4 v -4.266667 h 4.266667 C 13.866667,20.497067 11.963733,22.4 9.6,22.4 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + inkscape:connector-curvature="0" + class="ColorScheme-ButtonHover" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + transform="matrix(0,-1.8749993,-0.99999991,0,439.90621,287.55014)" + id="scrollbarslider-pressed-top"> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:3.89492" + id="rect3918" + width="10.666667" + height="5.6888885" + x="-18.133333" + y="-15.288891" + transform="matrix(0,-1,-1,0,0,0)" /> + <path + inkscape:connector-curvature="0" + id="path3909-6-1" + d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + class="ColorScheme-ButtonHover" /> + </g> + <g + style="fill:#4a7fbd;fill-opacity:0.952941" + id="scrollbarslider-pressed-bottom" + transform="matrix(0,1.8749993,-0.99999991,0,439.90621,294.21674)"> + <rect + style="opacity:0;fill:#4a7fbd;fill-opacity:0.952941;stroke:none;stroke-width:3.89492" + id="rect3928" + width="10.666667" + height="5.6888885" + x="-18.133333" + y="9.5999975" + transform="rotate(-90)" /> + <path + style="fill:#{{primary}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06667" + d="M 9.6,7.4666667 V 18.133333 h 4.266667 V 7.4666667 Z" + id="path3915-6-3" + inkscape:connector-curvature="0" + class="ColorScheme-ButtonHover" /> + </g> + </g> + <g + id="common-normal-top" + transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> + <path + inkscape:connector-curvature="0" + style="fill:#a2a8b1;fill-opacity:0.60000002" + id="path1110" + d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z" + transform="scale(1,-1)" /> + </g> + <rect + id="common-normal" + width="10.583333" + height="10.583333" + x="11.377069" + y="-140.22917" + transform="scale(1,-1)" + style="opacity:1;stroke-width:0.264583;fill:#{{base}};fill-opacity:1" /> + <g + id="common-normal-topleft" + transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> + <path + inkscape:connector-curvature="0" + style="fill:#a2a8b1;fill-opacity:0.60000002" + id="path1114" + d="m 609,368.0314 c -1.10167,0 -0.99736,-0.10427 -0.99736,0.99736 H 609 Z" /> + </g> + <g + id="common-normal-topright" + transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> + <path + inkscape:connector-curvature="0" + style="fill:#a2a8b1;fill-opacity:0.60000002" + id="path1117" + d="m 650.99998,368.03139 c 1.10161,0 0.99736,-0.10427 0.99736,0.99736 h -0.99736 z" /> + </g> + <g + id="common-normal-left" + transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> + <path + inkscape:connector-curvature="0" + style="fill:#a2a8b1;fill-opacity:0.60000002" + id="path1120" + d="m -410.02869,-608.99998 h 40 V -608 h -40 z" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="common-normal-right" + transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)" + style="fill:#a2a8b1;fill-opacity:0.60000002"> + <path + inkscape:connector-curvature="0" + style="fill:#a2a8b1;fill-opacity:0.60000002" + id="path1123" + d="m 370.02878,651.00002 h 40 v 1.00004 h -40 z" + transform="matrix(0,1,1,0,0,0)" /> + </g> + <g + id="common-normal-bottom" + transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> + <path + inkscape:connector-curvature="0" + style="fill:#a2a8b1;fill-opacity:0.60000002" + id="path1126" + d="m 610.00043,411.02889 h 40 v 0.99986 h -40 z" /> + </g> + <g + id="common-normal-bottomleft" + transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> + <path + inkscape:connector-curvature="0" + style="fill:#a2a8b1;fill-opacity:0.60000002" + id="path1129" + d="m 609,412.02609 c -1.10167,0 -0.99736,0.10447 -0.99736,-0.99735 H 609 Z" /> + </g> + <g + id="common-normal-bottomright" + transform="matrix(0.26458333,0,0,0.26458333,-150.01876,31.742385)"> + <path + inkscape:connector-curvature="0" + style="fill:#a2a8b1;fill-opacity:0.60000002" + id="path1132" + d="m 650.99998,412.02609 c 1.10161,0 0.99736,0.10447 0.99736,-0.99735 h -0.99736 z" /> + </g> + <g + id="common-focused-top" + transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> + <path + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1" + id="path1110-3" + d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z" + transform="scale(1,-1)" /> + </g> + <rect + id="common-focused" + width="10.583333" + height="10.583333" + x="25.410854" + y="-140.13322" + transform="scale(1,-1)" + style="opacity:1;stroke-width:0.264583;fill:#{{base}};fill-opacity:1" /> + <g + id="common-focused-topleft" + transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> + <path + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1" + id="path1114-6" + d="m 609,368.0314 c -1.10167,0 -0.99736,-0.10427 -0.99736,0.99736 H 609 Z" /> + </g> + <g + id="common-focused-topright" + transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> + <path + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1" + id="path1117-7" + d="m 650.99998,368.03139 c 1.10161,0 0.99736,-0.10427 0.99736,0.99736 h -0.99736 z" /> + </g> + <g + id="common-focused-left" + transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> + <path + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1" + id="path1120-5" + d="m -410.02869,-608.99998 h 40 V -608 h -40 z" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + <g + id="common-focused-right" + transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> + <path + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1" + id="path1123-3" + d="m 370.02878,651.00002 h 40 v 1.00004 h -40 z" + transform="matrix(0,1,1,0,0,0)" /> + </g> + <g + id="common-focused-bottom" + transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> + <path + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1" + id="path1126-5" + d="m 610.00043,411.02889 h 40 v 0.99986 h -40 z" /> + </g> + <g + id="common-focused-bottomleft" + transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> + <path + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1" + id="path1129-6" + d="m 609,412.02609 c -1.10167,0 -0.99736,0.10447 -0.99736,-0.99735 H 609 Z" /> + </g> + <g + id="common-focused-bottomright" + transform="matrix(0.26458333,0,0,0.26458333,-135.98498,31.646442)"> + <path + inkscape:connector-curvature="0" + style="fill:#{{primary}};fill-opacity:1" + id="path1132-2" + d="m 650.99998,412.02609 c 1.10161,0 0.99736,0.10447 0.99736,-0.99735 h -0.99736 z" /> + </g> + <g + style="opacity:0" + id="g222" + transform="matrix(0.26458333,0,0,0.26458333,363.80208,-227.54166)" /> + <g + id="tabBarFrame-normal-bottom" + transform="matrix(0,-0.26458333,0.17638889,0,219.91418,53.97654)"> + <path + inkscape:connector-curvature="0" + style="opacity:0" + id="path272" + d="m 174,921.5 h -4 l 1.3e-4,-6 H 174 Z" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.00100002;fill:#1e1e1e" + id="path274" + d="m 172,921.5 h -2 l 1e-4,-6 h 2 z" /> + </g> + <use + id="tabBarFrame-normal-bottomright" + width="100%" + height="100%" + x="0" + y="0" + transform="translate(1.0583344)" + xlink:href="#tabBarFrame-normal-bottom" /> + <use + id="tabBarFrame-normal-bottomleft" + width="100%" + height="100%" + x="0" + y="0" + xlink:href="#tabBarFrame-normal-bottom" + transform="translate(-1.0583322)" /> + <path + style="fill:#{{surface}};fill-opacity:0.504538;stroke-width:0.264583" + d="m 12.700054,146.84375 v 8.46666 h 8.46667 v -8.46666 z" + id="tabframe-normal" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.21166666,0,0,0.26051282,7.143853,134.14333)" + id="tabframe-normal-left" + style="fill:#{{surface}};fill-opacity:0.504538"> + <path + d="M 26.25,81.2514 V 48.7516 h -5 v 32.5 z" + id="path213" + style="opacity:1;fill:#{{surface}};fill-opacity:0.504538" + inkscape:connector-curvature="0" /> + <path + d="m 21.25,48.7516 v 32.5 h 2.49975 v -32.5 z" + id="path215" + style="opacity:0;fill:#{{surface}};fill-opacity:1" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(0.21166666,0,0,0.21166666,7.143853,137.05383)" + id="tabframe-normal-topleft" + style="fill:#{{surface}};fill-opacity:0.504538"> + <path + d="m 26.25,41.2516 h -5 v 5 h 5 z" + id="path218" + style="opacity:1;fill:#{{surface}};fill-opacity:0.504538" + inkscape:connector-curvature="0" /> + <path + d="m 26.25,41.2516 h -5 v 5 h 2.49987 l -3e-4,-2.5 h 2.50013 z" + id="path220" + style="opacity:0;fill:#{{surface}};fill-opacity:1" + inkscape:connector-curvature="0" /> + </g> + <use + xlink:href="#tabframe-normal-left" + transform="matrix(-1,0,0,1,33.866771,2.8334399e-7)" + y="0" + x="0" + height="100%" + width="100%" + id="tabframe-normal-right" + style="fill:#{{surface}};fill-opacity:0.504538" /> + <use + xlink:href="#tabframe-normal-topleft" + transform="matrix(-1,0,0,1,33.866771,2.8334399e-7)" + y="0" + x="0" + height="100%" + width="100%" + id="tabframe-normal-topright" + style="fill:#{{surface}};fill-opacity:0.504538" /> + <use + xlink:href="#tabframe-normal-left" + transform="rotate(90,16.933413,151.07706)" + y="0" + x="0" + height="100%" + width="100%" + id="tabframe-normal-top" + style="fill:#{{surface}};fill-opacity:0.504538" /> + <use + xlink:href="#tabframe-normal-left" + transform="rotate(-90,16.933393,151.07709)" + y="0" + x="0" + height="100%" + width="100%" + id="tabframe-normal-bottom" + style="fill:#{{surface}};fill-opacity:0.504538" /> + <use + xlink:href="#tabframe-normal-topleft" + transform="rotate(-90,16.933423,151.07711)" + y="0" + x="0" + height="100%" + width="100%" + id="tabframe-normal-bottomleft" + style="fill:#{{surface}};fill-opacity:0.504538" /> + <use + xlink:href="#tabframe-normal-topleft" + transform="rotate(180,16.933444,151.07706)" + y="0" + x="0" + height="100%" + width="100%" + id="tabframe-normal-bottomright" + style="fill:#{{surface}};fill-opacity:0.504538" /> + <g + id="g2861"> + <rect + id="tbutton-normal-bottom" + width="2.1166666" + height="2.1166666" + x="109.00834" + y="6.0854168" + style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-normal" + width="2.1166666" + height="2.1166666" + x="109.00834" + y="3.96875" /> + <rect + id="tbutton-normal-top" + width="2.1166666" + height="2.1166666" + x="109.00834" + y="1.8520834" + style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + id="tbutton-normal-topleft" + d="m 106.89167,3.9687501 h 2.11667 V 1.8520835 c -2.11667,0 -2.11667,2.1166666 -2.11667,2.1166666 z" + style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-normal-bottomleft" + d="m 106.89167,6.0854168 h 2.11667 v 2.1166666 c -2.11667,0 -2.11667,-2.1166666 -2.11667,-2.1166666 z" /> + <rect + id="tbutton-normal-left" + width="2.1166666" + height="2.1166666" + x="106.89168" + y="3.96875" + style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-normal-topright" + d="M 113.24167,3.9687501 H 111.125 V 1.8520835 c 2.11667,0 2.11667,2.1166666 2.11667,2.1166666 z" /> + <path + id="tbutton-normal-bottomright" + d="M 113.24167,6.0854168 H 111.125 v 2.1166666 c 2.11667,0 2.11667,-2.1166666 2.11667,-2.1166666 z" + style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:0.5;fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-normal-right" + width="2.1166666" + height="2.1166666" + x="-113.24168" + y="3.96875" + transform="scale(-1,1)" /> + </g> + <g + id="g2894"> + <rect + style="opacity:0.899879;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-pressed-bottom" + width="2.1166666" + height="2.1166666" + x="134.80522" + y="6.0854168" /> + <rect + id="tbutton-pressed" + width="2.1166666" + height="2.1166666" + x="134.80522" + y="3.9687502" + style="opacity:0.899879;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:0.899879;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-pressed-top" + width="2.1166666" + height="2.1166666" + x="134.80522" + y="1.8520836" /> + <path + style="opacity:0.899879;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-pressed-topleft" + d="m 132.68855,3.9687501 h 2.11666 v -2.116667 c -2.11666,0 -2.11666,2.116667 -2.11666,2.116667 z" /> + <path + id="tbutton-pressed-bottomleft" + d="m 132.68855,6.0854171 h 2.11666 v 2.116666 c -2.11666,0 -2.11666,-2.116666 -2.11666,-2.116666 z" + style="opacity:0.899879;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:0.899879;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-pressed-left" + width="2.1166666" + height="2.1166666" + x="132.68854" + y="3.9687502" /> + <path + id="tbutton-pressed-topright" + d="m 139.03855,3.9687501 h -2.11667 v -2.116667 c 2.11667,0 2.11667,2.116667 2.11667,2.116667 z" + style="opacity:0.899879;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + style="opacity:0.899879;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-pressed-bottomright" + d="m 139.03855,6.0854171 h -2.11667 v 2.116666 c 2.11667,0 2.11667,-2.116666 2.11667,-2.116666 z" /> + <rect + id="tbutton-pressed-right" + width="2.1166666" + height="2.1166666" + x="-139.03856" + y="3.9687502" + transform="scale(-1,1)" + style="opacity:0.899879;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="g2872"> + <rect + style="opacity:0.5;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-pressed-bottom-9" + width="2.1166666" + height="2.1166666" + x="117.73959" + y="6.0854168" /> + <rect + id="tbutton-focused" + width="2.1166666" + height="2.1166666" + x="117.73959" + y="3.96875" + style="opacity:0.5;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:0.5;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-focused-top" + width="2.1166666" + height="2.1166666" + x="117.73959" + y="1.8520836" /> + <path + style="opacity:0.5;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-focused-topleft" + d="m 115.62291,3.9687502 h 2.11666 V 1.8520836 c -2.11666,0 -2.11666,2.1166666 -2.11666,2.1166666 z" /> + <path + id="tbutton-focused-bottomleft" + d="m 115.62291,6.0854169 h 2.11666 v 2.1166666 c -2.11666,0 -2.11666,-2.1166666 -2.11666,-2.1166666 z" + style="opacity:0.5;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:0.5;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-focused-left" + width="2.1166666" + height="2.1166666" + x="115.62289" + y="3.96875" /> + <path + id="tbutton-focused-topright" + d="m 121.97291,3.9687502 h -2.11667 V 1.8520836 c 2.11667,0 2.11667,2.1166666 2.11667,2.1166666 z" + style="opacity:0.5;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + style="opacity:0.5;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-focused-bottomright" + d="m 121.97291,6.0854169 h -2.11667 v 2.1166666 c 2.11667,0 2.11667,-2.1166666 2.11667,-2.1166666 z" /> + <rect + id="tbutton-focused-right" + width="2.1166666" + height="2.1166666" + x="-121.97291" + y="3.96875" + transform="scale(-1,1)" + style="opacity:0.5;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="g2883"> + <rect + style="opacity:0.750302;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-toggled-bottom" + width="2.1166666" + height="2.1166666" + x="126.33857" + y="6.0854168" /> + <rect + id="tbutton-toggled" + width="2.1166666" + height="2.1166666" + x="126.33857" + y="3.96875" + style="opacity:0.750302;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:0.750302;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-toggled-top" + width="2.1166666" + height="2.1166666" + x="126.33857" + y="1.8520836" /> + <path + style="opacity:0.750302;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-toggled-topleft" + d="m 124.22189,3.9687502 h 2.11666 V 1.8520836 c -2.11666,0 -2.11666,2.1166666 -2.11666,2.1166666 z" /> + <path + id="tbutton-toggled-bottomleft" + d="m 124.22189,6.0854169 h 2.11666 v 2.116667 c -2.11666,0 -2.11666,-2.116667 -2.11666,-2.116667 z" + style="opacity:0.750302;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:0.750302;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-toggled-left" + width="2.1166666" + height="2.1166666" + x="124.22188" + y="3.96875" /> + <path + id="tbutton-toggled-topright" + d="m 130.57189,3.9687502 h -2.11667 V 1.8520836 c 2.11667,0 2.11667,2.1166666 2.11667,2.1166666 z" + style="opacity:0.750302;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + style="opacity:0.750302;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="tbutton-toggled-bottomright" + d="m 130.57189,6.0854169 h -2.11667 v 2.116667 c 2.11667,0 2.11667,-2.116667 2.11667,-2.116667 z" /> + <rect + id="tbutton-toggled-right" + width="2.1166666" + height="2.1166666" + x="-130.5719" + y="3.96875" + transform="scale(-1,1)" + style="opacity:0.750302;fill:#{{primary}};fill-opacity:1;stroke:none;stroke-width:0.0811633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <rect + style="color:#{{primary}};opacity:0.902;fill:#{{base}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + transform="scale(1,-1)" + y="-137.58334" + x="50.270836" + height="10.583333" + width="10.583333" + class="ColorScheme-ButtonFocus" + id="group-normal" /> + <g + id="focus-left-6" + transform="matrix(0.25190394,0,0,0.26458333,183.71207,27.516669)" + style="opacity:0;stroke-width:1.02486"> + <path + inkscape:connector-curvature="0" + style="opacity:0.19;fill:#ffffff;stroke-width:1.02486" + id="path1484" + d="m 183,121 v 10 h 2 v -10 z" /> + </g> + <g + id="focus-right-7" + transform="matrix(0.25190394,0,0,0.26458333,183.20827,27.516669)" + style="opacity:0;stroke-width:1.02486"> + <path + inkscape:connector-curvature="0" + style="opacity:0.19;fill:#ffffff;stroke-width:1.02486" + id="path1487-5" + d="m 197,121 v 10 h 2 v -10 z" /> + </g> + <g + id="focus-top-3" + transform="matrix(0.25190394,0,0,0.26458333,183.46017,27.781252)" + style="opacity:0;stroke-width:1.02486"> + <path + inkscape:connector-curvature="0" + style="opacity:0.19;fill:#ffffff;stroke-width:1.02486" + id="path1490" + d="m 186,118 v 2 h 10 v -2 z" /> + </g> + <g + id="focus-bottom-5" + transform="matrix(0.25190394,0,0,0.26458333,183.46017,27.252086)" + style="stroke-width:1.02486"> + <path + inkscape:connector-curvature="0" + style="opacity:0.7;fill:#{{primary}};fill-opacity:1;stroke-width:1.02486" + id="path1493" + d="m 186,132 v 2 h 10 v -2 z" /> + </g> + <path + inkscape:connector-curvature="0" + id="focus-bottomleft-6" + d="m 229.81049,62.177085 h 0.50381 v 0.529167 c -0.50381,0 -0.50381,-0.529167 -0.50381,-0.529167 z" + style="opacity:0.7;fill:#{{primary}};fill-opacity:1;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="focus-bottomright-2" + d="m 233.33715,62.177085 h -0.50381 v 0.529167 c 0.50381,0 0.50381,-0.529167 0.50381,-0.529167 z" + style="opacity:0.7;fill:#{{primary}};fill-opacity:1;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="focus-topleft-9" + d="m 229.81049,59.531252 h 0.50381 v -0.529166 c -0.50381,0 -0.50381,0.529166 -0.50381,0.529166 z" + style="opacity:0;fill:#ffffff;stroke-width:0.264583" /> + <path + inkscape:connector-curvature="0" + id="focus-topright-1" + d="m 233.33715,59.531252 h -0.50381 v -0.529166 c 0.50381,0 0.50381,0.529166 0.50381,0.529166 z" + style="opacity:0;fill:#ffffff;stroke-width:0.264583" /> + <g + id="g2533"> + <g + id="g2510"> + <rect + id="dock-focused" + width="7.9375" + height="7.9375" + x="196.83218" + y="122.74809" + style="opacity:0.6;fill:#{{surface}};stroke-width:0.264583" /> + <g + style="fill:#304048" + id="g127" + transform="matrix(0.26458333,0,0,0.26458333,89.146774,-186.81439)"> + <rect + id="dock-focused-left" + width="5" + height="30" + x="399.5" + y="1170" + style="opacity:0.15;fill:#000000;fill-opacity:1" /> + <rect + id="dock-focused-top" + width="5" + height="30" + x="-1167.5" + y="407" + transform="rotate(-90)" + style="opacity:0.15;fill:#000000;fill-opacity:1" /> + <rect + id="dock-focused-topleft" + width="5" + height="5" + x="399.5" + y="1162.5" + style="opacity:0.15;fill:#000000;fill-opacity:1" /> + <rect + id="dock-focused-topright" + width="5" + height="5" + x="439.5" + y="1162.5" + style="opacity:0.15;fill:#000000;fill-opacity:1" /> + <rect + id="dock-focused-right" + width="5" + height="30" + x="439.5" + y="1170" + style="opacity:0.15;fill:#000000;fill-opacity:1" /> + <rect + id="dock-focused-bottom" + width="5" + height="30" + x="-1207.5" + y="407" + transform="rotate(-90)" + style="opacity:0.15;fill:#000000;fill-opacity:1" /> + <rect + id="dock-focused-bottomright" + width="5" + height="5" + x="439.5" + y="1202.5" + style="opacity:0.15;fill:#000000;fill-opacity:1" /> + <rect + id="dock-focused-bottomleft" + width="5" + height="5" + x="399.5" + y="1202.5" + style="opacity:0.15;fill:#000000;fill-opacity:1" /> + </g> + </g> + <g + id="g2498"> + <rect + id="dock-normal" + width="7.9375" + height="7.9375" + x="183.07385" + y="122.74809" + style="opacity:0.6;fill:#{{surface}};stroke-width:0.264583" /> + <rect + style="opacity:0.6;fill:#{{base}};stroke-width:0.264583" + y="122.74811" + x="181.08948" + height="7.9375" + width="1.3229166" + id="dock-normal-left" /> + <rect + style="opacity:0.6;fill:#{{base}};stroke-width:0.264583" + y="120.76373" + x="181.08948" + height="1.3229166" + width="1.3229166" + id="dock-normal-topleft" /> + <rect + style="opacity:0.6;fill:#{{base}};stroke-width:0.264583" + transform="rotate(90)" + y="-191.01135" + x="120.76373" + height="7.9375" + width="1.3229166" + id="dock-normal-top" /> + <rect + style="opacity:0.6;fill:#{{base}};stroke-width:0.264583" + y="120.76373" + x="191.67282" + height="1.3229166" + width="1.3229166" + id="dock-normal-topright" /> + <rect + style="opacity:0.6;fill:#{{base}};stroke-width:0.264583" + y="122.74811" + x="191.67282" + height="7.9375" + width="1.3229166" + id="dock-normal-right" /> + <rect + style="opacity:0.6;fill:#{{base}};stroke-width:0.264583" + y="131.34706" + x="191.67282" + height="1.3229166" + width="1.3229166" + id="dock-normal-bottomright" /> + <rect + style="opacity:0.6;fill:#{{base}};stroke-width:0.264583" + transform="rotate(-90)" + y="183.07385" + x="-132.66998" + height="7.9375" + width="1.3229166" + id="dock-normal-bottom" /> + <rect + style="opacity:0.6;fill:#{{base}};stroke-width:0.264583" + y="131.34706" + x="181.08948" + height="1.3229166" + width="1.3229166" + id="dock-normal-bottomleft" /> + </g> + </g> + <g + id="spin-plus-normal" + transform="matrix(0.26458333,0,0,0.26458333,189.17709,-56.091665)"> + <rect + x="15" + y="317" + width="8" + height="8" + style="opacity:0.00100002;fill:#000000" + id="rect723" /> + <path + d="m 18,317 v 3 h -3 v 2 h 3 v 3 h 2 v -3 h 3 v -2 h -3 v -3 z" + style="fill:#fcfcfc;fill-opacity:1" + id="path725" /> + </g> + <g + id="spin-minus-normal" + transform="matrix(0.26458333,0,0,0.26458333,186.53126,-53.181248)"> + <rect + x="25" + y="317" + width="8" + height="8" + style="opacity:0.00100002;fill:#000000" + id="rect728" /> + <rect + transform="rotate(90)" + x="320" + y="-33" + width="2" + height="8" + style="fill:#fcfcfc;fill-opacity:1" + id="rect730" /> + </g> + <g + id="spin-plus-focused" + transform="matrix(0.26458333,0,0,0.26458333,191.82295,-56.091665)"> + <rect + x="15" + y="317" + width="8" + height="8" + style="opacity:0.00100002;fill:#000000" + id="rect733" /> + <path + d="m 18,317 v 3 h -3 v 2 h 3 v 3 h 2 v -3 h 3 v -2 h -3 v -3 z" + style="fill:#{{primary}};fill-opacity:1" + id="path735" /> + </g> + <g + id="spin-minus-focused" + transform="matrix(0.26458333,0,0,0.26458333,189.17709,-53.181248)"> + <rect + x="25" + y="317" + width="8" + height="8" + style="opacity:0.00100002;fill:#{{primary}}" + id="rect738" /> + <rect + transform="rotate(90)" + x="320" + y="-33" + width="2" + height="8" + style="fill:#{{primary}};fill-opacity:1" + id="rect740" /> + </g> + <g + id="spin-plus-pressed" + transform="matrix(0.26458333,0,0,0.26458333,194.46876,-56.091665)"> + <rect + x="15" + y="317" + width="8" + height="8" + style="opacity:0.00100002;fill:#000000" + id="rect743" /> + <path + d="m 18,317 v 3 h -3 v 2 h 3 v 3 h 2 v -3 h 3 v -2 h -3 v -3 z" + style="fill:#{{primary}};fill-opacity:1" + id="path745" /> + </g> + <g + id="spin-minus-pressed" + transform="matrix(0.26458333,0,0,0.26458333,191.82295,-53.181248)"> + <rect + x="25" + y="317" + width="8" + height="8" + style="opacity:0.00100002;fill:#{{primary}}" + id="rect748" /> + <rect + transform="rotate(90)" + x="320" + y="-33" + width="2" + height="8" + style="fill:#{{primary}};fill-opacity:1" + id="rect750" /> + </g> + <g + id="spin-plus-disabled" + transform="matrix(0.26458333,0,0,0.26458333,197.11459,-56.091665)"> + <rect + x="15" + y="317" + width="8" + height="8" + style="opacity:0.00100002;fill:#000000" + id="rect753" /> + <path + d="m 18,317 v 3 h -3 v 2 h 3 v 3 h 2 v -3 h 3 v -2 h -3 v -3 z" + style="opacity:0.25;fill:#ffffff" + id="path755" /> + </g> + <g + id="spin-minus-disabled" + transform="matrix(0.26458333,0,0,0.26458333,194.46876,-53.181248)"> + <rect + x="25" + y="317" + width="8" + height="8" + style="opacity:0.00100002;fill:#000000" + id="rect758" /> + <rect + transform="rotate(90)" + x="320" + y="-33" + width="2" + height="8" + style="opacity:0.25;fill:#ffffff" + id="rect760" /> + </g> + <g + id="spin-down-normal" + transform="matrix(0.97271715,0,0,-1,10.550402,70.781069)"> + <rect + style="opacity:0.599999;fill:#{{primary}};fill-opacity:0;stroke-width:0.177316" + id="rect1706-5" + width="2.1266627" + height="1.4451504" + x="187.71689" + y="32.416485" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" + style="fill:#fcfcfc;fill-opacity:1;stroke-width:0.159346;enable-background:new" + id="spin-up-normal-1-6" /> + </g> + <g + id="spin-up-pressed" + transform="matrix(0.97271715,0,0,1,15.697697,1.8470603)"> + <rect + style="opacity:0.599999;fill:#{{primary}};fill-opacity:0;stroke-width:0.178545" + id="rect1706-9" + width="2.1266644" + height="1.4652596" + x="187.71689" + y="32.406433" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.159346;enable-background:new" + id="spin-up-normal-1-1" /> + </g> + <g + id="spin-down-pressed" + transform="matrix(0.97271715,0,0,-1,15.697697,70.771012)"> + <rect + style="opacity:0.599999;fill:#{{primary}};fill-opacity:0;stroke-width:0.178546" + id="rect1706-0" + width="2.1266644" + height="1.4652674" + x="187.71689" + y="32.406429" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.159346;enable-background:new" + id="spin-up-normal-1-9" /> + </g> + <g + id="spin-up-focused" + transform="matrix(0.97271715,0,0,1,13.124049,1.8470603)"> + <rect + style="opacity:0.599999;fill:#{{primary}};fill-opacity:0;stroke-width:0.178545" + id="rect1706-6" + width="2.1266632" + height="1.4652596" + x="187.71689" + y="32.406433" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.159346;enable-background:new" + id="spin-up-normal-1-0" /> + </g> + <g + id="spin-down-focused" + transform="matrix(0.97271715,0,0,-1,13.124049,70.771012)"> + <rect + style="opacity:0.599999;fill:#{{primary}};fill-opacity:0;stroke-width:0.178546" + id="rect1706-2" + width="2.1266632" + height="1.4652674" + x="187.71689" + y="32.406429" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" + style="fill:#{{primary}};fill-opacity:1;stroke-width:0.159346;enable-background:new" + id="spin-up-normal-1-61" /> + </g> + <g + id="spin-up-disabled" + transform="matrix(0.97271715,0,0,1,18.271345,1.8470603)"> + <rect + style="opacity:0.599999;fill:#{{primary}};fill-opacity:0;stroke-width:0.178545" + id="rect1706-6-7" + width="2.1266625" + height="1.4652596" + x="187.71689" + y="32.406433" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" + style="fill:#ffffff;fill-opacity:0.25098;stroke-width:0.159346;enable-background:new" + id="spin-up-normal-1-0-9" /> + </g> + <g + id="spin-down-disabled" + transform="matrix(0.97271715,0,0,-1,18.271345,70.771012)"> + <rect + style="opacity:0.599999;fill:#{{primary}};fill-opacity:0;stroke-width:0.178546" + id="rect1706-2-0" + width="2.1266625" + height="1.4652674" + x="187.71689" + y="32.406429" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" + style="fill:#ffffff;fill-opacity:0.25098;stroke-width:0.159346;enable-background:new" + id="spin-up-normal-1-61-2" /> + </g> + <g + id="spin-up-normal" + transform="matrix(0.97271715,0,0,1,10.550402,1.8470603)"> + <rect + style="opacity:0.599999;fill:#{{primary}};fill-opacity:0;stroke-width:0.178545" + id="rect1706-9-7" + width="2.1266627" + height="1.4652596" + x="187.71689" + y="32.406433" /> + <path + class="ColorScheme-Text" + sodipodi:nodetypes="ccccccc" + d="m 187.88384,33.489408 0.11268,0.112676 0.78872,-0.788725 0.78872,0.788725 0.11268,-0.112676 -0.9014,-0.9014 z" + style="fill:#fcfcfc;fill-opacity:1;stroke-width:0.159346;enable-background:new" + id="spin-up-normal-1-1-5" /> + </g> + <g + id="g7761" + transform="matrix(0.26458333,0,0,0.26458333,-114.52046,62.369541)"> + <g + transform="translate(390.61724,-793.96816)" + id="g5705"> + <path + id="menuitem-toggled" + d="m 296.58841,840.24083 v 48 h 48 v -48 z" + style="display:inline;opacity:1;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + inkscape:connector-curvature="0" + inkscape:label="#menuitem-toggled" /> + <g + transform="translate(439.58841,311.24082)" + style="display:inline" + id="menuitem-toggled-right" + inkscape:label="#menuitem-toggled-right"> + <path + id="path10356-8-6" + d="m -91,529 v 47.99995 h -1 V 529 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + d="M -91.500031,528.99999 V 577 H -95 v -48.00001 z" + id="path6862-0-93" /> + </g> + <g + transform="translate(439.58841,311.24082)" + style="display:inline" + id="menuitem-toggled-top" + inkscape:label="#menuitem-toggled-top"> + <path + inkscape:connector-curvature="0" + id="path10332-8-4" + d="m -94.999998,525.00001 v 0.99998 H -143 v -0.99998 z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + d="M -143,525.49999 V 529 l 48,10e-6 v -3.5 z" + id="path6864-0-5" /> + </g> + <g + id="menuitem-toggled-topleft" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" + transform="matrix(1.0000055,0,0,1.0000055,289.58839,788.30162)" + inkscape:label="#menuitem-toggled-topleft"> + <path + inkscape:connector-curvature="0" + id="path4714-5-3" + d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path4714-3-4" + d="M 6.9999835,48.438938 A 3.4999828,3.4999828 0 0 0 3.5000007,51.93892 h 3.4999828 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + id="menuitem-toggled-topright" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" + transform="matrix(0,1.0000055,-1.0000055,0,396.52759,833.2408)" + inkscape:label="#menuitem-toggled-topright"> + <path + inkscape:connector-curvature="0" + id="path4714-7-4" + d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path4714-3-5-4" + d="M 6.9999835,48.438948 A 3.4999728,3.4999728 0 0 0 3.5000107,51.93892 h 3.4999728 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + id="menuitem-toggled-bottomright" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" + transform="matrix(-1.0000055,0,0,-1.0000055,351.58843,940.18003)" + inkscape:label="#menuitem-toggled-bottomright"> + <path + inkscape:connector-curvature="0" + id="path4714-7-5-0" + d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path4714-3-5-6-7" + d="m 6.9999835,48.438944 a 3.4999518,3.4999813 0 0 0 -3.4999518,3.49998 h 3.4999518 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + style="display:inline" + id="menuitem-toggled-left" + transform="matrix(-1,0,0,1,201.58841,311.24083)" + inkscape:label="#menuitem-toggled-left"> + <path + id="path10356-8-1-6" + d="m -91,529 v 47.99995 h -1 V 529 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m -91.5,529 v 48 H -95 v -48 z" + id="path6862-0-9-8" /> + </g> + <g + style="display:inline" + id="menuitem-toggled-bottom" + transform="matrix(1,0,0,-1,439.58841,1417.2408)" + inkscape:label="#menuitem-toggled-bottom"> + <path + inkscape:connector-curvature="0" + id="path10332-8-9-4" + d="m -143,525.00001 v 0.99998 h 48.000002 v -0.99998 z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + d="M -143,525.49999 V 529 l 47.999998,10e-6 V 525.5 Z" + id="path6864-0-70-3" /> + </g> + <g + id="menuitem-toggled-bottomleft" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" + transform="matrix(0,-1.0000055,1.0000055,0,244.6492,895.24086)" + inkscape:label="#menuitem-toggled-bottomleft"> + <path + inkscape:connector-curvature="0" + id="path4714-7-5-6-4" + d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path4714-3-5-6-0-9" + d="M 6.9999835,48.438948 A 3.4999728,3.4999728 0 0 0 3.5000107,51.93892 h 3.4999728 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + </g> + <g + transform="translate(392.22978,-794.3605)" + id="g5732"> + <path + id="menuitem-pressed" + d="m 222.60349,840.63315 v 48 h 48 v -48 z" + style="display:inline;opacity:1;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + inkscape:connector-curvature="0" + inkscape:label="#menuitem-pressed" /> + <g + transform="translate(365.60349,311.63314)" + style="display:inline" + id="menuitem-pressed-top" + inkscape:label="#menuitem-pressed-top"> + <path + inkscape:connector-curvature="0" + id="path10332-8-4-9" + d="m -94.999998,525.00001 v 0.99998 H -143 v -0.99998 z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + d="M -143,525.49999 V 529 l 48,10e-6 v -3.5 z" + id="path6864-0-5-3" /> + </g> + <g + id="menuitem-pressed-topright" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" + transform="matrix(0,1.0000055,-1.0000055,0,322.5427,833.63313)" + inkscape:label="#menuitem-pressed-topright"> + <path + inkscape:connector-curvature="0" + id="path4714-7-4-0" + d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path4714-3-5-4-6" + d="M 6.9999835,48.438948 A 3.4999728,3.4999728 0 0 0 3.5000107,51.93892 h 3.4999728 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + transform="translate(365.60349,311.63316)" + style="display:inline" + id="menuitem-pressed-right" + inkscape:label="#menuitem-pressed-right"> + <path + id="path10356-8-6-2" + d="m -91,529 v 47.99995 h -1 V 529 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + d="M -91.500031,528.99999 V 577 H -95 v -48.00001 z" + id="path6862-0-93-3" /> + </g> + <g + id="menuitem-pressed-bottomright" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" + transform="matrix(-1.0000055,0,0,-1.0000055,277.60349,940.57232)" + inkscape:label="#menuitem-pressed-bottomright"> + <path + inkscape:connector-curvature="0" + id="path4714-7-5-0-5" + d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path4714-3-5-6-7-9" + d="m 6.9999835,48.438944 a 3.4999518,3.4999813 0 0 0 -3.4999518,3.49998 h 3.4999518 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + style="display:inline" + id="menuitem-pressed-bottom" + transform="matrix(1,0,0,-1,365.60349,1417.6332)" + inkscape:label="#menuitem-pressed-bottom"> + <path + inkscape:connector-curvature="0" + id="path10332-8-9-4-1" + d="m -143,525.00001 v 0.99998 h 48.000002 v -0.99998 z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + d="M -143,525.49999 V 529 l 47.999998,10e-6 V 525.5 Z" + id="path6864-0-70-3-2" /> + </g> + <g + id="menuitem-pressed-bottomleft" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" + transform="matrix(0,-1.0000055,1.0000055,0,170.66428,895.63321)" + inkscape:label="#menuitem-pressed-bottomleft"> + <path + inkscape:connector-curvature="0" + id="path4714-7-5-6-4-3" + d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path4714-3-5-6-0-9-1" + d="M 6.9999835,48.438948 A 3.4999728,3.4999728 0 0 0 3.5000107,51.93892 h 3.4999728 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + style="display:inline" + id="menuitem-pressed-left" + transform="matrix(-1,0,0,1,127.60349,311.63315)" + inkscape:label="#menuitem-presed-left"> + <path + id="path10356-8-1-6-6" + d="m -91,529 v 47.99995 h -1 V 529 Z" + style="fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m -91.5,529 v 48 H -95 v -48 z" + id="path6862-0-9-8-1" /> + </g> + <g + id="menuitem-pressed-topleft" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" + transform="matrix(1.0000055,0,0,1.0000055,215.60347,788.69394)" + inkscape:label="#menuitem-pressed-topleft"> + <path + inkscape:connector-curvature="0" + id="path4714-5-3-6" + d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path4714-3-4-3" + d="M 6.9999835,48.438938 A 3.4999828,3.4999828 0 0 0 3.5000007,51.93892 h 3.4999828 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:#{{primary}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + </g> + <g + transform="translate(390.61718,-795.71416)" + id="g5810"> + <g + id="mask-left" + transform="matrix(0,1,1,0,-211.25,586.95275)" + style="display:inline;opacity:1;fill:#ffffff"> + <path + inkscape:connector-curvature="0" + id="path4486" + d="m 253.99999,347 h 50 l 10e-6,4 h -50 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + </g> + <rect + id="mask-center" + width="50" + height="50" + x="139.75" + y="840.95276" + style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none" /> + <g + transform="translate(-114.25,489.95275)" + id="mask-topright" + style="display:inline;fill:#ffffff"> + <path + inkscape:connector-curvature="0" + id="path4714-5-9" + d="m 308,350.99999 a 4,4 0 0 0 -4,-4 v 4 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:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + transform="translate(-114.25,489.95275)" + id="mask-top" + style="display:inline;fill:#ffffff"> + <path + inkscape:connector-curvature="0" + id="path4128" + d="m 253.99999,347 h 50 l 10e-6,4 h -50 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + </g> + <g + id="mask-bottomright" + transform="matrix(1,0,0,-1,-60.25,1295.9527)" + style="display:inline;fill:#ffffff"> + <path + inkscape:connector-curvature="0" + id="path4714-5-28" + d="m 250,400.99993 a 4,4 0 0 1 4,4 h -4 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:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + id="mask-bottom" + transform="matrix(1,0,0,-1,-114.25,1241.9527)" + style="display:inline;fill:#ffffff"> + <path + inkscape:connector-curvature="0" + id="path4464" + d="m 253.99999,347 h 50 l 10e-6,4 h -50 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + </g> + <g + id="mask-bottomleft" + transform="rotate(180,221.87501,647.97634)" + style="display:inline;fill:#ffffff"> + <path + inkscape:connector-curvature="0" + id="path4714-5-2" + d="m 308.00003,404.99993 a 4,4 0 0 0 -4,-4 v 4 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:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + id="mask-right" + transform="rotate(90,-23.10137,563.85138)" + style="display:inline;fill:#ffffff"> + <path + inkscape:connector-curvature="0" + id="path4478" + d="m 253.99999,347 h 50 l 10e-6,4 h -50 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + </g> + <g + id="mask-topleft" + transform="matrix(-1,0,0,1,443.75003,489.95276)" + style="display:inline;opacity:1;fill:#ffffff"> + <path + inkscape:connector-curvature="0" + id="path4714-5" + d="m 304.00003,346.99999 a 4,4 0 0 1 4,4 h -4 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:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <rect + id="menu-normal" + width="50" + height="50" + x="139.75" + y="840.95282" + style="display:inline;opacity:0.85;fill:#{{surface}};fill-opacity:0.956863;stroke:none" + inkscape:label="menu-normal" /> + <g + id="menu-shadow-top" + transform="translate(77,-42.5)"> + <g + style="display:inline;fill:#26272a;fill-opacity:1" + id="top" + transform="matrix(1,0,0,0.57142372,-127.25,735.45402)"> + <path + inkscape:connector-curvature="0" + style="display:inline;opacity:0.85;fill:#{{surface}};fill-opacity:0.956863;stroke:none" + d="M 189.99998,251.99991 H 240 v 6.99991 h -50.00001 z" + id="path4382-5" /> + </g> + <g + transform="matrix(0,-1,-1,0,369.75,1167.4527)" + id="shadow-top" + style="display:inline;opacity:1"> + <rect + style="opacity:0.6;fill:url(#linearGradient3576);fill-opacity:1;stroke:none" + transform="rotate(-90)" + y="288" + x="-307" + height="10" + width="50" + id="rect4279" /> + <rect + transform="matrix(0,-1,-1,0,0,0)" + y="-288.50003" + x="-307" + height="0.5" + width="50" + id="rect4309" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + </g> + <g + id="menu-shadow-topright" + transform="translate(77,-42.5)"> + <g + id="g3486"> + <g + id="topright" + transform="rotate(90,-355.88187,520.57087)" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + id="path4714-2" + d="m 7,47.938995 a 4,4 0 0 0 -4,4 h 4 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.85;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#{{surface}};fill-opacity:0.956863;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + transform="translate(37.749999,747.51375)" + style="display:inline" + id="shadow-topright"> + <g + style="display:inline;fill:url(#radialGradient5249);fill-opacity:1" + transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" + id="topright-3"> + <path + transform="matrix(0,-0.23529412,0.23529412,0,1.1176471,69.586054)" + id="path4714-2-6" + d="m 75,11 v 10 a 3.9999958,4.0000002 0 0 1 4,4 H 89 A 14,14 0 0 0 75,11 Z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient5251);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 5.9411765,51.938995 h 0.117647 A 0.94117647,0.94117647 0 0 1 7,50.997819 v -0.117647 a 1.0588235,1.0588235 0 0 0 -1.0588235,1.058823 z" + id="path4714-2-31" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + </g> + <g + id="menu-shadow-right" + transform="translate(77,-42.5)"> + <g + style="display:inline;fill:#343031" + id="right" + transform="matrix(0.57142857,0,0,1,-24.39286,624.45284)"> + <path + style="display:inline;opacity:0.85;fill:#{{surface}};fill-opacity:0.956863;stroke:none" + d="m 247,258.99982 v 50 l -7,10e-6 v -50 z" + id="path4396" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(1,0,0,-1,-171.25,1190.4527)" + id="shadow-right" + style="display:inline;opacity:1"> + <rect + style="opacity:0.6;fill:url(#linearGradient3578);fill-opacity:1;stroke:none" + transform="rotate(-90)" + y="288" + x="-307" + height="10" + width="50" + id="rect4279-6" /> + <rect + transform="matrix(0,-1,-1,0,0,0)" + y="-288.50003" + x="-307" + height="0.5" + width="50" + id="rect4309-1" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + </g> + <g + id="menu-shadow-topleft" + transform="translate(77,-42.5)"> + <g + transform="translate(55.749997,831.51374)" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" + id="topleft"> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.85;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#{{surface}};fill-opacity:0.956863;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 6.999982,47.93892 a 4,4 0 0 0 -4,4 h 4 z" + id="path4714" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(-1,0,0,1,137.75,747.51375)" + id="shadow-topleft" + style="display:inline"> + <g + id="topright-3-5" + transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" + style="display:inline;fill:url(#radialGradient5249-2);fill-opacity:1"> + <path + inkscape:connector-curvature="0" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient5251-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 75,11 v 10 a 3.9999958,4.0000002 0 0 1 4,4 H 89 A 14,14 0 0 0 75,11 Z" + id="path4714-2-6-4" + transform="matrix(0,-0.23529412,0.23529412,0,1.1176471,69.586054)" /> + <path + inkscape:connector-curvature="0" + id="path4714-2-31-7" + d="m 5.9411765,51.938995 h 0.117647 A 0.94117647,0.94117647 0 0 1 7,50.997819 v -0.117647 a 1.0588235,1.0588235 0 0 0 -1.0588235,1.058823 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + </g> + </g> + <g + id="menu-shadow-left" + inkscape:label="#menu-shadow-left" + transform="translate(77,-42.5)"> + <g + style="display:inline;fill:#343031;fill-opacity:1" + id="left" + transform="matrix(0.57143143,0,0,1,-45.821963,624.45284)"> + <path + style="display:inline;opacity:0.85;fill:#{{surface}};fill-opacity:0.956863;stroke:none" + d="m 183.00002,258.99981 v 50 l 7,10e-6 v -50 z" + id="path4418" + inkscape:connector-curvature="0" /> + </g> + <g + transform="rotate(180,173.375,595.22637)" + id="shadow-left" + style="display:inline;opacity:1"> + <rect + style="opacity:0.6;fill:url(#linearGradient3463);fill-opacity:1;stroke:none" + transform="rotate(-90)" + y="288" + x="-307" + height="10" + width="50" + id="rect4279-6-9" /> + <rect + transform="matrix(0,-1,-1,0,0,0)" + y="-288.50003" + x="-307" + height="0.5" + width="50" + id="rect4309-1-3" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + </g> + <g + id="menu-shadow-bottom" + transform="translate(77,-42.5)"> + <g + style="display:inline;fill:#343031;fill-opacity:1" + id="bottom" + transform="matrix(-1,0,0,-0.57142372,302.75,1081.4515)"> + <path + inkscape:connector-curvature="0" + style="display:inline;opacity:0.85;fill:#{{surface}};fill-opacity:0.956863;stroke:none" + d="M 189.99998,251.99991 H 240 v 6.99991 h -50.00001 z" + id="path4382-9" /> + </g> + <g + transform="rotate(90,-139.85137,509.60137)" + id="shadow-bottom" + style="display:inline;opacity:1"> + <rect + style="opacity:0.6;fill:url(#linearGradient3461);fill-opacity:1;stroke:none" + transform="rotate(-90)" + y="288" + x="-307" + height="10" + width="50" + id="rect4279-4" /> + <rect + transform="matrix(0,-1,-1,0,0,0)" + y="-288.50003" + x="-307" + height="0.5" + width="50" + id="rect4309-4" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + </g> + <g + id="menu-shadow-bottomright" + transform="translate(77,-42.5)"> + <g + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" + inkscape:label="#bottomright" + id="bottomright" + transform="rotate(180,59.875002,492.69587)"> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.85;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#{{surface}};fill-opacity:0.956863;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 7,47.938995 a 4,4 0 0 0 -4,4 h 4 z" + id="path4714-0" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(1,0,0,-1,37.749999,1069.3917)" + id="shadow-bottomright" + style="display:inline"> + <g + id="topright-3-0" + transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" + style="display:inline;fill:url(#radialGradient5249-7);fill-opacity:1"> + <path + inkscape:connector-curvature="0" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient5251-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 75,11 v 10 a 3.9999958,4.0000002 0 0 1 4,4 H 89 A 14,14 0 0 0 75,11 Z" + id="path4714-2-6-7" + transform="matrix(0,-0.23529412,0.23529412,0,1.1176471,69.586054)" /> + <path + inkscape:connector-curvature="0" + id="path4714-2-31-8" + d="m 5.9411765,51.938995 h 0.117647 A 0.94117647,0.94117647 0 0 1 7,50.997819 v -0.117647 a 1.0588235,1.0588235 0 0 0 -1.0588235,1.058823 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + </g> + </g> + <g + id="menu-shadow-bottomleft" + transform="translate(77,-42.5)"> + <g + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" + transform="rotate(-90,475.63187,464.82087)" + id="bottomleft"> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.85;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#{{surface}};fill-opacity:0.956863;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 2.999995,51.938997 a 4,4 0 0 1 4,-4 v 4 z" + id="path4714-0-6" + inkscape:connector-curvature="0" /> + </g> + <g + transform="rotate(180,68.875,534.69586)" + id="shadow-bottomleft" + style="display:inline"> + <g + id="topright-3-5-8" + transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" + style="display:inline;fill:url(#radialGradient5249-2-5);fill-opacity:1"> + <path + inkscape:connector-curvature="0" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient5251-1-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 75,11 v 10 a 3.9999958,4.0000002 0 0 1 4,4 H 89 A 14,14 0 0 0 75,11 Z" + id="path4714-2-6-4-8" + transform="matrix(0,-0.23529412,0.23529412,0,1.1176471,69.586054)" /> + <path + inkscape:connector-curvature="0" + id="path4714-2-31-7-4" + d="m 5.9411765,51.938995 h 0.117647 A 0.94117647,0.94117647 0 0 1 7,50.997819 v -0.117647 a 1.0588235,1.0588235 0 0 0 -1.0588235,1.058823 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.7;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + </g> + </g> + <g + id="g5239" + transform="translate(-2.7500001,-73.250003)"> + <rect + id="menu-shadow-hint-top" + height="9.1250219" + y="900.5777" + x="165.56252" + width="2.5" + style="fill:#b74aff;stroke:none;stroke-width:1.46528" /> + <rect + transform="rotate(-90)" + id="menu-shadow-hint-right" + height="9.59375" + y="197" + x="-940.30035" + width="2.5" + style="fill:#b74aff;stroke:none;stroke-width:1.15034" /> + <rect + id="menu-shadow-hint-bottom" + height="9.636507" + y="968.63446" + x="164.875" + width="2.5" + style="fill:#b74aff;stroke:none;stroke-width:1.1529" /> + <rect + transform="rotate(-90)" + id="menu-shadow-hint-left" + height="9.4364891" + y="128.56145" + x="-943.70276" + width="2.5" + style="fill:#b74aff;stroke:none;stroke-width:1.14095" /> + </g> + </g> + </g> + <path + d="m 32.279186,101.07083 h 12.7 v 12.70001 h -12.7 z" + id="tooltip-normal" + style="opacity:0.3;fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.26458333,0,0,0.26458333,-0.06798092,-85.130467)" + id="tooltip-normal-left" + style="stroke:none;fill:#{{surface}}"> + <path + d="m 116.257,703.753 h 6 v 48 h -6 z" + id="tooltip-normal-left0" + style="opacity:0.3;fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:1" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(0.26458333,0,0,0.26458333,-0.06826092,-85.395257)" + id="tooltip-normal-topleft" + style="stroke:none;stroke-width:1;fill:#{{surface}}"> + <path + inkscape:connector-curvature="0" + style="opacity:0.3;fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:1" + d="m 122.25573,698.75378 c -3.32289,10e-4 -5.99768,2.6768 -5.99768,6.00001 h 6.00002 z" + id="path3597-5" /> + </g> + <g + style="stroke:none;fill:#{{surface}}" + id="tooltip-normal-top" + transform="matrix(0,0.26458333,-0.26458333,0,231.18051,68.723673)"> + <path + inkscape:connector-curvature="0" + style="opacity:0.3;fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:1" + id="path4216" + d="m 116.257,703.753 h 6 v 48 h -6 z" /> + </g> + <g + style="stroke:none;stroke-width:1;fill:#{{surface}}" + id="tooltip-normal-topright" + transform="matrix(0,0.26458333,-0.26458333,0,231.4453,68.723392)"> + <path + id="path4212" + d="m 122.25573,698.75378 c -3.32289,10e-4 -5.99768,2.6768 -5.99768,6.00001 h 6.00002 z" + style="opacity:0.3;fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:1" + inkscape:connector-curvature="0" /> + </g> + <g + style="stroke:none;fill:#{{surface}}" + id="tooltip-normal-right" + transform="matrix(-0.26458333,0,0,0.26458333,77.326342,-85.130467)"> + <path + inkscape:connector-curvature="0" + style="opacity:0.3;fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:1" + id="path4208" + d="m 116.257,703.753 h 6 v 48 h -6 z" /> + </g> + <g + style="stroke:none;stroke-width:1;fill:#{{surface}}" + id="tooltip-normal-bottomright" + transform="matrix(-0.26458333,0,0,-0.26458333,77.326615,300.23694)"> + <path + id="path4204" + d="m 122.25573,698.75378 c -3.32289,10e-4 -5.99768,2.6768 -5.99768,6.00001 h 6.00002 z" + style="opacity:0.3;fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:1" + inkscape:connector-curvature="0" /> + </g> + <g + style="stroke:none;fill:#{{surface}}" + id="tooltip-normal-bottom" + transform="matrix(0,-0.26458333,0.26458333,0,-153.92212,146.11799)"> + <path + inkscape:connector-curvature="0" + style="opacity:0.3;fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:1" + id="path4200" + d="m 116.257,703.753 h 6 v 48 h -6 z" /> + </g> + <g + style="stroke:none;stroke-width:1;fill:#{{surface}}" + id="tooltip-normal-bottomleft" + transform="matrix(0,-0.26458333,0.26458333,0,-154.18692,146.11828)"> + <path + id="path4196" + d="m 122.25573,698.75378 c -3.32289,10e-4 -5.99768,2.6768 -5.99768,6.00001 h 6.00002 z" + style="opacity:0.3;fill:#{{surface}};fill-opacity:1;fill-rule:evenodd;stroke-width:1" + inkscape:connector-curvature="0" /> + </g> + <g + style="fill-rule:evenodd;stroke:none" + transform="matrix(0.26458333,0,0,0.26458333,-9.3892199,-133.7684)" + id="tooltip-shadow-top"> + <g + transform="matrix(1,0,0,0.57142372,-127.25,735.45402)" + id="top-3" + style="display:inline;fill:#26272a;fill-opacity:1"> + <path + id="path4382-5-5" + d="M 189.99998,251.99991 H 240 v 10.49993 h -50.00001 z" + style="display:inline;opacity:0.3;fill:#{{surface}};fill-opacity:1;stroke:none;stroke-width:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="display:inline;opacity:0.00100002;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1" + d="M 189.99998,251.99991 H 240 v 1.74984 h -50.00001 z" + id="path3581-6" /> + </g> + <g + style="display:inline;opacity:1" + id="shadow-top-2" + transform="matrix(0,-1,-1,0,369.75,1167.4527)"> + <rect + id="rect4279-9" + width="50" + height="6.9999042" + x="-307" + y="288" + transform="rotate(-90)" + style="opacity:0.75;fill:url(#linearGradient4646);fill-opacity:1;stroke:none;stroke-width:1" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4309-12" + width="50" + height="0.99992359" + x="-307" + y="-288.99997" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + </g> + <g + style="fill-rule:evenodd;stroke:none" + transform="matrix(0.26458333,0,0,0.26458333,-8.8600579,-133.76852)" + id="tooltip-shadow-topright"> + <g + id="g3486-7"> + <g + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1" + transform="rotate(90,-355.88187,520.57087)" + id="topright-0"> + <path + id="path3595-9" + transform="rotate(-90,33.969715,445.96927)" + d="m 426,408 v 7 a 6,6 0 0 1 6,6 h 7 c -10e-5,-8.07721 -4.9229,-13 -13,-13 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.75;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4124);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path3545-3" + transform="rotate(-90,-212.50675,351.44574)" + d="m 85,565.95312 v 1 a 6,6 0 0 1 6,6 h 1 a 7.0000002,7.0000002 0 0 0 -7,-7 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#{{surface}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 9.0002659,47.938995 a 6,6 0 0 0 -5.9999999,6 h 5.9999999 z" + id="path4714-2-6-3" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path3550-0" + transform="rotate(-90,-212.50675,351.44574)" + d="m 85,566.95312 v 1 a 5,5 0 0 1 5,5 h 1 a 6,6 0 0 0 -6,-6 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.00100002;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + id="shadow-topright-6" + style="display:inline" + transform="translate(37.749999,747.51375)"> + <g + id="topright-3-2" + transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" + style="display:inline;fill:url(#radialGradient4126);fill-opacity:1" /> + </g> + </g> + </g> + <g + style="fill-rule:evenodd;stroke:none" + transform="matrix(0.26458333,0,0,0.26458333,-8.8600559,-133.23926)" + id="tooltip-shadow-right"> + <g + transform="matrix(0.57142857,0,0,1,-24.39286,624.45284)" + id="right-6" + style="display:inline;fill:#343031"> + <path + inkscape:connector-curvature="0" + id="path4396-1" + d="m 247.00001,258.99982 v 50 l -10.5,10e-6 v -50 z" + style="display:inline;opacity:0.3;fill:#{{surface}};fill-opacity:1;stroke:none;stroke-width:1" /> + <path + style="display:inline;opacity:0.00100002;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1" + d="m 247,258.99982 v 50 l -1.74996,10e-6 v -50 z" + id="path3583-8" + inkscape:connector-curvature="0" /> + </g> + <g + style="display:inline;opacity:1" + id="shadow-right-7" + transform="matrix(1,0,0,-1,-171.25,1190.4527)"> + <rect + id="rect4279-6-92" + width="50" + height="7.0000081" + x="-307" + y="288" + transform="rotate(-90)" + style="opacity:0.75;fill:url(#linearGradient4648);fill-opacity:1;stroke:none;stroke-width:1" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4309-1-0" + width="50" + height="0.99998951" + x="-307" + y="-289.00003" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + </g> + <g + style="fill-rule:evenodd;stroke:none" + transform="matrix(0.26458333,0,0,0.26458333,-9.9183939,-133.23935)" + inkscape:label="#menu-shadow-left" + id="tooltip-shadow-left"> + <g + transform="matrix(0.57143143,0,0,1,-45.821963,624.45284)" + id="left-2" + style="display:inline;fill:#343031;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + id="path4418-3" + d="m 183.00003,258.99981 v 50 l 10.49998,10e-6 v -50 z" + style="display:inline;opacity:0.3;fill:#{{surface}};fill-opacity:1;stroke:none;stroke-width:1" /> + <path + style="display:inline;opacity:0.00100002;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1" + d="m 183.00002,258.99981 v 50 l 1.75002,10e-6 v -50 z" + id="path3592-7" + inkscape:connector-curvature="0" /> + </g> + <g + style="display:inline;opacity:1" + id="shadow-left-5" + transform="rotate(180,173.375,595.22637)"> + <rect + id="rect4279-6-9-9" + width="50" + height="6.9999719" + x="-307" + y="288" + transform="rotate(-90)" + style="opacity:0.75;fill:url(#linearGradient4650);fill-opacity:1;stroke:none;stroke-width:1" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4309-1-3-2" + width="50" + height="0.99994951" + x="-307" + y="-289" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + </g> + <g + style="fill-rule:evenodd;stroke:none" + transform="matrix(0.26458333,0,0,0.26458333,-9.3892249,-132.71014)" + id="tooltip-shadow-bottom"> + <g + transform="matrix(-1,0,0,-0.57142372,302.75,1081.4515)" + id="bottom-2" + style="display:inline;fill:#343031;fill-opacity:1"> + <path + id="path4382-9-8" + d="M 189.99998,251.9999 H 240 v 10.49995 h -50.00001 z" + style="display:inline;opacity:0.3;fill:#{{surface}};fill-opacity:1;stroke:none;stroke-width:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="display:inline;opacity:0.00100002;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1" + d="M 189.99998,251.99991 H 240 v 1.75024 h -50.00001 z" + id="path3585-9" /> + </g> + <g + style="display:inline;opacity:1" + id="shadow-bottom-7" + transform="rotate(90,-139.85137,509.60137)"> + <rect + id="rect4279-4-3" + width="50" + height="7.0002661" + x="-307" + y="288" + transform="rotate(-90)" + style="opacity:0.75;fill:url(#linearGradient4652);fill-opacity:1;stroke:none;stroke-width:1" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4309-4-6" + width="50" + height="0.99987543" + x="-307" + y="-288.99991" + transform="matrix(0,-1,-1,0,0,0)" /> + </g> + </g> + <rect + id="tooltip-shadow-hint-top" + height="1.8520879" + y="97.068031" + x="13.232652" + width="0.66145831" + style="fill:#b74aff;fill-rule:evenodd;stroke:none;stroke-width:0.369647" /> + <rect + transform="rotate(-90)" + id="tooltip-shadow-hint-right" + height="1.8520746" + y="22.030058" + x="-107.98209" + width="0.66145831" + style="fill:#b74aff;fill-rule:evenodd;stroke:none;stroke-width:0.290195" /> + <rect + id="tooltip-shadow-hint-bottom" + height="1.8520833" + y="115.32428" + x="13.232652" + width="0.66145831" + style="fill:#b74aff;fill-rule:evenodd;stroke:none;stroke-width:0.290843" /> + <rect + transform="rotate(-90)" + id="tooltip-shadow-hint-left" + height="1.8520625" + y="3.7737992" + x="-108.18052" + width="0.66145831" + style="fill:#b74aff;fill-rule:evenodd;stroke:none;stroke-width:0.294844" /> + <g + id="tooltip-shadow-topleft" + transform="matrix(-0.26458333,0,0,0.26458333,36.515985,-133.76852)" + style="fill-rule:evenodd;stroke:none"> + <g + id="g4188"> + <g + id="g4182" + transform="rotate(90,-355.88187,520.57087)" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1"> + <path + id="path4174" + transform="matrix(0,1,1,0,-411.99955,-322.061)" + d="m 376,408 c -8.07698,0 -12.9999,4.92291 -13,13 h 7 a 5.9999999,5.9999999 0 0 1 6,-6 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.75;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4192);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 85,565.95312 v 1 a 6,6 0 0 1 6,6 h 1 a 7.0000002,7.0000002 0 0 0 -7,-7 z" + transform="rotate(-90,-212.50675,351.44574)" + id="path4176" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path4178" + d="m 9.0002659,47.938995 a 6,6 0 0 0 -5.9999999,6 h 5.9999999 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#{{surface}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + transform="rotate(-90,-212.50675,351.44574)" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.00100002;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 85,566.95312 v 1 a 5,5 0 0 1 5,5 h 1 a 6,6 0 0 0 -6,-6 z" + id="path4180" + inkscape:connector-curvature="0" /> + </g> + <g + transform="translate(37.749999,747.51375)" + style="display:inline" + id="g4186"> + <g + style="display:inline;fill:url(#radialGradient4194);fill-opacity:1" + transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" + id="g4184" /> + </g> + </g> + </g> + <g + id="tooltip-shadow-bottomright" + transform="matrix(0.26458333,0,0,-0.26458333,-8.8600579,348.01285)" + style="fill-rule:evenodd;stroke:none"> + <g + id="g4166"> + <g + id="g4160" + transform="rotate(90,-355.88187,520.57087)" + style="display:inline;opacity:1;fill:#26272a;fill-opacity:1"> + <path + id="path4152-5" + transform="matrix(0,-1,-1,0,480.00007,479.93898)" + d="m 432,471 a 5.9999999,5.9999999 0 0 1 -6,6 v 7 c 8.0771,0 12.9999,-4.92279 13,-13 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.75;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4170);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;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:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 85,565.95312 v 1 a 6,6 0 0 1 6,6 h 1 a 7.0000002,7.0000002 0 0 0 -7,-7 z" + transform="rotate(-90,-212.50675,351.44574)" + id="path4154" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path4156" + d="m 9.0002659,47.938995 a 6,6 0 0 0 -5.9999999,6 h 5.9999999 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.3;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#{{surface}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.00100002;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#{{surface}};fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.354331;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 85,566.95312 v 1 a 5,5 0 0 1 5,5 h 1 a 6,6 0 0 0 -6,-6 z" + transform="rotate(-90,-212.50675,351.44574)" + id="path4158" + inkscape:connector-curvature="0" /> + </g> + <g + transform="translate(37.749999,747.51375)" + style="display:inline" + id="g4164"> + <g + style="display:inline;fill:url(#radialGradient4172);fill-opacity:1" + transform="matrix(0,4.25,-4.25,0,295.74073,106.189)" + id="g4162" /> + </g> + </g> + </g> + </g> +</svg> diff --git a/lib/system.nix b/lib/system.nix new file mode 100644 index 0000000..4e316cd --- /dev/null +++ b/lib/system.nix @@ -0,0 +1 @@ +{lib} diff --git a/pkgs/astal/default.nix b/pkgs/astal/default.nix index d076f07..7432166 100644 --- a/pkgs/astal/default.nix +++ b/pkgs/astal/default.nix @@ -1,27 +1,55 @@ { + stdenvNoCC, astal, callPackage, dart-sass, networkmanager, runCommand, + mustache-go, writeShellApplication, # System theme must be passed in theme ? null, ... }: let - vars = import ./theme.nix {inherit theme;}; + # template the vars.scss file with + # the passed in theme to the package + vars = stdenvNoCC.mkDerivation { + name = "vars.scss"; + nativeBuildInputs = [mustache-go]; + + passAsFile = ["jsonData"]; + jsonData = builtins.toJSON theme; + + dontUnpack = true; + + buildPhase = '' + mustache "$jsonDataPath" "${./vars.scss.mustache}" > rendered_config + ''; + + installPhase = '' + cp rendered_config $out + ''; + }; + + # build the astal source + # tree + mkSrc = file: + runCommand "src" {} '' + # copy lua + mkdir -p $out + cp -r ${./src}/{*.lua,widget} $out/ + cp $out/${file}.lua $out/init.lua + + # build css + cp -r ${./src}/style/* . + cat ${vars} style.scss widget/* > main.scss + ${dart-sass}/bin/sass main.scss $out/main.css + ''; + mkAstal = file: callPackage ./builder.nix { - src = runCommand "src" {} '' - mkdir -p $out - cp -r ${./src}/{*.lua,widget} $out/ - cp $out/${file}.lua $out/init.lua - cp -r ${./src}/style/* . - echo '${vars}' > theme.scss - cat theme.scss style.scss widget/* > main.scss - ${dart-sass}/bin/sass main.scss $out/main.css - ''; name = "astal-${file}"; + src = mkSrc file; extraPackages = (with astal; [ apps diff --git a/pkgs/astal/theme.nix b/pkgs/astal/theme.nix deleted file mode 100644 index b76864c..0000000 --- a/pkgs/astal/theme.nix +++ /dev/null @@ -1,26 +0,0 @@ -{theme, ...}: '' - - $text: #${theme.colors.text}; - $subtext: #${theme.colors.subtext}; - - $base: #${theme.colors.base}; - $surface: #${theme.colors.surface}; - $overlay: #${theme.colors.overlay}; - - $primary: #${theme.colors.primary}; - $success: #${theme.colors.success}; - $warning: #${theme.colors.warning}; - $error: #${theme.colors.error}; - - $border: ${toString theme.borderWidth}px; - - $inner-radius: ${toString theme.innerRadius}px; - $outer-radius: ${toString theme.outerRadius}px; - - $inner-gap: ${toString theme.innerGap}px; - $outer-gap: ${toString theme.outerGap}px; - - $font-name: "${theme.font.regular}", "${theme.font.monospace}"; - $font-size: ${toString theme.font.size}px; - -'' diff --git a/pkgs/astal/vars.scss.mustache b/pkgs/astal/vars.scss.mustache new file mode 100644 index 0000000..ef0d7aa --- /dev/null +++ b/pkgs/astal/vars.scss.mustache @@ -0,0 +1,22 @@ +$text: #{{colors.text}}; +$subtext: #{{colors.subtext}}; + +$base: #{{colors.base}}; +$surface: #{{colors.surface}}; +$overlay: #{{colors.overlay}}; + +$primary: #{{colors.primary}}; +$success: #{{colors.success}}; +$warning: #{{colors.warning}}; +$error: #{{colors.error}}; + +$border: {{borderWidth}}px; + +$inner-radius: {{innerRadius}}px; +$outer-radius: {{outerRadius}}px; + +$inner-gap: {{innerGap}}px; +$outer-gap: {{outerGap}}px; + +$font-name: "{{font.regular}}", "{{font.monospace}}"; +$font-size: {{font.size}}px; |