stuff
@@ -0,0 +1 @@
|
||||
--password-store=gnome --enable-features=UseOzonePlatform --ozone-platform=wayland
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Linux",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**",
|
||||
"/usr/include/**"
|
||||
],
|
||||
"defines": [],
|
||||
"compilerPath": "/usr/bin/clang",
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++17",
|
||||
"intelliSenseMode": "linux-clang-x64",
|
||||
"configurationProvider": "ms-vscode.makefile-tools",
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
{
|
||||
"files.associations": {
|
||||
"optional": "cpp",
|
||||
"system_error": "cpp",
|
||||
"fstream": "cpp",
|
||||
"iosfwd": "cpp",
|
||||
"string_view": "cpp",
|
||||
"string": "cpp",
|
||||
"any": "cpp",
|
||||
"array": "cpp",
|
||||
"bit": "cpp",
|
||||
"*.tcc": "cpp",
|
||||
"cctype": "cpp",
|
||||
"clocale": "cpp",
|
||||
"cmath": "cpp",
|
||||
"codecvt": "cpp",
|
||||
"compare": "cpp",
|
||||
"concepts": "cpp",
|
||||
"cstddef": "cpp",
|
||||
"cstdint": "cpp",
|
||||
"cstdio": "cpp",
|
||||
"cstdlib": "cpp",
|
||||
"cstring": "cpp",
|
||||
"ctime": "cpp",
|
||||
"cwchar": "cpp",
|
||||
"cwctype": "cpp",
|
||||
"deque": "cpp",
|
||||
"forward_list": "cpp",
|
||||
"map": "cpp",
|
||||
"unordered_map": "cpp",
|
||||
"vector": "cpp",
|
||||
"exception": "cpp",
|
||||
"functional": "cpp",
|
||||
"initializer_list": "cpp",
|
||||
"iomanip": "cpp",
|
||||
"iostream": "cpp",
|
||||
"istream": "cpp",
|
||||
"limits": "cpp",
|
||||
"memory": "cpp",
|
||||
"new": "cpp",
|
||||
"numbers": "cpp",
|
||||
"numeric": "cpp",
|
||||
"ostream": "cpp",
|
||||
"ranges": "cpp",
|
||||
"ratio": "cpp",
|
||||
"span": "cpp",
|
||||
"sstream": "cpp",
|
||||
"stdexcept": "cpp",
|
||||
"streambuf": "cpp",
|
||||
"type_traits": "cpp",
|
||||
"tuple": "cpp",
|
||||
"typeinfo": "cpp",
|
||||
"utility": "cpp",
|
||||
"valarray": "cpp",
|
||||
"csignal": "cpp",
|
||||
"cstdarg": "cpp",
|
||||
"atomic": "cpp",
|
||||
"bitset": "cpp",
|
||||
"charconv": "cpp",
|
||||
"chrono": "cpp",
|
||||
"condition_variable": "cpp",
|
||||
"list": "cpp",
|
||||
"set": "cpp",
|
||||
"unordered_set": "cpp",
|
||||
"algorithm": "cpp",
|
||||
"iterator": "cpp",
|
||||
"memory_resource": "cpp",
|
||||
"random": "cpp",
|
||||
"regex": "cpp",
|
||||
"source_location": "cpp",
|
||||
"format": "cpp",
|
||||
"mutex": "cpp",
|
||||
"semaphore": "cpp",
|
||||
"shared_mutex": "cpp",
|
||||
"stdfloat": "cpp",
|
||||
"stop_token": "cpp",
|
||||
"thread": "cpp",
|
||||
"cinttypes": "cpp",
|
||||
"variant": "cpp"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"tasks": [
|
||||
{
|
||||
"type": "cppbuild",
|
||||
"label": "C/C++: g++ build active file",
|
||||
"command": "/usr/bin/g++",
|
||||
"args": [
|
||||
"-static",
|
||||
"-fdiagnostics-color=always",
|
||||
"-g",
|
||||
"${file}",
|
||||
"-o",
|
||||
"${fileDirname}/${fileBasenameNoExtension}",
|
||||
"-lboost_iostreams",
|
||||
"`pkg-config --libs boost_iostreams`"
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${fileDirname}"
|
||||
},
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"detail": "Task generated by Debugger."
|
||||
}
|
||||
],
|
||||
"version": "2.0.0"
|
||||
}
|
||||
@@ -0,0 +1,543 @@
|
||||
.corner-width {
|
||||
min-width: 1.5rem;
|
||||
}
|
||||
|
||||
.corner-height {
|
||||
min-height: 1.5rem;
|
||||
}
|
||||
|
||||
.bar-bg {
|
||||
background-color: $background;
|
||||
transition: 200ms cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
}
|
||||
|
||||
.bar-bg-top-decor {
|
||||
// background-image: url('images/svg/drips.svg');
|
||||
}
|
||||
|
||||
.bar-height {
|
||||
transition: 200ms cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
min-height: 2.727rem;
|
||||
}
|
||||
|
||||
.bar-width {
|
||||
transition: 200ms cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
min-width: 2.727rem;
|
||||
}
|
||||
|
||||
.bar-bottom-height {
|
||||
transition: 200ms cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
min-height: 4.091rem;
|
||||
}
|
||||
|
||||
.bar-sides {
|
||||
min-width: 27rem;
|
||||
}
|
||||
|
||||
.bar-bottom-sides {
|
||||
min-width: 34.091rem;
|
||||
}
|
||||
|
||||
.bgdecor-box {
|
||||
transition: 200ms cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
border: 0.068rem solid $background;
|
||||
}
|
||||
|
||||
.flyin-top {
|
||||
animation-name: flyin-top;
|
||||
animation-duration: 250ms;
|
||||
animation-timing-function: cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
.flyin-bottom {
|
||||
animation-name: flyin-bottom;
|
||||
animation-duration: 250ms;
|
||||
animation-timing-function: cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
.dynamic-module {
|
||||
transition: 250ms cubic-bezier(0, 0, 0, 1);
|
||||
min-height: 2.727rem;
|
||||
}
|
||||
|
||||
.dynamic-module-hidetop {
|
||||
margin-top: -2.728rem;
|
||||
}
|
||||
|
||||
.dynamic-module-hidebottom {
|
||||
margin-bottom: -2.728rem;
|
||||
}
|
||||
|
||||
.bar-group-margin {
|
||||
padding: 0.2rem;
|
||||
}
|
||||
|
||||
.bar-group {
|
||||
background-color: mix($surface, $onSurface, 90%);
|
||||
}
|
||||
|
||||
.bar-group-pad {
|
||||
padding: 0rem 1.023rem;
|
||||
}
|
||||
|
||||
.bar-group-pad-less {
|
||||
padding: 0rem 0.681rem;
|
||||
}
|
||||
|
||||
.bar-group-pad-left {
|
||||
padding-left: 1.364rem;
|
||||
padding-right: 0.681rem;
|
||||
}
|
||||
|
||||
.bar-group-pad-right {
|
||||
padding-left: 0.681rem;
|
||||
padding-right: 1.364rem;
|
||||
}
|
||||
|
||||
.bar-group-pad-leftonly {
|
||||
padding-left: 0.681rem;
|
||||
}
|
||||
|
||||
.bar-group-pad-rightonly {
|
||||
padding-right: 0.681rem;
|
||||
}
|
||||
|
||||
.bar-group-standalone {
|
||||
border-radius: 1.364rem;
|
||||
}
|
||||
|
||||
.bar-group-round {
|
||||
border-radius: 10rem;
|
||||
}
|
||||
|
||||
.bar-group-middle {
|
||||
border-radius: 0.477rem;
|
||||
}
|
||||
|
||||
.bar-group-left {
|
||||
border-radius: 0.477rem;
|
||||
border-top-left-radius: 1.364rem;
|
||||
border-bottom-left-radius: 1.364rem;
|
||||
}
|
||||
|
||||
.bar-group-right {
|
||||
border-radius: 0.477rem;
|
||||
border-top-right-radius: 1.364rem;
|
||||
border-bottom-right-radius: 1.364rem;
|
||||
}
|
||||
|
||||
.bar-batt-circ {
|
||||
color: $onSecondaryContainer;
|
||||
}
|
||||
|
||||
.bar-batt-circ-inside {
|
||||
min-height: 2.045rem;
|
||||
min-width: 2.045rem;
|
||||
}
|
||||
|
||||
.bar-batt-circ-low {
|
||||
color: $errorContainer;
|
||||
margin: 0.341rem;
|
||||
}
|
||||
|
||||
.bar-batt-circ-layer2 {
|
||||
color: $onSecondaryContainer;
|
||||
margin: 0.341rem;
|
||||
}
|
||||
|
||||
.bar-batt-circ-layer2-inside {
|
||||
min-width: 1.364rem;
|
||||
min-height: 1.364rem;
|
||||
}
|
||||
|
||||
.bar-batt {
|
||||
padding: 0rem 0.205rem;
|
||||
min-height: 0.954rem;
|
||||
border-radius: 10rem;
|
||||
color: $primaryContainer;
|
||||
background-color: $onPrimaryContainer;
|
||||
}
|
||||
|
||||
.bar-batt-low {
|
||||
padding: 0rem 0.205rem;
|
||||
min-height: 0.954rem;
|
||||
border-radius: 10rem;
|
||||
color: $errorContainer;
|
||||
background-color: $onErrorContainer;
|
||||
}
|
||||
|
||||
.bar-batt-bottom {
|
||||
padding: 0rem 0.205rem;
|
||||
min-height: 0.954rem;
|
||||
border-radius: 10rem;
|
||||
background-color: $secondaryContainer;
|
||||
color: $onSecondaryContainer;
|
||||
}
|
||||
|
||||
.bar-batt-bottom-low {
|
||||
padding: 0rem 0.205rem;
|
||||
min-height: 0.954rem;
|
||||
border-radius: 10rem;
|
||||
color: $errorContainer;
|
||||
background-color: $onErrorContainer;
|
||||
}
|
||||
|
||||
.bar-batt-percentage {
|
||||
font-size: 1rem;
|
||||
margin-top: -0.068rem;
|
||||
margin-left: 0.137rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.bar-batt-percentage-bottom {
|
||||
font-size: 1rem;
|
||||
margin-top: -0.068rem;
|
||||
margin-left: 0.409rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.bar-batt-chargestate {
|
||||
// min-width: 0.681rem;
|
||||
// min-height: 0.681rem;
|
||||
border-radius: 10rem;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.bar-batt-chargestate-charging {
|
||||
border-radius: 10rem;
|
||||
min-width: 0.681rem;
|
||||
min-height: 0.681rem;
|
||||
background-color: $primaryContainer;
|
||||
}
|
||||
|
||||
.bar-batt-chargestate-charging-low {
|
||||
border-radius: 10rem;
|
||||
min-width: 0.681rem;
|
||||
min-height: 0.681rem;
|
||||
background-color: $errorContainer;
|
||||
}
|
||||
|
||||
.bar-batt-chargestate-bottom {
|
||||
background-color: transparent;
|
||||
border-radius: 10rem;
|
||||
min-width: 0.681rem;
|
||||
min-height: 0.681rem;
|
||||
margin: 0.682rem;
|
||||
}
|
||||
|
||||
.bar-batt-chargestate-bottom-charging {
|
||||
border-radius: 10rem;
|
||||
min-width: 0.681rem;
|
||||
min-height: 0.681rem;
|
||||
margin: 0.682rem;
|
||||
background-color: $onSecondaryContainer;
|
||||
}
|
||||
|
||||
.bar-batt-chargestate-bottom-charging-low {
|
||||
border-radius: 10rem;
|
||||
min-width: 0.681rem;
|
||||
min-height: 0.681rem;
|
||||
margin: 0.682rem;
|
||||
background-color: $errorContainer;
|
||||
}
|
||||
|
||||
.bar-ws-width {
|
||||
min-width: 18.382rem;
|
||||
}
|
||||
|
||||
.bar-ws-txt {
|
||||
min-height: 1.772rem;
|
||||
min-width: 1.772rem;
|
||||
@include mainfont;
|
||||
font-size: 1.0909rem;
|
||||
// background: red;
|
||||
}
|
||||
|
||||
.ws {
|
||||
transition: 100ms cubic-bezier(0, 1, 0, 1);
|
||||
}
|
||||
|
||||
.bar-ws-txt-active {
|
||||
border-radius: 10rem;
|
||||
background-color: $primary;
|
||||
color: $onPrimary;
|
||||
}
|
||||
|
||||
.bar-ws-txt-true {
|
||||
background-color: $secondaryContainer;
|
||||
color: $onSecondaryContainer;
|
||||
}
|
||||
|
||||
.bar-ws-txt-left {
|
||||
background-color: $secondaryContainer;
|
||||
color: $onSecondaryContainer;
|
||||
border-top-left-radius: 10rem;
|
||||
border-bottom-left-radius: 10rem;
|
||||
}
|
||||
|
||||
.bar-ws-txt-right {
|
||||
background-color: $secondaryContainer;
|
||||
color: $onSecondaryContainer;
|
||||
border-top-right-radius: 10rem;
|
||||
border-bottom-right-radius: 10rem;
|
||||
}
|
||||
|
||||
.bar-ws-txt-alone {
|
||||
background-color: $secondaryContainer;
|
||||
color: $onSecondaryContainer;
|
||||
border-radius: 10rem;
|
||||
}
|
||||
|
||||
.bar-ws-txt-middle {
|
||||
background-color: $secondaryContainer;
|
||||
color: $onSecondaryContainer;
|
||||
}
|
||||
|
||||
.bar-ws-txt-false {
|
||||
color: $onSurface;
|
||||
}
|
||||
|
||||
.bar-music-playstate {
|
||||
min-width: 1.773rem;
|
||||
min-height: 1.773rem;
|
||||
border-radius: 10rem;
|
||||
margin: 0.273rem;
|
||||
margin-left: 0.205rem;
|
||||
background-color: $secondaryContainer;
|
||||
color: $onSecondaryContainer;
|
||||
}
|
||||
|
||||
.bar-music-playstate-playing {
|
||||
min-width: 1.773rem;
|
||||
min-height: 1.773rem;
|
||||
border-radius: 10rem;
|
||||
margin: 0.273rem;
|
||||
margin-left: 0.205rem;
|
||||
background-color: $primaryContainer;
|
||||
color: $onPrimaryContainer;
|
||||
}
|
||||
|
||||
.bar-music-playstate-txt {
|
||||
@include icon-material;
|
||||
font-size: 1.4545rem;
|
||||
margin-bottom: -0.137rem;
|
||||
margin-left: 0rem;
|
||||
}
|
||||
|
||||
.bar-music-cover {
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% auto;
|
||||
min-width: 11.932rem;
|
||||
}
|
||||
|
||||
.bar-music-extended-bg {
|
||||
border-radius: 1.364rem;
|
||||
min-width: 34.091rem;
|
||||
}
|
||||
|
||||
.bar-music-extended-ctl-bg {
|
||||
border-radius: 1.364rem;
|
||||
background-color: rgba(30, 30, 30, 0.6);
|
||||
}
|
||||
|
||||
.bar-music-bottom-bg {
|
||||
border-radius: 1.364rem;
|
||||
min-width: 34.091rem;
|
||||
}
|
||||
|
||||
.bar-music-bottom-ctl-bg {
|
||||
border-radius: 1.364rem;
|
||||
background-color: rgba(30, 30, 30, 0.6);
|
||||
}
|
||||
|
||||
.bar-music-extended-textbox {
|
||||
margin: 1.023rem;
|
||||
}
|
||||
|
||||
.bar-music-bottom-cover {
|
||||
border-radius: 10rem;
|
||||
}
|
||||
|
||||
.bar-music-hide-false {
|
||||
@include md3_decel;
|
||||
transition-duration: 100ms;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.bar-music-hide-true {
|
||||
@include md3_accel;
|
||||
transition-duration: 100ms;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.bar-music-btn {
|
||||
font-size: 1.364rem;
|
||||
border-radius: 10rem;
|
||||
min-height: 2.591rem;
|
||||
min-width: 2.591rem;
|
||||
}
|
||||
|
||||
.bar-music-btn:hover {
|
||||
background-color: $hovercolor;
|
||||
}
|
||||
|
||||
.bar-prog-batt {
|
||||
min-height: 0.955rem;
|
||||
min-width: 0.068rem;
|
||||
padding: 0rem;
|
||||
border-radius: 10rem;
|
||||
|
||||
trough {
|
||||
min-height: 0.954rem;
|
||||
min-width: 0.068rem;
|
||||
border-radius: 10rem;
|
||||
background-color: $onPrimaryContainer;
|
||||
}
|
||||
|
||||
progress {
|
||||
min-height: 0.680rem;
|
||||
min-width: 0.680rem;
|
||||
margin: 0rem 0.137rem;
|
||||
border-radius: 10rem;
|
||||
background-color: $primaryContainer;
|
||||
}
|
||||
}
|
||||
|
||||
.bar-prog-batt-low {
|
||||
min-height: 0.954rem;
|
||||
min-width: 0.068rem;
|
||||
padding: 0rem;
|
||||
border-radius: 10rem;
|
||||
|
||||
trough {
|
||||
min-height: 0.954rem;
|
||||
min-width: 0.068rem;
|
||||
border-radius: 10rem;
|
||||
background-color: $onErrorContainer;
|
||||
}
|
||||
|
||||
progress {
|
||||
min-height: 0.680rem;
|
||||
min-width: 0.680rem;
|
||||
margin: 0rem 0.137rem;
|
||||
border-radius: 10rem;
|
||||
background-color: $errorContainer;
|
||||
}
|
||||
}
|
||||
|
||||
.bar-prog-osd {
|
||||
min-height: 0.954rem;
|
||||
min-width: 0.068rem;
|
||||
padding: 0rem;
|
||||
border-radius: 10rem;
|
||||
|
||||
trough {
|
||||
min-height: 0.954rem;
|
||||
min-width: 0.068rem;
|
||||
border-radius: 10rem;
|
||||
background-color: $onSurfaceVariant;
|
||||
}
|
||||
|
||||
progress {
|
||||
min-height: 0.681rem;
|
||||
min-width: 0.681rem;
|
||||
margin: 0rem 0.137rem;
|
||||
border-radius: 10rem;
|
||||
background-color: $surfaceVariant;
|
||||
}
|
||||
}
|
||||
|
||||
menu {
|
||||
padding: 0.681rem;
|
||||
background: $surfaceVariant;
|
||||
color: $onSurfaceVariant;
|
||||
border-radius: 1.159rem;
|
||||
}
|
||||
|
||||
menubar>menuitem {
|
||||
border-radius: 0.545rem;
|
||||
min-width: 2.727rem;
|
||||
min-height: 2.727rem;
|
||||
}
|
||||
|
||||
menu>menuitem {
|
||||
padding: 0.4em 1.5rem;
|
||||
background: transparent;
|
||||
transition: 0.2s ease background;
|
||||
border-radius: 0.545rem;
|
||||
}
|
||||
|
||||
menu>menuitem:hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.bar-btn {
|
||||
border-radius: 10rem;
|
||||
padding: 0.273rem;
|
||||
min-height: 2.182rem;
|
||||
min-width: 2.182rem;
|
||||
}
|
||||
|
||||
.bar-btn:hover {
|
||||
box {
|
||||
background-color: $hovercolor;
|
||||
}
|
||||
}
|
||||
|
||||
.bar-btn:active {
|
||||
box {
|
||||
background-color: $activecolor;
|
||||
}
|
||||
}
|
||||
|
||||
.bar-btn-box {
|
||||
margin: 0.273rem;
|
||||
border-radius: 10rem;
|
||||
min-width: 2.182rem;
|
||||
min-height: 2.182rem;
|
||||
padding: 0rem 0.681rem;
|
||||
}
|
||||
|
||||
.bar-rev {
|
||||
@include md3_decel;
|
||||
}
|
||||
|
||||
.bar-rev-close {
|
||||
@include md3_accel;
|
||||
}
|
||||
|
||||
.taskbar-button {
|
||||
margin: 0.341rem;
|
||||
border-radius: 10rem;
|
||||
min-width: 3.409rem;
|
||||
min-height: 3.409rem;
|
||||
}
|
||||
|
||||
.taskbar-button-active {
|
||||
background-color: mix($primary, rgba(0, 0, 0, 0), 60%);
|
||||
}
|
||||
|
||||
.taskbaricon {
|
||||
min-width: 3.409rem;
|
||||
min-height: 3.409rem;
|
||||
}
|
||||
|
||||
.bar-notif-indicator {
|
||||
border-radius: 10rem;
|
||||
background-color: $primary;
|
||||
color: $onPrimary;
|
||||
padding: 0.137rem 0.477rem;
|
||||
}
|
||||
|
||||
.bar-notif-icon {
|
||||
margin-top: 0.068rem;
|
||||
margin-bottom: -0.068rem;
|
||||
}
|
||||
|
||||
.bar-circ-bottom-size {
|
||||
min-height: 2.727rem;
|
||||
min-width: 2.727rem;
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
.cheatsheet-bg {
|
||||
border-radius: 1.432rem;
|
||||
margin-bottom: 0.682rem;
|
||||
background-color: $background;
|
||||
padding: 1.364rem;
|
||||
border: 2px solid $surfaceVariant;
|
||||
}
|
||||
|
||||
.cheatsheet-key {
|
||||
@include techfont;
|
||||
min-height: 1.364rem;
|
||||
min-width: 1.364rem;
|
||||
margin: 0.17rem;
|
||||
padding: 0.136rem 0.205rem;
|
||||
border-radius: 0.409rem;
|
||||
color: $primary;
|
||||
border: 0.068rem solid $primary;
|
||||
box-shadow: 0rem 0.136rem 0rem $primary;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.cheatsheet-key-notkey {
|
||||
min-height: 1.364rem;
|
||||
padding: 0.136rem 0.205rem;
|
||||
margin: 0.17rem;
|
||||
color: $onPrimaryContainer;
|
||||
}
|
||||
|
||||
.cheatsheet-action {}
|
||||
|
||||
.cheatsheet-closebtn {
|
||||
border-radius: 50rem;
|
||||
min-width: 2.386rem;
|
||||
min-height: 2.386rem;
|
||||
}
|
||||
|
||||
.cheatsheet-closebtn:hover {
|
||||
background-color: $surfaceVariant;
|
||||
}
|
||||
|
||||
.cheatsheet-closebtn:active {
|
||||
background-color: mix($surfaceVariant, $onSurfaceVariant, 70%);
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
//Auto generated color theme for image at: [Local wallpaper]
|
||||
$colorbarbg: #070318;
|
||||
$colorbg: rgba(7,3,24,0.75);
|
||||
$colortext: #e5e1f2;
|
||||
$color0: #B355CF;
|
||||
$color1: #956CE5;
|
||||
$color2: #6C9AEA;
|
||||
$color3: #A39AEF;
|
||||
$color4: #D5A7EF;
|
||||
$color5: #AAD0F1;
|
||||
$color6: #e5e1f2;
|
||||
$color7: #A39AEF;
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"wallpaper": "/home/end/.config/eww/images/wallpaper",
|
||||
"alpha": "100",
|
||||
|
||||
"special": {
|
||||
"background": "#070318",
|
||||
"foreground": "#e5e1f2",
|
||||
"cursor": "#e5e1f2"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#070318",
|
||||
"color1": "#B355CF",
|
||||
"color2": "#956CE5",
|
||||
"color3": "#6C9AEA",
|
||||
"color4": "#A39AEF",
|
||||
"color5": "#D5A7EF",
|
||||
"color6": "#AAD0F1",
|
||||
"color7": "#e5e1f2",
|
||||
"color8": "#a09da9",
|
||||
"color9": "#B355CF",
|
||||
"color10": "#956CE5",
|
||||
"color11": "#6C9AEA",
|
||||
"color12": "#A39AEF",
|
||||
"color13": "#D5A7EF",
|
||||
"color14": "#AAD0F1",
|
||||
"color15": "#e5e1f2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,357 @@
|
||||
// Common colors
|
||||
$hovercolor: rgba(128, 128, 128, 0.4);
|
||||
$activecolor: rgba(128, 128, 128, 0.7);
|
||||
|
||||
// Common rules
|
||||
@mixin mainfont {
|
||||
font-family: 'Lexend', 'Bahnschrift', 'Inter';
|
||||
// font-weight: 500;
|
||||
}
|
||||
|
||||
@mixin icon-material {
|
||||
font-family: 'Material Symbols Rounded';
|
||||
}
|
||||
|
||||
@mixin icon-nerd {
|
||||
font-family: 'JetBrainsMono Nerd Font';
|
||||
}
|
||||
|
||||
@mixin techfont {
|
||||
font-family: 'JetBrains Mono Nerd Font';
|
||||
}
|
||||
|
||||
@mixin subtext {
|
||||
color: rgb(160, 160, 160);
|
||||
}
|
||||
|
||||
@mixin elevation-safe {
|
||||
background: $surface;
|
||||
color: $onSurface;
|
||||
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.69);
|
||||
margin: 7px;
|
||||
}
|
||||
|
||||
@mixin elevation2 {
|
||||
background: $surface;
|
||||
color: $onSurface;
|
||||
box-shadow: 0px 2px 3px $shadow;
|
||||
margin: 7px;
|
||||
}
|
||||
|
||||
@mixin elevation3 {
|
||||
background: $surfaceVariant;
|
||||
color: $onSurfaceVariant;
|
||||
// box-shadow: 0px 2px 5px mix($shadow, rgba(0,0,0,0), 40%);
|
||||
box-shadow: 0px 2px 5px $shadow;
|
||||
margin: 7px;
|
||||
}
|
||||
|
||||
@mixin md3_decel {
|
||||
transition: 250ms cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
}
|
||||
|
||||
@mixin md3_accel {
|
||||
transition: 180ms cubic-bezier(0.3, 0, 0.8, 0.15);
|
||||
}
|
||||
|
||||
@mixin noanim {
|
||||
transition: 0ms;
|
||||
}
|
||||
|
||||
@mixin anim-enter {
|
||||
transition: 200ms cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
}
|
||||
|
||||
@mixin anim-exit {
|
||||
transition: 150ms cubic-bezier(0.3, 0, 0.8, 0.15);
|
||||
}
|
||||
|
||||
@mixin m3-button {
|
||||
border-radius: 50rem;
|
||||
}
|
||||
|
||||
@keyframes flyin-top {
|
||||
from {
|
||||
margin-top: -2.795rem;
|
||||
}
|
||||
|
||||
to {
|
||||
margin-top: 0rem;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes flyin-bottom {
|
||||
from {
|
||||
margin-top: 4.841rem;
|
||||
margin-bottom: -4.841rem;
|
||||
}
|
||||
|
||||
to {
|
||||
margin-bottom: 0rem;
|
||||
margin-top: 0rem;
|
||||
}
|
||||
}
|
||||
|
||||
@function tint($color, $percentage) {
|
||||
@return mix(rgb(245, 250, 255), $color, $percentage);
|
||||
}
|
||||
|
||||
@function shade($color, $percentage) {
|
||||
@return mix(rgb(0, 0, 0), $color, $percentage);
|
||||
}
|
||||
|
||||
.no-anim {
|
||||
@include noanim;
|
||||
}
|
||||
|
||||
.txt {
|
||||
color: $onBackground;
|
||||
}
|
||||
|
||||
.txt-shadow {
|
||||
text-shadow: 1px 2px 8px rgba(0,0,0,0.69);
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.txt-badonkers {
|
||||
@include mainfont;
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.txt-tiddies {
|
||||
@include mainfont;
|
||||
font-size: 2.7273rem;
|
||||
}
|
||||
|
||||
.txt-hugeass {
|
||||
@include mainfont;
|
||||
font-size: 1.8182rem;
|
||||
}
|
||||
|
||||
.txt-larger {
|
||||
@include mainfont;
|
||||
font-size: 1.6363rem;
|
||||
}
|
||||
|
||||
.txt-large {
|
||||
//16pt
|
||||
@include mainfont;
|
||||
font-size: 1.4545rem;
|
||||
}
|
||||
|
||||
.txt-norm {
|
||||
//14pt
|
||||
@include mainfont;
|
||||
font-size: 1.2727rem;
|
||||
}
|
||||
|
||||
.txt-small {
|
||||
//12pt
|
||||
@include mainfont;
|
||||
font-size: 1.0909rem;
|
||||
}
|
||||
|
||||
.txt-smallie {
|
||||
//11pt
|
||||
@include mainfont;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.txt-smaller {
|
||||
//10pt
|
||||
@include mainfont;
|
||||
font-size: 0.9091rem;
|
||||
}
|
||||
|
||||
.txt-smaller-offset {
|
||||
margin-top: -0.136rem;
|
||||
}
|
||||
|
||||
.txt-tiny {
|
||||
@include mainfont;
|
||||
font-size: 0.7273rem;
|
||||
}
|
||||
|
||||
.txt-subtxt {
|
||||
color: mix($onBackground, $background, 80%);
|
||||
}
|
||||
|
||||
.txt-bold {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.icon-material {
|
||||
@include icon-material;
|
||||
}
|
||||
|
||||
.separator {
|
||||
border-radius: 50rem;
|
||||
background-color: $onSurface;
|
||||
margin: 0rem 0.682rem;
|
||||
min-width: 0.545rem;
|
||||
min-height: 0.545rem;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
background-color: $surfaceVariant;
|
||||
color: $onSurfaceVariant;
|
||||
border-radius: 50rem;
|
||||
border: 1px solid $onSurfaceVariant;
|
||||
}
|
||||
|
||||
|
||||
$overlay1: mix($onSurface, rgba(0, 0, 0, 0), 25%);
|
||||
$overlay2: mix($onSurface, rgba(0, 0, 0, 0), 40%);
|
||||
|
||||
|
||||
.spacing-v-15>box {
|
||||
margin-bottom: 1.023rem;
|
||||
}
|
||||
|
||||
.spacing-v-15>box:last-child {
|
||||
margin-bottom: 0rem;
|
||||
}
|
||||
|
||||
.spacing-v-15>scrolledwindow {
|
||||
margin-bottom: 1.023rem;
|
||||
}
|
||||
|
||||
.spacing-v-15>scrolledwindow:last-child {
|
||||
margin-bottom: 0rem;
|
||||
}
|
||||
|
||||
.spacing-v-15>revealer {
|
||||
margin-bottom: 1.023rem;
|
||||
}
|
||||
|
||||
.spacing-v-15>revealer:last-child {
|
||||
margin-bottom: 0rem;
|
||||
}
|
||||
|
||||
.spacing-v-15>label {
|
||||
margin-bottom: 1.023rem;
|
||||
}
|
||||
|
||||
.spacing-v-15>label:last-child {
|
||||
margin-bottom: 0rem;
|
||||
}
|
||||
|
||||
.spacing-h-15>box {
|
||||
margin-right: 1.023rem;
|
||||
}
|
||||
|
||||
.spacing-h-15>box:last-child {
|
||||
margin-right: 0rem;
|
||||
}
|
||||
|
||||
.spacing-h-15>label {
|
||||
margin-right: 1.023rem;
|
||||
}
|
||||
|
||||
.spacing-h-15>label:last-child {
|
||||
margin-right: 0rem;
|
||||
}
|
||||
|
||||
.spacing-h-15>button {
|
||||
margin-right: 1.023rem;
|
||||
}
|
||||
|
||||
.spacing-h-15>button:last-child {
|
||||
margin-right: 0rem;
|
||||
}
|
||||
|
||||
.spacing-v-5>box {
|
||||
margin-bottom: 0.341rem;
|
||||
}
|
||||
|
||||
.spacing-v-5>box:last-child {
|
||||
margin-bottom: 0rem;
|
||||
}
|
||||
|
||||
.spacing-v-5>label {
|
||||
margin-bottom: 0.341rem;
|
||||
}
|
||||
|
||||
.spacing-v-5>label:last-child {
|
||||
margin-bottom: 0rem;
|
||||
}
|
||||
|
||||
.spacing-v-5>button {
|
||||
margin-bottom: 0.341rem;
|
||||
}
|
||||
|
||||
.spacing-v-5>button:last-child {
|
||||
margin-bottom: 0rem;
|
||||
}
|
||||
|
||||
.spacing-h-5>box {
|
||||
margin-right: 0.341rem;
|
||||
}
|
||||
|
||||
.spacing-h-5>box:last-child {
|
||||
margin-right: 0rem;
|
||||
}
|
||||
|
||||
.spacing-h-5>label {
|
||||
margin-right: 0.341rem;
|
||||
}
|
||||
|
||||
.spacing-h-5>label:last-child {
|
||||
margin-right: 0rem;
|
||||
}
|
||||
|
||||
.spacing-h-5>widget>box {
|
||||
margin-right: 0.341rem;
|
||||
}
|
||||
|
||||
.spacing-h-5>widget:last-child>box {
|
||||
margin-right: 0rem;
|
||||
}
|
||||
|
||||
.spacing-v-minus5>box {
|
||||
margin-bottom: -0.341rem;
|
||||
}
|
||||
|
||||
.spacing-v-minus5>box:last-child {
|
||||
margin-bottom: 0rem;
|
||||
}
|
||||
|
||||
.spacing-v-minus5>label {
|
||||
margin-bottom: -0.341rem;
|
||||
}
|
||||
|
||||
.spacing-v-minus5>label:last-child {
|
||||
margin-bottom: 0rem;
|
||||
}
|
||||
|
||||
.spacing-h-10>box {
|
||||
margin-right: 0.682rem;
|
||||
}
|
||||
|
||||
.spacing-h-10>box:last-child {
|
||||
margin-right: 0rem;
|
||||
}
|
||||
|
||||
.spacing-h-10>label {
|
||||
margin-right: 0.682rem;
|
||||
}
|
||||
|
||||
.spacing-h-10>label:last-child {
|
||||
margin-right: 0rem;
|
||||
}
|
||||
|
||||
.spacing-h-10>widget {
|
||||
margin-right: 0.682rem;
|
||||
}
|
||||
|
||||
.spacing-h-10>widget:last-child {
|
||||
margin-right: 0rem;
|
||||
}
|
||||
|
||||
.anim-enter {
|
||||
@include anim-enter;
|
||||
}
|
||||
|
||||
.anim-exit {
|
||||
@include anim-exit;
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
$primary: #c8bfff;
|
||||
$onPrimary: #2d2176;
|
||||
$primaryContainer: #443a8e;
|
||||
$onPrimaryContainer: #e5deff;
|
||||
$secondary: #c8c3dc;
|
||||
$onSecondary: #302e41;
|
||||
$secondaryContainer: #474459;
|
||||
$onSecondaryContainer: #e5dff9;
|
||||
$tertiary: #ecb9cf;
|
||||
$onTertiary: #482537;
|
||||
$tertiaryContainer: #613b4d;
|
||||
$onTertiaryContainer: #ffd8e9;
|
||||
$error: #ffb4a9;
|
||||
$onError: #680003;
|
||||
$errorContainer: #930006;
|
||||
$onErrorContainer: #ffb4a9;
|
||||
$colorbarbg: #1c1b1f;
|
||||
$background: #1c1b1f;
|
||||
$onBackground: #e5e1e6;
|
||||
$surface: #1c1b1f;
|
||||
$onSurface: #e5e1e6;
|
||||
$surfaceVariant: #47464f;
|
||||
$onSurfaceVariant: #c9c5d0;
|
||||
$outline: #928f9a;
|
||||
$shadow: #000000;
|
||||
$inverseSurface: #e5e1e6;
|
||||
$inverseOnSurface: #313033;
|
||||
$inversePrimary: #5c53a7;
|
||||
@@ -0,0 +1,47 @@
|
||||
.popup-notif-common {
|
||||
min-width: 34.091rem;
|
||||
transition: 100ms;
|
||||
padding: 1.023rem;
|
||||
}
|
||||
|
||||
.popup-notif {
|
||||
border-radius: 1.432rem;
|
||||
margin-bottom: 0.682rem;
|
||||
}
|
||||
|
||||
.popup-notif-top {
|
||||
border-top-left-radius: 1.432rem;
|
||||
border-top-right-radius: 1.432rem;
|
||||
}
|
||||
|
||||
.popup-notif-middle {
|
||||
// padding: 0rem 1.023rem 1.023rem 1.023rem;
|
||||
}
|
||||
|
||||
.popup-notif-bottom {
|
||||
border-bottom-left-radius: 1.432rem;
|
||||
border-bottom-right-radius: 1.432rem;
|
||||
// padding: 0rem 1.023rem 1.023rem 1.023rem;
|
||||
margin-bottom: 0.682rem;
|
||||
}
|
||||
|
||||
.popup-notif-urgent {
|
||||
background-color: $error;
|
||||
color: $onError;
|
||||
}
|
||||
|
||||
.popup-notif-normal {
|
||||
background-color: $secondaryContainer;
|
||||
color: $onSecondaryContainer;
|
||||
}
|
||||
|
||||
.popup-notif-normal > box > label {
|
||||
color: mix($onSecondaryContainer, $secondaryContainer, 80%);
|
||||
}
|
||||
|
||||
.popup-notif-hint {
|
||||
padding: 0.341rem 0.682rem;
|
||||
border-radius: 1.023rem;
|
||||
background-color: $surfaceVariant;
|
||||
color: $onSurfaceVariant;
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
.powermenu-bg {
|
||||
background-color: mix($background, rgba(0, 0, 0, 0), 25%);
|
||||
}
|
||||
|
||||
.powermenu-btn-area {
|
||||
padding: 1.364rem 3.409rem;
|
||||
}
|
||||
|
||||
.powermenu-btn {
|
||||
background-color: $secondaryContainer;
|
||||
color: $onSecondaryContainer;
|
||||
border-radius: 1.432rem;
|
||||
padding: 0.682rem;
|
||||
min-width: 11.591rem;
|
||||
}
|
||||
|
||||
.powermenu-btn:hover {
|
||||
background-color: tint($secondaryContainer, 10%);
|
||||
color: tint($onSecondaryContainer, 10%);
|
||||
}
|
||||
|
||||
.powermenu-btn:active {
|
||||
background-color: tint($secondaryContainer, 15%);
|
||||
color: tint($onSecondaryContainer, 15%);
|
||||
}
|
||||
|
||||
.powermenu-btn-active {
|
||||
background-color: $primary;
|
||||
color: $onPrimary;
|
||||
border-radius: 1.432rem;
|
||||
padding: 0.341rem;
|
||||
padding: 0.682rem;
|
||||
min-width: 11.591rem;
|
||||
}
|
||||
|
||||
.powermenu-btn-active:hover {
|
||||
background-color: tint($primary, 8%);
|
||||
color: tint($onPrimary, 8%);
|
||||
}
|
||||
|
||||
.powermenu-btn-active:active {
|
||||
background-color: tint($primary, 20%);
|
||||
color: tint($onPrimary, 20%);
|
||||
|
||||
}
|
||||
|
||||
.powermenu-btn-forceheight {
|
||||
background-color: $secondaryContainer;
|
||||
color: $onSecondaryContainer;
|
||||
border-radius: 1.432rem;
|
||||
padding: 0.341rem;
|
||||
min-width: 11.591rem;
|
||||
min-height: 7.5rem;
|
||||
}
|
||||
|
||||
.powermenu-btn-forceheight:hover {
|
||||
background-color: tint($secondaryContainer, 10%);
|
||||
color: tint($onSecondaryContainer, 10%);
|
||||
}
|
||||
|
||||
.powermenu-btn-forceheight:active {
|
||||
background-color: tint($secondaryContainer, 15%);
|
||||
color: tint($onSecondaryContainer, 15%);
|
||||
}
|
||||
|
||||
.powermenu-btn-forceheight-active {
|
||||
background-color: $primary;
|
||||
color: $onPrimary;
|
||||
border-radius: 1.432rem;
|
||||
padding: 0.341rem;
|
||||
min-width: 11.591rem;
|
||||
min-height: 7.5rem;
|
||||
}
|
||||
|
||||
.powermenu-btn-forceheight-active:hover {
|
||||
background-color: tint($primary, 8%);
|
||||
color: tint($onPrimary, 8%);
|
||||
}
|
||||
|
||||
.powermenu-btn-forceheight-active:active {
|
||||
background-color: tint($primary, 20%);
|
||||
color: tint($onPrimary, 20%);
|
||||
|
||||
}
|
||||
|
||||
.powermenu-time {
|
||||
padding: 1.364rem 3.409rem;
|
||||
}
|
||||
|
||||
.powermenu-keybind-min-width {
|
||||
min-width: 6.818rem;
|
||||
}
|
||||
|
||||
.powermenu-btn-bottom {
|
||||
background-color: $secondaryContainer;
|
||||
color: $onSecondaryContainer;
|
||||
border-radius: 1.432rem;
|
||||
padding: 0.341rem;
|
||||
min-width: 11.591rem;
|
||||
min-height: 4.773rem;
|
||||
}
|
||||
|
||||
.powermenu-btn-bottom:hover {
|
||||
background-color: tint($secondaryContainer, 10%);
|
||||
color: tint($onSecondaryContainer, 10%);
|
||||
}
|
||||
|
||||
.powermenu-btn-bottom:active {
|
||||
background-color: tint($secondaryContainer, 15%);
|
||||
color: tint($onSecondaryContainer, 15%);
|
||||
}
|
||||
|
||||
.powermenu-btn-number {
|
||||
min-width: 1.705rem;
|
||||
min-height: 1.705rem;
|
||||
margin: 0.477rem;
|
||||
padding: 0.136rem 0.273rem;
|
||||
border-radius: 0.955rem;
|
||||
background-color: mix($secondaryContainer, $surface, 70%);
|
||||
}
|
||||
|
||||
.powermenu-icon {
|
||||
min-width: 6.25rem;
|
||||
min-height: 6.25rem;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: auto 100%;
|
||||
font-size: 6.375rem;
|
||||
color: $onBackground;
|
||||
}
|
||||
@@ -0,0 +1,136 @@
|
||||
@keyframes flyin-top {
|
||||
from {
|
||||
margin-top: -3.409rem;
|
||||
margin-bottom: 3.409rem;
|
||||
}
|
||||
|
||||
to {
|
||||
margin-bottom: 0rem;
|
||||
margin-top: 0rem;
|
||||
}
|
||||
}
|
||||
|
||||
.powerview-search-box-size {
|
||||
min-width: 20.455rem;
|
||||
min-height: 4.091rem;
|
||||
}
|
||||
|
||||
.powerview-search-list-size {
|
||||
min-width: 34.227rem;
|
||||
min-height: 61rem;
|
||||
}
|
||||
|
||||
.powerview-search-field {
|
||||
margin: 0.273rem;
|
||||
padding: 0rem 1.364rem;
|
||||
border-radius: 50rem;
|
||||
@include elevation2;
|
||||
}
|
||||
|
||||
.powerview-search-txt {
|
||||
@include mainfont;
|
||||
padding: 0rem 1.023rem;
|
||||
|
||||
selection {
|
||||
background-color: $secondary;
|
||||
color: $onSecondary;
|
||||
}
|
||||
}
|
||||
|
||||
.powerview-search-txt:focus {
|
||||
background-color: mix($background, $primaryContainer, 85%);
|
||||
}
|
||||
|
||||
.powerview-search-prompt-txt {
|
||||
@include mainfont;
|
||||
color: $onSurfaceVariant;
|
||||
}
|
||||
|
||||
.powerview-bg {
|
||||
border-radius: 17px;
|
||||
@include elevation2;
|
||||
}
|
||||
|
||||
.powerview-ws {
|
||||
border-radius: 13px;
|
||||
background-color: rgba(80, 80, 80, 0.1);
|
||||
margin: 0.273rem;
|
||||
}
|
||||
|
||||
.powerview-ws-true {
|
||||
background-color: $primary;
|
||||
}
|
||||
|
||||
.powerview-ws-false {
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.powerview-ws-window {
|
||||
border-radius: 13px;
|
||||
background-color: mix($onSecondary, rgba(80, 80, 80, 0.3), 30%);
|
||||
}
|
||||
|
||||
.powerview-ws-window-selected {
|
||||
border-radius: 13px;
|
||||
background-color: mix($secondaryContainer, rgba(80, 80, 80, 0.3), 30%);
|
||||
}
|
||||
|
||||
.powerview-search-result {
|
||||
@include mainfont;
|
||||
border-radius: 22px;
|
||||
font-size: 1.364rem;
|
||||
min-height: 3.205rem;
|
||||
min-width: 27.273rem;
|
||||
padding: 0.136rem 0.818rem;
|
||||
padding-left: 3.886rem;
|
||||
margin: 0rem 0.341rem;
|
||||
|
||||
background-color: $background;
|
||||
color: $onBackground;
|
||||
background-size: 400% auto;
|
||||
background-position: 40% 50%;
|
||||
|
||||
caret-color: $onSecondaryContainer;
|
||||
|
||||
selection {
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.powerview-search-result:focus {
|
||||
color: $onPrimaryContainer;
|
||||
// background-position: 65% 50%;
|
||||
background-color: mix($background, $primaryContainer, 90%);
|
||||
|
||||
selection {
|
||||
color: $onPrimaryContainer;
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.powerview-search-result:active {
|
||||
color: $onPrimaryContainer;
|
||||
// background-color: $secondaryContainer;
|
||||
// background-position: 100% 50%;
|
||||
background-color: mix($background, $primaryContainer, 90%);
|
||||
|
||||
selection {
|
||||
color: $onPrimaryContainer;
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.overview-search-result-icon {
|
||||
// background-color: $secondaryContainer;
|
||||
border-radius: 18px;
|
||||
min-height: 3.477rem;
|
||||
min-width: 3.477rem;
|
||||
margin: 0rem 0.341rem;
|
||||
}
|
||||
|
||||
.powerview-info {
|
||||
padding: 1.023rem;
|
||||
border-radius: 22px;
|
||||
min-width: 75rem;
|
||||
@include elevation2;
|
||||
}
|
||||
@@ -0,0 +1,634 @@
|
||||
.sidebar-window {
|
||||
@include elevation2;
|
||||
background-color: $background;
|
||||
border-radius: 17px;
|
||||
min-width: 34.091rem;
|
||||
margin: 0.205rem;
|
||||
padding: 1.023rem;
|
||||
}
|
||||
|
||||
.sidebar-height {
|
||||
min-height: 70.909rem;
|
||||
}
|
||||
|
||||
.sidebar-bottom-height {
|
||||
min-height: 69.545rem;
|
||||
}
|
||||
|
||||
.sidebar-hide-left {
|
||||
margin-left: -40rem;
|
||||
}
|
||||
|
||||
.sidebar-hide-right {
|
||||
margin-right: -40rem;
|
||||
}
|
||||
|
||||
.sidebar-section-heading {
|
||||
@include mainfont;
|
||||
color: $onSurfaceVariant;
|
||||
}
|
||||
|
||||
.sidebar-section {
|
||||
background-color: mix($surface, $onSurface, 90%);
|
||||
border-radius: 15px;
|
||||
padding: 1.023rem;
|
||||
}
|
||||
|
||||
.sidebar-notif-common {
|
||||
transition: 100ms;
|
||||
padding: 1.023rem;
|
||||
}
|
||||
|
||||
.sidebar-notif {
|
||||
border-radius: 1.432rem;
|
||||
// padding: 1.023rem;
|
||||
margin-bottom: 0.682rem;
|
||||
}
|
||||
|
||||
.sidebar-notif-top {
|
||||
border-top-left-radius: 1.432rem;
|
||||
border-top-right-radius: 1.432rem;
|
||||
// padding: 1.023rem;
|
||||
}
|
||||
|
||||
.sidebar-notif-middle {
|
||||
// padding: 0rem 1.023rem 1.023rem 1.023rem;
|
||||
}
|
||||
|
||||
.sidebar-notif-bottom {
|
||||
border-bottom-left-radius: 1.432rem;
|
||||
border-bottom-right-radius: 1.432rem;
|
||||
// padding: 0rem 1.023rem 1.023rem 1.023rem;
|
||||
margin-bottom: 0.682rem;
|
||||
}
|
||||
|
||||
.sidebar-notif-urgent {
|
||||
background-color: $error;
|
||||
color: $onError;
|
||||
}
|
||||
|
||||
.sidebar-notif-normal {
|
||||
background-color: $secondaryContainer;
|
||||
color: $onSecondaryContainer;
|
||||
}
|
||||
|
||||
.sidebar-notif-normal>box>label {
|
||||
color: mix($onSecondaryContainer, $secondaryContainer, 80%);
|
||||
}
|
||||
|
||||
.sidebar-notif-heading {
|
||||
color: $onSurface;
|
||||
padding: 0.205rem 1.023rem;
|
||||
}
|
||||
|
||||
.sidebar-notif-action {
|
||||
box {
|
||||
border-radius: 50rem;
|
||||
color: $onSurface;
|
||||
padding: 0.205rem 1.023rem;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-notif-action:hover {
|
||||
box {
|
||||
background-color: mix($surfaceVariant, $onSurfaceVariant, 80%);
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-notif-action:active {
|
||||
box {
|
||||
background-color: mix($surfaceVariant, $onSurfaceVariant, 50%);
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-calendar-btn {
|
||||
@include mainfont;
|
||||
font-weight: 500;
|
||||
min-height: 1.977rem;
|
||||
min-width: 1.977rem;
|
||||
margin: 0.068rem;
|
||||
border-radius: 50rem;
|
||||
}
|
||||
|
||||
.sidebar-calendar-txt {
|
||||
@include mainfont;
|
||||
border-radius: 50rem;
|
||||
font-weight: 500;
|
||||
min-height: 1.977rem;
|
||||
min-width: 1.977rem;
|
||||
margin: 0.205rem;
|
||||
}
|
||||
|
||||
.day-1 {
|
||||
background-color: transparent;
|
||||
color: mix($onSurfaceVariant, $surfaceVariant, 38%);
|
||||
}
|
||||
|
||||
.day0 {
|
||||
background-color: transparent;
|
||||
color: $onSurfaceVariant;
|
||||
}
|
||||
|
||||
.day-1:hover {
|
||||
background-color: rgba(75, 75, 75, 0.5);
|
||||
}
|
||||
|
||||
.day0:hover {
|
||||
background-color: rgba(75, 75, 75, 0.5);
|
||||
}
|
||||
|
||||
.day-1:active {
|
||||
background-color: rgba(125, 125, 125, 0.5);
|
||||
}
|
||||
|
||||
.day0:active {
|
||||
background-color: rgba(125, 125, 125, 0.5);
|
||||
}
|
||||
|
||||
.day1 {
|
||||
background-color: $primary;
|
||||
color: $onPrimary;
|
||||
}
|
||||
|
||||
.day1:hover {
|
||||
background-color: mix($primary, $onBackground, 70%);
|
||||
}
|
||||
|
||||
.day1:active {
|
||||
background-color: mix($primary, $onBackground, 50%);
|
||||
}
|
||||
|
||||
.sidebar-todo-item {
|
||||
margin: 0.341rem 0.341rem;
|
||||
color: $onSurfaceVariant;
|
||||
}
|
||||
|
||||
.sidebar-todo-btn {
|
||||
min-width: 1.909rem;
|
||||
min-height: 1.909rem;
|
||||
border-radius: 50rem;
|
||||
}
|
||||
|
||||
.sidebar-todo-btn:hover {
|
||||
color: $onSurface;
|
||||
background-color: $surface;
|
||||
}
|
||||
|
||||
.sidebar-todo-btn:active {
|
||||
color: $onPrimary;
|
||||
background-color: $primary;
|
||||
}
|
||||
|
||||
.sidebar-toggle {
|
||||
box {
|
||||
background-color: $surfaceVariant;
|
||||
color: $onSurfaceVariant;
|
||||
border-radius: 1.432rem;
|
||||
padding: 1.159rem;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-toggle:hover {
|
||||
box {
|
||||
background-color: tint($surfaceVariant, 10%);
|
||||
color: tint($onSurfaceVariant, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-toggle:active {
|
||||
sidebar {
|
||||
background-color: tint($surfaceVariant, 15%);
|
||||
color: tint($onSurfaceVariant, 15%);
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-toggle-active {
|
||||
box {
|
||||
background-color: $primary;
|
||||
color: $onPrimary;
|
||||
border-radius: 1.432rem;
|
||||
padding: 1.159rem;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-toggle-active:hover {
|
||||
box {
|
||||
background-color: tint($primary, 8%);
|
||||
color: tint($onPrimary, 8%);
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-toggle-active:active {
|
||||
box {
|
||||
background-color: tint($primary, 20%);
|
||||
color: tint($onPrimary, 20%);
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-action {
|
||||
background-color: $background;
|
||||
color: $onBackground;
|
||||
border-radius: 1.432rem;
|
||||
padding: 0.341rem;
|
||||
}
|
||||
|
||||
.sidebar-action:hover {
|
||||
background-color: tint($background, 10%);
|
||||
color: tint($onBackground, 10%);
|
||||
}
|
||||
|
||||
.sidebar-action:active {
|
||||
background-color: tint($background, 15%);
|
||||
color: tint($onBackground, 15%);
|
||||
}
|
||||
|
||||
$bgdetail: $onSecondary;
|
||||
$bgdetail2: $onTertiary;
|
||||
|
||||
.sidebar-music-thumbnail {
|
||||
min-height: 13.636rem;
|
||||
border-radius: 1.432rem;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.sidebar-music-thumbnail-fallback {
|
||||
min-height: 13.636rem;
|
||||
border-radius: 1.432rem;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
background-color: shade($onSecondary, 50%);
|
||||
background-image:
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
|
||||
radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 0) 24%, $bgdetail 24%, $bgdetail 24%, $bgdetail 27%, $bgdetail 27%, rgba(0, 0, 0, 0) 27%, rgba(0, 0, 0, 0) 27%),
|
||||
radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 0) 24%, $bgdetail 26%, $bgdetail 26%, $bgdetail 27%, $bgdetail 27%, rgba(0, 0, 0, 0) 27%, rgba(0, 0, 0, 0) 27%),
|
||||
radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 0) 24%, $bgdetail 25%, $bgdetail 25%, $bgdetail 27%, $bgdetail 27%, rgba(0, 0, 0, 0) 27%, rgba(0, 0, 0, 0) 27%),
|
||||
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, $bgdetail 35%, $bgdetail 44%),
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 38%, $bgdetail 38%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 38%, $bgdetail 38%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(-135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 38%, $bgdetail 38%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 38%, $bgdetail 38%, $bgdetail 44%, rgba(0, 0, 0, 0) 44%),
|
||||
|
||||
linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
|
||||
;
|
||||
background-size:
|
||||
0.9rem 2.045rem, 0.9rem 2.045rem, 0.9rem 2.045rem, 0.9rem 2.045rem,
|
||||
0.9rem 2.045rem, 0.9rem 2.045rem, 0.9rem 2.045rem, 0.9rem 2.045rem,
|
||||
0.9rem 2.045rem, 0.9rem 2.045rem, 0.9rem 2.045rem,
|
||||
|
||||
0.9rem 2.045rem, 0.9rem 2.045rem, 0.9rem 2.045rem, 0.9rem 2.045rem,
|
||||
0.9rem 2.045rem, 0.9rem 2.045rem, 0.9rem 2.045rem, 0.9rem 2.045rem,
|
||||
0.9rem 2.045rem, 0.9rem 2.045rem, 0.9rem 2.045rem, 0.9rem 2.045rem,
|
||||
|
||||
4.091rem 4.091rem, 8.182rem 8.182rem, 6.136rem 6.136rem,
|
||||
|
||||
1.364rem 2.727rem, 1.364rem 2.727rem, 2.727rem 5.455rem, 2.727rem 5.455rem,
|
||||
2.727rem 5.455rem, 2.727rem 5.455rem,
|
||||
|
||||
100% 100%,
|
||||
;
|
||||
background-position:
|
||||
0rem 6.818rem, 0.9rem 6.818rem, 2.045rem 6.818rem, 3.068rem 6.818rem,
|
||||
4.091rem 6.818rem, 5.114rem 6.818rem, 6.136rem 6.818rem, 7.159rem 6.818rem,
|
||||
8.182rem 6.818rem, 9.205rem 6.818rem, 10.227rem 6.818rem,
|
||||
|
||||
37.5rem 2.727rem, 36.477rem 2.727rem, 35.455rem 2.727rem, 34.432rem 2.727rem,
|
||||
33.409rem 2.727rem, 32.386rem 2.727rem, 31.364rem 2.727rem, 30.341rem 2.727rem,
|
||||
29.318rem 2.727rem, 28.295rem 2.727rem, 27.273rem 2.727rem, 26.25rem 2.727rem,
|
||||
|
||||
20.455rem 4.091rem, 11.25rem 9.205rem, 12.273rem 0.341rem,
|
||||
|
||||
24.545rem 12.955rem, 25.909rem 12.955rem, 23.182rem 11.591rem, 25.909rem 11.591rem,
|
||||
2.727rem -0.682rem, 5.455rem -0.682rem,
|
||||
|
||||
top,
|
||||
;
|
||||
}
|
||||
|
||||
.sidebar-music-vignette {
|
||||
min-height: 13.636rem;
|
||||
border-radius: 1.432rem;
|
||||
background-color: mix($surface, rgba(0, 0, 0, 0), 50%);
|
||||
}
|
||||
|
||||
.sidebar-music-toprow {
|
||||
padding: 0rem 0.5115rem;
|
||||
}
|
||||
|
||||
.sidebar-music-source {
|
||||
@include icon-nerd;
|
||||
margin: 0rem 1.3rem;
|
||||
color: $onPrimaryContainer;
|
||||
}
|
||||
|
||||
.sidebar-music-output {
|
||||
@include mainfont;
|
||||
border-radius: 1.432rem;
|
||||
margin: 1.023rem 0.5115rem;
|
||||
padding: 0.341rem 1.023rem;
|
||||
color: $onSurfaceVariant;
|
||||
background-color: $surfaceVariant;
|
||||
}
|
||||
|
||||
.sidebar-music-output:hover {
|
||||
background-color: mix($surfaceVariant, $onBackground, 70%);
|
||||
color: mix($onSurfaceVariant, $onBackground, 70%);
|
||||
}
|
||||
|
||||
.sidebar-music-output:active {
|
||||
background-color: mix($surfaceVariant, $onBackground, 50%);
|
||||
color: mix($onSurfaceVariant, $onBackground, 50%);
|
||||
}
|
||||
|
||||
.sidebar-music-title-scroll {
|
||||
margin: 0.9rem;
|
||||
}
|
||||
|
||||
.sidebar-music-title {
|
||||
@include mainfont;
|
||||
color: $onPrimaryContainer;
|
||||
}
|
||||
|
||||
.sidebar-music-artist {
|
||||
@include mainfont;
|
||||
color: $onPrimaryContainer;
|
||||
}
|
||||
|
||||
.sidebar-music-playbtn {
|
||||
box {
|
||||
min-width: 4.091rem;
|
||||
min-height: 4.091rem;
|
||||
margin: 1.023rem;
|
||||
@include icon-material;
|
||||
border-radius: 1.3rem;
|
||||
color: $inverseOnSurface;
|
||||
background-color: $primary;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-music-trackbtn {
|
||||
box {
|
||||
@include icon-material;
|
||||
margin: 1.023rem;
|
||||
border-radius: 1.432rem;
|
||||
min-width: 2.386rem;
|
||||
min-height: 2.386rem;
|
||||
color: $onPrimaryContainer;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-music-trackbtn:hover {
|
||||
box {
|
||||
background-color: $overlay1;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-music-trackbtn:active {
|
||||
box {
|
||||
background-color: $overlay2;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-music-progress {
|
||||
min-height: 0.19rem;
|
||||
min-width: 4.091rem;
|
||||
border-radius: 50rem;
|
||||
background-color: $surface;
|
||||
}
|
||||
|
||||
.sidebar-music-progress-btn {
|
||||
margin-top: -0.3rem;
|
||||
color: $onPrimaryContainer;
|
||||
}
|
||||
|
||||
.sidebar-music-slider {
|
||||
border-radius: 50rem;
|
||||
margin: 1.3rem;
|
||||
transition: 0ms cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
|
||||
trough {
|
||||
min-height: 0.19rem;
|
||||
min-width: 4.091rem;
|
||||
border-radius: 50rem;
|
||||
background-color: $surface;
|
||||
}
|
||||
|
||||
highlight {
|
||||
min-width: 0.19rem;
|
||||
border-radius: 50rem;
|
||||
background-color: shade($onBackground, 20%);
|
||||
transition: 0ms cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
}
|
||||
|
||||
slider {
|
||||
min-width: 0.341rem;
|
||||
margin: -0.5rem;
|
||||
border-radius: 50rem;
|
||||
background-color: shade($onBackground, 20%);
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-divider {
|
||||
background-color: $onSurfaceVariant;
|
||||
}
|
||||
|
||||
.sidebar-waifu-scrollbg {
|
||||
min-height: 37.5rem;
|
||||
}
|
||||
|
||||
.sidebar-waifu-tag {
|
||||
@include mainfont;
|
||||
border-radius: 0.682rem;
|
||||
padding: 0.273rem 0.477rem;
|
||||
margin: 0rem 0.136rem;
|
||||
min-height: 1.364rem;
|
||||
background-color: $secondaryContainer;
|
||||
}
|
||||
|
||||
.sidebar-waifu-tag:hover {
|
||||
background-color: mix($secondaryContainer, $onSurface, 90%);
|
||||
}
|
||||
|
||||
.sidebar-waifu-tag:active {
|
||||
background-color: mix($secondaryContainer, $onSurface, 80%);
|
||||
}
|
||||
|
||||
.sidebar-waifu-pic {
|
||||
transition: 200ms cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
background-color: transparent;
|
||||
border-radius: 1.432rem;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% auto;
|
||||
}
|
||||
|
||||
.sidebar-waifu-pic-bg {
|
||||
background-color: white;
|
||||
border-radius: 1.5rem;
|
||||
}
|
||||
|
||||
.sidebar-waifu-pic-cover {
|
||||
background-color: $background;
|
||||
border-radius: 1.364rem;
|
||||
border: 1px solid $onBackground;
|
||||
}
|
||||
|
||||
.sidebar-waifu-actionbtn {
|
||||
box {
|
||||
border-radius: 50rem;
|
||||
background-color: $primary;
|
||||
color: $onPrimary;
|
||||
padding: 0.341rem 1.023rem;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-waifu-actionbtn:hover {
|
||||
box {
|
||||
background-color: mix($primary, $onSurface, 80%);
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-waifu-actionbtn:active {
|
||||
box {
|
||||
background-color: mix($primary, $onSurface, 50%);
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-waifu-status {
|
||||
background-color: $onBackground;
|
||||
color: $background;
|
||||
border-bottom-left-radius: 1.295rem;
|
||||
border-bottom-right-radius: 1.295rem;
|
||||
border: 1px solid $background;
|
||||
padding: 0.341rem;
|
||||
margin-top: 1.023rem;
|
||||
}
|
||||
|
||||
.sidebar-quote {
|
||||
background-color: $surfaceVariant;
|
||||
color: $onSurfaceVariant;
|
||||
border-radius: 1.432rem;
|
||||
padding: 1.023rem;
|
||||
}
|
||||
|
||||
.sidebar-prog-resource {
|
||||
min-height: 0.955rem;
|
||||
min-width: 5rem;
|
||||
border-radius: 10rem;
|
||||
|
||||
trough {
|
||||
min-height: 0.954rem;
|
||||
min-width: 0.068rem;
|
||||
border-radius: 10rem;
|
||||
background-color: $surfaceVariant;
|
||||
}
|
||||
|
||||
progress {
|
||||
min-height: 0.680rem;
|
||||
min-width: 0.680rem;
|
||||
margin: 0rem 0.137rem;
|
||||
border-radius: 10rem;
|
||||
background-color: $onSurfaceVariant;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-resource-value {
|
||||
padding: 0rem 0.545rem;
|
||||
min-height: 0.954rem;
|
||||
border-radius: 10rem;
|
||||
color: $onSurfaceVariant;
|
||||
background-color: $surfaceVariant;
|
||||
}
|
||||
|
||||
.sidebar-resource-value>label:first-child {
|
||||
margin-right: 0.341rem;
|
||||
}
|
||||
|
||||
.sidebar-resource-value>progressbar:last-child {
|
||||
margin-left: 0.341rem;
|
||||
}
|
||||
|
||||
.sidebar-resource-value>box:last-child {
|
||||
margin-left: 0.341rem;
|
||||
}
|
||||
|
||||
.sidebar-mixer-header {
|
||||
// padding: 1.023rem;
|
||||
}
|
||||
|
||||
.sidebar-mixer-header-btn {
|
||||
box {
|
||||
border-radius: 1.432rem;
|
||||
min-width: 2.386rem;
|
||||
min-height: 2.386rem;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-mixer-header-btn:hover {
|
||||
box {
|
||||
background-color: mix($surfaceVariant, $onSurface, 80%);
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-mixer-app {
|
||||
background-color: $secondaryContainer;
|
||||
border-radius: 1.432rem;
|
||||
padding: 1.023rem;
|
||||
margin-bottom: 0rem;
|
||||
padding-bottom: 0.341rem;
|
||||
}
|
||||
|
||||
.sidebar-mixer-app-icon {
|
||||
background-color: $secondaryContainer;
|
||||
border-radius: 0.886rem;
|
||||
min-height: 3.409rem;
|
||||
min-width: 3.409rem;
|
||||
}
|
||||
|
||||
.sidebar-mixer-app-serial {
|
||||
background-color: $secondaryContainer;
|
||||
border-radius: 0.886rem;
|
||||
min-height: 3.409rem;
|
||||
margin-bottom: 1.023rem;
|
||||
}
|
||||
|
||||
.sidebar-mixer-app-num {
|
||||
margin: 0rem 0.682rem;
|
||||
color: $onSecondaryContainer;
|
||||
}
|
||||
|
||||
.sidebar-mixer-app-incircle {
|
||||
font-size: 11pt;
|
||||
margin: 0px 5px;
|
||||
color: $onSecondaryContainer;
|
||||
}
|
||||
|
||||
.sidebar-mixer-app-circle {
|
||||
color: $onSecondaryContainer;
|
||||
background-color: $secondaryContainer;
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
.visualizer-bg {
|
||||
background-color: $background;
|
||||
}
|
||||
|
||||
.visualizer-height {
|
||||
min-height: 6.818rem;
|
||||
}
|
||||
|
||||
.visualizer-hide {
|
||||
margin-bottom: -6.9rem;
|
||||
}
|
||||
|
||||
.visualizer-columns {
|
||||
padding: 0rem 1.5rem;
|
||||
}
|
||||
|
||||
.visualizer-cavacol {
|
||||
background-color: $primary;
|
||||
border-top-left-radius: 10rem;
|
||||
border-top-right-radius: 10rem;
|
||||
margin: 0rem 0.5rem;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
//Auto generated color theme for image at: https://i.ytimg.com/vi/oyuWZ34Aq3o/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBttb3MeiJoN9dSbvemylicQFwceQ
|
||||
$colorbarbg: #010106;
|
||||
$colorbg: rgba(1,1,6,0.75);
|
||||
$colortext: #e4dfea;
|
||||
$color0: #380C86;
|
||||
$color1: #502198;
|
||||
$color2: #6B5298;
|
||||
$color3: #753AC4;
|
||||
$color4: #9167C4;
|
||||
$color5: #A99CBF;
|
||||
$color6: #e4dfea;
|
||||
$color7: #753AC4;
|
||||
@@ -0,0 +1,12 @@
|
||||
//Auto generated color theme for image at: https://i.ytimg.com/vi/g4ssHIwZDGk/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLB26FOCk7yVlaawtjcyH1xE9-ZkxA
|
||||
$colorbarbg: #161718;
|
||||
$colorbg: rgba(22,23,24,0.75);
|
||||
$colortext: #dad9d2;
|
||||
$color0: #996B8D;
|
||||
$color1: #2C8CB0;
|
||||
$color2: #69919F;
|
||||
$color3: #9AA19B;
|
||||
$color4: #B0B5AD;
|
||||
$color5: #BFB9B0;
|
||||
$color6: #dad9d2;
|
||||
$color7: #9AA19B;
|
||||
@@ -0,0 +1,12 @@
|
||||
//Auto generated color theme for image at: [Local wallpaper]
|
||||
$colorbarbg: #010101;
|
||||
$colorbg: rgba(1,1,1,0.75);
|
||||
$colortext: #d8dac7;
|
||||
$color0: #5E5A52;
|
||||
$color1: #8D7253;
|
||||
$color2: #6B9055;
|
||||
$color3: #9B9A61;
|
||||
$color4: #CECD4E;
|
||||
$color5: #6E8F99;
|
||||
$color6: #d8dac7;
|
||||
$color7: #9B9A61;
|
||||
@@ -0,0 +1,12 @@
|
||||
//Auto generated color theme for image at: [Local wallpaper]
|
||||
$colorbarbg: #1c1939;
|
||||
$colorbg: rgba(28,25,57,0.75);
|
||||
$colortext: #e7e9ec;
|
||||
$color0: #BA62BC;
|
||||
$color1: #7092DB;
|
||||
$color2: #E19FA1;
|
||||
$color3: #C2ADC5;
|
||||
$color4: #A9CEEB;
|
||||
$color5: #AAE8FC;
|
||||
$color6: #e7e9ec;
|
||||
$color7: #C2ADC5;
|
||||
@@ -0,0 +1,12 @@
|
||||
//Auto generated color theme for image at: [Local wallpaper]
|
||||
$colorbarbg: #070318;
|
||||
$colorbg: rgba(7,3,24,0.75);
|
||||
$colortext: #e5e1f2;
|
||||
$color0: #B355CF;
|
||||
$color1: #956CE5;
|
||||
$color2: #6C9AEA;
|
||||
$color3: #A39AEF;
|
||||
$color4: #D5A7EF;
|
||||
$color5: #AAD0F1;
|
||||
$color6: #e5e1f2;
|
||||
$color7: #A39AEF;
|
||||
@@ -0,0 +1,12 @@
|
||||
//Auto generated color theme for image at: [Local wallpaper]
|
||||
$colorbarbg: #11130f;
|
||||
$colorbg: rgba(17,19,15,0.75);
|
||||
$colortext: #acb5bf;
|
||||
$color0: #6B6454;
|
||||
$color1: #98472F;
|
||||
$color2: #8C6E5D;
|
||||
$color3: #8B8568;
|
||||
$color4: #AC8B73;
|
||||
$color5: #CA926E;
|
||||
$color6: #acb5bf;
|
||||
$color7: #8B8568;
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"wallpaper": "/home/end/.config/eww/eww_covers/cover_art",
|
||||
"alpha": "100",
|
||||
|
||||
"special": {
|
||||
"background": "#010106",
|
||||
"foreground": "#e4dfea",
|
||||
"cursor": "#e4dfea"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#010106",
|
||||
"color1": "#380C86",
|
||||
"color2": "#502198",
|
||||
"color3": "#6B5298",
|
||||
"color4": "#753AC4",
|
||||
"color5": "#9167C4",
|
||||
"color6": "#A99CBF",
|
||||
"color7": "#e4dfea",
|
||||
"color8": "#9f9ca3",
|
||||
"color9": "#380C86",
|
||||
"color10": "#502198",
|
||||
"color11": "#6B5298",
|
||||
"color12": "#753AC4",
|
||||
"color13": "#9167C4",
|
||||
"color14": "#A99CBF",
|
||||
"color15": "#e4dfea"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"wallpaper": "/home/end/.config/eww/eww_covers/cover_art",
|
||||
"alpha": "100",
|
||||
|
||||
"special": {
|
||||
"background": "#161718",
|
||||
"foreground": "#dad9d2",
|
||||
"cursor": "#dad9d2"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#161718",
|
||||
"color1": "#996B8D",
|
||||
"color2": "#2C8CB0",
|
||||
"color3": "#69919F",
|
||||
"color4": "#9AA19B",
|
||||
"color5": "#B0B5AD",
|
||||
"color6": "#BFB9B0",
|
||||
"color7": "#dad9d2",
|
||||
"color8": "#989793",
|
||||
"color9": "#996B8D",
|
||||
"color10": "#2C8CB0",
|
||||
"color11": "#69919F",
|
||||
"color12": "#9AA19B",
|
||||
"color13": "#B0B5AD",
|
||||
"color14": "#BFB9B0",
|
||||
"color15": "#dad9d2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"wallpaper": "/home/end/.config/eww/images/wallpaper",
|
||||
"alpha": "100",
|
||||
|
||||
"special": {
|
||||
"background": "#010101",
|
||||
"foreground": "#d8dac7",
|
||||
"cursor": "#d8dac7"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#010101",
|
||||
"color1": "#5E5A52",
|
||||
"color2": "#8D7253",
|
||||
"color3": "#6B9055",
|
||||
"color4": "#9B9A61",
|
||||
"color5": "#CECD4E",
|
||||
"color6": "#6E8F99",
|
||||
"color7": "#d8dac7",
|
||||
"color8": "#97988b",
|
||||
"color9": "#5E5A52",
|
||||
"color10": "#8D7253",
|
||||
"color11": "#6B9055",
|
||||
"color12": "#9B9A61",
|
||||
"color13": "#CECD4E",
|
||||
"color14": "#6E8F99",
|
||||
"color15": "#d8dac7"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"wallpaper": "/home/end/.config/eww/images/wallpaper",
|
||||
"alpha": "100",
|
||||
|
||||
"special": {
|
||||
"background": "#1c1939",
|
||||
"foreground": "#e7e9ec",
|
||||
"cursor": "#e7e9ec"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#1c1939",
|
||||
"color1": "#BA62BC",
|
||||
"color2": "#7092DB",
|
||||
"color3": "#E19FA1",
|
||||
"color4": "#C2ADC5",
|
||||
"color5": "#A9CEEB",
|
||||
"color6": "#AAE8FC",
|
||||
"color7": "#e7e9ec",
|
||||
"color8": "#a1a3a5",
|
||||
"color9": "#BA62BC",
|
||||
"color10": "#7092DB",
|
||||
"color11": "#E19FA1",
|
||||
"color12": "#C2ADC5",
|
||||
"color13": "#A9CEEB",
|
||||
"color14": "#AAE8FC",
|
||||
"color15": "#e7e9ec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"wallpaper": "/home/end/.config/eww/images/wallpaper",
|
||||
"alpha": "100",
|
||||
|
||||
"special": {
|
||||
"background": "#070318",
|
||||
"foreground": "#e5e1f2",
|
||||
"cursor": "#e5e1f2"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#070318",
|
||||
"color1": "#B355CF",
|
||||
"color2": "#956CE5",
|
||||
"color3": "#6C9AEA",
|
||||
"color4": "#A39AEF",
|
||||
"color5": "#D5A7EF",
|
||||
"color6": "#AAD0F1",
|
||||
"color7": "#e5e1f2",
|
||||
"color8": "#a09da9",
|
||||
"color9": "#B355CF",
|
||||
"color10": "#956CE5",
|
||||
"color11": "#6C9AEA",
|
||||
"color12": "#A39AEF",
|
||||
"color13": "#D5A7EF",
|
||||
"color14": "#AAD0F1",
|
||||
"color15": "#e5e1f2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"wallpaper": "/home/end/.config/eww/images/wallpaper",
|
||||
"alpha": "100",
|
||||
|
||||
"special": {
|
||||
"background": "#11130f",
|
||||
"foreground": "#acb5bf",
|
||||
"cursor": "#acb5bf"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#11130f",
|
||||
"color1": "#6B6454",
|
||||
"color2": "#98472F",
|
||||
"color3": "#8C6E5D",
|
||||
"color4": "#8B8568",
|
||||
"color5": "#AC8B73",
|
||||
"color6": "#CA926E",
|
||||
"color7": "#acb5bf",
|
||||
"color8": "#787e85",
|
||||
"color9": "#6B6454",
|
||||
"color10": "#98472F",
|
||||
"color11": "#8C6E5D",
|
||||
"color12": "#8B8568",
|
||||
"color13": "#AC8B73",
|
||||
"color14": "#CA926E",
|
||||
"color15": "#acb5bf"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
$primary: #d8b9ff;
|
||||
$onPrimary: #430089;
|
||||
$primaryContainer: #5e1cad;
|
||||
$onPrimaryContainer: #eedbff;
|
||||
$secondary: #cfc2db;
|
||||
$onSecondary: #352d40;
|
||||
$secondaryContainer: #4c4357;
|
||||
$onSecondaryContainer: #ebdef7;
|
||||
$tertiary: #f2b7c2;
|
||||
$onTertiary: #4b252e;
|
||||
$tertiaryContainer: #653b44;
|
||||
$onTertiaryContainer: #ffd9e0;
|
||||
$error: #ffb4a9;
|
||||
$onError: #680003;
|
||||
$errorContainer: #930006;
|
||||
$onErrorContainer: #ffb4a9;
|
||||
$colorbarbg: #1d1b1e;
|
||||
$background: #1d1b1e;
|
||||
$onBackground: #e7e1e6;
|
||||
$surface: #1d1b1e;
|
||||
$onSurface: #e7e1e6;
|
||||
$surfaceVariant: #4a454e;
|
||||
$onSurfaceVariant: #cbc4ce;
|
||||
$outline: #958e99;
|
||||
$shadow: #000000;
|
||||
$inverseSurface: #e7e1e6;
|
||||
$inverseOnSurface: #323033;
|
||||
$inversePrimary: #773cc6;
|
||||
@@ -0,0 +1,28 @@
|
||||
$primary: #6fdaa8;
|
||||
$onPrimary: #003823;
|
||||
$primaryContainer: #005235;
|
||||
$onPrimaryContainer: #8cf7c3;
|
||||
$secondary: #b3ccbc;
|
||||
$onSecondary: #20352a;
|
||||
$secondaryContainer: #364b3f;
|
||||
$onSecondaryContainer: #d0e8d8;
|
||||
$tertiary: #a5cdde;
|
||||
$onTertiary: #063543;
|
||||
$tertiaryContainer: #244c5a;
|
||||
$onTertiaryContainer: #c0e9fb;
|
||||
$error: #ffb4a9;
|
||||
$onError: #680003;
|
||||
$errorContainer: #930006;
|
||||
$onErrorContainer: #ffb4a9;
|
||||
$colorbarbg: #191c1a;
|
||||
$background: #191c1a;
|
||||
$onBackground: #e1e3df;
|
||||
$surface: #191c1a;
|
||||
$onSurface: #e1e3df;
|
||||
$surfaceVariant: #404943;
|
||||
$onSurfaceVariant: #bfc9c1;
|
||||
$outline: #8a938c;
|
||||
$shadow: #000000;
|
||||
$inverseSurface: #e1e3df;
|
||||
$inverseOnSurface: #2d312e;
|
||||
$inversePrimary: #006c47;
|
||||
@@ -0,0 +1,28 @@
|
||||
$primary: #cdcc57;
|
||||
$onPrimary: #333200;
|
||||
$primaryContainer: #4a4900;
|
||||
$onPrimaryContainer: #e9e86f;
|
||||
$secondary: #cac8a4;
|
||||
$onSecondary: #323218;
|
||||
$secondaryContainer: #49482d;
|
||||
$onSecondaryContainer: #e7e4bf;
|
||||
$tertiary: #a5d0bd;
|
||||
$onTertiary: #0a3729;
|
||||
$tertiaryContainer: #254e3f;
|
||||
$onTertiaryContainer: #c0ecd8;
|
||||
$error: #ffb4a9;
|
||||
$onError: #680003;
|
||||
$errorContainer: #930006;
|
||||
$onErrorContainer: #ffb4a9;
|
||||
$colorbarbg: #1c1c16;
|
||||
$background: #1c1c16;
|
||||
$onBackground: #e6e2da;
|
||||
$surface: #1c1c16;
|
||||
$onSurface: #e6e2da;
|
||||
$surfaceVariant: #48473a;
|
||||
$onSurfaceVariant: #cac7b6;
|
||||
$outline: #939182;
|
||||
$shadow: #000000;
|
||||
$inverseSurface: #e6e2da;
|
||||
$inverseOnSurface: #31302b;
|
||||
$inversePrimary: #626200;
|
||||
@@ -0,0 +1,28 @@
|
||||
$primary: #eeb0ff;
|
||||
$onPrimary: #4c1662;
|
||||
$primaryContainer: #65307a;
|
||||
$onPrimaryContainer: #fad7ff;
|
||||
$secondary: #d5c0d7;
|
||||
$onSecondary: #392c3d;
|
||||
$secondaryContainer: #514255;
|
||||
$onSecondaryContainer: #f2dcf4;
|
||||
$tertiary: #f5b7b4;
|
||||
$onTertiary: #4d2524;
|
||||
$tertiaryContainer: #663b39;
|
||||
$onTertiaryContainer: #ffdad7;
|
||||
$error: #ffb4a9;
|
||||
$onError: #680003;
|
||||
$errorContainer: #930006;
|
||||
$onErrorContainer: #ffb4a9;
|
||||
$colorbarbg: #1e1a1e;
|
||||
$background: #1e1a1e;
|
||||
$onBackground: #e8e0e5;
|
||||
$surface: #1e1a1e;
|
||||
$onSurface: #e8e0e5;
|
||||
$surfaceVariant: #4c444d;
|
||||
$onSurfaceVariant: #cec3cd;
|
||||
$outline: #988e98;
|
||||
$shadow: #000000;
|
||||
$inverseSurface: #e8e0e5;
|
||||
$inverseOnSurface: #332f33;
|
||||
$inversePrimary: #7e4893;
|
||||
@@ -0,0 +1,28 @@
|
||||
$primary: #c8bfff;
|
||||
$onPrimary: #2d2176;
|
||||
$primaryContainer: #443a8e;
|
||||
$onPrimaryContainer: #e5deff;
|
||||
$secondary: #c8c3dc;
|
||||
$onSecondary: #302e41;
|
||||
$secondaryContainer: #474459;
|
||||
$onSecondaryContainer: #e5dff9;
|
||||
$tertiary: #ecb9cf;
|
||||
$onTertiary: #482537;
|
||||
$tertiaryContainer: #613b4d;
|
||||
$onTertiaryContainer: #ffd8e9;
|
||||
$error: #ffb4a9;
|
||||
$onError: #680003;
|
||||
$errorContainer: #930006;
|
||||
$onErrorContainer: #ffb4a9;
|
||||
$colorbarbg: #1c1b1f;
|
||||
$background: #1c1b1f;
|
||||
$onBackground: #e5e1e6;
|
||||
$surface: #1c1b1f;
|
||||
$onSurface: #e5e1e6;
|
||||
$surfaceVariant: #47464f;
|
||||
$onSurfaceVariant: #c9c5d0;
|
||||
$outline: #928f9a;
|
||||
$shadow: #000000;
|
||||
$inverseSurface: #e5e1e6;
|
||||
$inverseOnSurface: #313033;
|
||||
$inversePrimary: #5c53a7;
|
||||
@@ -0,0 +1,28 @@
|
||||
$primary: #dac84e;
|
||||
$onPrimary: #383000;
|
||||
$primaryContainer: #514700;
|
||||
$onPrimaryContainer: #f7e467;
|
||||
$secondary: #cfc7a2;
|
||||
$onSecondary: #353117;
|
||||
$secondaryContainer: #4c472b;
|
||||
$onSecondaryContainer: #ece3bd;
|
||||
$tertiary: #a7d0b6;
|
||||
$onTertiary: #123725;
|
||||
$tertiaryContainer: #294e3a;
|
||||
$onTertiaryContainer: #c2ecd1;
|
||||
$error: #ffb4a9;
|
||||
$onError: #680003;
|
||||
$errorContainer: #930006;
|
||||
$onErrorContainer: #ffb4a9;
|
||||
$colorbarbg: #1d1c16;
|
||||
$background: #1d1c16;
|
||||
$onBackground: #e7e2d9;
|
||||
$surface: #1d1c16;
|
||||
$onSurface: #e7e2d9;
|
||||
$surfaceVariant: #4a473a;
|
||||
$onSurfaceVariant: #ccc6b5;
|
||||
$outline: #969181;
|
||||
$shadow: #000000;
|
||||
$inverseSurface: #e7e2d9;
|
||||
$inverseOnSurface: #32302a;
|
||||
$inversePrimary: #6b5e00;
|
||||
@@ -0,0 +1,16 @@
|
||||
* {
|
||||
all: unset;
|
||||
}
|
||||
// Include colors
|
||||
@import 'css/material';
|
||||
// Include lib
|
||||
@import 'css/lib';
|
||||
|
||||
// Windows
|
||||
@import 'css/bar';
|
||||
@import 'css/cheatsheet';
|
||||
@import 'css/notificationspopup';
|
||||
@import 'css/powermenu';
|
||||
@import 'css/powerview';
|
||||
@import 'css/sidebar';
|
||||
@import 'css/visualizer';
|
||||
@@ -0,0 +1,99 @@
|
||||
; Variables
|
||||
(include "./variables.yuck")
|
||||
; Library for commonly used stuff
|
||||
(include "./lib.yuck")
|
||||
; Bar modules
|
||||
(include "./modules/dynamiccenter.yuck")
|
||||
(include "./modules/dynamicright.yuck")
|
||||
(include "./modules/leftspace.yuck")
|
||||
(include "./modules/music.yuck")
|
||||
(include "./modules/notifications.yuck")
|
||||
(include "./modules/osd.yuck")
|
||||
(include "./modules/status.yuck")
|
||||
(include "./modules/system.yuck")
|
||||
(include "./modules/taskbar.yuck")
|
||||
(include "./modules/workspaces.yuck")
|
||||
; Other widgets
|
||||
(include "./windows/bgdecor.yuck")
|
||||
(include "./windows/cheatsheet.yuck")
|
||||
(include "./windows/notificationspopup.yuck")
|
||||
(include "./windows/powermenu.yuck")
|
||||
(include "./windows/powerview.yuck")
|
||||
(include "./windows/sideleft.yuck")
|
||||
(include "./windows/sideright.yuck")
|
||||
(include "./windows/visualizer.yuck")
|
||||
|
||||
(defwidget bar_widget []
|
||||
(centerbox
|
||||
:class "bar-bg flyin-top bar-bg-top-decor"
|
||||
:style "
|
||||
${ANIM_ENTER[0]}
|
||||
"
|
||||
(box
|
||||
:hexpand true
|
||||
(leftspace_widget)
|
||||
)
|
||||
(centerbox
|
||||
(box
|
||||
:orientation "h" :space-evenly false
|
||||
(music_widget)
|
||||
)
|
||||
(box
|
||||
:orientation "h"
|
||||
(dynamiccenter_widget)
|
||||
)
|
||||
(box
|
||||
:orientation "h" :space-evenly false
|
||||
:halign "end"
|
||||
(system_widget)
|
||||
)
|
||||
)
|
||||
(box
|
||||
:hexpand true
|
||||
(dynamicright_widget)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(defwidget bar_bottom_widget []
|
||||
(centerbox
|
||||
:class "bar-bg flyin-bottom bar-bottom-height"
|
||||
(box
|
||||
:hexpand true
|
||||
(music_bottom_widget)
|
||||
)
|
||||
(box
|
||||
(taskbar_widget)
|
||||
)
|
||||
(box
|
||||
:hexpand true
|
||||
:orientation "h"
|
||||
:space-evenly false
|
||||
(box :hexpand true)
|
||||
(system_bottom_widget)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(defwindow bar
|
||||
:monitor 0
|
||||
:stacking "fg"
|
||||
:namespace "eww"
|
||||
:geometry (geometry
|
||||
:width "100%"
|
||||
:anchor "top center"
|
||||
)
|
||||
(bar_widget)
|
||||
)
|
||||
|
||||
(defwindow barbottom
|
||||
:monitor 0
|
||||
:stacking "fg"
|
||||
:namespace "eww"
|
||||
:geometry (geometry
|
||||
:width "100%"
|
||||
; :height "60px"
|
||||
:anchor "bottom center"
|
||||
)
|
||||
(bar_bottom_widget)
|
||||
)
|
||||
|
After Width: | Height: | Size: 348 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="496"
|
||||
height="496"
|
||||
viewBox="0 0 131.23333 131.23334"
|
||||
version="1.1"
|
||||
id="svg4110"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs4107" />
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
id="g4141"
|
||||
transform="matrix(2.0888265,0,0,2.0888265,2.234266,3.7573409)">
|
||||
<g
|
||||
id="g45"
|
||||
transform="matrix(1.0005035,0,0,1.0005035,-0.1541809,0.11907192)">
|
||||
<path
|
||||
id="path22-6"
|
||||
d="m 56.11382,33.731278 c 2.6,-0.2 4.7,1.5 4.9,4.1 0.2,2.7 -1.7,4.9 -4.3,5.1 -2.5,0.2 -4.7,-1.7 -4.9,-4.2 -0.2,-2.7 1.6,-4.7 4.3,-5 z"
|
||||
class="st1"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<path
|
||||
id="path24-7"
|
||||
d="m 24.51382,55.031278 c 0,-2.6 2,-4.6 4.4,-4.6 2.4,0 4.7,2.2 4.7,4.7 0,2.4 -2,4.5 -4.3,4.6 -2.9,0 -4.8,-1.8 -4.8,-4.7 z"
|
||||
class="st2"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<path
|
||||
id="path26-5"
|
||||
d="m 31.61382,25.831278 c -0.4,0.2 -0.6,-0.1 -0.7,-0.4 -3.7,-6.9 -2.6,-15.6000004 3.9,-20.8000004 1.7,-1.4 4.9,-1.7 6.3,-0.3 0.6,0.5 0.7,1.1 0.8,1.8 0.2,1.5 0.5,3 1.5,4.2000004 1.1,1.3 2.5,1.8 4.1,1.7 1.4,0 2.8,-0.2 3.7,1.4 0.5,0.9 0.3,4.4 -0.5,5.1 -0.4,0.3 -0.7,0.1 -1,0 -2.3,-0.9 -4.7,-0.9 -7.1,-0.5 -0.8,0.1 -1.2,-0.1 -1.2,-1 -0.1,-1.5 -0.4,-2.9 -1.2,-4.2 -1.5,-2.7 -4.3,-2.8 -6.1,-0.3 -1.5,2 -1.9,4.4 -2.3,6.8 -0.4,2.1 -0.3,4.3 -0.2,6.5 0,0 -0.1,0 0,0 z"
|
||||
class="st3"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<path
|
||||
id="path28-3"
|
||||
d="m 34.11382,27.331278 c -0.2,-0.3 -0.1,-0.6 0.2,-0.8 5.7,-5.2 14.2,-6.2 20.8,-1.1 1.7,1.4 2.8,4.3 1.9,6 -0.4,0.7 -0.9,1 -1.5,1.2 -1.4,0.6 -2.7,1.2 -3.6,2.5 -0.9,1.3 -1.1,2.8 -0.7,4.4 0.3,1.3 0.8,2.7 -0.5,3.9 -0.7,0.7 -4.1,1.3 -5,0.7 -0.4,-0.3 -0.3,-0.6 -0.2,-1 0.3,-2.5 -0.3,-4.8 -1.2,-7 -0.3,-0.8 -0.2,-1.2 0.6,-1.4 1.4,-0.4 2.7,-1.1 3.7,-2.1 2.2,-2.1 1.7,-4.8 -1.2,-6 -2.3,-1 -4.7,-0.8 -7,-0.6 -2.2,0.1 -4.3,0.7 -6.3,1.3 z"
|
||||
class="st1"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<path
|
||||
id="path30-5"
|
||||
d="m 32.81382,29.931278 c 0.3,-0.3 0.5,-0.2 0.8,0 6.6,4 10,11.9 7,19.6 -0.8,2 -3.4,4 -5.3,3.5 -0.8,-0.2 -1.2,-0.6 -1.6,-1.1 -0.9,-1.2 -1.9,-2.3 -3.4,-2.8 -1.6,-0.5 -3,-0.2 -4.4,0.6 -1.2,0.7 -2.4,1.6 -3.9,0.7 -0.9,-0.5 -2.4,-3.6 -2.1,-4.6 0.2,-0.4 0.6,-0.4 1,-0.4 2.5,-0.4 4.5,-1.6 6.4,-3.2 0.6,-0.5 1.1,-0.5 1.6,0.2 0.8,1.2 1.8,2.2 3.1,2.9 2.6,1.5 5.1,0.2 5.4,-2.8 0.3,-2.5 -0.6,-4.7 -1.4,-6.9 -0.9,-2 -2,-3.9 -3.2,-5.7 z"
|
||||
class="st2"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<path
|
||||
id="path32-6"
|
||||
d="m 29.61382,30.531278 c -0.4,2 -1.3,3.9 -2.5,5.6 -3.6,5.4 -8.8,7.6 -15.2,7 -2.2999997,-0.2 -4.1999997,-2.1 -4.3999997,-4 -0.1,-0.8 0.1,-1.4 0.6,-2 0.7,-0.9 1.3,-1.7 1.6,-2.8 0.5999997,-2.2 -0.2,-4 -1.8,-5.6 -2.2,-2.2 -1.9,-4.2 0.7,-5.8 0.3,-0.2 0.7,-0.4 1.1,-0.6 0.5999997,-0.3 1.0999997,-0.3 1.2999997,0.4 0.9,2.3 2.7,4 4.7,5.4 0.7,0.6 0.7,1 0.1,1.7 -1.2,1.3 -1.9,2.9 -2,4.7 -0.2,2.2 1.1,3.6 3.3,3.6 1.4,0 2.7,-0.5 3.9,-1.1 3.1,-1.6 5.5,-3.9 7.8,-6.3 0.3,-0.1 0.4,-0.3 0.8,-0.2 z"
|
||||
class="st4"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<path
|
||||
id="path34-2"
|
||||
d="m 13.21382,9.5312776 c 0.2,0 0.7,0.1 1.2,0.2 3.7,0.7000004 6,-0.6 7.2,-4.1 0.8,-2.3 2.5,-3 4.7,-1.8 0.1,0 0.1,0.1 0.2,0.1 2.3,1.3 2.3,1.5 0.9,3.5 -1.2,1.6 -1.8,3.4000004 -2.1,5.3000004 -0.2,1.1 -0.6,1.3 -1.6,0.9 -1.6,-0.6 -3.3,-0.6 -5,0 -1.9,0.6 -2.7,2.3 -2.1,4.2 0.8,2.5 3,3.6 4.9,4.9 1.9,1.3 4.1,2 6.2,2.9 0.3,0.1 0.8,0.1 0.7,0.6 -0.1,0.3 -0.5,0.3 -0.9,0.3 -4.5,0.2 -8.8,-0.5 -12.3,-3.5 -3.3,-2.7 -5.6999997,-6 -5.2999997,-10.6 0.2999997,-1.5 1.3999997,-2.6000004 3.2999997,-2.9000004 z"
|
||||
class="st5"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<path
|
||||
id="path36-9"
|
||||
d="m 5.0138203,37.631278 c -2.4,0.3 -4.80000003,-1.7 -5.00000003,-4.2 -0.2,-2.4 1.80000003,-4.8 4.10000003,-5 2.6,-0.3 5,1.5 5.2,3.9 0.1,2.3 -1.4,5.1 -4.3,5.3 z"
|
||||
class="st4"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<path
|
||||
id="path38-1"
|
||||
d="m 47.01382,2.0312776 c 2.5,-0.2 4.9,1.8 5.1,4.3 0.2,2.4 -1.8,4.7000004 -4.2,4.9000004 -2.6,0.2 -4.9,-1.7000004 -5.1,-4.2000004 -0.2,-2.5 1.6,-4.8 4.2,-5 z"
|
||||
class="st3"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<path
|
||||
id="path40-2"
|
||||
d="m 20.91382,3.9312776 c 0.3,2.6 -1.5,4.8 -4.2,5.2 -2.3,0.3 -4.7,-1.6 -5,-3.8 -0.3,-2.9 1.3,-4.99999996 4,-5.29999996 2.5,-0.3 4.9,1.59999996 5.2,3.89999996 z"
|
||||
class="st5"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<style
|
||||
id="style2"
|
||||
type="text/css">
|
||||
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
|
||||
</style>
|
||||
<style
|
||||
id="style2-3"
|
||||
type="text/css">
|
||||
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
|
||||
</style>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<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>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<path
|
||||
id="path4"
|
||||
d="m 247.93344,17.871894 c -20.49358,50.233214 -32.85373,83.091376 -55.67015,131.826236 13.9889,14.826 31.1605,32.09056 59.04738,51.59003 -29.98068,-12.33447 -50.43052,-24.71727 -65.71321,-37.56731 -29.20024,60.91971 -74.95051,147.69601 -167.7909,314.47259 72.96954,-42.11649 123.77827,-68.0824 176.49709,-77.99095 -2.26368,-9.73362 -3.55081,-20.26245 -3.46331,-31.24816 l 0.0805,-2.33732 c 1.15775,-46.73933 31.74236,-84.002 60.03547,-84.06511 28.29312,-0.0633 55.80715,46.15485 54.64917,92.8942 -0.2175,8.79569 -1.21012,17.25536 -2.94362,25.10278 52.1433,10.19855 103.4958,36.09772 175.4777,77.64456 -14.1938,-26.12472 -26.86242,-49.67506 -38.96013,-72.10451 -19.05704,-14.7673 -38.93365,-33.98597 -79.47881,-54.79276 27.86845,7.23979 47.82218,15.59244 63.3754,24.92903 C 300.07316,147.25839 290.11644,116.83076 247.92986,17.860386 Z"
|
||||
style="fill:black;fill-rule:evenodd;stroke-width:11.50832653" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs12">
|
||||
<linearGradient
|
||||
id="linearGradient1402">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop1400" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
||||
id="g849"
|
||||
transform="matrix(0.91717941,0,0,0.91717941,-16.480902,-15.836491)">
|
||||
<g
|
||||
id="layer8"
|
||||
style="display:inline"
|
||||
transform="translate(287.5,550)" />
|
||||
<g
|
||||
id="layer7"
|
||||
style="display:inline"
|
||||
transform="translate(287.5,550)">
|
||||
<g
|
||||
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
||||
id="g2591"
|
||||
transform="matrix(1.0009916,0,0,1.0009916,-287.86695,-550.38088)">
|
||||
<g
|
||||
id="g1560"
|
||||
style="clip-rule:evenodd;display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
||||
transform="translate(-62.5,-6.5e-4)">
|
||||
<g
|
||||
id="g1445"
|
||||
style="fill:#000000;fill-opacity:1"
|
||||
transform="translate(0,6.5e-4)">
|
||||
<path
|
||||
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
|
||||
d="m 452.45312,411.80078 c -32.06055,44.58529 -64.12109,89.17057 -96.18164,133.75586 42.48698,-30.0944 84.97396,-60.1888 127.46094,-90.2832 -10.42643,-14.49089 -20.85287,-28.98177 -31.2793,-43.47266 z"
|
||||
id="path1291" />
|
||||
<path
|
||||
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
|
||||
d="m 390,325 c 0,39.4031 0,78.8062 0,118.2093 14.18877,-19.70087 28.37753,-39.40174 42.5663,-59.10261 C 418.37753,364.40446 404.18877,344.70223 390,325 Z"
|
||||
id="path1289" />
|
||||
<path
|
||||
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
|
||||
d="m 476.23047,152.19531 c -40.78832,17.07445 -81.57684,34.1484 -122.36524,51.22266 C 408.4679,279.35565 463.07272,355.2918 517.67406,431.23044 545.11604,411.7923 572.55802,392.35416 600,372.91602 558.74349,299.34245 517.48698,225.76888 476.23047,152.19531 Z"
|
||||
id="path1287" />
|
||||
<path
|
||||
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
|
||||
d="M 223.76953,152.19531 C 182.51302,225.76888 141.25651,299.34245 100,372.91602 c 82.5,58.43815 165,116.8763 247.5,175.31445 0,-114.7474 0,-229.49479 0,-344.24219 -41.24347,-17.26436 -82.48708,-34.52841 -123.73047,-51.79297 z"
|
||||
id="path1285" />
|
||||
<path
|
||||
style="color:#000000;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
|
||||
d="m 352.5,108.39648 v 52.19336 L 329.46484,114.52148 228.57422,148.78516 350,199.61523 471.42578,148.78516 Z"
|
||||
id="path1283" />
|
||||
<path
|
||||
id="path1631-9"
|
||||
style="color:#000000;clip-rule:evenodd;display:inline;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;paint-order:stroke markers fill"
|
||||
d="m 390,25 c -12.5,9.615234 -25,19.230469 -37.5,28.845703 0,7.051432 0,14.102865 0,21.154297 15.83333,0 31.66667,0 47.5,0 -3.33333,-16.666667 -6.66667,-33.333333 -10,-50 z" />
|
||||
</g>
|
||||
<path
|
||||
id="path1633-6"
|
||||
style="color:#000000;clip-rule:evenodd;display:inline;overflow:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:0.5;paint-order:stroke markers fill"
|
||||
d="m 347.5,26.25 c -15.08789,7.544271 -30.17578,15.088541 -45.26367,22.632812 15.08789,30.175783 30.17578,60.351568 45.26367,90.527348 0,-37.72005 0,-75.440107 0,-113.16016 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="496"
|
||||
height="496"
|
||||
version="1.1"
|
||||
id="svg16"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata22">
|
||||
<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>
|
||||
<defs
|
||||
id="defs20" />
|
||||
<path
|
||||
style="fill:#cccccc;stroke-width:11.57627106"
|
||||
d="M 249.52542,16.949153 A 231.52542,231.52542 0 0 0 18,248.47458 231.52542,231.52542 0 0 0 249.52542,480 231.52542,231.52542 0 0 0 481.05085,248.47458 231.52542,231.52542 0 0 0 249.52542,16.949153 Z m 48.29476,46.305085 c 4.36594,-0.05788 8.54834,0.260466 13.27201,0.655217 25.83141,2.161984 53.25158,18.874647 71.15338,45.061565 24.14967,35.32626 22.98443,80.3693 0.81392,107.32916 -11.13767,13.54389 -14.72405,14.54779 -22.22551,20.59766 4.71798,-9.04894 6.11929,-12.51974 5.53943,-19.64806 -0.365,-4.47168 -2.06473,-8.02293 -3.02973,-10.01613 -3.70735,-7.65736 -9.41584,-10.5189 -16.09825,-13.81466 -8.21369,-4.051 -17.39067,-4.74836 -23.08471,-4.27327 -4.41592,0.36813 -6.69499,0.55451 -12.39023,2.50974 -26.98011,9.26322 -57.90528,0.80687 -74.45442,-23.40132 -19.78339,-28.93917 -12.00129,-69.01402 17.43224,-89.512588 8.66928,-6.037488 18.9172,-12.00031 28.7598,-13.950333 5.40898,-1.071962 9.94613,-1.479331 14.31207,-1.537444 z M 141.4953,144.31071 c 4.34856,-0.0926 8.66651,0.20027 12.91025,0.92726 17.05544,2.91896 19.66139,5.52315 28.53371,8.99881 -10.04346,0.39128 -13.68789,0.88212 -19.46714,4.88368 -3.62492,2.51113 -5.81414,5.6975 -7.03168,7.50652 -4.67743,6.94959 -4.26467,13.27903 -3.75323,20.64281 0.6287,9.05125 4.59266,17.27041 7.82302,21.93159 2.50524,3.61504 3.8069,5.47083 8.29784,9.40572 21.26964,18.63629 29.38003,49.39989 17.00265,75.51711 v 0.0232 c -14.81831,31.21329 -52.76068,44.21193 -84.80976,28.9859 -9.441374,-4.48616 -19.592241,-10.3823 -26.13705,-17.885 C 67.670676,297.00207 64.409456,290.49239 60.393571,281.98267 49.413134,258.71506 50.065068,226.94445 63.468519,198.68781 79.289715,165.33426 111.05539,144.98422 141.4953,144.31094 Z m 186.16995,138.91525 c 31.29817,0.7131 57.69741,25.34208 60.32324,57.70054 0.8248,10.16605 0.78591,21.62679 -2.39666,30.81731 -3.49806,10.1011 -7.43853,16.03718 -12.72938,23.58213 -14.46642,20.62961 -41.95319,35.59264 -72.71345,38.05248 -41.4958,3.31822 -78.76821,-19.28283 -90.55267,-50.80455 -5.92014,-15.83541 -4.9688,-19.27333 -6.37599,-28.46582 5.28917,8.29579 7.49874,11.10952 13.76943,14.04074 3.93435,1.83797 7.73396,2.13733 9.88053,2.28366 8.24667,0.56144 13.47177,-2.87138 19.51235,-6.8961 7.4248,-4.94689 12.51028,-12.31554 14.89992,-17.31915 1.85327,-3.88048 2.78715,-5.88445 3.93413,-11.59884 5.43352,-27.071 27.70446,-48.96022 56.14039,-51.23415 v 0.0231 c 2.12458,-0.17017 4.22161,-0.22805 6.30816,-0.18059 z"
|
||||
id="circle4" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 7.9 KiB |
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
id="svg5"
|
||||
version="1.1"
|
||||
viewBox="0 0 131.23333 131.23334"
|
||||
height="496"
|
||||
width="496"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(3.8123445,0,0,3.5284776,-1318.4244,-71.638005)"
|
||||
id="g26">
|
||||
<g
|
||||
transform="matrix(0.65134496,0,0,0.6634673,448.54237,52.231766)"
|
||||
id="g20">
|
||||
<path
|
||||
d="m -127,-42.3 c 4.57,6.45 23.8,31.4 10.7,36.6 -6.12,2.81 -34,-1.65 -33.6,-0.921 -2,3.28 -3.59,5.92 -3.59,5.92 0,0 21.5,0.967 38.1,-1.27 23.7,-3.18 -4.88,-33.5 -11.6,-40.3 z"
|
||||
style="fill:#cccccc;stroke-width:0.585;fill-opacity:1"
|
||||
id="path14" />
|
||||
<path
|
||||
d="m -127,-42.3 c -1.52,0.209 -29.4,34.5 -29.4,34.5 0,0 2.01,0.57 6.58,1.23 1.48,-1.15 22.3,-36.2 22.9,-35.7 -0.0107,-0.0141 -0.028,-0.0193 -0.0522,-0.016 z"
|
||||
style="fill:#cccccc;stroke-width:0.585;fill-opacity:0.85461253"
|
||||
id="path16" />
|
||||
<path
|
||||
d="m -127,-42.3 c -0.96,-0.156 -22.9,35.7 -22.9,35.7 0,0 19.9,2.1 28.1,1.96 23.1,-0.39 0.176,-30.6 -5.16,-37.7 -0.007,-0.007 -0.0151,-0.0108 -0.0248,-0.0124 z"
|
||||
style="fill:#cccccc;stroke-width:0.585;fill-opacity:0.54827821"
|
||||
id="path18" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="496"
|
||||
width="496"
|
||||
id="svg4"
|
||||
version="1.1"
|
||||
viewBox="0 0 496 496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<path
|
||||
d="m 248.1215,22.133185 c -127.11688,0 -230.03813,101.032375 -230.263,225.765625 H 17.818 v 174.76598 h 0.0405 c 0.0607,28.28815 23.45355,51.20203 52.30388,51.20203 H 248.1439 C 375.2833,473.78702 478.182,372.76698 478.182,248.10118 478.1822,123.36794 375.1483,22.335565 247.9191,22.335565 Z m 46.7721,92.963945 c 38.6545,0 75.1503,29.03021 75.1503,69.07888 0,3.71479 0.023,7.43183 -0.5966,11.64358 -1.071,10.65415 -10.9982,18.31084 -21.8075,16.80874 -10.8093,-1.51965 -18.1445,-11.58736 -16.1454,-22.12009 0.1821,-1.20214 0.2485,-3.08966 0.2485,-6.33448 0,-22.71148 -18.945,-31.48126 -36.8556,-31.48126 -17.9061,0 -34.0447,14.76921 -34.0672,31.48126 0.3094,19.32275 0,38.49709 0,57.7906 l 33.2352,-0.24375 c 25.9496,-0.52709 26.2419,37.8 0.2993,37.62011 l -33.5275,0.24375 c -0.081,15.54275 0.1214,12.73192 0.041,20.55951 0,0 0.281,19.01019 -0.2973,33.41512 -4.0116,42.31981 -40.7458,76.13968 -84.88698,76.13968 -46.79465,0 -85.33671,-37.50768 -85.33671,-83.51529 1.40496,-47.31185 39.86877,-84.52719 88.32743,-84.09995 l 27.02886,-0.20013 v 37.55265 l -27.02886,0.24353 h -0.14167 c -26.62415,0.77286 -49.44807,18.51098 -49.87531,46.47983 0,25.47734 20.98901,45.89519 47.042,45.89519 26.01701,0 46.83964,-18.5672 46.83964,-45.85021 l -0.04,-142.22785 c 0.023,-2.63993 0.1012,-4.73793 0.3971,-7.64995 4.3916,-34.78679 36.1135,-61.2985 72.0246,-61.2985 z"
|
||||
style="fill:#cccccc;fill-opacity:1;stroke-width:2.24866"
|
||||
id="path8" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
xml:space="preserve"
|
||||
width="496"
|
||||
height="496"
|
||||
viewBox="0 0 496 496"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs6" /><g
|
||||
id="g8"
|
||||
transform="matrix(1.3333333,0,0,-1.3333333,0,746.66667)"><g
|
||||
id="g3535"
|
||||
transform="matrix(1.1203307,0,0,1.1203307,-116.81136,-14.94012)"><g
|
||||
id="g54"
|
||||
transform="matrix(1.680604,0,0,1.680604,423.99221,497.23047)"
|
||||
style="fill:#cccccc;fill-opacity:1"><path
|
||||
d="m 0,0 c 9.895,-9.89 -17.535,-53.361 -22.171,-58 -4.637,-4.63 -16.413,-0.371 -26.305,9.522 -9.894,9.89 -14.156,21.67 -9.519,26.307 C -53.359,-17.533 -9.89,9.893 0,0"
|
||||
style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path56" /></g><g
|
||||
id="g58"
|
||||
transform="matrix(1.680604,0,0,1.680604,190.81866,479.64379)"
|
||||
style="fill-opacity:1;fill:#cccccc"><path
|
||||
d="M 0,0 C -15.106,8.571 -36.597,18.104 -43.435,11.267 -50.364,4.341 -40.48,-17.636 -31.82,-32.769 -24.114,-19.37 -13.149,-8.09 0,0"
|
||||
style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path60" /></g><g
|
||||
id="g62"
|
||||
transform="matrix(1.680604,0,0,1.680604,398.63593,405.48899)"
|
||||
style="fill:#cccccc;fill-opacity:1"><path
|
||||
d="m 0,0 c 1.39,-4.718 1.139,-8.616 -1.115,-10.867 -5.271,-5.271 -19.503,0.339 -32.332,12.55 -0.897,0.803 -1.784,1.636 -2.658,2.511 -4.637,4.641 -8.248,9.583 -10.557,14.132 -4.494,8.06 -5.618,15.18 -2.221,18.576 1.851,1.851 4.812,2.355 8.424,1.704 2.357,1.489 5.136,3.15 8.186,4.849 -12.4,6.467 -26.497,10.121 -41.453,10.121 -49.601,0 -89.814,-40.206 -89.814,-89.812 0,-49.599 40.213,-89.809 89.814,-89.809 49.602,0 89.815,40.21 89.815,89.809 0,16.019 -4.204,31.041 -11.551,44.063 C 2.952,4.931 1.408,2.275 0,0"
|
||||
style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path64" /></g></g><g
|
||||
id="g22"
|
||||
transform="matrix(1.680604,0,0,1.680604,504.44542,140.54832)" /><g
|
||||
id="g34"
|
||||
transform="matrix(1.680604,0,0,1.680604,-5.3409333,90.456741)" /></g></svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,165 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="496"
|
||||
height="496"
|
||||
viewBox="0 0 105.83333 105.83334"
|
||||
version="1.1"
|
||||
id="svg8915"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8909" />
|
||||
<g
|
||||
id="layer1"
|
||||
transform="translate(0,-191.16665)">
|
||||
<g
|
||||
id="g6414">
|
||||
<path
|
||||
d=""
|
||||
id="path3437"
|
||||
style="fill:#/000000;stroke-width:0.0822478" />
|
||||
<path
|
||||
style="fill:#cccccc;fill-opacity:1;stroke-width:0.35411"
|
||||
d=""
|
||||
id="path1918"
|
||||
transform="matrix(0.26458334,0,0,0.26458334,0,191.16665)" />
|
||||
<path
|
||||
d="m 94.908121,220.98177 -9.593353,10.92364 2.065151,-14.52111 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2185" />
|
||||
<path
|
||||
d="M 54.598011,235.11885 72.902758,261.34807 48.569652,234.75774 Z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2237" />
|
||||
<path
|
||||
d="m 85.426002,232.07973 18.649268,0.89416 -6.567167,4.86125 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2171" />
|
||||
<path
|
||||
id="path2173"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
d="m 61.686811,235.54321 11.203616,25.7928 -18.276154,-26.18106 z" />
|
||||
<path
|
||||
d="m 69.905485,236.10484 2.987675,25.179 -11.215917,-25.7334 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2175" />
|
||||
<path
|
||||
d="m 64.801382,222.91117 20.30619,9.13818 L 72.674806,221.089 Z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2177" />
|
||||
<path
|
||||
d="m 97.510457,237.81811 -12.036898,-5.67943 -37.323243,2.57545 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0186333"
|
||||
id="path2179" />
|
||||
<path
|
||||
d="m 10.550954,235.34751 20.430711,-12.65183 41.63464,-1.57862 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2181" />
|
||||
<path
|
||||
d="m 69.015141,212.83574 c 0,0 -39.577283,9.46391 -42.012185,10.02546 l 2.028815,-0.29466 -2.005324,0.29312 45.685144,-1.75644 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2183" />
|
||||
<path
|
||||
d="m 104.11354,232.97973 -9.182792,-12.02796 -9.734209,11.09484 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2187" />
|
||||
<path
|
||||
d="m 96.717922,248.92796 0.790181,-11.09282 6.567167,-4.86125 -1.21812,9.98184 -6.139228,5.97223"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2189" />
|
||||
<path
|
||||
d="m 87.379919,217.3843 -8.378319,-10.35405 -9.969541,5.7694 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2191" />
|
||||
<path
|
||||
d="m 50.001542,205.05454 19.034684,7.74209 9.958668,-5.76176 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2193" />
|
||||
<path
|
||||
d="m 27.003098,222.86104 22.998444,-17.8065 19.141792,7.76021 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2195" />
|
||||
<path
|
||||
d="m 87.379919,217.3843 -14.648652,3.76869 -3.73035,-8.36637 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2197" />
|
||||
<path
|
||||
d="m 87.379919,217.3843 -14.679927,3.75389 12.556301,11.04707 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2199" />
|
||||
<path
|
||||
d="m 66.007387,231.01713 19.188455,1.03481 -20.373359,-9.14301 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2201" />
|
||||
<path
|
||||
d="M 66.013734,231.03688 10.320382,242.84009 64.816138,222.91191 Z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2203" />
|
||||
<path
|
||||
d="m 48.595803,234.71883 17.612506,-3.72876 19.418164,1.10304 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2205" />
|
||||
<path
|
||||
d="M 64.832643,222.90479 16.1098,234.06355 10.320382,242.84009 Z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2209" />
|
||||
<path
|
||||
d="m 48.533988,234.72306 -38.213606,8.11703 -8.6005905,9.26977 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2211" />
|
||||
<path
|
||||
d="M 4.3038844,257.86852 48.533988,234.72306 6.8946596,250.1879 Z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2213" />
|
||||
<path
|
||||
d="m 5.9698729,265.74441 5.1355151,-11.43507 37.4286,-19.58628 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2215" />
|
||||
<path
|
||||
d="m 18.788616,277.10135 -5.712757,-16.5381 35.458129,-25.84019 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2217" />
|
||||
<path
|
||||
d="m 72.879703,261.29237 -3.834656,5.30036 -20.511059,-31.86967 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2219" />
|
||||
<path
|
||||
d="M 65.313419,272.61238 48.533988,234.72306 69.564426,267.39945 Z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2221" />
|
||||
<path
|
||||
d="M 33.416458,279.68174 21.480739,273.26579 48.533988,234.72306 Z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2223" />
|
||||
<path
|
||||
d="m 66.357935,274.97075 -17.823947,-40.24769 11.637411,44.2691 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2225" />
|
||||
<path
|
||||
d="M 48.533988,234.72306 51.504925,283.1121 34.16639,277.45107 Z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2227" />
|
||||
<path
|
||||
d="m 48.533988,234.72306 2.810287,45.92265 9.624572,1.36719 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0185626"
|
||||
id="path2229" />
|
||||
<g
|
||||
id="g2340"
|
||||
transform="matrix(0.99230766,0,0,0.99230766,0.40705315,1.8775694)"
|
||||
style="fill:#cccccc;fill-opacity:1">
|
||||
<path
|
||||
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.209952px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill:#000000"
|
||||
d="m 91.922238,223.72124 c 0,0 -3.359236,0.83979 -2.939326,2.72935 0,0 1.364686,-0.10495 2.939326,-2.72935 z"
|
||||
id="path2235" />
|
||||
<path
|
||||
id="path2231"
|
||||
d="m 56.755438,217.22847 c 9.705599,-4.4535 18.334521,9.1985 23.472344,3.65199 -2.23966,3.57968 -7.45376,3.90526 -11.088773,3.91761 0,0 -5.577589,-0.13282 -4.847188,-4.81398 -1.205199,-1.99087 -5.022379,-1.95121 -7.536383,-2.75562 z"
|
||||
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.375614px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill:#000000" />
|
||||
<path
|
||||
id="path2233"
|
||||
d="m 65.851926,218.62017 a 2.9547924,2.9547924 0 0 0 -1.22808,2.39306 2.9547924,2.9547924 0 0 0 2.955027,2.95504 2.9547924,2.9547924 0 0 0 2.954292,-2.95504 2.9547924,2.9547924 0 0 0 -0.08803,-0.70573 2.4069938,2.9215925 0 0 1 -2.252216,1.90082 2.4069938,2.9215925 0 0 1 -2.407015,-2.9213 2.4069938,2.9215925 0 0 1 0.06602,-0.66685 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.412713;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.7 KiB |
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg16"
|
||||
version="1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata22">
|
||||
<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>
|
||||
<defs
|
||||
id="defs20" />
|
||||
<g
|
||||
id="g4"
|
||||
transform="matrix(0.063902,0,0,0.064257,3.3583,450.3601)"
|
||||
style="fill:#705db3">
|
||||
<path
|
||||
id="path2"
|
||||
d="m 3208.5873,-6664.1875 c -111.4456,2.8403 -221.0763,13.9377 -327.0025,33.3094 -1273.5088,232.8432 -2169.62347,1334.506 -2245.50934,2060.3757 -37.22554,356.1 154.83459,622.2976 260.70426,740.0185 286.22418,317.914 856.57788,561.129 1223.41048,762.3389 -530.1956,452.0165 -773.2554,672.5944 -1012.7753,924.0787 -358.35932,376.3224 -610.76447,790.5171 -611.53272,1087.1914 -0.27049,95.57774 -15.53661,400.25139 108.77064,640.77705 46.74941,90.49354 179.60587,392.391365 580.45538,618.45612 256.0483,144.48485 620.7718,197.59793 977.8998,146.63001 1105.2425,-157.71433 2585.6047,-1095.33614 3641.9175,-1968.34548 673.1553,-556.3496 1165.1847,-1095.4077 1307.3196,-1360.8784 114.6863,-214.2021 127.6435,-598.49 61.1189,-839.603 -189.0087,-684.9726 -1725.2864,-2088.0355 -2981.3519,-2652.734 -300.2558,-135.0016 -649.0876,-200.1358 -983.4248,-191.6149 z m 922.9967,1089.252 a 793.68409,659.13367 25.483077 0 1 431.6297,94.7772 793.68409,659.13367 25.483077 0 1 420.9251,939.188 793.68409,659.13367 25.483077 0 1 -1004.8337,242.4376 793.68409,659.13367 25.483077 0 1 -421.2704,-939.1879 793.68409,659.13367 25.483077 0 1 573.5493,-337.2149 z"
|
||||
style="fill:#cccccc;fill-rule:evenodd;stroke-width:11.29758358" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="1024.0px"
|
||||
height="1024.0px"
|
||||
viewBox="0 0 1024.0 1024.0"
|
||||
version="1.1"
|
||||
id="SVGRoot"
|
||||
sodipodi:docname="hypr.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
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">
|
||||
<sodipodi:namedview
|
||||
id="namedview6587"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="true"
|
||||
inkscape:zoom="0.38254353"
|
||||
inkscape:cx="128.09"
|
||||
inkscape:cy="562.02755"
|
||||
inkscape:window-width="1586"
|
||||
inkscape:window-height="854"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid6710" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs6582">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3773"
|
||||
id="linearGradient3775"
|
||||
x1="1218.6354"
|
||||
y1="1270.9648"
|
||||
x2="2079.8806"
|
||||
y2="762.44342"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.71810371,0,0,0.71810371,-713.4579,-193.92467)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3773">
|
||||
<stop
|
||||
style="stop-color:#009ff9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3769" />
|
||||
<stop
|
||||
style="stop-color:#00e7cd;stop-opacity:0.94901961;"
|
||||
offset="1"
|
||||
id="stop3771" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient3775);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.34469"
|
||||
d="m 548.55409,86.597997 v 88.585173 25.50702 c 0,3.37451 -0.87889,8.22774 0.43431,11.37476 1.18228,2.82299 3.35728,5.36681 5.0049,7.92785 4.11558,6.39054 8.44145,12.63286 12.65011,18.95791 13.89101,20.86751 28.49205,41.25244 43.38603,61.41333 25.05207,33.90708 52.10331,66.26653 76.5969,100.5907 36.6543,51.36216 67.50052,108.48069 77.76883,171.31064 1.70621,10.42686 3.57789,21.16396 4.057,31.71146 0.36538,8.00707 0.0136,16.1108 0.0136,24.12822 0,5.78389 0.49979,11.8194 -0.0344,17.57917 -2.25081,24.17655 -8.99641,48.10484 -17.95833,70.66134 -11.22303,28.24381 -28.199,53.66813 -48.0428,76.52107 -42.11757,48.50811 -104.80278,75.89019 -168.00847,80.97091 -7.36947,0.58944 -15.01124,0.0309 -22.40484,0.0309 -7.3936,0 -15.03536,0.55839 -22.40483,-0.0309 -38.83958,-3.12281 -77.21038,-14.43552 -110.98997,-34.17246 -53.29226,-31.13583 -92.79364,-83.64236 -111.92394,-141.93278 -7.5349,-22.95625 -11.13001,-46.25729 -11.13001,-70.31662 0,-7.86239 -0.54462,-15.94184 0.0309,-23.78354 1.58213,-21.56034 5.50813,-43.18618 11.14382,-64.11229 18.87512,-70.08223 63.17121,-130.75446 107.19492,-187.10773 24.98311,-31.98029 49.79036,-64.05709 72.65364,-97.60571 6.22164,-9.12738 12.43295,-18.25129 18.57533,-27.43038 2.99881,-4.47405 7.2005,-9.28249 9.23079,-14.27702 1.27535,-3.14703 0.39295,-8.00714 0.39295,-11.37476 V 175.87255 87.632062 h -0.3447 c -5.41163,11.435764 -14.12195,22.219028 -21.13983,32.745498 -14.08746,21.12808 -28.40243,42.07967 -43.16887,62.73347 -68.41395,95.69612 -153.70738,183.77461 -195.50783,295.74351 -8.87576,23.77667 -15.59377,48.13937 -20.25742,73.07414 -3.31247,17.71017 -4.47751,35.52029 -5.70461,53.42692 -0.71351,10.42681 -1.34774,21.23972 -0.62734,31.71138 5.52882,80.27818 41.37994,159.87388 100.61826,215.05519 28.04395,26.1206 60.25177,47.21209 95.82368,61.59257 34.89295,14.10125 71.28521,20.36081 108.57714,22.91841 90.38103,6.19406 182.99558,-25.15891 247.48704,-89.65029 29.79836,-29.79844 54.24384,-65.79432 70.38214,-104.78555 14.10816,-34.08294 22.54616,-69.40668 25.06584,-106.16439 0.8824,-12.85693 -0.53426,-25.79996 -0.99959,-38.60518 C 832.69186,534.05659 810.40077,471.76082 780.4231,416.46576 740.44253,342.71601 684.8924,279.93428 635.37434,212.75433 c -19.76099,-26.80996 -39.04638,-53.97838 -57.52176,-81.6914 -6.11135,-9.16909 -12.34679,-18.26958 -18.25132,-27.57515 -3.50551,-5.529515 -6.74559,-11.955904 -11.04725,-16.889783 z"
|
||||
id="path300" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg14"
|
||||
version="1.1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata20">
|
||||
<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>
|
||||
<defs
|
||||
id="defs18" />
|
||||
<path
|
||||
id="circle4"
|
||||
d="M 248.30508,17.389831 A 230.30508,230.30508 0 0 0 100.54099,71.34513 c 9.35043,0.728916 18.684,1.579202 28.00095,2.653921 7.32362,0.879765 14.66196,1.618239 21.90597,3.013657 7.57179,1.681112 15.31909,2.461962 22.89556,4.138352 17.4334,3.226344 34.67822,7.50887 51.52628,13.06705 4.66857,1.01219 8.84261,3.35589 13.31451,4.94799 9.5666,3.82571 18.8864,8.35328 27.48366,14.05679 -1.95263,13.67321 -2.87925,28.64707 3.86841,41.24798 3.69458,7.38911 10.01902,13.45224 17.7452,16.46313 11.20083,4.82789 23.70236,3.22888 35.53534,3.82353 10.74193,1.94319 20.82626,6.34479 30.99223,10.16578 4.03642,1.56861 7.98675,3.30798 12.03254,4.85794 0.0518,-1.32518 0.114,-2.6378 0.17998,-3.95837 4.54683,5.33352 10.62158,9.23604 17.09296,11.8302 -0.36526,-2.25239 -0.8025,-4.48174 -1.2145,-6.7248 3.14674,2.9547 6.10825,6.12024 9.31116,9.01886 2.93133,2.40209 6.1814,4.36993 9.46861,6.25233 -0.009,-3.10452 -0.55492,-6.15871 -0.96706,-9.22119 4.90738,5.57235 10.23725,10.74765 15.0463,16.41822 3.8257,0.0576 7.65302,0.11515 11.49276,0.17964 0.28305,0.48709 0.63265,0.93389 0.92214,1.41695 10e-6,-0.31552 -7.7e-4,-0.62988 0,-0.94425 8.66785,9.03095 -0.24297,-0.32934 7.93923,8.25413 0.22754,0.23837 0.15476,0.0806 -0.15741,0.85444 -1.1897,-0.47443 -2.34378,-1.04444 -3.50855,-1.57437 1.86249,2.8232 3.63889,5.70063 5.53272,8.50148 0.87585,1.49284 1.47238,2.49156 2.11412,4.20572 0.90544,2.01574 -3.49949,0.84637 -2.45148,2.13665 6.64463,8.29767 16.60828,11.97794 26.74147,14.50658 -3.90063,1.94792 -8.46219,2.57711 -11.51525,5.78008 -0.30113,0.33164 -0.14728,0.0921 -0.35986,0.31436 -0.39036,0.75656 -0.60927,1.27981 -1.95669,3.44111 -4.04107,-3.65253 -7.56049,-7.84016 -11.80763,-11.26791 -5.73621,-4.67323 -12.12676,-7.36573 -18.86972,-10.39067 -3.54007,-1.64358 -7.52432,-3.39194 -9.37864,-7.03962 -1.38138,-3.56824 -1.68227,-7.43091 -2.02416,-11.20043 -13.04578,-6.37772 -26.63659,-11.58596 -40.14595,-16.86801 -16.51093,-6.04527 -33.32274,-12.23012 -51.00899,-13.49449 -17.11965,-1.66695 -34.53828,5.29022 -46.48833,17.49789 -14.72216,14.58637 -20.98593,36.15513 -15.33869,56.15932 4.36889,18.4168 18.41521,31.85557 36.23258,38.25666 7.71695,2.87985 15.99607,3.96068 24.20002,3.91346 33.94898,-0.023 68.16822,4.06627 100.51108,14.68644 15.13552,5.07604 29.74082,11.95238 42.86733,21.07384 A 230.30508,230.30508 0 0 0 478.61017,247.69492 230.30508,230.30508 0 0 0 248.30508,17.389831 Z M 94.648411,76.518013 A 230.30508,230.30508 0 0 0 45.303748,139.13221 c 5.739606,-0.99607 11.490174,-1.98546 17.227899,-2.9463 63.084253,-10.19883 127.135323,-13.13326 190.968793,-12.5948 0.72581,3.93798 1.63402,7.85731 2.51897,11.7626 -26.47084,-2.65496 -53.11456,-3.50651 -79.70715,-3.3286 -44.27535,0.97995 -88.445539,4.64191 -132.402938,10.00837 A 230.30508,230.30508 0 0 0 18,247.69492 230.30508,230.30508 0 0 0 248.30508,478 230.30508,230.30508 0 0 0 441.79284,372.15858 c -1.51353,-1.94539 -2.92982,-3.99038 -4.54313,-5.82511 -9.34182,-12.00615 -21.70523,-21.31093 -34.79315,-28.87807 -24.92558,-14.25393 -54.48386,-18.78863 -82.85586,-16.50815 -23.54421,2.71587 -47.70324,-7.53524 -63.22144,-25.21219 -7.73568,-8.66281 -13.43176,-16.7973 -16.62066,-27.95593 -2.93593,-12.46987 -3.64224,-24.53682 -0.24735,-36.99724 2.78148,-12.17946 9.27894,-23.27993 17.63274,-32.47659 5.86732,-6.21858 12.57251,-11.79692 20.33162,-15.49619 -7.29075,-12.33399 -12.43521,-25.82791 -16.48571,-39.53867 -2.15399,-7.32358 -3.08797,-14.92077 -4.85799,-22.33326 -0.24815,-1.2129 -1.63863,-1.50158 -2.51896,-2.09163 -6.81322,-3.41369 -13.65442,-6.75565 -20.66898,-9.73856 -4.69199,-2.13528 -9.80425,-3.07216 -14.52902,-5.12786 -7.72637,-2.28037 -15.35021,-4.90135 -23.1655,-6.88221 -4.67793,-1.20334 -9.08079,-3.29843 -13.78682,-4.40815 -9.72111,-2.47244 -19.35862,-5.44545 -29.32791,-6.747249 -19.00531,-4.087915 -38.21675,-7.004268 -57.486309,-9.423508 z M 257.66123,140.88644 c 0.79605,3.79762 1.89745,7.51889 3.05874,11.22288 -60.55564,3.09991 -119.79647,19.20088 -175.697592,42.19259 -8.597289,3.40425 -16.875273,7.53477 -25.369544,11.17785 7.529652,-4.73875 15.543283,-8.60512 23.480323,-12.59481 22.350153,-11.182 45.548333,-20.65997 69.181483,-28.76556 34.18783,-11.318 69.43558,-19.85679 105.34659,-23.23295 z m 71.20566,11.80763 c 14.8954,3.61026 29.09,9.77564 42.66491,16.82309 16.10822,8.42399 31.01164,19.15505 43.99186,31.89185 2.56608,2.68777 5.86186,4.83007 7.66935,8.16408 -1.60614,-0.24873 -3.67521,0.78304 -4.92547,-0.58497 -4.75286,-5.97504 -10.24917,-11.34115 -16.12586,-16.21579 -16.24869,-13.36425 -34.71905,-23.84175 -53.95526,-32.25169 -6.29812,-2.96886 -12.97927,-4.97505 -19.31953,-7.8268 z m 66.03278,172.52637 c 15.94432,8.18988 29.8852,19.95605 41.31547,33.71367 2.79603,3.06191 5.32736,6.32338 7.75931,9.67097 a 230.30508,230.30508 0 0 0 12.14499,-22.28835 c -8.13258,-4.82949 -16.77755,-8.77773 -25.68442,-11.96504 -11.54266,-4.03172 -23.37927,-7.56724 -35.53535,-9.13125 z"
|
||||
style="fill:#cccccc;stroke-width:11.51525402" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.5 KiB |
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg6"
|
||||
version="1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<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>
|
||||
<defs
|
||||
id="defs10">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<g
|
||||
transform="matrix(31.476997,0,0,31.476997,-2.680388,-2.7820803)"
|
||||
id="g7"
|
||||
style="fill:#cccccc">
|
||||
<path
|
||||
d="M 2,1 C 1.446,1 1,1.446 1,2 v 12 c 0,0.554 0.446,1 1,1 H 5 V 5 h 5 V 1 Z m 9,0 v 14 h 3 c 0.554,0 1,-0.446 1,-1 V 2 C 15,1.446 14.554,1 14,1 Z M 6,6 v 9 h 4 V 6 Z"
|
||||
style="color:#dfdfdf;fill:#cccccc"
|
||||
class="ColorScheme-Text"
|
||||
id="path5" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg12"
|
||||
version="1.1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata18">
|
||||
<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>
|
||||
<defs
|
||||
id="defs16" />
|
||||
<path
|
||||
id="rect4"
|
||||
d="M 46.379661,24.40678 C 33.981329,24.40678 24,34.388109 24,46.786441 V 449.62034 C 24,462.01867 33.981329,472 46.379661,472 H 449.21356 c 12.39833,0 22.37966,-9.98133 22.37966,-22.37966 V 46.786441 c 0,-12.398332 -9.98133,-22.379661 -22.37966,-22.379661 z m 123.088139,111.89831 92.57837,104.16154 97.64874,-104.16154 11.18984,11.18983 -98.28256,104.83908 54.83455,61.69704 21.06834,-21.06833 78.32882,89.51865 H 68.759322 L 180.65763,248.20339 216.95901,288.54799 240.344,263.61123 147.08814,158.68475 Z m 81.43224,139.17351 -23.31944,24.87119 53.7855,59.75191 23.69098,-23.691 z"
|
||||
style="fill:#cccccc;stroke-width:11.18983078" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,155 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="496"
|
||||
height="496"
|
||||
version="1"
|
||||
id="svg6"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<g
|
||||
id="g946"
|
||||
transform="matrix(0.97173996,0,0,0.97173996,4.043873,36.112138)">
|
||||
<g
|
||||
id="layer7"
|
||||
style="display:none"
|
||||
transform="translate(-23.75651,-24.84972)">
|
||||
<rect
|
||||
transform="translate(-132.5822,958.04022)"
|
||||
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:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="rect5389"
|
||||
width="1543.4283"
|
||||
height="483.7439"
|
||||
x="132.5822"
|
||||
y="-957.77832" />
|
||||
</g>
|
||||
<g
|
||||
id="layer6"
|
||||
style="display:none"
|
||||
transform="translate(-156.33871,933.1905)">
|
||||
<rect
|
||||
y="-958.02759"
|
||||
x="132.65129"
|
||||
height="484.30399"
|
||||
width="550.41602"
|
||||
id="rect5379"
|
||||
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:#5c201e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
<rect
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c24a46;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="rect5372"
|
||||
width="501.94415"
|
||||
height="434.30405"
|
||||
x="156.12303"
|
||||
y="-933.02759" />
|
||||
<rect
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#d98d8a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="rect5381"
|
||||
width="24.939611"
|
||||
height="24.939611"
|
||||
x="658.02826"
|
||||
y="-958.04022" />
|
||||
</g>
|
||||
<g
|
||||
id="layer3"
|
||||
style="display:inline;opacity:1"
|
||||
transform="translate(37.235605,912.8581)">
|
||||
<g
|
||||
id="g2072"
|
||||
transform="matrix(0.99894325,0,0,0.99894325,-36.551621,-913.90743)"
|
||||
style="fill:#cccccc;fill-opacity:1">
|
||||
<g
|
||||
style="display:none;fill:#cccccc;fill-opacity:1"
|
||||
transform="matrix(0.09048806,0,0,0.09048806,-14.15991,84.454917)"
|
||||
id="layer1-3">
|
||||
<rect
|
||||
y="-2102.4253"
|
||||
x="-1045.6049"
|
||||
height="7145.4614"
|
||||
width="7947.0356"
|
||||
id="rect995"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;stroke-width:10.3605" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-156.48372,537.56136)"
|
||||
style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1"
|
||||
id="layer3-6">
|
||||
<g
|
||||
style="fill:#cccccc;stroke-width:11.0512;fill-opacity:1"
|
||||
transform="matrix(0.09048806,0,0,0.09048806,142.32381,-453.10644)"
|
||||
id="g955">
|
||||
<g
|
||||
transform="matrix(11.047619,0,0,11.047619,-1572.2888,9377.7107)"
|
||||
id="g869"
|
||||
style="fill:#cccccc;fill-opacity:1">
|
||||
<g
|
||||
transform="rotate(-60,226.35754,-449.37199)"
|
||||
id="g932"
|
||||
style="fill:#cccccc;stroke-width:11.0512;fill-opacity:1">
|
||||
<path
|
||||
id="path3336-6-7"
|
||||
d="m 449.71876,-420.51322 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83003 31.20698,-53.66007 46.81047,-80.4901 -11.07649,-19.27523 -22.15297,-38.55047 -33.22946,-57.8257 9.35083,-16.29387 18.70167,-32.58775 28.0525,-48.88162 z"
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:33.1535;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
id="path4260-0-5"
|
||||
d="m 309.54892,-710.38827 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83003 31.20698,-53.66007 46.81047,-80.4901 -11.07649,-19.2752 -22.15297,-38.5504 -33.22946,-57.8256 9.35083,-16.29391 18.70167,-32.58781 28.0525,-48.88172 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:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:33.1535;stroke-linecap:butt;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" />
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path3336-6-7"
|
||||
id="use3439-6-3"
|
||||
transform="rotate(60,728.23563,-692.24036)"
|
||||
width="100%"
|
||||
height="100%"
|
||||
style="fill:#cccccc;fill-opacity:1;stroke-width:11.0512" />
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path3336-6-7"
|
||||
id="use3449-5-5"
|
||||
transform="rotate(180,477.5036,-570.81898)"
|
||||
width="100%"
|
||||
height="100%"
|
||||
style="fill:#cccccc;fill-opacity:1;stroke-width:11.0512" />
|
||||
<use
|
||||
style="display:inline;fill:#cccccc;fill-opacity:1;stroke-width:11.0512"
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path4260-0-5"
|
||||
id="use4354-5-6"
|
||||
transform="rotate(120,407.33916,-716.08356)"
|
||||
width="100%"
|
||||
height="100%" />
|
||||
<use
|
||||
style="display:inline;fill:#cccccc;fill-opacity:1;stroke-width:11.0512"
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path4260-0-5"
|
||||
id="use4362-2-2"
|
||||
transform="rotate(-120,407.28823,-715.86995)"
|
||||
width="100%"
|
||||
height="100%" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.6 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg12"
|
||||
version="1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata18">
|
||||
<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>
|
||||
<defs
|
||||
id="defs16" />
|
||||
<path
|
||||
style="fill:#cccccc;stroke-width:12.04524803"
|
||||
id="path2"
|
||||
d="M 247.78132,5.5879095 C 114.74156,5.5879095 6.8763666,113.44105 6.8763666,246.49286 c 0,133.0518 107.8651934,240.90495 240.9049534,240.90495 133.03977,0 240.90496,-107.85315 240.90496,-240.90495 0,-133.05181 -107.86519,-240.9049505 -240.90496,-240.9049505 z m 1.12924,45.4049215 h 0.0241 c 114.62442,0 207.6388,92.931129 207.6388,207.545279 0,114.62257 -93.01679,207.54528 -207.63936,207.54528 -61.89331,0 -117.43815,-27.13687 -155.458982,-70.10709 15.633532,-12.13317 41.800992,-9.17715 74.012402,-5.50515 15.43719,1.75619 33.02807,3.75896 51.1923,4.16416 50.74422,0.29511 105.34254,-8.96649 139.03792,-23.69059 21.78624,-9.55549 35.74434,-15.82818 44.4639,-23.76118 3.14393,-2.57889 4.78715,-6.89266 6.46962,-11.36289 l 1.15273,-3.01131 c 1.4123,-3.61092 3.4436,-11.38445 4.35229,-15.62124 0.40472,-1.85448 0.60841,-3.86182 -0.70573,-4.89338 l -4.70517,0.89376 c -14.78675,8.86651 -51.73275,25.75527 -86.33997,26.44305 -42.87986,0.89617 -129.32229,-43.17378 -138.33213,-47.82807 l -0.894,-1.05877 c -2.16212,-5.15778 -15.09352,-35.86316 -17.83262,-42.32303 62.22094,40.9683 113.78924,63.64191 153.31813,67.16635 43.95311,3.90628 78.241,-20.09424 92.90368,-30.34836 2.86146,-1.95266 5.05552,-3.47963 5.95205,-3.81123 l 0.98806,-1.59973 c -2.44522,-15.45406 -25.51847,-90.21253 -42.88771,-108.17199 -4.81833,-4.92591 -8.63982,-9.70305 -16.42105,-14.28025 C 296.34772,120.74686 147.12517,98.679603 140.12689,97.667803 l -1.15274,0.35293 -0.44699,0.98771 c 0,0 -0.55023,30.979407 -0.61167,34.418327 -5.12043,-1.69429 -21.01428,-6.88916 -43.758119,-13.1274 C 123.83691,83.579442 169.32043,50.992108 248.91061,50.992108 Z M 303.7729,160.83513 c 1.05867,-0.0121 2.1334,-0.0361 3.19951,0 35.20947,1.26475 62.86464,30.92352 61.66133,66.10769 -0.62635,17.02114 -7.80397,32.75224 -20.23225,44.36987 -12.46442,11.6792 -28.66145,17.77373 -45.78136,17.22085 -35.14803,-1.31413 -62.8032,-30.97291 -61.66131,-66.10769 0.60226,-17.04523 7.80107,-32.88353 20.30283,-44.46383 11.67426,-10.94936 26.62479,-16.8884 42.51125,-17.12689 z m -1.69387,18.82069 c -10.2541,0.62395 -19.92649,4.77763 -27.50174,11.8806 -8.63379,8.10524 -13.73489,19.09617 -14.11553,30.98363 -0.81064,24.56146 18.42088,45.22472 42.95826,46.13413 11.92359,0.36859 23.24182,-3.79967 31.94813,-11.88047 8.68221,-8.14258 13.72341,-19.23842 14.092,-31.0777 0.82269,-24.5988 -18.4794,-45.18016 -43.02882,-46.04019 -1.48602,-0.0602 -2.88746,-0.0843 -4.3523,0 z m 11.7159,22.27902 c 10.90577,0 19.69115,5.92686 19.69115,13.22158 0,7.25847 -8.78527,13.22147 -19.69115,13.22147 -10.94238,0 -19.78526,-5.97589 -19.78526,-13.22147 0,-7.29532 8.84336,-13.22158 19.78526,-13.22158 z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="496"
|
||||
height="496"
|
||||
version="1"
|
||||
id="svg6"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<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>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<path
|
||||
id="circle2-5"
|
||||
d="M 248.06491,3.543497 A 245.38458,245.38578 0 0 0 2.6937594,248.9162 245.38458,245.38578 0 0 0 248.06491,494.28925 245.38458,245.38578 0 0 0 493.43951,248.9162 245.38458,245.38578 0 0 0 248.06491,3.543497 Z m -54.45702,61.376614 c 21.91828,-0.488223 31.10504,4.366142 43.85029,12.154644 19.3706,12.169427 33.10949,31.144715 38.20828,53.050015 5.09536,21.90533 3.56537,38.99994 -2.54424,51.1697 v 0.93863 c -12.23641,24.82604 -32.62812,44.79155 -61.17518,54.52743 l 24.51064,60.83956 c 4.58651,11.19608 8.67104,22.86664 5.10223,33.57587 -3.5688,10.70924 -19.9035,14.1677 -31.62764,2.4858 C 187.50174,310.78275 112.05818,166.68704 106.45054,155.97781 100.8429,145.26858 94.698919,136.46855 94.698919,125.75933 95.214647,109.69548 121.23807,93.139288 133.98333,84.863939 146.72858,76.5886 171.69307,65.406611 193.61478,64.919764 Z m -21.55725,44.521639 c -13.70794,2.41703 -5.53888,32.17548 -2.40672,40.69425 3.56881,9.73554 13.26786,30.13563 23.97429,40.35835 2.54424,2.43423 5.06442,4.4153 8.12437,4.90182 3.05996,0.48821 9.20395,-2.41705 11.75164,-6.31216 2.54424,-3.89408 3.09434,-6.84987 3.09434,-10.74429 a 65.251047,62.308329 0 0 0 -1.06583,-23.36895 c -4.58996,-15.09016 -14.25117,-29.68248 -26.99643,-39.41802 -2.54423,-1.946 -5.63171,-4.3988 -9.20052,-5.37214 -2.92244,-0.91112 -5.29133,-1.08303 -7.25108,-0.73921 z m 198.70157,17.32531 a 45.993002,48.02967 0 0 1 24.98167,12.82612 c 6.13023,5.87034 6.67691,12.27497 4.6312,20.27974 -2.02851,8.0051 -9.2177,25.06225 -14.8391,37.33653 l -14.30273,28.27076 c -27.59812,51.23192 -33.22982,56.58792 -40.89692,53.38594 -9.19708,-3.73556 -6.13367,-54.94309 2.54424,-117.38142 2.54424,-17.07743 6.68378,-25.61338 11.28403,-29.88256 4.59683,-4.26954 18.41479,-6.43592 26.59073,-4.83511 z m -48.14799,184.13052 c 13.54291,-3.73488 19.65597,9.58118 16.85385,19.54123 -0.92829,3.73488 -3.30063,7.05754 -7.04821,9.13248 -3.73728,2.07323 -12.59399,2.05604 -17.73059,-1.67783 -5.13318,-3.73489 -6.0993,-9.92773 -4.69998,-14.90759 1.40964,-4.97986 6.08898,-10.4273 12.62493,-12.08725 z M 145.19173,371.60272 H 351.0103 c 10.96086,0 19.74191,6.88152 19.74191,15.37793 0,8.49643 -8.78105,15.31055 -19.74191,15.31055 H 145.19173 c -10.96086,0 -19.81068,-6.81412 -19.81068,-15.31055 0,-8.49641 8.84982,-15.37793 19.81068,-15.37793 z"
|
||||
style="fill:#cccccc;stroke-width:30.6731472" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg12"
|
||||
version="1.1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata18">
|
||||
<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>
|
||||
<defs
|
||||
id="defs16" />
|
||||
<path
|
||||
id="circle4"
|
||||
d="M 248.30508,17.389831 A 230.30508,230.30508 0 0 0 18,247.69492 230.30508,230.30508 0 0 0 248.30508,478 230.30508,230.30508 0 0 0 478.61017,247.69492 230.30508,230.30508 0 0 0 248.30508,17.389831 Z M 110.12203,155.57288 H 386.48814 V 339.81695 H 110.12203 Z m 23.03051,23.03051 V 316.78644 H 363.45763 V 178.60339 Z"
|
||||
style="fill:#cccccc;stroke-width:11.51525402" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 7.1 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg12"
|
||||
version="1.1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata18">
|
||||
<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>
|
||||
<defs
|
||||
id="defs16" />
|
||||
<path
|
||||
id="path4"
|
||||
d="m 252.19068,75.20339 c -13.90839,0 -18.04156,17.89693 -34.95718,17.89693 -16.1638,0 -28.20632,-13.42784 -43.24241,-13.42784 -14.66021,0 -24.03971,9.68512 -31.18191,29.81466 0,0 -20.30613,56.65249 -22.93745,64.85343 -0.0408,0.16195 -0.81937,1.85772 -1.04077,2.38766 -0.37593,1.50352 -0.76357,3.00631 -0.38774,4.50994 0,22.17826 88.63684,95.11695 206.29433,95.11695 30.07221,0 74.52635,-6.40925 74.52635,-42.12004 0,-1.23103 -0.0251,-2.53833 -0.1024,-3.85692 l -1.50974,-6.44863 -18.03979,-77.52616 C 375.47704,129.25601 372.10308,121.41846 341.65496,106.50768 318.34903,94.57908 267.2268,75.20339 252.19068,75.20339 Z M 118.83097,176.72823 c -1.64809,3.94468 -6.709,14.95435 -7.571,18.32542 z m -8.12198,19.61109 C 70.505148,198.21386 18,205.70128 18,251.49946 18,326.79886 198.05694,420 340.8999,420 c 109.38763,0 136.82891,-49.19161 136.82891,-87.5868 0,-30.93986 -26.69651,-65.22204 -74.81204,-86.09718 l -0.69388,-2.93861 1.1836,5.53033 c 4.13493,19.92287 4.12221,21.79585 4.12221,24.42717 5e-5,33.83124 -38.42843,52.62965 -88.42347,52.62965 -112.77077,0 -213.06945,-66.16459 -213.06945,-109.76924 0,-6.0144 1.14397,-12.01355 3.77529,-17.65202 z"
|
||||
style="fill:#cccccc;stroke-width:10.44838238" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="496"
|
||||
height="496"
|
||||
viewBox="0 0 131.23333 131.23334"
|
||||
version="1.1"
|
||||
id="svg4110"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs4107" />
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
id="g4141"
|
||||
transform="matrix(2.0888265,0,0,2.0888265,2.234266,3.7573409)">
|
||||
<g
|
||||
id="g45"
|
||||
transform="matrix(1.0005035,0,0,1.0005035,-0.1541809,0.11907192)">
|
||||
<g
|
||||
style="fill:none"
|
||||
id="g1711"
|
||||
transform="matrix(0.12660227,0,0,0.12660227,-23.031958,18.510873)">
|
||||
<path
|
||||
d="M 644.77435,162.61604 C 686.12179,52.775516 627.49022,-83.195048 518.74646,-127.87536 426.99057,-168.71975 309.4092,-143.4284 246.13635,-64.296413 186.85122,5.8665921 173.54302,112.13648 217.99392,193.26493 c 10.66602,20.48373 24.37379,39.40274 40.6814,55.76583 C 337.48425,170.22183 416.29318,91.4129 495.10211,12.60397 544.93592,62.664825 595.2245,112.27265 644.77435,162.61604 Z M 602.2952,236.65112 C 566.53181,200.88772 530.76841,165.12433 495.00502,129.36093 439.01346,185.35249 383.0219,241.34405 327.03034,297.33561 418.48361,341.52679 537.863,315.09365 602.2952,236.65112 Z"
|
||||
clip-rule="evenodd"
|
||||
fill="#10b981"
|
||||
fill-rule="evenodd"
|
||||
id="path1696"
|
||||
style="stroke-width:2.42738;fill:#cccccc;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<style
|
||||
id="style2"
|
||||
type="text/css">
|
||||
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
|
||||
</style>
|
||||
<style
|
||||
id="style2-3"
|
||||
type="text/css">
|
||||
.st1{fill:#86da2f}.st2{fill:#24c2ff}.st3{fill:#ffcb12}.st4{fill:#0069da}.st5{fill:#ff4649}
|
||||
</style>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg26"
|
||||
version="1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata32">
|
||||
<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>
|
||||
<defs
|
||||
id="defs30" />
|
||||
<g
|
||||
transform="matrix(10.812189,0,0,10.812189,-17.248755,-5.746109)"
|
||||
style="fill:#cccccc"
|
||||
id="g857">
|
||||
<path
|
||||
style="fill:#cccccc"
|
||||
d="m 24,4 c -11.045825,4e-7 -20,8.954175 -20,20 0,4.379808 1.4071008,8.430277 3.7949219,11.724609 0.1149929,0.158649 0.2394024,0.292149 0.359375,0.4375 A 20.000237,20.000237 0 0 1 7.390625,35.115234 c 6.897653,0.582772 14.792837,0.862764 21.443359,-0.103515 6.13364,-0.891195 11.594204,-2.853453 14.619141,-6.455078 A 20.000237,20.000237 0 0 1 42.59375,31.3125 c 0.138638,-0.332779 0.278623,-0.663295 0.398438,-1.025391 C 43.646425,28.309918 44,26.196572 44,24 44,12.954174 35.045826,4 24,4 Z m 18.59375,27.3125 c -0.0052,0.01251 -0.0084,0.02659 -0.01367,0.03906 6.95e-4,-5.65e-4 0.0013,-0.0014 0.002,-0.002 a 20.000237,20.000237 0 0 0 0.01172,-0.03711 z m -0.01367,0.03906 c -3.366442,2.738416 -8.35532,4.240932 -13.552734,4.996094 -6.441672,0.935922 -13.913233,0.729468 -20.5449221,0.210938 3.6937301,3.971212 9.5022581,2.417968 15.7656251,2.417968 8.431856,10e-7 15.411489,-0.672354 18.332031,-7.625 z M 8.4824219,36.558594 C 8.3693535,36.437031 8.2633509,36.294232 8.1542969,36.162109 a 20.000237,20.000237 0 0 0 0.2890625,0.394532 c 0.012679,9.94e-4 0.026377,9.61e-4 0.039063,0.002 z M 17.4375,5.5625 c 2.133782,3.7537513 3.977089,5.881941 6.25,10 0.226834,2.625076 1.15362,16.247204 1.25,17.5 -0.674699,-0.05516 -4.266313,-0.412979 -8.769531,-0.880859 -2.455162,-0.255067 -4.985591,-0.546499 -7.0390628,-0.839844 L 5.875,30.5625 c 3.68206,-6.505788 9.530771,-16.708616 11.5625,-25 z m 7.8125,10.625 c -2e-6,0 8.572991,6.746882 12.1875,15 -4.397649,2.168682 -8.452538,1.89 -10.9375,1.875 1.764785,-4.531585 1.762074,-10.670108 -1.25,-16.875 z m 5.9375,3.75 c 1.554725,0.427247 3.32167,0.967464 5,1.5625 3.043774,1.079143 5.871412,2.562787 7.5,4.0625 -0.931183,1.717045 -2.550489,3.769204 -5,5 0.26244,-2.569143 -0.671831,-5.04057 -2.5,-6.875 -1.349885,-1.354503 -3.13082,-2.497478 -5,-3.75 z"
|
||||
id="path4" />
|
||||
<path
|
||||
style="fill:#cccccc;fill-rule:evenodd"
|
||||
d="M 16.812656,2.7499995 C 13.803001,12.580993 9.354026,21.936745 4.312503,30.875346 L 4,31.500354 4.481746,31.748607 c 0.42292,0.196346 0.979684,0.328379 1.733418,0.479131 0.753737,0.150751 1.680914,0.301003 2.722811,0.449849 2.0838,0.297659 4.624493,0.588632 7.089319,0.844728 4.929656,0.512163 9.556999,0.885636 9.556999,0.885636 l 0.787362,0.06347 -0.06042,-0.787978 c 0,0 -1.220937,-15.884531 -1.448993,-18.494477 l -0.01221,-0.140994 -0.06837,-0.124513 C 23.336723,12.615968 17.724071,3.0217715 16.812656,2.7499995 Z m 0.625005,2.8125337 c 2.133782,3.7537513 3.977164,5.8820608 6.250075,10.0001198 0.226787,2.624442 1.119693,16.174828 1.216009,17.426814 -0.674247,-0.0551 -4.233755,-0.341444 -8.73729,-0.809323 C 13.711297,31.925046 11.182492,31.635449 9.129017,31.342103 8.102283,31.195445 7.193944,31.047255 6.480061,30.904472 6.127835,30.834032 6.120096,30.629217 5.875022,30.562843 9.557138,24.056965 15.406021,13.85397 17.437661,5.5625332 Z"
|
||||
id="path6" />
|
||||
<path
|
||||
style="fill:#cccccc;fill-rule:evenodd"
|
||||
d="m 27.478027,17.583426 v 0 c 3.14022,2.100471 5.811342,5.3405 7.754784,7.290588 1.943438,1.950093 2.854146,3.869181 2.115503,6.556463 l -0.344242,1.254297 1.223768,-0.440662 c 3.823634,-1.375766 5.640443,-4.041689 6.750397,-6.223085 l 0.312504,-0.625007 -0.625008,-0.625008 c -1.8635,-1.962438 -4.741897,-3.263167 -8.081588,-4.447224 -3.339692,-1.184055 -6.977027,-2.226959 -9.106118,-2.740362 z m 3.730076,2.484624 c 1.554206,0.427137 3.247357,0.93294 4.924987,1.527729 3.04398,1.079215 5.925893,2.46689 7.55441,3.966721 -0.931174,1.717179 -2.351285,3.697732 -4.801083,4.928653 0.262659,-2.569371 -0.869486,-4.734741 -2.697786,-6.569298 -1.349544,-1.354162 -3.111892,-2.601609 -4.980528,-3.853805 z"
|
||||
id="path8" />
|
||||
<circle
|
||||
style="fill:#cccccc;fill-opacity:0"
|
||||
cx="24.024"
|
||||
cy="23.976999"
|
||||
r="20.024"
|
||||
id="circle10" />
|
||||
<path
|
||||
style="fill:#cccccc"
|
||||
d="m 42.710938,30.572266 c -4.03814,2.864409 -8.807423,4.602678 -13.683594,5.351562 -6.796251,0.959012 -13.718897,0.720882 -20.5390628,0.199219 -0.050037,0.118205 -0.082655,0.233711 -0.1191406,0.349609 a 20.000237,20.000237 0 0 0 15.4335934,7.517578 c 0.172596,-5.61e-4 0.347999,0.0018 0.517578,-0.002 a 20.000237,20.000237 0 0 0 0.578126,-0.01953 c 0.273799,-0.01248 0.539697,-0.03127 0.802734,-0.05273 a 20.000237,20.000237 0 0 0 1.478516,-0.179688 c 0.0939,-0.01565 0.197559,-0.02586 0.289062,-0.04297 A 20.000237,20.000237 0 0 0 42.794922,30.763672 c -0.02981,-0.06384 -0.05123,-0.127387 -0.08398,-0.191406 z"
|
||||
id="path12" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="496"
|
||||
width="496"
|
||||
id="svg4"
|
||||
version="1.1"
|
||||
viewBox="0 0 496 496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<style
|
||||
id="style933">.cls-1{fill:#e9500e;}</style>
|
||||
</defs>
|
||||
<g
|
||||
id="g959"
|
||||
transform="matrix(0.61580374,0,0,0.61580374,12.468621,21.817361)">
|
||||
<circle
|
||||
class="cls-1"
|
||||
cx="109.02696"
|
||||
cy="348.09412"
|
||||
r="109.02696"
|
||||
id="circle937"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<ellipse
|
||||
class="cls-1"
|
||||
cx="563.08368"
|
||||
cy="109.02698"
|
||||
id="circle939"
|
||||
rx="109.02662"
|
||||
ry="109.02698"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 354.92039,628.68582 c -77.01891,-15.8253 -145.43904,-68.0075 -181.0712,-138.0982 -28.93817,13.2078 -61.94374,17.2648 -93.21911,11.4583 51.75695,133.1719 190.35352,224.9404 332.95672,222.1315 -21.33123,-25.4775 -29.54323,-61.4497 -33.6059,-91.347 -8.41211,-0.9891 -16.77785,-2.3728 -25.06051,-4.1446 z"
|
||||
id="path941"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<circle
|
||||
class="cls-1"
|
||||
cx="538.52045"
|
||||
cy="629.28723"
|
||||
r="109.02698"
|
||||
id="circle943"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 690.23645,589.24102 c 85.45532,-105.22585 101.63344,-261.1123 39.28817,-381.54731 -6.39094,-12.73675 -13.54502,-25.09063 -21.41334,-36.97169 -12.438,29.45803 -34.16446,54.90303 -61.30975,71.8031 44.28267,81.68487 40.82043,186.89167 -8.73688,265.4884 25.36982,20.67266 43.92291,49.5585 52.1718,81.2275 z"
|
||||
id="path945"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 100.61489,191.73908 c 31.72478,-1.7424 63.98682,6.52836 90.98772,23.31994 C 239.1057,145.42119 321.41819,101.39883 405.71083,100.54968 405.7585,68.81709 422.81019,34.82283 437.18034,12.00596 323.8486,3.01574 208.0489,52.71326 135.95771,140.54908 c -13.26,15.97642 -25.10697,33.12582 -35.34282,51.19 z"
|
||||
id="path947"
|
||||
style="fill:#cccccc;fill-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg12"
|
||||
version="1.1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata18">
|
||||
<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>
|
||||
<defs
|
||||
id="defs16" />
|
||||
<path
|
||||
id="rect4"
|
||||
d="M 42.867797,18.644068 C 30.199037,18.644068 20,28.843106 20,41.511865 V 453.1322 C 20,465.80096 30.199037,476 42.867797,476 H 454.48814 c 12.66875,0 22.86779,-10.19904 22.86779,-22.8678 V 327.35932 H 225.81017 V 18.644068 Z m 228.677963,0 V 304.49153 H 477.35593 V 41.511865 c 0,-12.668759 -10.19904,-22.867797 -22.86779,-22.867797 z"
|
||||
style="fill:#cccccc;stroke-width:11.43389797" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="496"
|
||||
width="496"
|
||||
id="svg4"
|
||||
version="1.1"
|
||||
viewBox="0 0 496 496"
|
||||
xml:space="preserve"
|
||||
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/"><metadata
|
||||
id="metadata10"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs8"><style
|
||||
id="style933">.cls-1{fill:#e9500e;}</style></defs><g
|
||||
style="fill:#cccccc;fill-opacity:1"
|
||||
id="g128"
|
||||
transform="matrix(0.63842458,0,0,0.63842458,10.630929,40.503173)"><path
|
||||
d="m 125,542 62.353,108 h 375.29 L 625,542 Z M 750,324.998 687.103,434 H 288 L 687.103,216 Z M 0,325.002 62.897,216 H 462 L 62.897,434 Z M 125,108 187.353,0 h 375.29 L 625,108 Z"
|
||||
id="path119"
|
||||
style="fill:#cccccc;fill-opacity:1" /></g></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="24" height="24" fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m18.492 2.33 3.179 3.179a2.25 2.25 0 0 1 0 3.182l-2.423 2.422A2.501 2.501 0 0 1 21 13.5v5a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 18.5v-13A2.5 2.5 0 0 1 5.5 3h5c1.121 0 2.07.737 2.387 1.754L15.31 2.33a2.25 2.25 0 0 1 3.182 0ZM11 13H5v5.5a.5.5 0 0 0 .5.5H11v-6Zm7.5 0H13v6h5.5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5Zm-4.06-2.001L13 9.559v1.44h1.44Zm-3.94-6h-5a.5.5 0 0 0-.5.5V11h6V5.5a.5.5 0 0 0-.5-.5Z" fill="#e5dff9"/></svg>
|
||||
|
After Width: | Height: | Size: 529 B |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<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>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<path
|
||||
id="path4"
|
||||
d="m 247.93344,17.871894 c -20.49358,50.233214 -32.85373,83.091376 -55.67015,131.826236 13.9889,14.826 31.1605,32.09056 59.04738,51.59003 -29.98068,-12.33447 -50.43052,-24.71727 -65.71321,-37.56731 -29.20024,60.91971 -74.95051,147.69601 -167.7909,314.47259 72.96954,-42.11649 123.77827,-68.0824 176.49709,-77.99095 -2.26368,-9.73362 -3.55081,-20.26245 -3.46331,-31.24816 l 0.0805,-2.33732 c 1.15775,-46.73933 31.74236,-84.002 60.03547,-84.06511 28.29312,-0.0633 55.80715,46.15485 54.64917,92.8942 -0.2175,8.79569 -1.21012,17.25536 -2.94362,25.10278 52.1433,10.19855 103.4958,36.09772 175.4777,77.64456 -14.1938,-26.12472 -26.86242,-49.67506 -38.96013,-72.10451 -19.05704,-14.7673 -38.93365,-33.98597 -79.47881,-54.79276 27.86845,7.23979 47.82218,15.59244 63.3754,24.92903 C 300.07316,147.25839 290.11644,116.83076 247.92986,17.860386 Z"
|
||||
style="fill:#e5e1e6;fill-rule:evenodd;stroke-width:11.50832653" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="50" height="51" viewBox="0 0 50 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.00157475 50H50C10.2358 50 0.145819 17.622 0.00157475 0.731939V50Z" fill="#1c1b1f"/>
|
||||
<path d="M0.00157475 0.731939C0.145819 17.622 10.2358 50 50 50H0.00157475V0.731939ZM0.00157475 0.731939V1.63913e-06C-0.000516981 0.240559 -0.000537669 0.484588 0.00157475 0.731939Z" stroke="#1c1b1f"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 400 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="51" height="51" viewBox="0 0 51 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M49.9984 50H0C39.7642 50 49.8542 17.622 49.9984 0.731939V50Z" fill="#1c1b1f"/>
|
||||
<path d="M49.9984 0.731939C49.8542 17.622 39.7642 50 0 50H49.9984V0.731939ZM49.9984 0.731939V1.63913e-06C50.0005 0.240559 50.0005 0.484588 49.9984 0.731939Z" stroke="#1c1b1f"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 368 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="50" height="51" viewBox="0 0 50 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.00157475 0H50C10.2358 0 0.145819 32.378 0.00157475 49.2681V0Z" fill="#1c1b1f"/>
|
||||
<path d="M0.00157475 49.2681C0.145819 32.378 10.2358 0 50 0H0.00157475V49.2681ZM0.00157475 49.2681V50C-0.000516981 49.7594 -0.000537669 49.5154 0.00157475 49.2681Z" stroke="#1c1b1f"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 379 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="51" height="51" viewBox="0 0 51 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M49.9984 0H0C39.7642 0 49.8542 32.378 49.9984 49.2681V0Z" fill="#1c1b1f"/>
|
||||
<path d="M49.9984 49.2681C49.8542 32.378 39.7642 0 0 0H49.9984V49.2681ZM49.9984 49.2681V50C50.0005 49.7594 50.0005 49.5154 49.9984 49.2681Z" stroke="#1c1b1f"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 347 B |
@@ -0,0 +1,25 @@
|
||||
<svg width="1920" height="40" viewBox="0 0 1920 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1_2)">
|
||||
<path d="M7 31.5002C7 33.4332 8.567 35.0002 10.5 35.0002V35.0002C12.433 35.0002 14 33.4332 14 31.5002V21.5002C14 19.5672 15.567 18.0002 17.5 18.0002V18.0002C19.433 18.0002 21 19.5672 21 21.5002V34.0002C21 35.9332 22.567 37.5002 24.5 37.5002V37.5002C26.433 37.5002 28 35.9332 28 34.0002V16.0002C28 14.0672 29.567 12.5002 31.5 12.5002V12.5002C33.433 12.5002 35 14.0672 35 16.0002V29.8336C35 31.7666 36.567 33.3336 38.5 33.3336V33.3336C40.433 33.3336 42 31.7666 42 29.8336V21.8335C42 19.9006 43.567 18.3335 45.5 18.3335V18.3335C47.433 18.3335 49 19.9006 49 21.8335V36.5002C49 38.4332 50.567 40.0002 52.5 40.0002V40.0002C54.433 40.0002 56 38.4332 56 36.5002V11.8336C56 9.90057 57.567 8.33357 59.5 8.33357V8.33357C61.433 8.33357 63 9.90057 63 11.8336V36.5002C63 38.4332 64.567 40.0002 66.5 40.0002V40.0002C68.433 40.0002 70 38.4332 70 36.5002V21.0002C70 19.0672 71.567 17.5002 73.5 17.5002V17.5002C75.433 17.5002 77 19.0672 77 21.0002V26.5002C77 28.4332 78.567 30.0002 80.5 30.0002V30.0002C82.433 30.0002 84 28.4332 84 26.5002V9.50023C84 7.56723 85.567 6.00023 87.5 6.00023V6.00023C89.433 6.00023 91 7.56723 91 9.50023V21.519C91 23.4416 92.5586 25.0002 94.4812 25.0002V25.0002C96.4185 25.0002 97.983 23.4188 97.9623 21.4817L97.9133 16.915C97.8922 14.9433 99.4847 13.3336 101.457 13.3336V13.3336C103.414 13.3336 105 14.92 105 16.877V31.5002C105 33.4332 106.567 35.0002 108.5 35.0002V35.0002C110.433 35.0002 112 33.4332 112 31.5002V12.6669C112 10.7339 113.567 9.16688 115.5 9.16688V9.16688C117.433 9.16688 119 10.7339 119 12.6669V27.3336C119 29.2666 120.567 30.8336 122.5 30.8336V30.8336C124.433 30.8336 126 29.2666 126 27.3336V16.5002C126 14.5672 127.567 13.0002 129.5 13.0002V13.0002C131.433 13.0002 133 11.4332 133 9.50023V0.000228882H0V9.50023C0 11.4332 1.567 13.0002 3.5 13.0002V13.0002C5.433 13.0002 7 14.5672 7 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M133 31.5002C133 33.4332 134.567 35.0002 136.5 35.0002C138.433 35.0002 140 33.4332 140 31.5002V21.5002C140 19.5672 141.567 18.0002 143.5 18.0002C145.433 18.0002 147 19.5672 147 21.5002V34.0002C147 35.9332 148.567 37.5002 150.5 37.5002C152.433 37.5002 154 35.9332 154 34.0002V16.0002C154 14.0672 155.567 12.5002 157.5 12.5002C159.433 12.5002 161 14.0672 161 16.0002V29.8336C161 31.7666 162.567 33.3336 164.5 33.3336C166.433 33.3336 168 31.7666 168 29.8336V21.8336C168 19.9006 169.567 18.3335 171.5 18.3335C173.433 18.3335 175 19.9006 175 21.8336V36.5003C175 38.4332 176.567 40.0002 178.5 40.0002C180.433 40.0002 182 38.4332 182 36.5002V11.8336C182 9.90057 183.567 8.33357 185.5 8.33357C187.433 8.33357 189 9.90057 189 11.8336V36.5002C189 38.4332 190.567 40.0002 192.5 40.0002C194.433 40.0002 196 38.4332 196 36.5002V21.0002C196 19.0672 197.567 17.5002 199.5 17.5002C201.433 17.5002 203 19.0672 203 21.0002V26.5002C203 28.4332 204.567 30.0002 206.5 30.0002C208.433 30.0002 210 28.4332 210 26.5002V9.50023C210 7.56723 211.567 6.00023 213.5 6.00023C215.433 6.00023 217 7.56723 217 9.50023V21.519C217 23.4416 218.559 25.0002 220.481 25.0002C222.418 25.0002 223.983 23.4188 223.962 21.4817L223.913 16.915C223.892 14.9433 225.485 13.3336 227.457 13.3336C229.414 13.3336 231 14.92 231 16.877V31.5002C231 33.4332 232.567 35.0002 234.5 35.0002C236.433 35.0002 238 33.4332 238 31.5002V12.6669C238 10.7339 239.567 9.16688 241.5 9.16688C243.433 9.16688 245 10.7339 245 12.6669V27.3336C245 29.2666 246.567 30.8336 248.5 30.8336C250.433 30.8336 252 29.2666 252 27.3336V16.5002C252 14.5672 253.567 13.0002 255.5 13.0002C257.433 13.0002 259 11.4332 259 9.50023V0.000228882H126V9.50023C126 11.4332 127.567 13.0002 129.5 13.0002C131.433 13.0002 133 14.5672 133 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M259 31.5002C259 33.4332 260.567 35.0002 262.5 35.0002C264.433 35.0002 266 33.4332 266 31.5002V21.5002C266 19.5672 267.567 18.0002 269.5 18.0002C271.433 18.0002 273 19.5672 273 21.5002V34.0002C273 35.9332 274.567 37.5002 276.5 37.5002C278.433 37.5002 280 35.9332 280 34.0002V16.0002C280 14.0672 281.567 12.5002 283.5 12.5002C285.433 12.5002 287 14.0672 287 16.0002V29.8335C287 31.7665 288.567 33.3335 290.5 33.3335C292.433 33.3335 294 31.7665 294 29.8335V21.8335C294 19.9005 295.567 18.3335 297.5 18.3335C299.433 18.3335 301 19.9005 301 21.8335V36.5002C301 38.4332 302.567 40.0002 304.5 40.0002C306.433 40.0002 308 38.4332 308 36.5002V11.8335C308 9.90054 309.567 8.33354 311.5 8.33354C313.433 8.33354 315 9.90054 315 11.8335V36.5002C315 38.4332 316.567 40.0002 318.5 40.0002C320.433 40.0002 322 38.4332 322 36.5002V21.0002C322 19.0672 323.567 17.5002 325.5 17.5002C327.433 17.5002 329 19.0672 329 21.0002V26.5002C329 28.4332 330.567 30.0002 332.5 30.0002C334.433 30.0002 336 28.4332 336 26.5002V9.5002C336 7.5672 337.567 6.0002 339.5 6.0002C341.433 6.0002 343 7.5672 343 9.5002V21.519C343 23.4416 344.559 25.0002 346.481 25.0002C348.418 25.0002 349.983 23.4188 349.962 21.4816L349.913 16.915C349.892 14.9432 351.485 13.3335 353.457 13.3335C355.414 13.3335 357 14.92 357 16.877V31.5002C357 33.4332 358.567 35.0002 360.5 35.0002C362.433 35.0002 364 33.4332 364 31.5002V12.6669C364 10.7339 365.567 9.16688 367.5 9.16688C369.433 9.16688 371 10.7339 371 12.6669V27.3335C371 29.2665 372.567 30.8335 374.5 30.8335C376.433 30.8335 378 29.2665 378 27.3335V16.5002C378 14.5672 379.567 13.0002 381.5 13.0002C383.433 13.0002 385 11.4332 385 9.5002V0.000198364H252V9.5002C252 11.4332 253.567 13.0002 255.5 13.0002C257.433 13.0002 259 14.5672 259 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M385 31.5002C385 33.4332 386.567 35.0002 388.5 35.0002C390.433 35.0002 392 33.4332 392 31.5002V21.5002C392 19.5672 393.567 18.0002 395.5 18.0002C397.433 18.0002 399 19.5672 399 21.5002V34.0002C399 35.9332 400.567 37.5002 402.5 37.5002C404.433 37.5002 406 35.9332 406 34.0002V16.0002C406 14.0672 407.567 12.5002 409.5 12.5002C411.433 12.5002 413 14.0672 413 16.0002V29.8335C413 31.7665 414.567 33.3335 416.5 33.3335C418.433 33.3335 420 31.7665 420 29.8335V21.8335C420 19.9005 421.567 18.3335 423.5 18.3335C425.433 18.3335 427 19.9005 427 21.8335V36.5002C427 38.4332 428.567 40.0002 430.5 40.0002C432.433 40.0002 434 38.4332 434 36.5002V11.8335C434 9.90054 435.567 8.33354 437.5 8.33354C439.433 8.33354 441 9.90054 441 11.8335V36.5002C441 38.4332 442.567 40.0002 444.5 40.0002C446.433 40.0002 448 38.4332 448 36.5002V21.0002C448 19.0672 449.567 17.5002 451.5 17.5002C453.433 17.5002 455 19.0672 455 21.0002V26.5002C455 28.4332 456.567 30.0002 458.5 30.0002C460.433 30.0002 462 28.4332 462 26.5002V9.5002C462 7.5672 463.567 6.0002 465.5 6.0002C467.433 6.0002 469 7.5672 469 9.5002V21.519C469 23.4416 470.559 25.0002 472.481 25.0002C474.418 25.0002 475.983 23.4188 475.962 21.4816L475.913 16.915C475.892 14.9432 477.485 13.3335 479.457 13.3335C481.414 13.3335 483 14.92 483 16.877V31.5002C483 33.4332 484.567 35.0002 486.5 35.0002C488.433 35.0002 490 33.4332 490 31.5002V12.6669C490 10.7339 491.567 9.16688 493.5 9.16688C495.433 9.16688 497 10.7339 497 12.6669V27.3335C497 29.2665 498.567 30.8335 500.5 30.8335C502.433 30.8335 504 29.2665 504 27.3335V16.5002C504 14.5672 505.567 13.0002 507.5 13.0002C509.433 13.0002 511 11.4332 511 9.5002V0.000198364H378V9.5002C378 11.4332 379.567 13.0002 381.5 13.0002C383.433 13.0002 385 14.5672 385 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M511 31.5002C511 33.4332 512.567 35.0002 514.5 35.0002C516.433 35.0002 518 33.4332 518 31.5002V21.5002C518 19.5672 519.567 18.0002 521.5 18.0002C523.433 18.0002 525 19.5672 525 21.5002V34.0002C525 35.9332 526.567 37.5002 528.5 37.5002C530.433 37.5002 532 35.9332 532 34.0002V16.0002C532 14.0672 533.567 12.5002 535.5 12.5002C537.433 12.5002 539 14.0672 539 16.0002V29.8335C539 31.7665 540.567 33.3335 542.5 33.3335C544.433 33.3335 546 31.7665 546 29.8335V21.8335C546 19.9005 547.567 18.3335 549.5 18.3335C551.433 18.3335 553 19.9005 553 21.8335V36.5002C553 38.4332 554.567 40.0002 556.5 40.0002C558.433 40.0002 560 38.4332 560 36.5002V11.8335C560 9.90052 561.567 8.33352 563.5 8.33352C565.433 8.33352 567 9.90052 567 11.8335V36.5002C567 38.4332 568.567 40.0002 570.5 40.0002C572.433 40.0002 574 38.4332 574 36.5002V21.0002C574 19.0672 575.567 17.5002 577.5 17.5002C579.433 17.5002 581 19.0672 581 21.0002V26.5002C581 28.4332 582.567 30.0002 584.5 30.0002C586.433 30.0002 588 28.4332 588 26.5002V9.50018C588 7.56718 589.567 6.00018 591.5 6.00018C593.433 6.00018 595 7.56718 595 9.50018V21.519C595 23.4416 596.559 25.0002 598.481 25.0002C600.418 25.0002 601.983 23.4188 601.962 21.4817L601.913 16.9149C601.892 14.9432 603.485 13.3335 605.457 13.3335C607.414 13.3335 609 14.92 609 16.877V31.5002C609 33.4332 610.567 35.0002 612.5 35.0002C614.433 35.0002 616 33.4332 616 31.5002V12.6669C616 10.7339 617.567 9.16685 619.5 9.16685C621.433 9.16685 623 10.7339 623 12.6669V27.3335C623 29.2665 624.567 30.8335 626.5 30.8335C628.433 30.8335 630 29.2665 630 27.3335V16.5002C630 14.5672 631.567 13.0002 633.5 13.0002C635.433 13.0002 637 11.4332 637 9.50018V0.000183105H504V9.50018C504 11.4332 505.567 13.0002 507.5 13.0002C509.433 13.0002 511 14.5672 511 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M637 31.5002C637 33.4332 638.567 35.0002 640.5 35.0002C642.433 35.0002 644 33.4332 644 31.5002V21.5002C644 19.5672 645.567 18.0002 647.5 18.0002C649.433 18.0002 651 19.5672 651 21.5002V34.0002C651 35.9332 652.567 37.5002 654.5 37.5002C656.433 37.5002 658 35.9332 658 34.0002V16.0002C658 14.0672 659.567 12.5002 661.5 12.5002C663.433 12.5002 665 14.0672 665 16.0002V29.8335C665 31.7665 666.567 33.3335 668.5 33.3335C670.433 33.3335 672 31.7665 672 29.8335V21.8335C672 19.9005 673.567 18.3335 675.5 18.3335C677.433 18.3335 679 19.9005 679 21.8335V36.5002C679 38.4332 680.567 40.0002 682.5 40.0002C684.433 40.0002 686 38.4332 686 36.5002V11.8335C686 9.90052 687.567 8.33352 689.5 8.33352C691.433 8.33352 693 9.90052 693 11.8335V36.5002C693 38.4332 694.567 40.0002 696.5 40.0002C698.433 40.0002 700 38.4332 700 36.5002V21.0002C700 19.0672 701.567 17.5002 703.5 17.5002C705.433 17.5002 707 19.0672 707 21.0002V26.5002C707 28.4332 708.567 30.0002 710.5 30.0002C712.433 30.0002 714 28.4332 714 26.5002V9.50018C714 7.56718 715.567 6.00018 717.5 6.00018C719.433 6.00018 721 7.56718 721 9.50018V21.519C721 23.4416 722.559 25.0002 724.481 25.0002C726.418 25.0002 727.983 23.4188 727.962 21.4816L727.913 16.9149C727.892 14.9432 729.485 13.3335 731.457 13.3335C733.414 13.3335 735 14.92 735 16.877V31.5002C735 33.4332 736.567 35.0002 738.5 35.0002C740.433 35.0002 742 33.4332 742 31.5002V12.6669C742 10.7339 743.567 9.16685 745.5 9.16685C747.433 9.16685 749 10.7339 749 12.6669V27.3335C749 29.2665 750.567 30.8335 752.5 30.8335C754.433 30.8335 756 29.2665 756 27.3335V16.5002C756 14.5672 757.567 13.0002 759.5 13.0002C761.433 13.0002 763 11.4332 763 9.50018V0.000183105H630V9.50018C630 11.4332 631.567 13.0002 633.5 13.0002C635.433 13.0002 637 14.5672 637 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M763 31.5002C763 33.4332 764.567 35.0002 766.5 35.0002C768.433 35.0002 770 33.4332 770 31.5002V21.5002C770 19.5672 771.567 18.0002 773.5 18.0002C775.433 18.0002 777 19.5672 777 21.5002V34.0002C777 35.9332 778.567 37.5002 780.5 37.5002C782.433 37.5002 784 35.9332 784 34.0002V16.0002C784 14.0672 785.567 12.5002 787.5 12.5002C789.433 12.5002 791 14.0672 791 16.0002V29.8335C791 31.7665 792.567 33.3335 794.5 33.3335C796.433 33.3335 798 31.7665 798 29.8335V21.8335C798 19.9005 799.567 18.3335 801.5 18.3335C803.433 18.3335 805 19.9005 805 21.8335V36.5002C805 38.4332 806.567 40.0002 808.5 40.0002C810.433 40.0002 812 38.4332 812 36.5002V11.8335C812 9.9005 813.567 8.33349 815.5 8.33349C817.433 8.33349 819 9.9005 819 11.8335V36.5002C819 38.4332 820.567 40.0002 822.5 40.0002C824.433 40.0002 826 38.4332 826 36.5002V21.0002C826 19.0672 827.567 17.5002 829.5 17.5002C831.433 17.5002 833 19.0672 833 21.0002V26.5002C833 28.4332 834.567 30.0002 836.5 30.0002C838.433 30.0002 840 28.4332 840 26.5002V9.50016C840 7.56716 841.567 6.00016 843.5 6.00016C845.433 6.00016 847 7.56716 847 9.50016V21.5189C847 23.4416 848.559 25.0002 850.481 25.0002C852.418 25.0002 853.983 23.4187 853.962 21.4816L853.913 16.9149C853.892 14.9432 855.485 13.3335 857.457 13.3335C859.414 13.3335 861 14.9199 861 16.8769V31.5002C861 33.4332 862.567 35.0002 864.5 35.0002C866.433 35.0002 868 33.4332 868 31.5002V12.6668C868 10.7338 869.567 9.16682 871.5 9.16682C873.433 9.16682 875 10.7338 875 12.6668V27.3335C875 29.2665 876.567 30.8335 878.5 30.8335C880.433 30.8335 882 29.2665 882 27.3335V16.5002C882 14.5672 883.567 13.0002 885.5 13.0002C887.433 13.0002 889 11.4332 889 9.50016V0.000160217H756V9.50016C756 11.4332 757.567 13.0002 759.5 13.0002C761.433 13.0002 763 14.5672 763 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M889 31.5002C889 33.4332 890.567 35.0002 892.5 35.0002C894.433 35.0002 896 33.4332 896 31.5002V21.5002C896 19.5672 897.567 18.0002 899.5 18.0002C901.433 18.0002 903 19.5672 903 21.5002V34.0002C903 35.9332 904.567 37.5002 906.5 37.5002C908.433 37.5002 910 35.9332 910 34.0002V16.0002C910 14.0672 911.567 12.5002 913.5 12.5002C915.433 12.5002 917 14.0672 917 16.0002V29.8335C917 31.7665 918.567 33.3335 920.5 33.3335C922.433 33.3335 924 31.7665 924 29.8335V21.8335C924 19.9005 925.567 18.3335 927.5 18.3335C929.433 18.3335 931 19.9005 931 21.8335V36.5002C931 38.4332 932.567 40.0002 934.5 40.0002C936.433 40.0002 938 38.4332 938 36.5002V11.8335C938 9.9005 939.567 8.33349 941.5 8.33349C943.433 8.33349 945 9.9005 945 11.8335V36.5002C945 38.4332 946.567 40.0002 948.5 40.0002C950.433 40.0002 952 38.4332 952 36.5002V21.0002C952 19.0672 953.567 17.5002 955.5 17.5002C957.433 17.5002 959 19.0672 959 21.0002V26.5002C959 28.4332 960.567 30.0002 962.5 30.0002C964.433 30.0002 966 28.4332 966 26.5002V9.50016C966 7.56716 967.567 6.00016 969.5 6.00016C971.433 6.00016 973 7.56716 973 9.50016V21.5189C973 23.4416 974.559 25.0002 976.481 25.0002C978.418 25.0002 979.983 23.4187 979.962 21.4816L979.913 16.9149C979.892 14.9432 981.485 13.3335 983.457 13.3335C985.414 13.3335 987 14.9199 987 16.8769V31.5002C987 33.4332 988.567 35.0002 990.5 35.0002C992.433 35.0002 994 33.4332 994 31.5002V12.6668C994 10.7338 995.567 9.16682 997.5 9.16682C999.433 9.16682 1001 10.7338 1001 12.6668V27.3335C1001 29.2665 1002.57 30.8335 1004.5 30.8335C1006.43 30.8335 1008 29.2665 1008 27.3335V16.5002C1008 14.5672 1009.57 13.0002 1011.5 13.0002C1013.43 13.0002 1015 11.4332 1015 9.50016V0.000160217H882V9.50016C882 11.4332 883.567 13.0002 885.5 13.0002C887.433 13.0002 889 14.5672 889 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M1015 31.5001C1015 33.4331 1016.57 35.0001 1018.5 35.0001C1020.43 35.0001 1022 33.4331 1022 31.5001V21.5001C1022 19.5671 1023.57 18.0001 1025.5 18.0001C1027.43 18.0001 1029 19.5671 1029 21.5001V34.0001C1029 35.9331 1030.57 37.5001 1032.5 37.5001C1034.43 37.5001 1036 35.9331 1036 34.0001V16.0001C1036 14.0671 1037.57 12.5001 1039.5 12.5001C1041.43 12.5001 1043 14.0671 1043 16.0001V29.8335C1043 31.7665 1044.57 33.3335 1046.5 33.3335C1048.43 33.3335 1050 31.7665 1050 29.8335V21.8335C1050 19.9005 1051.57 18.3334 1053.5 18.3334C1055.43 18.3334 1057 19.9005 1057 21.8335V36.5001C1057 38.4331 1058.57 40.0001 1060.5 40.0001C1062.43 40.0001 1064 38.4331 1064 36.5001V11.8334C1064 9.90044 1065.57 8.33344 1067.5 8.33344C1069.43 8.33344 1071 9.90044 1071 11.8334V36.5001C1071 38.4331 1072.57 40.0001 1074.5 40.0001C1076.43 40.0001 1078 38.4331 1078 36.5001V21.0001C1078 19.0671 1079.57 17.5001 1081.5 17.5001C1083.43 17.5001 1085 19.0671 1085 21.0001V26.5001C1085 28.4331 1086.57 30.0001 1088.5 30.0001C1090.43 30.0001 1092 28.4331 1092 26.5001V9.5001C1092 7.56711 1093.57 6.00011 1095.5 6.00011C1097.43 6.00011 1099 7.56711 1099 9.5001V21.5189C1099 23.4415 1100.56 25.0001 1102.48 25.0001C1104.42 25.0001 1105.98 23.4187 1105.96 21.4816L1105.91 16.9149C1105.89 14.9431 1107.48 13.3334 1109.46 13.3334C1111.41 13.3334 1113 14.9199 1113 16.8769V31.5001C1113 33.4331 1114.57 35.0001 1116.5 35.0001C1118.43 35.0001 1120 33.4331 1120 31.5001V12.6668C1120 10.7338 1121.57 9.16678 1123.5 9.16678C1125.43 9.16678 1127 10.7338 1127 12.6668V27.3335C1127 29.2665 1128.57 30.8335 1130.5 30.8335C1132.43 30.8335 1134 29.2665 1134 27.3335V16.5001C1134 14.5671 1135.57 13.0001 1137.5 13.0001C1139.43 13.0001 1141 11.4331 1141 9.5001V0.000106812H1008V9.5001C1008 11.4331 1009.57 13.0002 1011.5 13.0002C1013.43 13.0002 1015 14.5671 1015 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1141 31.5001C1141 33.4331 1142.57 35.0001 1144.5 35.0001C1146.43 35.0001 1148 33.4331 1148 31.5001V21.5001C1148 19.5671 1149.57 18.0001 1151.5 18.0001C1153.43 18.0001 1155 19.5671 1155 21.5001V34.0001C1155 35.9331 1156.57 37.5001 1158.5 37.5001C1160.43 37.5001 1162 35.9331 1162 34.0001V16.0001C1162 14.0671 1163.57 12.5001 1165.5 12.5001C1167.43 12.5001 1169 14.0671 1169 16.0001V29.8335C1169 31.7665 1170.57 33.3335 1172.5 33.3335C1174.43 33.3335 1176 31.7665 1176 29.8335V21.8335C1176 19.9005 1177.57 18.3334 1179.5 18.3334C1181.43 18.3334 1183 19.9005 1183 21.8335V36.5001C1183 38.4331 1184.57 40.0001 1186.5 40.0001C1188.43 40.0001 1190 38.4331 1190 36.5001V11.8334C1190 9.90044 1191.57 8.33344 1193.5 8.33344C1195.43 8.33344 1197 9.90044 1197 11.8334V36.5001C1197 38.4331 1198.57 40.0001 1200.5 40.0001C1202.43 40.0001 1204 38.4331 1204 36.5001V21.0001C1204 19.0671 1205.57 17.5001 1207.5 17.5001C1209.43 17.5001 1211 19.0671 1211 21.0001V26.5001C1211 28.4331 1212.57 30.0001 1214.5 30.0001C1216.43 30.0001 1218 28.4331 1218 26.5001V9.5001C1218 7.56711 1219.57 6.00011 1221.5 6.00011C1223.43 6.00011 1225 7.56711 1225 9.5001V21.5189C1225 23.4415 1226.56 25.0001 1228.48 25.0001C1230.42 25.0001 1231.98 23.4187 1231.96 21.4816L1231.91 16.9149C1231.89 14.9431 1233.48 13.3334 1235.46 13.3334C1237.41 13.3334 1239 14.9199 1239 16.8769V31.5001C1239 33.4331 1240.57 35.0001 1242.5 35.0001C1244.43 35.0001 1246 33.4331 1246 31.5001V12.6668C1246 10.7338 1247.57 9.16678 1249.5 9.16678C1251.43 9.16678 1253 10.7338 1253 12.6668V27.3335C1253 29.2665 1254.57 30.8335 1256.5 30.8335C1258.43 30.8335 1260 29.2665 1260 27.3335V16.5001C1260 14.5671 1261.57 13.0001 1263.5 13.0001C1265.43 13.0001 1267 11.4331 1267 9.5001V0.000106812H1134V9.5001C1134 11.4331 1135.57 13.0001 1137.5 13.0001C1139.43 13.0001 1141 14.5671 1141 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1267 31.5001C1267 33.4331 1268.57 35.0001 1270.5 35.0001C1272.43 35.0001 1274 33.4331 1274 31.5001V21.5001C1274 19.5671 1275.57 18.0001 1277.5 18.0001C1279.43 18.0001 1281 19.5671 1281 21.5001V34.0001C1281 35.9331 1282.57 37.5001 1284.5 37.5001C1286.43 37.5001 1288 35.9331 1288 34.0001V16.0001C1288 14.0671 1289.57 12.5001 1291.5 12.5001C1293.43 12.5001 1295 14.0671 1295 16.0001V29.8334C1295 31.7664 1296.57 33.3334 1298.5 33.3334C1300.43 33.3334 1302 31.7664 1302 29.8334V21.8334C1302 19.9004 1303.57 18.3334 1305.5 18.3334C1307.43 18.3334 1309 19.9004 1309 21.8334V36.5001C1309 38.4331 1310.57 40.0001 1312.5 40.0001C1314.43 40.0001 1316 38.4331 1316 36.5001V11.8334C1316 9.90042 1317.57 8.33342 1319.5 8.33342C1321.43 8.33342 1323 9.90042 1323 11.8334V36.5001C1323 38.4331 1324.57 40.0001 1326.5 40.0001C1328.43 40.0001 1330 38.4331 1330 36.5001V21.0001C1330 19.0671 1331.57 17.5001 1333.5 17.5001C1335.43 17.5001 1337 19.0671 1337 21.0001V26.5001C1337 28.4331 1338.57 30.0001 1340.5 30.0001C1342.43 30.0001 1344 28.4331 1344 26.5001V9.50008C1344 7.56709 1345.57 6.00008 1347.5 6.00008C1349.43 6.00008 1351 7.56709 1351 9.50008V21.5189C1351 23.4415 1352.56 25.0001 1354.48 25.0001C1356.42 25.0001 1357.98 23.4187 1357.96 21.4815L1357.91 16.9148C1357.89 14.9431 1359.48 13.3334 1361.46 13.3334C1363.41 13.3334 1365 14.9199 1365 16.8769V31.5001C1365 33.4331 1366.57 35.0001 1368.5 35.0001C1370.43 35.0001 1372 33.4331 1372 31.5001V12.6668C1372 10.7338 1373.57 9.16675 1375.5 9.16675C1377.43 9.16675 1379 10.7337 1379 12.6667V27.3334C1379 29.2664 1380.57 30.8334 1382.5 30.8334C1384.43 30.8334 1386 29.2664 1386 27.3334V16.5001C1386 14.5671 1387.57 13.0001 1389.5 13.0001C1391.43 13.0001 1393 11.4331 1393 9.50008V8.39233e-05H1260V9.50008C1260 11.4331 1261.57 13.0001 1263.5 13.0001C1265.43 13.0001 1267 14.5671 1267 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1393 31.5001C1393 33.4331 1394.57 35.0001 1396.5 35.0001C1398.43 35.0001 1400 33.4331 1400 31.5001V21.5001C1400 19.5671 1401.57 18.0001 1403.5 18.0001C1405.43 18.0001 1407 19.5671 1407 21.5001V34.0001C1407 35.9331 1408.57 37.5001 1410.5 37.5001C1412.43 37.5001 1414 35.9331 1414 34.0001V16.0001C1414 14.0671 1415.57 12.5001 1417.5 12.5001C1419.43 12.5001 1421 14.0671 1421 16.0001V29.8334C1421 31.7664 1422.57 33.3334 1424.5 33.3334C1426.43 33.3334 1428 31.7664 1428 29.8334V21.8334C1428 19.9004 1429.57 18.3334 1431.5 18.3334C1433.43 18.3334 1435 19.9004 1435 21.8334V36.5001C1435 38.4331 1436.57 40.0001 1438.5 40.0001C1440.43 40.0001 1442 38.4331 1442 36.5001V11.8334C1442 9.90042 1443.57 8.33342 1445.5 8.33342C1447.43 8.33342 1449 9.90042 1449 11.8334V36.5001C1449 38.4331 1450.57 40.0001 1452.5 40.0001C1454.43 40.0001 1456 38.4331 1456 36.5001V21.0001C1456 19.0671 1457.57 17.5001 1459.5 17.5001C1461.43 17.5001 1463 19.0671 1463 21.0001V26.5001C1463 28.4331 1464.57 30.0001 1466.5 30.0001C1468.43 30.0001 1470 28.4331 1470 26.5001V9.50008C1470 7.56709 1471.57 6.00008 1473.5 6.00008C1475.43 6.00008 1477 7.56709 1477 9.50008V21.5189C1477 23.4415 1478.56 25.0001 1480.48 25.0001C1482.42 25.0001 1483.98 23.4187 1483.96 21.4815L1483.91 16.9148C1483.89 14.9431 1485.48 13.3334 1487.46 13.3334C1489.41 13.3334 1491 14.9199 1491 16.8769V31.5001C1491 33.4331 1492.57 35.0001 1494.5 35.0001C1496.43 35.0001 1498 33.4331 1498 31.5001V12.6668C1498 10.7338 1499.57 9.16675 1501.5 9.16675C1503.43 9.16675 1505 10.7337 1505 12.6667V27.3334C1505 29.2664 1506.57 30.8334 1508.5 30.8334C1510.43 30.8334 1512 29.2664 1512 27.3334V16.5001C1512 14.5671 1513.57 13.0001 1515.5 13.0001C1517.43 13.0001 1519 11.4331 1519 9.50008V8.39233e-05H1386V9.50008C1386 11.4331 1387.57 13.0001 1389.5 13.0001C1391.43 13.0001 1393 14.5671 1393 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1519 31.5001C1519 33.4331 1520.57 35.0001 1522.5 35.0001C1524.43 35.0001 1526 33.4331 1526 31.5001V21.5001C1526 19.5671 1527.57 18.0001 1529.5 18.0001C1531.43 18.0001 1533 19.5671 1533 21.5001V34.0001C1533 35.9331 1534.57 37.5001 1536.5 37.5001C1538.43 37.5001 1540 35.9331 1540 34.0001V16.0001C1540 14.0671 1541.57 12.5001 1543.5 12.5001C1545.43 12.5001 1547 14.0671 1547 16.0001V29.8334C1547 31.7664 1548.57 33.3334 1550.5 33.3334C1552.43 33.3334 1554 31.7664 1554 29.8334V21.8334C1554 19.9004 1555.57 18.3334 1557.5 18.3334C1559.43 18.3334 1561 19.9004 1561 21.8334V36.5001C1561 38.4331 1562.57 40.0001 1564.5 40.0001C1566.43 40.0001 1568 38.4331 1568 36.5001V11.8334C1568 9.90042 1569.57 8.33343 1571.5 8.33343C1573.43 8.33343 1575 9.90043 1575 11.8334V36.5001C1575 38.4331 1576.57 40.0001 1578.5 40.0001C1580.43 40.0001 1582 38.4331 1582 36.5001V21.0001C1582 19.0671 1583.57 17.5001 1585.5 17.5001C1587.43 17.5001 1589 19.0671 1589 21.0001V26.5001C1589 28.4331 1590.57 30.0001 1592.5 30.0001C1594.43 30.0001 1596 28.4331 1596 26.5001V9.50009C1596 7.56709 1597.57 6.00009 1599.5 6.00009C1601.43 6.00009 1603 7.56709 1603 9.50009V21.5189C1603 23.4415 1604.56 25.0001 1606.48 25.0001C1608.42 25.0001 1609.98 23.4187 1609.96 21.4815L1609.91 16.9148C1609.89 14.9431 1611.48 13.3334 1613.46 13.3334C1615.41 13.3334 1617 14.9199 1617 16.8769V31.5001C1617 33.4331 1618.57 35.0001 1620.5 35.0001C1622.43 35.0001 1624 33.4331 1624 31.5001V12.6668C1624 10.7338 1625.57 9.16675 1627.5 9.16675C1629.43 9.16675 1631 10.7338 1631 12.6668V27.3334C1631 29.2664 1632.57 30.8334 1634.5 30.8334C1636.43 30.8334 1638 29.2664 1638 27.3334V16.5001C1638 14.5671 1639.57 13.0001 1641.5 13.0001C1643.43 13.0001 1645 11.4331 1645 9.50009V9.15527e-05H1512V9.50009C1512 11.4331 1513.57 13.0001 1515.5 13.0001C1517.43 13.0001 1519 14.5671 1519 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1645 31.5001C1645 33.4331 1646.57 35.0001 1648.5 35.0001C1650.43 35.0001 1652 33.4331 1652 31.5001V21.5001C1652 19.5671 1653.57 18.0001 1655.5 18.0001C1657.43 18.0001 1659 19.5671 1659 21.5001V34.0001C1659 35.9331 1660.57 37.5001 1662.5 37.5001C1664.43 37.5001 1666 35.9331 1666 34.0001V16.0001C1666 14.0671 1667.57 12.5001 1669.5 12.5001C1671.43 12.5001 1673 14.0671 1673 16.0001V29.8334C1673 31.7664 1674.57 33.3334 1676.5 33.3334C1678.43 33.3334 1680 31.7664 1680 29.8334V21.8334C1680 19.9004 1681.57 18.3334 1683.5 18.3334C1685.43 18.3334 1687 19.9004 1687 21.8334V36.5001C1687 38.4331 1688.57 40.0001 1690.5 40.0001C1692.43 40.0001 1694 38.4331 1694 36.5001V11.8334C1694 9.90042 1695.57 8.33343 1697.5 8.33343C1699.43 8.33343 1701 9.90043 1701 11.8334V36.5001C1701 38.4331 1702.57 40.0001 1704.5 40.0001C1706.43 40.0001 1708 38.4331 1708 36.5001V21.0001C1708 19.0671 1709.57 17.5001 1711.5 17.5001C1713.43 17.5001 1715 19.0671 1715 21.0001V26.5001C1715 28.4331 1716.57 30.0001 1718.5 30.0001C1720.43 30.0001 1722 28.4331 1722 26.5001V9.50009C1722 7.56709 1723.57 6.00009 1725.5 6.00009C1727.43 6.00009 1729 7.56709 1729 9.50009V21.5189C1729 23.4415 1730.56 25.0001 1732.48 25.0001C1734.42 25.0001 1735.98 23.4187 1735.96 21.4815L1735.91 16.9148C1735.89 14.9431 1737.48 13.3334 1739.46 13.3334C1741.41 13.3334 1743 14.9199 1743 16.8769V31.5001C1743 33.4331 1744.57 35.0001 1746.5 35.0001C1748.43 35.0001 1750 33.4331 1750 31.5001V12.6668C1750 10.7338 1751.57 9.16675 1753.5 9.16675C1755.43 9.16675 1757 10.7338 1757 12.6668V27.3334C1757 29.2664 1758.57 30.8334 1760.5 30.8334C1762.43 30.8334 1764 29.2664 1764 27.3334V16.5001C1764 14.5671 1765.57 13.0001 1767.5 13.0001C1769.43 13.0001 1771 11.4331 1771 9.50009V9.15527e-05H1638V9.50009C1638 11.4331 1639.57 13.0001 1641.5 13.0001C1643.43 13.0001 1645 14.5671 1645 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1771 31.5001C1771 33.4331 1772.57 35.0001 1774.5 35.0001C1776.43 35.0001 1778 33.4331 1778 31.5001V21.5001C1778 19.5671 1779.57 18.0001 1781.5 18.0001C1783.43 18.0001 1785 19.5671 1785 21.5001V34.0001C1785 35.9331 1786.57 37.5001 1788.5 37.5001C1790.43 37.5001 1792 35.9331 1792 34.0001V16.0001C1792 14.0671 1793.57 12.5001 1795.5 12.5001C1797.43 12.5001 1799 14.0671 1799 16.0001V29.8335C1799 31.7665 1800.57 33.3335 1802.5 33.3335C1804.43 33.3335 1806 31.7665 1806 29.8335V21.8335C1806 19.9005 1807.57 18.3335 1809.5 18.3335C1811.43 18.3335 1813 19.9005 1813 21.8335V36.5001C1813 38.4331 1814.57 40.0001 1816.5 40.0001C1818.43 40.0001 1820 38.4331 1820 36.5001V11.8335C1820 9.90047 1821.57 8.33347 1823.5 8.33347C1825.43 8.33347 1827 9.90047 1827 11.8335V36.5001C1827 38.4331 1828.57 40.0001 1830.5 40.0001C1832.43 40.0001 1834 38.4331 1834 36.5001V21.0001C1834 19.0671 1835.57 17.5001 1837.5 17.5001C1839.43 17.5001 1841 19.0671 1841 21.0001V26.5001C1841 28.4331 1842.57 30.0001 1844.5 30.0001C1846.43 30.0001 1848 28.4331 1848 26.5001V9.50013C1848 7.56713 1849.57 6.00013 1851.5 6.00013C1853.43 6.00013 1855 7.56713 1855 9.50013V21.5189C1855 23.4415 1856.56 25.0001 1858.48 25.0001C1860.42 25.0001 1861.98 23.4187 1861.96 21.4816L1861.91 16.9149C1861.89 14.9432 1863.48 13.3335 1865.46 13.3335C1867.41 13.3335 1869 14.9199 1869 16.8769V31.5001C1869 33.4331 1870.57 35.0001 1872.5 35.0001C1874.43 35.0001 1876 33.4331 1876 31.5001V12.6668C1876 10.7338 1877.57 9.1668 1879.5 9.1668C1881.43 9.1668 1883 10.7338 1883 12.6668V27.3335C1883 29.2665 1884.57 30.8335 1886.5 30.8335C1888.43 30.8335 1890 29.2665 1890 27.3335V16.5001C1890 14.5671 1891.57 13.0001 1893.5 13.0001C1895.43 13.0001 1897 11.4331 1897 9.50013V0.0001297H1764V9.50013C1764 11.4331 1765.57 13.0001 1767.5 13.0001C1769.43 13.0001 1771 14.5671 1771 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1890 0H1920V12C1920 12.5523 1919.55 13 1919 13V13C1918.45 13 1918 13.4477 1918 14V24.5C1918 26.433 1916.43 28 1914.5 28V28C1912.57 28 1911 26.433 1911 24.5V10.5C1911 8.567 1909.43 7 1907.5 7V7C1905.57 7 1904 8.567 1904 10.5V18.5C1904 20.433 1902.43 22 1900.5 22V22C1898.57 22 1897 20.433 1897 18.5V16.5C1897 14.567 1895.43 13 1893.5 13V13C1891.57 13 1890 11.433 1890 9.5V0Z" fill="black"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1_2">
|
||||
<rect width="1920" height="40" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 27 KiB |
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
id="svg5"
|
||||
version="1.1"
|
||||
viewBox="0 0 131.23333 131.23334"
|
||||
height="496"
|
||||
width="496"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(3.8123445,0,0,3.5284776,-1318.4244,-71.638005)"
|
||||
id="g26">
|
||||
<g
|
||||
transform="matrix(0.65134496,0,0,0.6634673,448.54237,52.231766)"
|
||||
id="g20">
|
||||
<path
|
||||
d="m -127,-42.3 c 4.57,6.45 23.8,31.4 10.7,36.6 -6.12,2.81 -34,-1.65 -33.6,-0.921 -2,3.28 -3.59,5.92 -3.59,5.92 0,0 21.5,0.967 38.1,-1.27 23.7,-3.18 -4.88,-33.5 -11.6,-40.3 z"
|
||||
style="fill:#e5e1e6;stroke-width:0.585;fill-opacity:1"
|
||||
id="path14" />
|
||||
<path
|
||||
d="m -127,-42.3 c -1.52,0.209 -29.4,34.5 -29.4,34.5 0,0 2.01,0.57 6.58,1.23 1.48,-1.15 22.3,-36.2 22.9,-35.7 -0.0107,-0.0141 -0.028,-0.0193 -0.0522,-0.016 z"
|
||||
style="fill:#e5e1e6;stroke-width:0.585;fill-opacity:0.85461253"
|
||||
id="path16" />
|
||||
<path
|
||||
d="m -127,-42.3 c -0.96,-0.156 -22.9,35.7 -22.9,35.7 0,0 19.9,2.1 28.1,1.96 23.1,-0.39 0.176,-30.6 -5.16,-37.7 -0.007,-0.007 -0.0151,-0.0108 -0.0248,-0.0124 z"
|
||||
style="fill:#e5e1e6;stroke-width:0.585;fill-opacity:0.54827821"
|
||||
id="path18" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="496"
|
||||
width="496"
|
||||
id="svg4"
|
||||
version="1.1"
|
||||
viewBox="0 0 496 496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<path
|
||||
d="m 248.1215,22.133185 c -127.11688,0 -230.03813,101.032375 -230.263,225.765625 H 17.818 v 174.76598 h 0.0405 c 0.0607,28.28815 23.45355,51.20203 52.30388,51.20203 H 248.1439 C 375.2833,473.78702 478.182,372.76698 478.182,248.10118 478.1822,123.36794 375.1483,22.335565 247.9191,22.335565 Z m 46.7721,92.963945 c 38.6545,0 75.1503,29.03021 75.1503,69.07888 0,3.71479 0.023,7.43183 -0.5966,11.64358 -1.071,10.65415 -10.9982,18.31084 -21.8075,16.80874 -10.8093,-1.51965 -18.1445,-11.58736 -16.1454,-22.12009 0.1821,-1.20214 0.2485,-3.08966 0.2485,-6.33448 0,-22.71148 -18.945,-31.48126 -36.8556,-31.48126 -17.9061,0 -34.0447,14.76921 -34.0672,31.48126 0.3094,19.32275 0,38.49709 0,57.7906 l 33.2352,-0.24375 c 25.9496,-0.52709 26.2419,37.8 0.2993,37.62011 l -33.5275,0.24375 c -0.081,15.54275 0.1214,12.73192 0.041,20.55951 0,0 0.281,19.01019 -0.2973,33.41512 -4.0116,42.31981 -40.7458,76.13968 -84.88698,76.13968 -46.79465,0 -85.33671,-37.50768 -85.33671,-83.51529 1.40496,-47.31185 39.86877,-84.52719 88.32743,-84.09995 l 27.02886,-0.20013 v 37.55265 l -27.02886,0.24353 h -0.14167 c -26.62415,0.77286 -49.44807,18.51098 -49.87531,46.47983 0,25.47734 20.98901,45.89519 47.042,45.89519 26.01701,0 46.83964,-18.5672 46.83964,-45.85021 l -0.04,-142.22785 c 0.023,-2.63993 0.1012,-4.73793 0.3971,-7.64995 4.3916,-34.78679 36.1135,-61.2985 72.0246,-61.2985 z"
|
||||
style="fill:#e5e1e6;fill-opacity:1;stroke-width:2.24866"
|
||||
id="path8" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg width="649" height="851" viewBox="0 0 649 851" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M360.832 0V88.5852V114.092C360.832 117.467 359.953 122.32 361.266 125.467C362.448 128.29 364.623 130.834 366.271 133.395C370.386 139.785 374.712 146.028 378.921 152.353C392.812 173.22 407.413 193.605 422.307 213.766C447.359 247.673 474.41 280.033 498.904 314.357C535.558 365.719 566.404 422.837 576.673 485.667C578.379 496.094 580.251 506.831 580.73 517.379C581.095 525.386 580.743 533.49 580.743 541.507C580.743 547.291 581.243 553.326 580.709 559.086C578.458 583.263 571.712 607.191 562.751 629.748C551.528 657.991 534.552 683.416 514.708 706.269C472.59 754.777 409.905 782.159 346.699 787.24C339.33 787.829 331.688 787.27 324.294 787.27C316.901 787.27 309.259 787.829 301.89 787.24C263.05 784.117 224.679 772.804 190.9 753.067C137.607 721.931 98.106 669.425 78.9757 611.134C71.4408 588.178 67.8457 564.877 67.8457 540.818C67.8457 532.955 67.3011 524.876 67.8766 517.034C69.4587 495.474 73.3847 473.848 79.0204 452.922C97.8955 382.84 142.192 322.167 186.215 265.814C211.198 233.834 236.006 201.757 258.869 168.208C265.091 159.081 271.302 149.957 277.444 140.778C280.443 136.304 284.645 131.496 286.675 126.501C287.95 123.354 287.068 118.494 287.068 115.126V89.2745V1.03407H286.723C281.312 12.4698 272.601 23.2531 265.583 33.7796C251.496 54.9076 237.181 75.8592 222.415 96.513C154.001 192.209 68.7073 280.288 26.9068 392.257C18.031 416.033 11.313 440.396 6.64939 465.331C3.33692 483.041 2.17187 500.851 0.944769 518.758C0.231259 529.184 -0.402965 539.997 0.317435 550.469C5.84625 630.747 41.6974 710.343 100.936 765.524C128.98 791.645 161.187 812.736 196.759 827.117C231.652 841.218 268.045 847.478 305.337 850.035C395.718 856.229 488.332 824.876 552.824 760.385C582.622 730.586 607.067 694.591 623.206 655.599C637.314 621.516 645.752 586.193 648.272 549.435C649.154 536.578 647.737 523.635 647.272 510.83C644.969 447.459 622.678 385.163 592.701 329.868C552.72 256.118 497.17 193.336 447.652 126.156C427.891 99.3464 408.605 72.1779 390.13 44.4649C384.019 35.2958 377.783 26.1953 371.879 16.8898C368.373 11.3603 365.133 4.93388 360.832 0Z" fill="#e5e1e6"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_116_3" x1="-26.0738" y1="632.162" x2="592.39" y2="266.991" gradientUnits="userSpaceOnUse">
|
||||
<stop/>
|
||||
<stop offset="1" stop-opacity="0.94902"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,155 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="496"
|
||||
height="496"
|
||||
version="1"
|
||||
id="svg6"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<g
|
||||
id="g946"
|
||||
transform="matrix(0.97173996,0,0,0.97173996,4.043873,36.112138)">
|
||||
<g
|
||||
id="layer7"
|
||||
style="display:none"
|
||||
transform="translate(-23.75651,-24.84972)">
|
||||
<rect
|
||||
transform="translate(-132.5822,958.04022)"
|
||||
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:#e5e1e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="rect5389"
|
||||
width="1543.4283"
|
||||
height="483.7439"
|
||||
x="132.5822"
|
||||
y="-957.77832" />
|
||||
</g>
|
||||
<g
|
||||
id="layer6"
|
||||
style="display:none"
|
||||
transform="translate(-156.33871,933.1905)">
|
||||
<rect
|
||||
y="-958.02759"
|
||||
x="132.65129"
|
||||
height="484.30399"
|
||||
width="550.41602"
|
||||
id="rect5379"
|
||||
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:#5c201e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
<rect
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c24a46;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="rect5372"
|
||||
width="501.94415"
|
||||
height="434.30405"
|
||||
x="156.12303"
|
||||
y="-933.02759" />
|
||||
<rect
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#d98d8a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="rect5381"
|
||||
width="24.939611"
|
||||
height="24.939611"
|
||||
x="658.02826"
|
||||
y="-958.04022" />
|
||||
</g>
|
||||
<g
|
||||
id="layer3"
|
||||
style="display:inline;opacity:1"
|
||||
transform="translate(37.235605,912.8581)">
|
||||
<g
|
||||
id="g2072"
|
||||
transform="matrix(0.99894325,0,0,0.99894325,-36.551621,-913.90743)"
|
||||
style="fill:#e5e1e6;fill-opacity:1">
|
||||
<g
|
||||
style="display:none;fill:#e5e1e6;fill-opacity:1"
|
||||
transform="matrix(0.09048806,0,0,0.09048806,-14.15991,84.454917)"
|
||||
id="layer1-3">
|
||||
<rect
|
||||
y="-2102.4253"
|
||||
x="-1045.6049"
|
||||
height="7145.4614"
|
||||
width="7947.0356"
|
||||
id="rect995"
|
||||
style="opacity:1;fill:#e5e1e6;fill-opacity:1;stroke-width:10.3605" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-156.48372,537.56136)"
|
||||
style="display:inline;opacity:1;fill:#e5e1e6;fill-opacity:1"
|
||||
id="layer3-6">
|
||||
<g
|
||||
style="fill:#e5e1e6;stroke-width:11.0512;fill-opacity:1"
|
||||
transform="matrix(0.09048806,0,0,0.09048806,142.32381,-453.10644)"
|
||||
id="g955">
|
||||
<g
|
||||
transform="matrix(11.047619,0,0,11.047619,-1572.2888,9377.7107)"
|
||||
id="g869"
|
||||
style="fill:#e5e1e6;fill-opacity:1">
|
||||
<g
|
||||
transform="rotate(-60,226.35754,-449.37199)"
|
||||
id="g932"
|
||||
style="fill:#e5e1e6;stroke-width:11.0512;fill-opacity:1">
|
||||
<path
|
||||
id="path3336-6-7"
|
||||
d="m 449.71876,-420.51322 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83003 31.20698,-53.66007 46.81047,-80.4901 -11.07649,-19.27523 -22.15297,-38.55047 -33.22946,-57.8257 9.35083,-16.29387 18.70167,-32.58775 28.0525,-48.88162 z"
|
||||
style="opacity:1;fill:#e5e1e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:33.1535;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
id="path4260-0-5"
|
||||
d="m 309.54892,-710.38827 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83003 31.20698,-53.66007 46.81047,-80.4901 -11.07649,-19.2752 -22.15297,-38.5504 -33.22946,-57.8256 9.35083,-16.29391 18.70167,-32.58781 28.0525,-48.88172 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:#e5e1e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:33.1535;stroke-linecap:butt;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" />
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path3336-6-7"
|
||||
id="use3439-6-3"
|
||||
transform="rotate(60,728.23563,-692.24036)"
|
||||
width="100%"
|
||||
height="100%"
|
||||
style="fill:#e5e1e6;fill-opacity:1;stroke-width:11.0512" />
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path3336-6-7"
|
||||
id="use3449-5-5"
|
||||
transform="rotate(180,477.5036,-570.81898)"
|
||||
width="100%"
|
||||
height="100%"
|
||||
style="fill:#e5e1e6;fill-opacity:1;stroke-width:11.0512" />
|
||||
<use
|
||||
style="display:inline;fill:#e5e1e6;fill-opacity:1;stroke-width:11.0512"
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path4260-0-5"
|
||||
id="use4354-5-6"
|
||||
transform="rotate(120,407.33916,-716.08356)"
|
||||
width="100%"
|
||||
height="100%" />
|
||||
<use
|
||||
style="display:inline;fill:#e5e1e6;fill-opacity:1;stroke-width:11.0512"
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path4260-0-5"
|
||||
id="use4362-2-2"
|
||||
transform="rotate(-120,407.28823,-715.86995)"
|
||||
width="100%"
|
||||
height="100%" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.6 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="50" height="51" viewBox="0 0 50 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.00157475 50H50C10.2358 50 0.145819 17.622 0.00157475 0.731939V50Z" fill="black"/>
|
||||
<path d="M0.00157475 0.731939C0.145819 17.622 10.2358 50 50 50H0.00157475V0.731939ZM0.00157475 0.731939V1.63913e-06C-0.000516981 0.240559 -0.000537669 0.484588 0.00157475 0.731939Z" stroke="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 396 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="51" height="51" viewBox="0 0 51 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M49.9984 50H0C39.7642 50 49.8542 17.622 49.9984 0.731939V50Z" fill="black"/>
|
||||
<path d="M49.9984 0.731939C49.8542 17.622 39.7642 50 0 50H49.9984V0.731939ZM49.9984 0.731939V1.63913e-06C50.0005 0.240559 50.0005 0.484588 49.9984 0.731939Z" stroke="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 364 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="50" height="51" viewBox="0 0 50 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.00157475 0H50C10.2358 0 0.145819 32.378 0.00157475 49.2681V0Z" fill="black"/>
|
||||
<path d="M0.00157475 49.2681C0.145819 32.378 10.2358 0 50 0H0.00157475V49.2681ZM0.00157475 49.2681V50C-0.000516981 49.7594 -0.000537669 49.5154 0.00157475 49.2681Z" stroke="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 375 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="51" height="51" viewBox="0 0 51 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M49.9984 0H0C39.7642 0 49.8542 32.378 49.9984 49.2681V0Z" fill="black"/>
|
||||
<path d="M49.9984 49.2681C49.8542 32.378 39.7642 0 0 0H49.9984V49.2681ZM49.9984 49.2681V50C50.0005 49.7594 50.0005 49.5154 49.9984 49.2681Z" stroke="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 343 B |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
height="496"
|
||||
width="496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<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>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<path
|
||||
id="path4"
|
||||
d="m 247.93344,17.871894 c -20.49358,50.233214 -32.85373,83.091376 -55.67015,131.826236 13.9889,14.826 31.1605,32.09056 59.04738,51.59003 -29.98068,-12.33447 -50.43052,-24.71727 -65.71321,-37.56731 -29.20024,60.91971 -74.95051,147.69601 -167.7909,314.47259 72.96954,-42.11649 123.77827,-68.0824 176.49709,-77.99095 -2.26368,-9.73362 -3.55081,-20.26245 -3.46331,-31.24816 l 0.0805,-2.33732 c 1.15775,-46.73933 31.74236,-84.002 60.03547,-84.06511 28.29312,-0.0633 55.80715,46.15485 54.64917,92.8942 -0.2175,8.79569 -1.21012,17.25536 -2.94362,25.10278 52.1433,10.19855 103.4958,36.09772 175.4777,77.64456 -14.1938,-26.12472 -26.86242,-49.67506 -38.96013,-72.10451 -19.05704,-14.7673 -38.93365,-33.98597 -79.47881,-54.79276 27.86845,7.23979 47.82218,15.59244 63.3754,24.92903 C 300.07316,147.25839 290.11644,116.83076 247.92986,17.860386 Z"
|
||||
style="fill:black;fill-rule:evenodd;stroke-width:11.50832653" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
id="svg5"
|
||||
version="1.1"
|
||||
viewBox="0 0 131.23333 131.23334"
|
||||
height="496"
|
||||
width="496"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(3.8123445,0,0,3.5284776,-1318.4244,-71.638005)"
|
||||
id="g26">
|
||||
<g
|
||||
transform="matrix(0.65134496,0,0,0.6634673,448.54237,52.231766)"
|
||||
id="g20">
|
||||
<path
|
||||
d="m -127,-42.3 c 4.57,6.45 23.8,31.4 10.7,36.6 -6.12,2.81 -34,-1.65 -33.6,-0.921 -2,3.28 -3.59,5.92 -3.59,5.92 0,0 21.5,0.967 38.1,-1.27 23.7,-3.18 -4.88,-33.5 -11.6,-40.3 z"
|
||||
style="fill:black;stroke-width:0.585;fill-opacity:1"
|
||||
id="path14" />
|
||||
<path
|
||||
d="m -127,-42.3 c -1.52,0.209 -29.4,34.5 -29.4,34.5 0,0 2.01,0.57 6.58,1.23 1.48,-1.15 22.3,-36.2 22.9,-35.7 -0.0107,-0.0141 -0.028,-0.0193 -0.0522,-0.016 z"
|
||||
style="fill:black;stroke-width:0.585;fill-opacity:0.85461253"
|
||||
id="path16" />
|
||||
<path
|
||||
d="m -127,-42.3 c -0.96,-0.156 -22.9,35.7 -22.9,35.7 0,0 19.9,2.1 28.1,1.96 23.1,-0.39 0.176,-30.6 -5.16,-37.7 -0.007,-0.007 -0.0151,-0.0108 -0.0248,-0.0124 z"
|
||||
style="fill:black;stroke-width:0.585;fill-opacity:0.54827821"
|
||||
id="path18" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="496"
|
||||
width="496"
|
||||
id="svg4"
|
||||
version="1.1"
|
||||
viewBox="0 0 496 496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<path
|
||||
d="m 248.1215,22.133185 c -127.11688,0 -230.03813,101.032375 -230.263,225.765625 H 17.818 v 174.76598 h 0.0405 c 0.0607,28.28815 23.45355,51.20203 52.30388,51.20203 H 248.1439 C 375.2833,473.78702 478.182,372.76698 478.182,248.10118 478.1822,123.36794 375.1483,22.335565 247.9191,22.335565 Z m 46.7721,92.963945 c 38.6545,0 75.1503,29.03021 75.1503,69.07888 0,3.71479 0.023,7.43183 -0.5966,11.64358 -1.071,10.65415 -10.9982,18.31084 -21.8075,16.80874 -10.8093,-1.51965 -18.1445,-11.58736 -16.1454,-22.12009 0.1821,-1.20214 0.2485,-3.08966 0.2485,-6.33448 0,-22.71148 -18.945,-31.48126 -36.8556,-31.48126 -17.9061,0 -34.0447,14.76921 -34.0672,31.48126 0.3094,19.32275 0,38.49709 0,57.7906 l 33.2352,-0.24375 c 25.9496,-0.52709 26.2419,37.8 0.2993,37.62011 l -33.5275,0.24375 c -0.081,15.54275 0.1214,12.73192 0.041,20.55951 0,0 0.281,19.01019 -0.2973,33.41512 -4.0116,42.31981 -40.7458,76.13968 -84.88698,76.13968 -46.79465,0 -85.33671,-37.50768 -85.33671,-83.51529 1.40496,-47.31185 39.86877,-84.52719 88.32743,-84.09995 l 27.02886,-0.20013 v 37.55265 l -27.02886,0.24353 h -0.14167 c -26.62415,0.77286 -49.44807,18.51098 -49.87531,46.47983 0,25.47734 20.98901,45.89519 47.042,45.89519 26.01701,0 46.83964,-18.5672 46.83964,-45.85021 l -0.04,-142.22785 c 0.023,-2.63993 0.1012,-4.73793 0.3971,-7.64995 4.3916,-34.78679 36.1135,-61.2985 72.0246,-61.2985 z"
|
||||
style="fill:black;fill-opacity:1;stroke-width:2.24866"
|
||||
id="path8" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg width="649" height="851" viewBox="0 0 649 851" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M360.832 0V88.5852V114.092C360.832 117.467 359.953 122.32 361.266 125.467C362.448 128.29 364.623 130.834 366.271 133.395C370.386 139.785 374.712 146.028 378.921 152.353C392.812 173.22 407.413 193.605 422.307 213.766C447.359 247.673 474.41 280.033 498.904 314.357C535.558 365.719 566.404 422.837 576.673 485.667C578.379 496.094 580.251 506.831 580.73 517.379C581.095 525.386 580.743 533.49 580.743 541.507C580.743 547.291 581.243 553.326 580.709 559.086C578.458 583.263 571.712 607.191 562.751 629.748C551.528 657.991 534.552 683.416 514.708 706.269C472.59 754.777 409.905 782.159 346.699 787.24C339.33 787.829 331.688 787.27 324.294 787.27C316.901 787.27 309.259 787.829 301.89 787.24C263.05 784.117 224.679 772.804 190.9 753.067C137.607 721.931 98.106 669.425 78.9757 611.134C71.4408 588.178 67.8457 564.877 67.8457 540.818C67.8457 532.955 67.3011 524.876 67.8766 517.034C69.4587 495.474 73.3847 473.848 79.0204 452.922C97.8955 382.84 142.192 322.167 186.215 265.814C211.198 233.834 236.006 201.757 258.869 168.208C265.091 159.081 271.302 149.957 277.444 140.778C280.443 136.304 284.645 131.496 286.675 126.501C287.95 123.354 287.068 118.494 287.068 115.126V89.2745V1.03407H286.723C281.312 12.4698 272.601 23.2531 265.583 33.7796C251.496 54.9076 237.181 75.8592 222.415 96.513C154.001 192.209 68.7073 280.288 26.9068 392.257C18.031 416.033 11.313 440.396 6.64939 465.331C3.33692 483.041 2.17187 500.851 0.944769 518.758C0.231259 529.184 -0.402965 539.997 0.317435 550.469C5.84625 630.747 41.6974 710.343 100.936 765.524C128.98 791.645 161.187 812.736 196.759 827.117C231.652 841.218 268.045 847.478 305.337 850.035C395.718 856.229 488.332 824.876 552.824 760.385C582.622 730.586 607.067 694.591 623.206 655.599C637.314 621.516 645.752 586.193 648.272 549.435C649.154 536.578 647.737 523.635 647.272 510.83C644.969 447.459 622.678 385.163 592.701 329.868C552.72 256.118 497.17 193.336 447.652 126.156C427.891 99.3464 408.605 72.1779 390.13 44.4649C384.019 35.2958 377.783 26.1953 371.879 16.8898C368.373 11.3603 365.133 4.93388 360.832 0Z" fill="black"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_116_3" x1="-26.0738" y1="632.162" x2="592.39" y2="266.991" gradientUnits="userSpaceOnUse">
|
||||
<stop/>
|
||||
<stop offset="1" stop-opacity="0.94902"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,155 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="496"
|
||||
height="496"
|
||||
version="1"
|
||||
id="svg6"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<g
|
||||
id="g946"
|
||||
transform="matrix(0.97173996,0,0,0.97173996,4.043873,36.112138)">
|
||||
<g
|
||||
id="layer7"
|
||||
style="display:none"
|
||||
transform="translate(-23.75651,-24.84972)">
|
||||
<rect
|
||||
transform="translate(-132.5822,958.04022)"
|
||||
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:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="rect5389"
|
||||
width="1543.4283"
|
||||
height="483.7439"
|
||||
x="132.5822"
|
||||
y="-957.77832" />
|
||||
</g>
|
||||
<g
|
||||
id="layer6"
|
||||
style="display:none"
|
||||
transform="translate(-156.33871,933.1905)">
|
||||
<rect
|
||||
y="-958.02759"
|
||||
x="132.65129"
|
||||
height="484.30399"
|
||||
width="550.41602"
|
||||
id="rect5379"
|
||||
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:#5c201e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
<rect
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c24a46;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="rect5372"
|
||||
width="501.94415"
|
||||
height="434.30405"
|
||||
x="156.12303"
|
||||
y="-933.02759" />
|
||||
<rect
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#d98d8a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="rect5381"
|
||||
width="24.939611"
|
||||
height="24.939611"
|
||||
x="658.02826"
|
||||
y="-958.04022" />
|
||||
</g>
|
||||
<g
|
||||
id="layer3"
|
||||
style="display:inline;opacity:1"
|
||||
transform="translate(37.235605,912.8581)">
|
||||
<g
|
||||
id="g2072"
|
||||
transform="matrix(0.99894325,0,0,0.99894325,-36.551621,-913.90743)"
|
||||
style="fill:black;fill-opacity:1">
|
||||
<g
|
||||
style="display:none;fill:black;fill-opacity:1"
|
||||
transform="matrix(0.09048806,0,0,0.09048806,-14.15991,84.454917)"
|
||||
id="layer1-3">
|
||||
<rect
|
||||
y="-2102.4253"
|
||||
x="-1045.6049"
|
||||
height="7145.4614"
|
||||
width="7947.0356"
|
||||
id="rect995"
|
||||
style="opacity:1;fill:black;fill-opacity:1;stroke-width:10.3605" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-156.48372,537.56136)"
|
||||
style="display:inline;opacity:1;fill:black;fill-opacity:1"
|
||||
id="layer3-6">
|
||||
<g
|
||||
style="fill:black;stroke-width:11.0512;fill-opacity:1"
|
||||
transform="matrix(0.09048806,0,0,0.09048806,142.32381,-453.10644)"
|
||||
id="g955">
|
||||
<g
|
||||
transform="matrix(11.047619,0,0,11.047619,-1572.2888,9377.7107)"
|
||||
id="g869"
|
||||
style="fill:black;fill-opacity:1">
|
||||
<g
|
||||
transform="rotate(-60,226.35754,-449.37199)"
|
||||
id="g932"
|
||||
style="fill:black;stroke-width:11.0512;fill-opacity:1">
|
||||
<path
|
||||
id="path3336-6-7"
|
||||
d="m 449.71876,-420.51322 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83003 31.20698,-53.66007 46.81047,-80.4901 -11.07649,-19.27523 -22.15297,-38.55047 -33.22946,-57.8257 9.35083,-16.29387 18.70167,-32.58775 28.0525,-48.88162 z"
|
||||
style="opacity:1;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:33.1535;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
id="path4260-0-5"
|
||||
d="m 309.54892,-710.38827 c 40.73228,70.55837 81.46455,141.11675 122.19683,211.67512 -18.71902,0.1756 -37.43804,0.3512 -56.15706,0.5268 -10.87453,-18.9564 -21.74907,-37.9128 -32.6236,-56.8692 -10.95215,18.8551 -21.9043,37.7102 -32.85645,56.5653 -9.30079,-0.004 -18.60158,-0.007 -27.90237,-0.011 -4.76362,-8.22987 -9.52724,-16.45973 -14.29086,-24.6896 15.60349,-26.83003 31.20698,-53.66007 46.81047,-80.4901 -11.07649,-19.2752 -22.15297,-38.5504 -33.22946,-57.8256 9.35083,-16.29391 18.70167,-32.58781 28.0525,-48.88172 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:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:33.1535;stroke-linecap:butt;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" />
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path3336-6-7"
|
||||
id="use3439-6-3"
|
||||
transform="rotate(60,728.23563,-692.24036)"
|
||||
width="100%"
|
||||
height="100%"
|
||||
style="fill:black;fill-opacity:1;stroke-width:11.0512" />
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path3336-6-7"
|
||||
id="use3449-5-5"
|
||||
transform="rotate(180,477.5036,-570.81898)"
|
||||
width="100%"
|
||||
height="100%"
|
||||
style="fill:black;fill-opacity:1;stroke-width:11.0512" />
|
||||
<use
|
||||
style="display:inline;fill:black;fill-opacity:1;stroke-width:11.0512"
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path4260-0-5"
|
||||
id="use4354-5-6"
|
||||
transform="rotate(120,407.33916,-716.08356)"
|
||||
width="100%"
|
||||
height="100%" />
|
||||
<use
|
||||
style="display:inline;fill:black;fill-opacity:1;stroke-width:11.0512"
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path4260-0-5"
|
||||
id="use4362-2-2"
|
||||
transform="rotate(-120,407.28823,-715.86995)"
|
||||
width="100%"
|
||||
height="100%" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.5 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="496"
|
||||
width="496"
|
||||
id="svg4"
|
||||
version="1.1"
|
||||
viewBox="0 0 496 496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<style
|
||||
id="style933">.cls-1{fill:#e9500e;}</style>
|
||||
</defs>
|
||||
<g
|
||||
id="g959"
|
||||
transform="matrix(0.61580374,0,0,0.61580374,12.468621,21.817361)">
|
||||
<circle
|
||||
class="cls-1"
|
||||
cx="109.02696"
|
||||
cy="348.09412"
|
||||
r="109.02696"
|
||||
id="circle937"
|
||||
style="fill:black;fill-opacity:1" />
|
||||
<ellipse
|
||||
class="cls-1"
|
||||
cx="563.08368"
|
||||
cy="109.02698"
|
||||
id="circle939"
|
||||
rx="109.02662"
|
||||
ry="109.02698"
|
||||
style="fill:black;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 354.92039,628.68582 c -77.01891,-15.8253 -145.43904,-68.0075 -181.0712,-138.0982 -28.93817,13.2078 -61.94374,17.2648 -93.21911,11.4583 51.75695,133.1719 190.35352,224.9404 332.95672,222.1315 -21.33123,-25.4775 -29.54323,-61.4497 -33.6059,-91.347 -8.41211,-0.9891 -16.77785,-2.3728 -25.06051,-4.1446 z"
|
||||
id="path941"
|
||||
style="fill:black;fill-opacity:1" />
|
||||
<circle
|
||||
class="cls-1"
|
||||
cx="538.52045"
|
||||
cy="629.28723"
|
||||
r="109.02698"
|
||||
id="circle943"
|
||||
style="fill:black;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 690.23645,589.24102 c 85.45532,-105.22585 101.63344,-261.1123 39.28817,-381.54731 -6.39094,-12.73675 -13.54502,-25.09063 -21.41334,-36.97169 -12.438,29.45803 -34.16446,54.90303 -61.30975,71.8031 44.28267,81.68487 40.82043,186.89167 -8.73688,265.4884 25.36982,20.67266 43.92291,49.5585 52.1718,81.2275 z"
|
||||
id="path945"
|
||||
style="fill:black;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 100.61489,191.73908 c 31.72478,-1.7424 63.98682,6.52836 90.98772,23.31994 C 239.1057,145.42119 321.41819,101.39883 405.71083,100.54968 405.7585,68.81709 422.81019,34.82283 437.18034,12.00596 323.8486,3.01574 208.0489,52.71326 135.95771,140.54908 c -13.26,15.97642 -25.10697,33.12582 -35.34282,51.19 z"
|
||||
id="path947"
|
||||
style="fill:black;fill-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="496"
|
||||
width="496"
|
||||
id="svg4"
|
||||
version="1.1"
|
||||
viewBox="0 0 496 496"
|
||||
xml:space="preserve"
|
||||
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/"><metadata
|
||||
id="metadata10"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs8"><style
|
||||
id="style933">.cls-1{fill:#e9500e;}</style></defs><g
|
||||
style="fill:black;fill-opacity:1"
|
||||
id="g128"
|
||||
transform="matrix(0.63842458,0,0,0.63842458,10.630929,40.503173)"><path
|
||||
d="m 125,542 62.353,108 h 375.29 L 625,542 Z M 750,324.998 687.103,434 H 288 L 687.103,216 Z M 0,325.002 62.897,216 H 462 L 62.897,434 Z M 125,108 187.353,0 h 375.29 L 625,108 Z"
|
||||
id="path119"
|
||||
style="fill:black;fill-opacity:1" /></g></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="24" height="24" fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m18.492 2.33 3.179 3.179a2.25 2.25 0 0 1 0 3.182l-2.423 2.422A2.501 2.501 0 0 1 21 13.5v5a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 18.5v-13A2.5 2.5 0 0 1 5.5 3h5c1.121 0 2.07.737 2.387 1.754L15.31 2.33a2.25 2.25 0 0 1 3.182 0ZM11 13H5v5.5a.5.5 0 0 0 .5.5H11v-6Zm7.5 0H13v6h5.5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5Zm-4.06-2.001L13 9.559v1.44h1.44Zm-3.94-6h-5a.5.5 0 0 0-.5.5V11h6V5.5a.5.5 0 0 0-.5-.5Z" fill="black"/></svg>
|
||||
|
After Width: | Height: | Size: 527 B |
@@ -0,0 +1,25 @@
|
||||
<svg width="1920" height="40" viewBox="0 0 1920 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1_2)">
|
||||
<path d="M7 31.5002C7 33.4332 8.567 35.0002 10.5 35.0002V35.0002C12.433 35.0002 14 33.4332 14 31.5002V21.5002C14 19.5672 15.567 18.0002 17.5 18.0002V18.0002C19.433 18.0002 21 19.5672 21 21.5002V34.0002C21 35.9332 22.567 37.5002 24.5 37.5002V37.5002C26.433 37.5002 28 35.9332 28 34.0002V16.0002C28 14.0672 29.567 12.5002 31.5 12.5002V12.5002C33.433 12.5002 35 14.0672 35 16.0002V29.8336C35 31.7666 36.567 33.3336 38.5 33.3336V33.3336C40.433 33.3336 42 31.7666 42 29.8336V21.8335C42 19.9006 43.567 18.3335 45.5 18.3335V18.3335C47.433 18.3335 49 19.9006 49 21.8335V36.5002C49 38.4332 50.567 40.0002 52.5 40.0002V40.0002C54.433 40.0002 56 38.4332 56 36.5002V11.8336C56 9.90057 57.567 8.33357 59.5 8.33357V8.33357C61.433 8.33357 63 9.90057 63 11.8336V36.5002C63 38.4332 64.567 40.0002 66.5 40.0002V40.0002C68.433 40.0002 70 38.4332 70 36.5002V21.0002C70 19.0672 71.567 17.5002 73.5 17.5002V17.5002C75.433 17.5002 77 19.0672 77 21.0002V26.5002C77 28.4332 78.567 30.0002 80.5 30.0002V30.0002C82.433 30.0002 84 28.4332 84 26.5002V9.50023C84 7.56723 85.567 6.00023 87.5 6.00023V6.00023C89.433 6.00023 91 7.56723 91 9.50023V21.519C91 23.4416 92.5586 25.0002 94.4812 25.0002V25.0002C96.4185 25.0002 97.983 23.4188 97.9623 21.4817L97.9133 16.915C97.8922 14.9433 99.4847 13.3336 101.457 13.3336V13.3336C103.414 13.3336 105 14.92 105 16.877V31.5002C105 33.4332 106.567 35.0002 108.5 35.0002V35.0002C110.433 35.0002 112 33.4332 112 31.5002V12.6669C112 10.7339 113.567 9.16688 115.5 9.16688V9.16688C117.433 9.16688 119 10.7339 119 12.6669V27.3336C119 29.2666 120.567 30.8336 122.5 30.8336V30.8336C124.433 30.8336 126 29.2666 126 27.3336V16.5002C126 14.5672 127.567 13.0002 129.5 13.0002V13.0002C131.433 13.0002 133 11.4332 133 9.50023V0.000228882H0V9.50023C0 11.4332 1.567 13.0002 3.5 13.0002V13.0002C5.433 13.0002 7 14.5672 7 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M133 31.5002C133 33.4332 134.567 35.0002 136.5 35.0002C138.433 35.0002 140 33.4332 140 31.5002V21.5002C140 19.5672 141.567 18.0002 143.5 18.0002C145.433 18.0002 147 19.5672 147 21.5002V34.0002C147 35.9332 148.567 37.5002 150.5 37.5002C152.433 37.5002 154 35.9332 154 34.0002V16.0002C154 14.0672 155.567 12.5002 157.5 12.5002C159.433 12.5002 161 14.0672 161 16.0002V29.8336C161 31.7666 162.567 33.3336 164.5 33.3336C166.433 33.3336 168 31.7666 168 29.8336V21.8336C168 19.9006 169.567 18.3335 171.5 18.3335C173.433 18.3335 175 19.9006 175 21.8336V36.5003C175 38.4332 176.567 40.0002 178.5 40.0002C180.433 40.0002 182 38.4332 182 36.5002V11.8336C182 9.90057 183.567 8.33357 185.5 8.33357C187.433 8.33357 189 9.90057 189 11.8336V36.5002C189 38.4332 190.567 40.0002 192.5 40.0002C194.433 40.0002 196 38.4332 196 36.5002V21.0002C196 19.0672 197.567 17.5002 199.5 17.5002C201.433 17.5002 203 19.0672 203 21.0002V26.5002C203 28.4332 204.567 30.0002 206.5 30.0002C208.433 30.0002 210 28.4332 210 26.5002V9.50023C210 7.56723 211.567 6.00023 213.5 6.00023C215.433 6.00023 217 7.56723 217 9.50023V21.519C217 23.4416 218.559 25.0002 220.481 25.0002C222.418 25.0002 223.983 23.4188 223.962 21.4817L223.913 16.915C223.892 14.9433 225.485 13.3336 227.457 13.3336C229.414 13.3336 231 14.92 231 16.877V31.5002C231 33.4332 232.567 35.0002 234.5 35.0002C236.433 35.0002 238 33.4332 238 31.5002V12.6669C238 10.7339 239.567 9.16688 241.5 9.16688C243.433 9.16688 245 10.7339 245 12.6669V27.3336C245 29.2666 246.567 30.8336 248.5 30.8336C250.433 30.8336 252 29.2666 252 27.3336V16.5002C252 14.5672 253.567 13.0002 255.5 13.0002C257.433 13.0002 259 11.4332 259 9.50023V0.000228882H126V9.50023C126 11.4332 127.567 13.0002 129.5 13.0002C131.433 13.0002 133 14.5672 133 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M259 31.5002C259 33.4332 260.567 35.0002 262.5 35.0002C264.433 35.0002 266 33.4332 266 31.5002V21.5002C266 19.5672 267.567 18.0002 269.5 18.0002C271.433 18.0002 273 19.5672 273 21.5002V34.0002C273 35.9332 274.567 37.5002 276.5 37.5002C278.433 37.5002 280 35.9332 280 34.0002V16.0002C280 14.0672 281.567 12.5002 283.5 12.5002C285.433 12.5002 287 14.0672 287 16.0002V29.8335C287 31.7665 288.567 33.3335 290.5 33.3335C292.433 33.3335 294 31.7665 294 29.8335V21.8335C294 19.9005 295.567 18.3335 297.5 18.3335C299.433 18.3335 301 19.9005 301 21.8335V36.5002C301 38.4332 302.567 40.0002 304.5 40.0002C306.433 40.0002 308 38.4332 308 36.5002V11.8335C308 9.90054 309.567 8.33354 311.5 8.33354C313.433 8.33354 315 9.90054 315 11.8335V36.5002C315 38.4332 316.567 40.0002 318.5 40.0002C320.433 40.0002 322 38.4332 322 36.5002V21.0002C322 19.0672 323.567 17.5002 325.5 17.5002C327.433 17.5002 329 19.0672 329 21.0002V26.5002C329 28.4332 330.567 30.0002 332.5 30.0002C334.433 30.0002 336 28.4332 336 26.5002V9.5002C336 7.5672 337.567 6.0002 339.5 6.0002C341.433 6.0002 343 7.5672 343 9.5002V21.519C343 23.4416 344.559 25.0002 346.481 25.0002C348.418 25.0002 349.983 23.4188 349.962 21.4816L349.913 16.915C349.892 14.9432 351.485 13.3335 353.457 13.3335C355.414 13.3335 357 14.92 357 16.877V31.5002C357 33.4332 358.567 35.0002 360.5 35.0002C362.433 35.0002 364 33.4332 364 31.5002V12.6669C364 10.7339 365.567 9.16688 367.5 9.16688C369.433 9.16688 371 10.7339 371 12.6669V27.3335C371 29.2665 372.567 30.8335 374.5 30.8335C376.433 30.8335 378 29.2665 378 27.3335V16.5002C378 14.5672 379.567 13.0002 381.5 13.0002C383.433 13.0002 385 11.4332 385 9.5002V0.000198364H252V9.5002C252 11.4332 253.567 13.0002 255.5 13.0002C257.433 13.0002 259 14.5672 259 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M385 31.5002C385 33.4332 386.567 35.0002 388.5 35.0002C390.433 35.0002 392 33.4332 392 31.5002V21.5002C392 19.5672 393.567 18.0002 395.5 18.0002C397.433 18.0002 399 19.5672 399 21.5002V34.0002C399 35.9332 400.567 37.5002 402.5 37.5002C404.433 37.5002 406 35.9332 406 34.0002V16.0002C406 14.0672 407.567 12.5002 409.5 12.5002C411.433 12.5002 413 14.0672 413 16.0002V29.8335C413 31.7665 414.567 33.3335 416.5 33.3335C418.433 33.3335 420 31.7665 420 29.8335V21.8335C420 19.9005 421.567 18.3335 423.5 18.3335C425.433 18.3335 427 19.9005 427 21.8335V36.5002C427 38.4332 428.567 40.0002 430.5 40.0002C432.433 40.0002 434 38.4332 434 36.5002V11.8335C434 9.90054 435.567 8.33354 437.5 8.33354C439.433 8.33354 441 9.90054 441 11.8335V36.5002C441 38.4332 442.567 40.0002 444.5 40.0002C446.433 40.0002 448 38.4332 448 36.5002V21.0002C448 19.0672 449.567 17.5002 451.5 17.5002C453.433 17.5002 455 19.0672 455 21.0002V26.5002C455 28.4332 456.567 30.0002 458.5 30.0002C460.433 30.0002 462 28.4332 462 26.5002V9.5002C462 7.5672 463.567 6.0002 465.5 6.0002C467.433 6.0002 469 7.5672 469 9.5002V21.519C469 23.4416 470.559 25.0002 472.481 25.0002C474.418 25.0002 475.983 23.4188 475.962 21.4816L475.913 16.915C475.892 14.9432 477.485 13.3335 479.457 13.3335C481.414 13.3335 483 14.92 483 16.877V31.5002C483 33.4332 484.567 35.0002 486.5 35.0002C488.433 35.0002 490 33.4332 490 31.5002V12.6669C490 10.7339 491.567 9.16688 493.5 9.16688C495.433 9.16688 497 10.7339 497 12.6669V27.3335C497 29.2665 498.567 30.8335 500.5 30.8335C502.433 30.8335 504 29.2665 504 27.3335V16.5002C504 14.5672 505.567 13.0002 507.5 13.0002C509.433 13.0002 511 11.4332 511 9.5002V0.000198364H378V9.5002C378 11.4332 379.567 13.0002 381.5 13.0002C383.433 13.0002 385 14.5672 385 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M511 31.5002C511 33.4332 512.567 35.0002 514.5 35.0002C516.433 35.0002 518 33.4332 518 31.5002V21.5002C518 19.5672 519.567 18.0002 521.5 18.0002C523.433 18.0002 525 19.5672 525 21.5002V34.0002C525 35.9332 526.567 37.5002 528.5 37.5002C530.433 37.5002 532 35.9332 532 34.0002V16.0002C532 14.0672 533.567 12.5002 535.5 12.5002C537.433 12.5002 539 14.0672 539 16.0002V29.8335C539 31.7665 540.567 33.3335 542.5 33.3335C544.433 33.3335 546 31.7665 546 29.8335V21.8335C546 19.9005 547.567 18.3335 549.5 18.3335C551.433 18.3335 553 19.9005 553 21.8335V36.5002C553 38.4332 554.567 40.0002 556.5 40.0002C558.433 40.0002 560 38.4332 560 36.5002V11.8335C560 9.90052 561.567 8.33352 563.5 8.33352C565.433 8.33352 567 9.90052 567 11.8335V36.5002C567 38.4332 568.567 40.0002 570.5 40.0002C572.433 40.0002 574 38.4332 574 36.5002V21.0002C574 19.0672 575.567 17.5002 577.5 17.5002C579.433 17.5002 581 19.0672 581 21.0002V26.5002C581 28.4332 582.567 30.0002 584.5 30.0002C586.433 30.0002 588 28.4332 588 26.5002V9.50018C588 7.56718 589.567 6.00018 591.5 6.00018C593.433 6.00018 595 7.56718 595 9.50018V21.519C595 23.4416 596.559 25.0002 598.481 25.0002C600.418 25.0002 601.983 23.4188 601.962 21.4817L601.913 16.9149C601.892 14.9432 603.485 13.3335 605.457 13.3335C607.414 13.3335 609 14.92 609 16.877V31.5002C609 33.4332 610.567 35.0002 612.5 35.0002C614.433 35.0002 616 33.4332 616 31.5002V12.6669C616 10.7339 617.567 9.16685 619.5 9.16685C621.433 9.16685 623 10.7339 623 12.6669V27.3335C623 29.2665 624.567 30.8335 626.5 30.8335C628.433 30.8335 630 29.2665 630 27.3335V16.5002C630 14.5672 631.567 13.0002 633.5 13.0002C635.433 13.0002 637 11.4332 637 9.50018V0.000183105H504V9.50018C504 11.4332 505.567 13.0002 507.5 13.0002C509.433 13.0002 511 14.5672 511 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M637 31.5002C637 33.4332 638.567 35.0002 640.5 35.0002C642.433 35.0002 644 33.4332 644 31.5002V21.5002C644 19.5672 645.567 18.0002 647.5 18.0002C649.433 18.0002 651 19.5672 651 21.5002V34.0002C651 35.9332 652.567 37.5002 654.5 37.5002C656.433 37.5002 658 35.9332 658 34.0002V16.0002C658 14.0672 659.567 12.5002 661.5 12.5002C663.433 12.5002 665 14.0672 665 16.0002V29.8335C665 31.7665 666.567 33.3335 668.5 33.3335C670.433 33.3335 672 31.7665 672 29.8335V21.8335C672 19.9005 673.567 18.3335 675.5 18.3335C677.433 18.3335 679 19.9005 679 21.8335V36.5002C679 38.4332 680.567 40.0002 682.5 40.0002C684.433 40.0002 686 38.4332 686 36.5002V11.8335C686 9.90052 687.567 8.33352 689.5 8.33352C691.433 8.33352 693 9.90052 693 11.8335V36.5002C693 38.4332 694.567 40.0002 696.5 40.0002C698.433 40.0002 700 38.4332 700 36.5002V21.0002C700 19.0672 701.567 17.5002 703.5 17.5002C705.433 17.5002 707 19.0672 707 21.0002V26.5002C707 28.4332 708.567 30.0002 710.5 30.0002C712.433 30.0002 714 28.4332 714 26.5002V9.50018C714 7.56718 715.567 6.00018 717.5 6.00018C719.433 6.00018 721 7.56718 721 9.50018V21.519C721 23.4416 722.559 25.0002 724.481 25.0002C726.418 25.0002 727.983 23.4188 727.962 21.4816L727.913 16.9149C727.892 14.9432 729.485 13.3335 731.457 13.3335C733.414 13.3335 735 14.92 735 16.877V31.5002C735 33.4332 736.567 35.0002 738.5 35.0002C740.433 35.0002 742 33.4332 742 31.5002V12.6669C742 10.7339 743.567 9.16685 745.5 9.16685C747.433 9.16685 749 10.7339 749 12.6669V27.3335C749 29.2665 750.567 30.8335 752.5 30.8335C754.433 30.8335 756 29.2665 756 27.3335V16.5002C756 14.5672 757.567 13.0002 759.5 13.0002C761.433 13.0002 763 11.4332 763 9.50018V0.000183105H630V9.50018C630 11.4332 631.567 13.0002 633.5 13.0002C635.433 13.0002 637 14.5672 637 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M763 31.5002C763 33.4332 764.567 35.0002 766.5 35.0002C768.433 35.0002 770 33.4332 770 31.5002V21.5002C770 19.5672 771.567 18.0002 773.5 18.0002C775.433 18.0002 777 19.5672 777 21.5002V34.0002C777 35.9332 778.567 37.5002 780.5 37.5002C782.433 37.5002 784 35.9332 784 34.0002V16.0002C784 14.0672 785.567 12.5002 787.5 12.5002C789.433 12.5002 791 14.0672 791 16.0002V29.8335C791 31.7665 792.567 33.3335 794.5 33.3335C796.433 33.3335 798 31.7665 798 29.8335V21.8335C798 19.9005 799.567 18.3335 801.5 18.3335C803.433 18.3335 805 19.9005 805 21.8335V36.5002C805 38.4332 806.567 40.0002 808.5 40.0002C810.433 40.0002 812 38.4332 812 36.5002V11.8335C812 9.9005 813.567 8.33349 815.5 8.33349C817.433 8.33349 819 9.9005 819 11.8335V36.5002C819 38.4332 820.567 40.0002 822.5 40.0002C824.433 40.0002 826 38.4332 826 36.5002V21.0002C826 19.0672 827.567 17.5002 829.5 17.5002C831.433 17.5002 833 19.0672 833 21.0002V26.5002C833 28.4332 834.567 30.0002 836.5 30.0002C838.433 30.0002 840 28.4332 840 26.5002V9.50016C840 7.56716 841.567 6.00016 843.5 6.00016C845.433 6.00016 847 7.56716 847 9.50016V21.5189C847 23.4416 848.559 25.0002 850.481 25.0002C852.418 25.0002 853.983 23.4187 853.962 21.4816L853.913 16.9149C853.892 14.9432 855.485 13.3335 857.457 13.3335C859.414 13.3335 861 14.9199 861 16.8769V31.5002C861 33.4332 862.567 35.0002 864.5 35.0002C866.433 35.0002 868 33.4332 868 31.5002V12.6668C868 10.7338 869.567 9.16682 871.5 9.16682C873.433 9.16682 875 10.7338 875 12.6668V27.3335C875 29.2665 876.567 30.8335 878.5 30.8335C880.433 30.8335 882 29.2665 882 27.3335V16.5002C882 14.5672 883.567 13.0002 885.5 13.0002C887.433 13.0002 889 11.4332 889 9.50016V0.000160217H756V9.50016C756 11.4332 757.567 13.0002 759.5 13.0002C761.433 13.0002 763 14.5672 763 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M889 31.5002C889 33.4332 890.567 35.0002 892.5 35.0002C894.433 35.0002 896 33.4332 896 31.5002V21.5002C896 19.5672 897.567 18.0002 899.5 18.0002C901.433 18.0002 903 19.5672 903 21.5002V34.0002C903 35.9332 904.567 37.5002 906.5 37.5002C908.433 37.5002 910 35.9332 910 34.0002V16.0002C910 14.0672 911.567 12.5002 913.5 12.5002C915.433 12.5002 917 14.0672 917 16.0002V29.8335C917 31.7665 918.567 33.3335 920.5 33.3335C922.433 33.3335 924 31.7665 924 29.8335V21.8335C924 19.9005 925.567 18.3335 927.5 18.3335C929.433 18.3335 931 19.9005 931 21.8335V36.5002C931 38.4332 932.567 40.0002 934.5 40.0002C936.433 40.0002 938 38.4332 938 36.5002V11.8335C938 9.9005 939.567 8.33349 941.5 8.33349C943.433 8.33349 945 9.9005 945 11.8335V36.5002C945 38.4332 946.567 40.0002 948.5 40.0002C950.433 40.0002 952 38.4332 952 36.5002V21.0002C952 19.0672 953.567 17.5002 955.5 17.5002C957.433 17.5002 959 19.0672 959 21.0002V26.5002C959 28.4332 960.567 30.0002 962.5 30.0002C964.433 30.0002 966 28.4332 966 26.5002V9.50016C966 7.56716 967.567 6.00016 969.5 6.00016C971.433 6.00016 973 7.56716 973 9.50016V21.5189C973 23.4416 974.559 25.0002 976.481 25.0002C978.418 25.0002 979.983 23.4187 979.962 21.4816L979.913 16.9149C979.892 14.9432 981.485 13.3335 983.457 13.3335C985.414 13.3335 987 14.9199 987 16.8769V31.5002C987 33.4332 988.567 35.0002 990.5 35.0002C992.433 35.0002 994 33.4332 994 31.5002V12.6668C994 10.7338 995.567 9.16682 997.5 9.16682C999.433 9.16682 1001 10.7338 1001 12.6668V27.3335C1001 29.2665 1002.57 30.8335 1004.5 30.8335C1006.43 30.8335 1008 29.2665 1008 27.3335V16.5002C1008 14.5672 1009.57 13.0002 1011.5 13.0002C1013.43 13.0002 1015 11.4332 1015 9.50016V0.000160217H882V9.50016C882 11.4332 883.567 13.0002 885.5 13.0002C887.433 13.0002 889 14.5672 889 16.5002V31.5002Z" fill="black"/>
|
||||
<path d="M1015 31.5001C1015 33.4331 1016.57 35.0001 1018.5 35.0001C1020.43 35.0001 1022 33.4331 1022 31.5001V21.5001C1022 19.5671 1023.57 18.0001 1025.5 18.0001C1027.43 18.0001 1029 19.5671 1029 21.5001V34.0001C1029 35.9331 1030.57 37.5001 1032.5 37.5001C1034.43 37.5001 1036 35.9331 1036 34.0001V16.0001C1036 14.0671 1037.57 12.5001 1039.5 12.5001C1041.43 12.5001 1043 14.0671 1043 16.0001V29.8335C1043 31.7665 1044.57 33.3335 1046.5 33.3335C1048.43 33.3335 1050 31.7665 1050 29.8335V21.8335C1050 19.9005 1051.57 18.3334 1053.5 18.3334C1055.43 18.3334 1057 19.9005 1057 21.8335V36.5001C1057 38.4331 1058.57 40.0001 1060.5 40.0001C1062.43 40.0001 1064 38.4331 1064 36.5001V11.8334C1064 9.90044 1065.57 8.33344 1067.5 8.33344C1069.43 8.33344 1071 9.90044 1071 11.8334V36.5001C1071 38.4331 1072.57 40.0001 1074.5 40.0001C1076.43 40.0001 1078 38.4331 1078 36.5001V21.0001C1078 19.0671 1079.57 17.5001 1081.5 17.5001C1083.43 17.5001 1085 19.0671 1085 21.0001V26.5001C1085 28.4331 1086.57 30.0001 1088.5 30.0001C1090.43 30.0001 1092 28.4331 1092 26.5001V9.5001C1092 7.56711 1093.57 6.00011 1095.5 6.00011C1097.43 6.00011 1099 7.56711 1099 9.5001V21.5189C1099 23.4415 1100.56 25.0001 1102.48 25.0001C1104.42 25.0001 1105.98 23.4187 1105.96 21.4816L1105.91 16.9149C1105.89 14.9431 1107.48 13.3334 1109.46 13.3334C1111.41 13.3334 1113 14.9199 1113 16.8769V31.5001C1113 33.4331 1114.57 35.0001 1116.5 35.0001C1118.43 35.0001 1120 33.4331 1120 31.5001V12.6668C1120 10.7338 1121.57 9.16678 1123.5 9.16678C1125.43 9.16678 1127 10.7338 1127 12.6668V27.3335C1127 29.2665 1128.57 30.8335 1130.5 30.8335C1132.43 30.8335 1134 29.2665 1134 27.3335V16.5001C1134 14.5671 1135.57 13.0001 1137.5 13.0001C1139.43 13.0001 1141 11.4331 1141 9.5001V0.000106812H1008V9.5001C1008 11.4331 1009.57 13.0002 1011.5 13.0002C1013.43 13.0002 1015 14.5671 1015 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1141 31.5001C1141 33.4331 1142.57 35.0001 1144.5 35.0001C1146.43 35.0001 1148 33.4331 1148 31.5001V21.5001C1148 19.5671 1149.57 18.0001 1151.5 18.0001C1153.43 18.0001 1155 19.5671 1155 21.5001V34.0001C1155 35.9331 1156.57 37.5001 1158.5 37.5001C1160.43 37.5001 1162 35.9331 1162 34.0001V16.0001C1162 14.0671 1163.57 12.5001 1165.5 12.5001C1167.43 12.5001 1169 14.0671 1169 16.0001V29.8335C1169 31.7665 1170.57 33.3335 1172.5 33.3335C1174.43 33.3335 1176 31.7665 1176 29.8335V21.8335C1176 19.9005 1177.57 18.3334 1179.5 18.3334C1181.43 18.3334 1183 19.9005 1183 21.8335V36.5001C1183 38.4331 1184.57 40.0001 1186.5 40.0001C1188.43 40.0001 1190 38.4331 1190 36.5001V11.8334C1190 9.90044 1191.57 8.33344 1193.5 8.33344C1195.43 8.33344 1197 9.90044 1197 11.8334V36.5001C1197 38.4331 1198.57 40.0001 1200.5 40.0001C1202.43 40.0001 1204 38.4331 1204 36.5001V21.0001C1204 19.0671 1205.57 17.5001 1207.5 17.5001C1209.43 17.5001 1211 19.0671 1211 21.0001V26.5001C1211 28.4331 1212.57 30.0001 1214.5 30.0001C1216.43 30.0001 1218 28.4331 1218 26.5001V9.5001C1218 7.56711 1219.57 6.00011 1221.5 6.00011C1223.43 6.00011 1225 7.56711 1225 9.5001V21.5189C1225 23.4415 1226.56 25.0001 1228.48 25.0001C1230.42 25.0001 1231.98 23.4187 1231.96 21.4816L1231.91 16.9149C1231.89 14.9431 1233.48 13.3334 1235.46 13.3334C1237.41 13.3334 1239 14.9199 1239 16.8769V31.5001C1239 33.4331 1240.57 35.0001 1242.5 35.0001C1244.43 35.0001 1246 33.4331 1246 31.5001V12.6668C1246 10.7338 1247.57 9.16678 1249.5 9.16678C1251.43 9.16678 1253 10.7338 1253 12.6668V27.3335C1253 29.2665 1254.57 30.8335 1256.5 30.8335C1258.43 30.8335 1260 29.2665 1260 27.3335V16.5001C1260 14.5671 1261.57 13.0001 1263.5 13.0001C1265.43 13.0001 1267 11.4331 1267 9.5001V0.000106812H1134V9.5001C1134 11.4331 1135.57 13.0001 1137.5 13.0001C1139.43 13.0001 1141 14.5671 1141 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1267 31.5001C1267 33.4331 1268.57 35.0001 1270.5 35.0001C1272.43 35.0001 1274 33.4331 1274 31.5001V21.5001C1274 19.5671 1275.57 18.0001 1277.5 18.0001C1279.43 18.0001 1281 19.5671 1281 21.5001V34.0001C1281 35.9331 1282.57 37.5001 1284.5 37.5001C1286.43 37.5001 1288 35.9331 1288 34.0001V16.0001C1288 14.0671 1289.57 12.5001 1291.5 12.5001C1293.43 12.5001 1295 14.0671 1295 16.0001V29.8334C1295 31.7664 1296.57 33.3334 1298.5 33.3334C1300.43 33.3334 1302 31.7664 1302 29.8334V21.8334C1302 19.9004 1303.57 18.3334 1305.5 18.3334C1307.43 18.3334 1309 19.9004 1309 21.8334V36.5001C1309 38.4331 1310.57 40.0001 1312.5 40.0001C1314.43 40.0001 1316 38.4331 1316 36.5001V11.8334C1316 9.90042 1317.57 8.33342 1319.5 8.33342C1321.43 8.33342 1323 9.90042 1323 11.8334V36.5001C1323 38.4331 1324.57 40.0001 1326.5 40.0001C1328.43 40.0001 1330 38.4331 1330 36.5001V21.0001C1330 19.0671 1331.57 17.5001 1333.5 17.5001C1335.43 17.5001 1337 19.0671 1337 21.0001V26.5001C1337 28.4331 1338.57 30.0001 1340.5 30.0001C1342.43 30.0001 1344 28.4331 1344 26.5001V9.50008C1344 7.56709 1345.57 6.00008 1347.5 6.00008C1349.43 6.00008 1351 7.56709 1351 9.50008V21.5189C1351 23.4415 1352.56 25.0001 1354.48 25.0001C1356.42 25.0001 1357.98 23.4187 1357.96 21.4815L1357.91 16.9148C1357.89 14.9431 1359.48 13.3334 1361.46 13.3334C1363.41 13.3334 1365 14.9199 1365 16.8769V31.5001C1365 33.4331 1366.57 35.0001 1368.5 35.0001C1370.43 35.0001 1372 33.4331 1372 31.5001V12.6668C1372 10.7338 1373.57 9.16675 1375.5 9.16675C1377.43 9.16675 1379 10.7337 1379 12.6667V27.3334C1379 29.2664 1380.57 30.8334 1382.5 30.8334C1384.43 30.8334 1386 29.2664 1386 27.3334V16.5001C1386 14.5671 1387.57 13.0001 1389.5 13.0001C1391.43 13.0001 1393 11.4331 1393 9.50008V8.39233e-05H1260V9.50008C1260 11.4331 1261.57 13.0001 1263.5 13.0001C1265.43 13.0001 1267 14.5671 1267 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1393 31.5001C1393 33.4331 1394.57 35.0001 1396.5 35.0001C1398.43 35.0001 1400 33.4331 1400 31.5001V21.5001C1400 19.5671 1401.57 18.0001 1403.5 18.0001C1405.43 18.0001 1407 19.5671 1407 21.5001V34.0001C1407 35.9331 1408.57 37.5001 1410.5 37.5001C1412.43 37.5001 1414 35.9331 1414 34.0001V16.0001C1414 14.0671 1415.57 12.5001 1417.5 12.5001C1419.43 12.5001 1421 14.0671 1421 16.0001V29.8334C1421 31.7664 1422.57 33.3334 1424.5 33.3334C1426.43 33.3334 1428 31.7664 1428 29.8334V21.8334C1428 19.9004 1429.57 18.3334 1431.5 18.3334C1433.43 18.3334 1435 19.9004 1435 21.8334V36.5001C1435 38.4331 1436.57 40.0001 1438.5 40.0001C1440.43 40.0001 1442 38.4331 1442 36.5001V11.8334C1442 9.90042 1443.57 8.33342 1445.5 8.33342C1447.43 8.33342 1449 9.90042 1449 11.8334V36.5001C1449 38.4331 1450.57 40.0001 1452.5 40.0001C1454.43 40.0001 1456 38.4331 1456 36.5001V21.0001C1456 19.0671 1457.57 17.5001 1459.5 17.5001C1461.43 17.5001 1463 19.0671 1463 21.0001V26.5001C1463 28.4331 1464.57 30.0001 1466.5 30.0001C1468.43 30.0001 1470 28.4331 1470 26.5001V9.50008C1470 7.56709 1471.57 6.00008 1473.5 6.00008C1475.43 6.00008 1477 7.56709 1477 9.50008V21.5189C1477 23.4415 1478.56 25.0001 1480.48 25.0001C1482.42 25.0001 1483.98 23.4187 1483.96 21.4815L1483.91 16.9148C1483.89 14.9431 1485.48 13.3334 1487.46 13.3334C1489.41 13.3334 1491 14.9199 1491 16.8769V31.5001C1491 33.4331 1492.57 35.0001 1494.5 35.0001C1496.43 35.0001 1498 33.4331 1498 31.5001V12.6668C1498 10.7338 1499.57 9.16675 1501.5 9.16675C1503.43 9.16675 1505 10.7337 1505 12.6667V27.3334C1505 29.2664 1506.57 30.8334 1508.5 30.8334C1510.43 30.8334 1512 29.2664 1512 27.3334V16.5001C1512 14.5671 1513.57 13.0001 1515.5 13.0001C1517.43 13.0001 1519 11.4331 1519 9.50008V8.39233e-05H1386V9.50008C1386 11.4331 1387.57 13.0001 1389.5 13.0001C1391.43 13.0001 1393 14.5671 1393 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1519 31.5001C1519 33.4331 1520.57 35.0001 1522.5 35.0001C1524.43 35.0001 1526 33.4331 1526 31.5001V21.5001C1526 19.5671 1527.57 18.0001 1529.5 18.0001C1531.43 18.0001 1533 19.5671 1533 21.5001V34.0001C1533 35.9331 1534.57 37.5001 1536.5 37.5001C1538.43 37.5001 1540 35.9331 1540 34.0001V16.0001C1540 14.0671 1541.57 12.5001 1543.5 12.5001C1545.43 12.5001 1547 14.0671 1547 16.0001V29.8334C1547 31.7664 1548.57 33.3334 1550.5 33.3334C1552.43 33.3334 1554 31.7664 1554 29.8334V21.8334C1554 19.9004 1555.57 18.3334 1557.5 18.3334C1559.43 18.3334 1561 19.9004 1561 21.8334V36.5001C1561 38.4331 1562.57 40.0001 1564.5 40.0001C1566.43 40.0001 1568 38.4331 1568 36.5001V11.8334C1568 9.90042 1569.57 8.33343 1571.5 8.33343C1573.43 8.33343 1575 9.90043 1575 11.8334V36.5001C1575 38.4331 1576.57 40.0001 1578.5 40.0001C1580.43 40.0001 1582 38.4331 1582 36.5001V21.0001C1582 19.0671 1583.57 17.5001 1585.5 17.5001C1587.43 17.5001 1589 19.0671 1589 21.0001V26.5001C1589 28.4331 1590.57 30.0001 1592.5 30.0001C1594.43 30.0001 1596 28.4331 1596 26.5001V9.50009C1596 7.56709 1597.57 6.00009 1599.5 6.00009C1601.43 6.00009 1603 7.56709 1603 9.50009V21.5189C1603 23.4415 1604.56 25.0001 1606.48 25.0001C1608.42 25.0001 1609.98 23.4187 1609.96 21.4815L1609.91 16.9148C1609.89 14.9431 1611.48 13.3334 1613.46 13.3334C1615.41 13.3334 1617 14.9199 1617 16.8769V31.5001C1617 33.4331 1618.57 35.0001 1620.5 35.0001C1622.43 35.0001 1624 33.4331 1624 31.5001V12.6668C1624 10.7338 1625.57 9.16675 1627.5 9.16675C1629.43 9.16675 1631 10.7338 1631 12.6668V27.3334C1631 29.2664 1632.57 30.8334 1634.5 30.8334C1636.43 30.8334 1638 29.2664 1638 27.3334V16.5001C1638 14.5671 1639.57 13.0001 1641.5 13.0001C1643.43 13.0001 1645 11.4331 1645 9.50009V9.15527e-05H1512V9.50009C1512 11.4331 1513.57 13.0001 1515.5 13.0001C1517.43 13.0001 1519 14.5671 1519 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1645 31.5001C1645 33.4331 1646.57 35.0001 1648.5 35.0001C1650.43 35.0001 1652 33.4331 1652 31.5001V21.5001C1652 19.5671 1653.57 18.0001 1655.5 18.0001C1657.43 18.0001 1659 19.5671 1659 21.5001V34.0001C1659 35.9331 1660.57 37.5001 1662.5 37.5001C1664.43 37.5001 1666 35.9331 1666 34.0001V16.0001C1666 14.0671 1667.57 12.5001 1669.5 12.5001C1671.43 12.5001 1673 14.0671 1673 16.0001V29.8334C1673 31.7664 1674.57 33.3334 1676.5 33.3334C1678.43 33.3334 1680 31.7664 1680 29.8334V21.8334C1680 19.9004 1681.57 18.3334 1683.5 18.3334C1685.43 18.3334 1687 19.9004 1687 21.8334V36.5001C1687 38.4331 1688.57 40.0001 1690.5 40.0001C1692.43 40.0001 1694 38.4331 1694 36.5001V11.8334C1694 9.90042 1695.57 8.33343 1697.5 8.33343C1699.43 8.33343 1701 9.90043 1701 11.8334V36.5001C1701 38.4331 1702.57 40.0001 1704.5 40.0001C1706.43 40.0001 1708 38.4331 1708 36.5001V21.0001C1708 19.0671 1709.57 17.5001 1711.5 17.5001C1713.43 17.5001 1715 19.0671 1715 21.0001V26.5001C1715 28.4331 1716.57 30.0001 1718.5 30.0001C1720.43 30.0001 1722 28.4331 1722 26.5001V9.50009C1722 7.56709 1723.57 6.00009 1725.5 6.00009C1727.43 6.00009 1729 7.56709 1729 9.50009V21.5189C1729 23.4415 1730.56 25.0001 1732.48 25.0001C1734.42 25.0001 1735.98 23.4187 1735.96 21.4815L1735.91 16.9148C1735.89 14.9431 1737.48 13.3334 1739.46 13.3334C1741.41 13.3334 1743 14.9199 1743 16.8769V31.5001C1743 33.4331 1744.57 35.0001 1746.5 35.0001C1748.43 35.0001 1750 33.4331 1750 31.5001V12.6668C1750 10.7338 1751.57 9.16675 1753.5 9.16675C1755.43 9.16675 1757 10.7338 1757 12.6668V27.3334C1757 29.2664 1758.57 30.8334 1760.5 30.8334C1762.43 30.8334 1764 29.2664 1764 27.3334V16.5001C1764 14.5671 1765.57 13.0001 1767.5 13.0001C1769.43 13.0001 1771 11.4331 1771 9.50009V9.15527e-05H1638V9.50009C1638 11.4331 1639.57 13.0001 1641.5 13.0001C1643.43 13.0001 1645 14.5671 1645 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1771 31.5001C1771 33.4331 1772.57 35.0001 1774.5 35.0001C1776.43 35.0001 1778 33.4331 1778 31.5001V21.5001C1778 19.5671 1779.57 18.0001 1781.5 18.0001C1783.43 18.0001 1785 19.5671 1785 21.5001V34.0001C1785 35.9331 1786.57 37.5001 1788.5 37.5001C1790.43 37.5001 1792 35.9331 1792 34.0001V16.0001C1792 14.0671 1793.57 12.5001 1795.5 12.5001C1797.43 12.5001 1799 14.0671 1799 16.0001V29.8335C1799 31.7665 1800.57 33.3335 1802.5 33.3335C1804.43 33.3335 1806 31.7665 1806 29.8335V21.8335C1806 19.9005 1807.57 18.3335 1809.5 18.3335C1811.43 18.3335 1813 19.9005 1813 21.8335V36.5001C1813 38.4331 1814.57 40.0001 1816.5 40.0001C1818.43 40.0001 1820 38.4331 1820 36.5001V11.8335C1820 9.90047 1821.57 8.33347 1823.5 8.33347C1825.43 8.33347 1827 9.90047 1827 11.8335V36.5001C1827 38.4331 1828.57 40.0001 1830.5 40.0001C1832.43 40.0001 1834 38.4331 1834 36.5001V21.0001C1834 19.0671 1835.57 17.5001 1837.5 17.5001C1839.43 17.5001 1841 19.0671 1841 21.0001V26.5001C1841 28.4331 1842.57 30.0001 1844.5 30.0001C1846.43 30.0001 1848 28.4331 1848 26.5001V9.50013C1848 7.56713 1849.57 6.00013 1851.5 6.00013C1853.43 6.00013 1855 7.56713 1855 9.50013V21.5189C1855 23.4415 1856.56 25.0001 1858.48 25.0001C1860.42 25.0001 1861.98 23.4187 1861.96 21.4816L1861.91 16.9149C1861.89 14.9432 1863.48 13.3335 1865.46 13.3335C1867.41 13.3335 1869 14.9199 1869 16.8769V31.5001C1869 33.4331 1870.57 35.0001 1872.5 35.0001C1874.43 35.0001 1876 33.4331 1876 31.5001V12.6668C1876 10.7338 1877.57 9.1668 1879.5 9.1668C1881.43 9.1668 1883 10.7338 1883 12.6668V27.3335C1883 29.2665 1884.57 30.8335 1886.5 30.8335C1888.43 30.8335 1890 29.2665 1890 27.3335V16.5001C1890 14.5671 1891.57 13.0001 1893.5 13.0001C1895.43 13.0001 1897 11.4331 1897 9.50013V0.0001297H1764V9.50013C1764 11.4331 1765.57 13.0001 1767.5 13.0001C1769.43 13.0001 1771 14.5671 1771 16.5001V31.5001Z" fill="black"/>
|
||||
<path d="M1890 0H1920V12C1920 12.5523 1919.55 13 1919 13V13C1918.45 13 1918 13.4477 1918 14V24.5C1918 26.433 1916.43 28 1914.5 28V28C1912.57 28 1911 26.433 1911 24.5V10.5C1911 8.567 1909.43 7 1907.5 7V7C1905.57 7 1904 8.567 1904 10.5V18.5C1904 20.433 1902.43 22 1900.5 22V22C1898.57 22 1897 20.433 1897 18.5V16.5C1897 14.567 1895.43 13 1893.5 13V13C1891.57 13 1890 11.433 1890 9.5V0Z" fill="black"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1_2">
|
||||
<rect width="1920" height="40" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="496"
|
||||
width="496"
|
||||
id="svg4"
|
||||
version="1.1"
|
||||
viewBox="0 0 496 496"
|
||||
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/">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<style
|
||||
id="style933">.cls-1{fill:#e9500e;}</style>
|
||||
</defs>
|
||||
<g
|
||||
id="g959"
|
||||
transform="matrix(0.61580374,0,0,0.61580374,12.468621,21.817361)">
|
||||
<circle
|
||||
class="cls-1"
|
||||
cx="109.02696"
|
||||
cy="348.09412"
|
||||
r="109.02696"
|
||||
id="circle937"
|
||||
style="fill:#e5e1e6;fill-opacity:1" />
|
||||
<ellipse
|
||||
class="cls-1"
|
||||
cx="563.08368"
|
||||
cy="109.02698"
|
||||
id="circle939"
|
||||
rx="109.02662"
|
||||
ry="109.02698"
|
||||
style="fill:#e5e1e6;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 354.92039,628.68582 c -77.01891,-15.8253 -145.43904,-68.0075 -181.0712,-138.0982 -28.93817,13.2078 -61.94374,17.2648 -93.21911,11.4583 51.75695,133.1719 190.35352,224.9404 332.95672,222.1315 -21.33123,-25.4775 -29.54323,-61.4497 -33.6059,-91.347 -8.41211,-0.9891 -16.77785,-2.3728 -25.06051,-4.1446 z"
|
||||
id="path941"
|
||||
style="fill:#e5e1e6;fill-opacity:1" />
|
||||
<circle
|
||||
class="cls-1"
|
||||
cx="538.52045"
|
||||
cy="629.28723"
|
||||
r="109.02698"
|
||||
id="circle943"
|
||||
style="fill:#e5e1e6;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 690.23645,589.24102 c 85.45532,-105.22585 101.63344,-261.1123 39.28817,-381.54731 -6.39094,-12.73675 -13.54502,-25.09063 -21.41334,-36.97169 -12.438,29.45803 -34.16446,54.90303 -61.30975,71.8031 44.28267,81.68487 40.82043,186.89167 -8.73688,265.4884 25.36982,20.67266 43.92291,49.5585 52.1718,81.2275 z"
|
||||
id="path945"
|
||||
style="fill:#e5e1e6;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 100.61489,191.73908 c 31.72478,-1.7424 63.98682,6.52836 90.98772,23.31994 C 239.1057,145.42119 321.41819,101.39883 405.71083,100.54968 405.7585,68.81709 422.81019,34.82283 437.18034,12.00596 323.8486,3.01574 208.0489,52.71326 135.95771,140.54908 c -13.26,15.97642 -25.10697,33.12582 -35.34282,51.19 z"
|
||||
id="path947"
|
||||
style="fill:#e5e1e6;fill-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="496"
|
||||
width="496"
|
||||
id="svg4"
|
||||
version="1.1"
|
||||
viewBox="0 0 496 496"
|
||||
xml:space="preserve"
|
||||
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/"><metadata
|
||||
id="metadata10"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs8"><style
|
||||
id="style933">.cls-1{fill:#e9500e;}</style></defs><g
|
||||
style="fill:#e5e1e6;fill-opacity:1"
|
||||
id="g128"
|
||||
transform="matrix(0.63842458,0,0,0.63842458,10.630929,40.503173)"><path
|
||||
d="m 125,542 62.353,108 h 375.29 L 625,542 Z M 750,324.998 687.103,434 H 288 L 687.103,216 Z M 0,325.002 62.897,216 H 462 L 62.897,434 Z M 125,108 187.353,0 h 375.29 L 625,108 Z"
|
||||
id="path119"
|
||||
style="fill:#e5e1e6;fill-opacity:1" /></g></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 574 KiB |
@@ -0,0 +1,128 @@
|
||||
[
|
||||
[
|
||||
{
|
||||
"icon": "pin_drop",
|
||||
"name": "Workspaces: navigation",
|
||||
"binds": [
|
||||
{ "keys": [ "", "+", "#" ], "action": "Go to workspace #" },
|
||||
{ "keys": [ "", "+", "S" ], "action": "Toggle special workspace" },
|
||||
{ "keys": [ "", "+", "(Scroll ↑↓)" ], "action": "Go to workspace -1/+1" },
|
||||
{ "keys": [ "Ctrl", "", "+", "←"], "action": "Go to workspace on the left" },
|
||||
{ "keys": [ "Ctrl", "", "+", "→" ], "action": "Go to workspace on the right" },
|
||||
{ "keys": [ "", "+", "PageUp" ], "action": "Go to workspace on the left" },
|
||||
{ "keys": [ "", "+", "PageDown" ], "action": "Go to workspace on the right" }
|
||||
],
|
||||
"appeartick": 1
|
||||
},
|
||||
{
|
||||
"icon": "overview_key",
|
||||
"name": "Workspaces: management",
|
||||
"binds": [
|
||||
{ "keys": [ "", "Alt", "+", "#" ], "action": "Move window to workspace #" },
|
||||
{ "keys": [ "", "Alt", "+", "S" ], "action": "Move window to special workspace" },
|
||||
{ "keys": [ "", "Alt", "+", "PageUp" ], "action": "Move window to workspace on the left" },
|
||||
{ "keys": [ "", "Alt", "+", "PageDown" ], "action": "Move window to workspace on the right" }
|
||||
],
|
||||
"appeartick": 1
|
||||
},
|
||||
{
|
||||
"icon": "move_group",
|
||||
"name": "Windows",
|
||||
"binds": [
|
||||
{ "keys": [ "", "+", "←↑→↓" ], "action": "Focus window in direction" },
|
||||
{ "keys": [ "", "Shift", "+", "←↑→↓" ], "action": "Swap window in direction" },
|
||||
{ "keys": [ "", "+", ";" ], "action": "Split ratio -" },
|
||||
{ "keys": [ "", "+", "'" ], "action": "Split ratio +" },
|
||||
{ "keys": [ "", "+", "Lmb" ], "action": "Move window" },
|
||||
{ "keys": [ "", "+", "Mmb" ], "action": "Move window" },
|
||||
{ "keys": [ "", "+", "Rmb" ], "action": "Resize window" },
|
||||
{ "keys": [ "", "+", "F" ], "action": "Fullscreen" },
|
||||
{ "keys": [ "", "Alt", "+", "F" ], "action": "Fake fullscreen" }
|
||||
],
|
||||
"appeartick": 1
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"icon": "widgets",
|
||||
"name": "Eww widgets",
|
||||
"binds": [
|
||||
{ "keys": [ "" ], "action": "Open overview/launcher" },
|
||||
{ "keys": [ "Ctrl", "", "+", "R" ], "action": "Kill and restart Eww" },
|
||||
{ "keys": [ "", "+", "B" ], "action": "Toggle left sidebar" },
|
||||
{ "keys": [ "", "+", "N" ], "action": "Toggle right sidebar" },
|
||||
{ "keys": [ "", "+", "G" ], "action": "Toggle volume mixer" },
|
||||
{ "keys": [ "", "+", "M" ], "action": "Toggle useless audio visualizer" },
|
||||
{ "keys": [ "(right)Ctrl" ], "action": "Dismiss notification & close menus" }
|
||||
],
|
||||
"appeartick": 2
|
||||
},
|
||||
{
|
||||
"icon": "construction",
|
||||
"name": "Utilities",
|
||||
"binds": [
|
||||
{ "keys": [ "PrtSc" ], "action": "Screenshot → Clipboard" },
|
||||
{ "keys": [ "", "Shift", "+", "S" ], "action": "Screen snip → Clipboard" },
|
||||
{ "keys": [ "", "Shift", "+", "T" ], "action": "Image to text → Clipboard" },
|
||||
{ "keys": [ "", "Shift", "+", "C" ], "action": "Color picker" },
|
||||
{ "keys": [ "", "Alt", "+", "R" ], "action": "Record region" },
|
||||
{ "keys": [ "Ctrl", "Alt", "+", "R" ], "action": "Record region with sound" },
|
||||
{ "keys": [ "", "Shift", "Alt", "+", "R" ], "action": "Record screen with sound" }
|
||||
],
|
||||
"appeartick": 2
|
||||
},
|
||||
{
|
||||
"icon": "edit",
|
||||
"name": "Edit mode",
|
||||
"binds": [
|
||||
{ "keys": [ "Esc" ], "action": "Exit Edit mode" },
|
||||
{ "keys": [ "#" ], "action": "Go to to workspace #" },
|
||||
{ "keys": [ "Alt", "+", "#" ], "action": "Dump windows to workspace #" },
|
||||
{ "keys": [ "Shift", "+", "#" ], "action": "Swap windows with workspace #" },
|
||||
{ "keys": [ "Lmb" ], "action": "Move window" },
|
||||
{ "keys": [ "Mmb" ], "action": "Move window" },
|
||||
{ "keys": [ "Rmb" ], "action": "Resize window" }
|
||||
],
|
||||
"appeartick": 2
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"icon": "apps",
|
||||
"name": "Apps",
|
||||
"binds": [
|
||||
{ "keys": [ "", "+", "T" ], "action": "Launch terminal: foot" },
|
||||
{ "keys": [ "", "+", "↵" ], "action": "Launch terminal: WezTerm" },
|
||||
{ "keys": [ "", "+", "W" ], "action": "Launch browser: Firefox" },
|
||||
{ "keys": [ "", "+", "C" ], "action": "Launch editor: vscode" },
|
||||
{ "keys": [ "", "+", "X" ], "action": "Launch editor: GNOME Text Editor" },
|
||||
{ "keys": [ "", "+", "I" ], "action": "Launch settings: GNOME Control center" }
|
||||
],
|
||||
"appeartick": 3
|
||||
},
|
||||
{
|
||||
"icon": "keyboard",
|
||||
"name": "Typing",
|
||||
"binds": [
|
||||
{ "keys": [ "", "+", "V" ], "action": "Clipboard" },
|
||||
{ "keys": [ "", "+", "." ], "action": "Emoji picker" },
|
||||
{ "keys": [ "", "+", "Space" ], "action": "Switch language" }
|
||||
],
|
||||
"appeartick": 3
|
||||
},
|
||||
{
|
||||
"icon": "terminal",
|
||||
"name": "Launcher commands",
|
||||
"binds": [
|
||||
{ "keys": [ ">light" ], "action": "Switch to light theme" },
|
||||
{ "keys": [ ">dark" ], "action": "Switch to dark theme" },
|
||||
{ "keys": [ ">img" ], "action": "Select wallpaper and generate colorscheme" },
|
||||
{ "keys": [ ">save", "THEME_NAME" ], "action": "Save current colorscheme as THEME_NAME" },
|
||||
{ "keys": [ ">load", "THEME_NAME" ], "action": "Load colorscheme THEME_NAME" },
|
||||
{ "keys": [ ">music" ], "action": "Apply colorscheme from media cover" },
|
||||
{ "keys": [ ">r" ], "action": "Restart Eww" }
|
||||
],
|
||||
"appeartick": 3
|
||||
}
|
||||
]
|
||||
]
|
||||
@@ -0,0 +1,9 @@
|
||||
[
|
||||
{"name": "Documents", "path": "~/Documents", "icon": "description"},
|
||||
{"name": "Downloads", "path": "~/Downloads", "icon": "download"},
|
||||
{"name": "Music", "path": "~/Music", "icon": "music_note"},
|
||||
{"name": "Pictures", "path": "~/Pictures", "icon": "image"},
|
||||
{"name": "Videos", "path": "~/Videos", "icon": "movie"},
|
||||
{"name": "eww", "path": "~/.config/eww", "icon": "widgets"},
|
||||
{"name": "hypr", "path": "~/.config/hypr", "icon": "water_drop"}
|
||||
]
|
||||
@@ -0,0 +1,14 @@
|
||||
[
|
||||
{
|
||||
"name": "English (United States)",
|
||||
"name_method": "US",
|
||||
"name_ibus": "xkb:us::eng",
|
||||
"name_abbr": "ENG"
|
||||
},
|
||||
{
|
||||
"name": "Vietnamese",
|
||||
"name_method": "Vietnamese Telex (Bamboo Engine)",
|
||||
"name_ibus": "Bamboo::Us",
|
||||
"name_abbr": "VIE"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,34 @@
|
||||
[
|
||||
{
|
||||
"address": [],
|
||||
"class": "org.gnome.Nautilus",
|
||||
"count": 0,
|
||||
"icon": "/usr/share/icons/Win11-dark/apps/scalable/nautilus.svg",
|
||||
"workspace": [],
|
||||
"exec": "nautilus --new-window &"
|
||||
},
|
||||
{
|
||||
"address": [],
|
||||
"class": "firefox",
|
||||
"count": 0,
|
||||
"icon": "/usr/share/icons/Win11-dark/apps/scalable/firefox.svg",
|
||||
"workspace": [],
|
||||
"exec": "firefox &"
|
||||
},
|
||||
{
|
||||
"address": [],
|
||||
"class": "code-url-handler",
|
||||
"count": 0,
|
||||
"icon": "/usr/share/icons/Win11-dark/apps/scalable/code.svg",
|
||||
"workspace": [],
|
||||
"exec": "code --password-store=gnome --enable-features=UseOzonePlatform --ozone-platform=wayland &"
|
||||
},
|
||||
{
|
||||
"address": [],
|
||||
"class": "foot",
|
||||
"count": 0,
|
||||
"icon": "/usr/share/icons/Win11-dark/apps/scalable/foot.svg",
|
||||
"workspace": [],
|
||||
"exec": "foot &"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,2 @@
|
||||
|
||||
["wallpaper scroll, multi layer with diff speed","hyprlewd = hyprland + newm","hyprland: mouse warp with anim","hyprland: allow movefocus to adjacent workspaces","hyprland: submap inherit global","install tutorial","hyprland: cut corners instead of just rounding"]
|
||||
@@ -0,0 +1,9 @@
|
||||
[
|
||||
{"name": "Discord", "url": "https://discord.com/app", "icon": ""},
|
||||
{"name": "Youtube", "url": "https://youtube.com", "icon": ""},
|
||||
{"name": "SoundCloud", "url": "https://soundcloud.com", "icon": ""},
|
||||
{"name": "GitHub", "url": "https://github.com", "icon": ""},
|
||||
{"name": "Pixiv", "url": "https://pixiv.net", "icon": ""},
|
||||
{"name": "Gmail", "url": "https://mail.google.com", "icon": ""},
|
||||
{"name": "G Translate", "url": "https://translate.google.com", "icon": ""}
|
||||
]
|
||||
@@ -0,0 +1,6 @@
|
||||
(defwidget separator_widget []
|
||||
(box
|
||||
:valign "center"
|
||||
:class "separator"
|
||||
)
|
||||
)
|
||||