DistroHopper 0.80

This commit is contained in:
zenobit 2023-12-14 02:03:09 +01:00
parent 0c8e1a5205
commit 43e2db5741
176 changed files with 951828 additions and 0 deletions

781
dh Executable file
View File

@ -0,0 +1,781 @@
#!/usr/bin/env bash
# shellcheck disable=1078,1079,1091,2027,2034
# shellcheck source=/dev/null
if [[ -f "lang/${LANGUAGE}.cfg" ]]; then
source "lang/${LANGUAGE}.cfg"
elif [[ -f "lang/${LANG:0:5}.cfg" ]]; then
source "lang/${LANG:0:5}.cfg"
elif [[ -f "lang/${LANG:0:2}.cfg" ]]; then
source "lang/${LANG:0:2}.cfg"
else
source "lang/en.cfg"
fi
trap 'exit' SIGINT SIGTERM SIGQUIT
set -e
echo "$MSG_RUNNING"
function variables_set() {
# DEBUG mod
#bash -x ./dh 2>&1 | tee output.log
#progname="${progname:="${0##*/}"}"
progname="DistroHopper"
version="0.80"
#GTK_THEME="alt-dialog"
DH_CONFIG_DIR="$HOME/.config/distrohopper"
DH_CONFIG="$DH_CONFIG_DIR/distrohopper.conf"
DH_ICON_DIR="/usr/share/icons/distrohopper"
PATH_PREFIX="/usr/bin/"
TMP_DIR="/tmp"
terminal="sakura"
replace='"!"'
#export "DH_CONFIG_DIR" "DH_CONFIG" "replace" "DH_ICON_DIR" "PATH_PREFIX" "TMP_DIR" "terminal"
check_and_set_mode
# Set traps to catch the signals and exit gracefully
trap "exit" INT
trap "exit" EXIT
}
function bugs_notice_show() {
echo ""
echo "$MSG_DONE"
echo ""
echo "$MSG_BUGS"
echo "$MSG_FEEDBACK"
echo "$MSG_LIKE"
echo "$MSG_IMPROVE"
echo "$MSG_KNOW"
echo ""
echo "$MSG_FLAWLESS"
echo " zenobit"
}
function help_show() {
echo "DistroHopper v. $version"
echo "quickemu v. $("$portable_prefix"quickemu --version)"
printf "$MSG_H_FIRST ./dh i && dh s g\n"
echo "$MSG_ARGUMENTS"
printf $"\th\thelp\t\t\t$MSG_H_HELP\n"
echo "---------------------------------------------------------"
printf $"\td\tdir\t\t\t$MSG_H_DIR\n"
printf $"\ti\tinstall\t\t\t$MSG_H_INSTALL\n"
echo "---------------------------------------------------------"
printf $"\tm\tmode\t\t\t$MSG_H_MODE\n"
echo "---------------------------------------------------------"
printf $"\ts\tsupported\t\t$MSG_H_SUPPORTED\n"
printf $"\tr\tready\t\t\t$MSG_H_READY\n"
echo "---------------------------------------------------------"
printf $"\tt\ttui\t\t\t$MSG_H_TUI\n"
printf $"\tg\tgui\t\t\t$MSG_H_GUI\n"
echo "---------------------------------------------------------"
printf $"\ta\tadd\t\t\t$MSG_H_ADD\n"
printf $"\tf\tfunctions\t\t$MSG_H_SORT\n"
printf $"\tp\tpush\t\t\t$MSG_H_PUSH\n"
echo "---------------------------------------------------------"
printf $"\tc\tcopy\t\t\t$MSG_H_COPY\n"
echo "---------------------------------------------------------"
printf $"\tl\tlanguage\t\t$MSG_H_TRANSLATE\n"
echo "---------------------------------------------------------"
echo "$MSG_HOMEPAGE"
echo "$MSG_HOSTED"
echo "$MSG_CHAT"
}
function check_and_set_mode() {
[ -f "$DH_CONFIG" ] && work_in_choosed_dir || work_in_current_dir
}
function work_in_current_dir() {
VMS_DIR="./"
DH_CONFIG_DIR="./"
DH_ICON_DIR="./icons"
portable_prefix='./'
#export "VMS_DIR" "DH_CONFIG_DIR" "DH_ICON_DIR" "terminal" "replace" "portable_prefix"
}
function work_in_choosed_dir() {
# shellcheck source=distrohopper.conf
source "$DH_CONFIG"
portable_prefix=''
#export "portable_prefix"
}
# installation ---------------------------------------------------------
function dependencies_check_gui() {
[ -f "$PATH_PREFIX/yad" ] || echo "$MSG_YAD"
}
function dependencies_check_tui() {
[ -f "$PATH_PREFIX/fzf" ] || echo "$MSG_FZF"
}
function desktop_entry_create() {
cat <<EOF > ${DESKTOP_FILE}
[Desktop Entry]
Version=$version
Type=$type
Name=$name
GenericName=$gname
Comment=$comment
Exec=$execmd
Icon=$icon
Terminal=$terminal
X-MultipleArgs=$args
Type=$type
Categories=$categories
StartupNotify=$notify
MimeType=$mime
Keywords=$keyword
EOF
}
function directory_structure_create() {
source distrohopper.conf
echo "$MSG_CONFIG"
mkdir -p "$DH_CONFIG_DIR"
echo "$MSG_ICONS"
mkdir -p "$DH_ICON_DIR" >/dev/null 2>&1 || sudo mkdir -p "$DH_ICON_DIR"
}
function desktop_entry_distrohopper() {
echo "$MSG_INTERM"
run_in_terminal
DESKTOP_FILE="${TMP_DIR}/dh.desktop"
type='Application'
name='DistroHopper'
comment='Quickly download, create and run VM of any#TODO operating system.'
version="${version}"
execmd="sh -c 'cd ${VMS_DIR} && dh g'"
if [ "$interminal" == "yes" ]; then
terminal='true'
fi
icon="$DH_ICON_DIR/hop.svg"
categories='System;Virtualization;'
desktop_entry_create
sudo cp ${TMP_DIR}/dh.desktop /usr/share/applications/
}
function virtual_machines_directory_choose() {
NEWDIR="$(yad --width=900 --height=900 --file --directory --title="Where to save VMs?")"
VMS_DIR="$NEWDIR"
echo "VMS_DIR=\"$VMS_DIR\"
export \"VMS_DIR\"" >> "$DH_CONFIG"
}
function dependencies_install() {
# Find the current distribution and install dependecies
if [ -f /etc/os-release ]; then
if [ -f "$PATH_PREFIX/pacman" ]; then
install_needed_pacman
elif [ -f "$PATH_PREFIX/apt" ]; then
install_needed_apt
elif [ -f "$PATH_PREFIX/xbps-install" ]; then
install_needed_xbps
elif [ -f "$PATH_PREFIX/dnf" ]; then
install_needed_dnf
else
echo "$MSG_ERROR: $MSG_NO_DISTRO"
exit 1
fi
fi
}
function install_needed_atp() {
sudo apt install qemu bash coreutils ovmf grep jq lsb procps python3 genisoimage usbutils util-linux sed spice-client-gtk swtpm wget xdg-user-dirs zsync unzip yad fzf
}
function install_needed_pacman() {
sudo pacman -S cdrtools coreutils edk2-ovmf grep jq procps python3 qemu-full sed socat spice-gtk swtpm usbutils util-linux wget xdg-user-dirs xorg-xrandr zsync getext yad fzf
}
function install_needed_xbps() {
sudo xbps-install -S qemu bash coreutils grep jq procps-ng python3 util-linux sed spice-gtk swtpm usbutils wget xdg-user-dirs xrandr unzip zsync socat yad fzf
}
function install_needed_dnf() {
sudo dnf install qemu bash coreutils edk2-tools grep jq lsb procps python3 genisoimage usbutils util-linux sed spice-gtk-tools swtpm wget xdg-user-dirs xrandr unzip yad fzf
}
function distrohopper_install() {
cp dh quickget quickemu macrecovery windowskey "$PATH_PREFIX" >/dev/null 2>&1 || sudo cp dh quickget quickemu macrecovery windowskey "$PATH_PREFIX"
# quickget also to config directory for adding new distros...
cp quickget "$DH_CONFIG_DIR/"
echo "$MSG_C_ICONS"
cp icons/* "$DH_ICON_DIR/" >/dev/null 2>&1 || sudo cp icons/* "$DH_ICON_DIR/"
echo "$MSG_C_ENTRIES"
cp -r ready "$DH_CONFIG_DIR/"
cp -r supported "$DH_CONFIG_DIR/"
cp -r lang "$DH_CONFIG_DIR/"
}
function installation_process() {
dependencies_check_tui
dependencies_check_gui
echo "$MSG_NEEDED"
dependencies_install
echo "$MSG_STRUCTURE" \
&& directory_structure_create \
&& echo "$MSG_SETTINGUP" \
&& virtual_machines_directory_choose \
&& echo "$MSG_INSTALLING" \
&& distrohopper_install \
&& echo "$MSG_C_ENTRY" \
&& desktop_entry_distrohopper
}
# basic ----------------------------------------------------------------
function run_in_terminal() {
read -r response
if [[ "$response" =~ ^[YyAa]$ ]]; then
interminal="yes"
else
interminal="no"
fi
}
function virtual_machines_update_ready() {
cd "$VMS_DIR" || exit 1
rm "$DH_CONFIG_DIR"/ready/*.desktop 2>/dev/null
for vm_conf in $(pwd)
do
if [ "${vm_conf}" == "distrohopper.conf" ]; then
echo "continue" # skip processing distrohopper.conf
fi
echo "creating..."
vm_desktop=$(basename "$VMS_DIR/$vm_conf" .conf)
# Use fuzzy matching to find the best matching icon file (ready to run VMs)
icon_name=$(basename "$VMS_DIR/$vm_conf" .conf | cut -d'-' -f -2)
icon_file=$(find "$DH_ICON_DIR" -type f -iname "${icon_name// /}.*")
# If no icon was found, try shorter name (ready to run VMs)
if [ -z "$icon_file" ]; then
icon_name=$(basename "$VMS_DIR/$vm_conf" .conf | cut -d'-' -f1)
icon_file=$(find "$DH_ICON_DIR" -type f -iname "${icon_name// /}.*")
elif [ -z "$icon_file" ]; then
icon_file="$DH_ICON_DIR/tux.svg"
fi
DESKTOP_FILE="${DH_CONFIG_DIR}/ready/${vm_desktop}.desktop"
type='Application'
name="${vm_desktop}"
comment='Quickly download, create and run VM of any#TODO operating system.'
version="${version}"
execmd="sh -c 'cd ${VMS_DIR} && ${portable_prefix}quickemu -vm ${vm_conf};$SHELL'"
icon="${icon_file}"
categories='System;Virtualization;'
desktop_entry_create
done
}
function renew_ready() {
cd "$VMS_DIR" || exit 1
# for files in "$VMS_DIR"/*; do
# if [ ! -e *.conf ]; then
# echo $"No .conf files found"
# return
# fi
for vm_conf in *.conf; do
if [ "$vm_conf" == "distrohopper.conf" ]; then
continue # skip processing distrohopper.conf
fi
vm_desktop=$(basename "$VMS_DIR/$vm_conf" .conf)
# Use fuzzy matching to find the best matching icon file (ready to run VMs)
icon_name=$(basename "$VMS_DIR/$vm_conf" .conf | cut -d'-' -f -2)
icon_file=$(find "$DH_ICON_DIR" -type f -iname "${icon_name// /}.*")
# If no icon was found, try shorter name (ready to run VMs)
if [ -z "$icon_file" ]; then
icon_name=$(basename "$VMS_DIR/$vm_conf" .conf | cut -d'-' -f1)
icon_file=$(find "$DH_ICON_DIR" -type f -iname "${icon_name// /}.*")
elif [ -z "$icon_file" ]; then
icon_file="$DH_ICON_DIR/tux.svg"
fi
# content of desktop files (ready to run VMs)
cat <<EOF > "$DH_CONFIG_DIR"/ready/"$vm_desktop".desktop
[Desktop Entry]
Type=Application
Name=$vm_desktop
Exec=sh -c 'cd ${VMS_DIR} && ${portable_prefix}quickemu -vm ${vm_conf}'
Icon=$icon_file
Categories=System;Virtualization;
EOF
done
}
function virtual_machines_update_supported() {
rm "$DH_CONFIG_DIR"/supported/*.desktop
echo "$MSG_INTERM"
run_in_terminal
# get supported VMs
"$portable_prefix"quickget | sed 1d | cut -d':' -f2 | grep -o '[^ ]*' > "$DH_CONFIG_DIR/supported.md"
while read -r get_name; do
vm_desktop=$(echo "$get_name" | tr ' ' '_')
releases=$("$portable_prefix"quickget "$vm_desktop" | grep 'Releases' | cut -d':' -f2 | sed 's/^ //' | sed 's/ *$//')
editions=$("$portable_prefix"quickget "$vm_desktop" | grep 'Editions' | cut -d':' -f2 | sed 's/^ //' | sed 's/ *$//')
icon_name="$DH_ICON_DIR/$get_name"
if [ -f "$icon_name.svg" ]; then
icon_file="$icon_name.svg"
elif [ -f "$icon_name.png" ]; then
icon_file="$icon_name.png"
else
icon_file="$DH_ICON_DIR/tux.svg"
fi
echo "$MSG_CREATING $vm_desktop $MSG_DESKTOP_ENTRY"
echo ""
# Check if there are editions
DESKTOP_FILE="$DH_CONFIG_DIR/supported/$vm_desktop.desktop"
type="Application"
name="$get_name"
if [ -z "$editions" ]; then
execmd="sh -c 'cd ${VMS_DIR} && yad --form --field=\"Release:CB\" \"${releases// /$replace}\" | cut -d\"|\" -f1 | xargs -I{} sh -c \"${portable_prefix}quickget ${get_name} {}\";$SHELL'"
elif [ "$interminal" == "yes" ]; then
terminal="true"
else
execmd="sh -c 'cd ${VMS_DIR} && yad --form --separator=\" \" --field=\"Release:CB\" \"${releases// /$replace}\" --field=\"Edition:CB\" \"${editions// /$replace}\" | xargs -I{} sh -c \"${portable_prefix}quickget ${get_name} {}\";$SHELL'"
fi
icon="$icon_file"
categories='System;Virtualization;'
desktop_entry_create
done < "$DH_CONFIG_DIR"/supported.md
}
function distrohopper_run_gui() {
dependencies_check_gui
key=$((RANDOM % 9000 + 1000))
yad --plug="$key" --tabnum=1 --monitor --icons --listen --read-dir="$DH_CONFIG_DIR"/ready --sort-by-name --no-buttons --borders=0 --icon-size=46 --item-width=76 &
yad --plug="$key" --tabnum=2 --monitor --icons --listen --read-dir="$DH_CONFIG_DIR"/supported --sort-by-name --no-buttons --borders=0 --icon-size=46 --item-width=76 &
yad --dynamic --notebook --key="$key" --monitor --listen --window-icon="$DH_ICON_DIR"/hop.svg --width=900 --height=900 --title="DistroHopper" --tab="run VM" --tab="download VM"
}
function WIP_buttons() {
#define functions for buttons
ABOUT="distrohopper_about"
HELP="help_show"
DIR=""
LANG=""
INSTALL=""
MODE=""
SUPPORTED=""
READY=""
TUI=""
ADD=""
SORT=""
PUSH=""
COPY=""
TRANSLATE=""
TEST=""
dependencies_check_gui
key=$((RANDOM % 9000 + 1000))
yad --plug="$key" --tabnum=1 --monitor --icons --listen --read-dir="$DH_CONFIG_DIR"/ready --sort-by-name --borders=0 --icon-size=46 --item-width=76 &
yad --plug="$key" --tabnum=2 --monitor --icons --listen --read-dir="$DH_CONFIG_DIR"/supported --sort-by-name --borders=0 --icon-size=46 --item-width=76 &
yad --plug="$key" --tabnum=3 --monitor --icons --borders=0 --icon-size=46 --item-width=76 --columns=2 --form --text-align=center \
--field="Help!!Show this help and exit":fbtn "$HELP" \
--field="Set VMs Directory!Set default directory where VMs are stored":DIR "$DIR" \
--field="Language!Enter new language string" "${lang:-$lang}" \
--field="Install DistroHopper!!Install DistroHopper":fbtn "$INSTALL" \
--field="Portable mode!Portable mode":fbtn "$MODE" \
--field="Supported!!Update supported VMs":fbtn "$SUPPORTED" \
--field="Ready!!Update ready to run VMs":fbtn "$READY" \
--field="Tui!!Run terminal user interface (TUI)":fbtn "$TUI" \
--field="Add!!Add new distro to quickget":fbtn "$ADD" \
--field="Sort!!Sort functions in quickget":fbtn "$SORT" \
--field="Push!!Push changed quickget to quickemu project #todo":fbtn "$PUSH" \
--field="Copy!!Copy all ISOs to target dir (for Ventoy)":fbtn "$COPY" \
--field="Translate DistroHopper!!Translate DistroHopper":fbtn "$TRANSLATE" \
--field="Test!!Work in Progress":fbtn "$TEST" \
--field="About!!Show info about DistroHopper":fbtn "$ABOUT" \
--button="Exit":0 &
yad --dynamic --notebook --key="$key" --monitor --listen --no-buttons \
--mouse --selectable-labels \
--window-icon="$DH_ICON_DIR/hop.svg" --width=900 --height=900 \
--title="DistroHopper" --tab="run VM" --tab="download VM" --tab="Options"
# posible: --undecorated --fixed ontop --buttons-layout=spread edge start end center --keep-icon-size --image=IMAGE --splash
VAR1="$?"
echo " DEBUG: VAR1 = $VAR1"
echo $?
}
distrohopper_about() {
yad --about --pname=DistroHopper --image="$DH_ICON_DIR"/hop.svg --pversion="$version" \
--copyright=AGPL3 --comments="random comment" --license=ALGPL3 --authors=zenobit --website=dh.osowoso.xyz \
--website-label="oSoWoSo"
}
function distrohopper_run_tui() {
dependencies_check_tui
tui_run
if [ "$todo" = "create" ]; then
virtual_machine_create
if [ "$os" = windows ]; then
tui_windows
else
quickget_get_releases_and_editions
fzf_choose_release
if [ "$(echo "$choices" | wc -l)" = 1 ]; then
quickget_download_os_release
else
fzf_choose_edition
quickget_download_os_release_edition
fi
fi
else
fzf_choose_virtual_machine_to_run
virtual_machine_run
fi
}
tui_run() {
cd "$VMS_DIR" || exit 1
vms=(*.conf)
printf "$MSG_PREPARED:\n-------------\n\n"
# Check if there are any VMs
if [ ${#vms[@]} -eq 0 ]; then
echo "$MSG_NO_VM"
exit 1
fi
# Print the names of the available VMs
printf "%s\n" "${vms[@]%.*}"
echo "-------------"
# Action prompt
echo "$MSG_NEW (c)"
printf "$MSG_OR_RUN\n"
read -rn 1 -s start
case $start in
c )
todo="create"
;;
esac
}
tui_windows() {
fzf_choose_language_windows_other
if [ "$answer" = "Choose other language" ]; then
fzf_choose_release_windows
quickget_get_windows_languages_list
fzf_choose_language_windows
quickget_download_windows
fi
}
function fzf_choose_release() {
release=$(echo "$releases" | fzf --cycle --header='Choose Release
or CTRL-c or ESC to quit')
}
function fzf_choose_edition() {
edition=$(echo "$editions" | fzf --cycle --header='Choose Edition
or CTRL-c or ESC to quit')
}
function fzf_choose_release_windows() {
wrelease=$(echo "8
10
11" | fzf --cycle)
}
function fzf_choose_language_windows() {
wlang=$(cat "$portable_prefix"quickget | sed '/Arabic/,$!d' | head -n $wlend | cut -d'=' -f2 | tail -c +2 | head -c -2 | sed 's/^[ \t]*//' | fzf --cycle --header='Choose Language
or CTRL-c or ESC to quit')
}
function fzf_choose_language_windows_other() {
answer=$(echo "Default English
Choose other language" | fzf --cycle)
}
function fzf_choose_virtual_machine_to_run() {
choosed=$(echo "$(ls ***.conf 2>/dev/null | sed 's/\.conf$//')" | fzf --cycle --header='Choose VM to run
or CTRL-c or ESC to quit')
}
function quickget_get_releases_and_editions() {
result=$(quickget "$choices" | sed 1d | cut -d':' -f2 | grep -o '[^ ]*')
releases=$(echo "$result" | head -1)
editions=$(echo "$result" | tail -1)
}
function quickget_get_windows_languages_list() {
wlend=$(($(cat "$portable_prefix"quickget | sed '/Arabic/,$!d' | grep -n '}' | cut -d':' -f1 | head -n 1) - 1))
}
function quickget_download_os_release() {
printf $"\n $MSG_TRYING %s %s...\n\n" "$os" "$release"
"$portable_prefix"quickget "$os" "$release"
}
function quickget_download_os_release_edition() {
printf $"\n $MSG_TRYING %s %s %s...\n\n" "$os" "$release" "$edition"
"$portable_prefix"quickget "$os" "$release" "$edition"
}
function quickget_download_windows() {
printf $"\n $MSG_TRYING %s %s...\n\n" "$wrelease" "$wlang"
"$portable_prefix"quickget "windows" "$wrelease" "$wlang"
}
function virtual_machine_create() {
os=$("$portable_prefix"quickget | sed 1d | cut -d':' -f2 | grep -o '[^ ]*' | fzf --cycle --header='Choose OS to download
or CTRL-c or ESC to quit')
}
function virtual_machine_run() {
printf $"\n $MSG_STARTING %s...\n\n" "$choosed"
"$portable_prefix"quickemu -vm "$choosed.conf"
}
# more -----------------------------------------------------------------
function TOOL_copy_ISOs_to_dir() {
yad --width=900 --height=900 --file --directory > target
cd "$VMS_DIR" || exit 1
# shellcheck disable=2154
cp ./*glob*/*.iso "$target"
}
# shellcheck disable=2086
function TOOL_quickget_add_distro() {
yad --form --field="Pretty name" "" --field="Name" "" --field="Releases" "" --field="Editions" "" --field="URL" "" --field="ISO" "" --field="Checksum file" "" > ${TMP_DIR}/template.tmp
PRETTY_NAME="$(cat ${TMP_DIR}/template.tmp | cut -d'|' -f1)"
NAME="$(cat ${TMP_DIR}/template.tmp | cut -d'|' -f2)"
RELEASES="$(cat ${TMP_DIR}/template.tmp | cut -d'|' -f3)"
EDITIONS="$(cat ${TMP_DIR}/template.tmp | cut -d'|' -f4)"
URL="$(cat ${TMP_DIR}/template.tmp | cut -d'|' -f5)"
ISO="$(cat ${TMP_DIR}/template.tmp | cut -d'|' -f6)"
CHECKSUM_FILE="$(cat ${TMP_DIR}/template.tmp | cut -d'|' -f7)"
cat <<EOF > ${TMP_DIR}/template.tmp
#32
$NAME) PRETTY_NAME="$PRETTY_NAME";;
#184+
$NAME \\
#262+
function releases_$NAME() {
echo $RELEASES
}
function editions_$NAME() {
echo $EDITIONS
}
#1052+
function get_$NAME() {
local EDITION="\${1:-}"
local HASH=""
local ISO="$ISO"
local URL="$URL"
HASH="\$(wget -q -O- \${URL}/\${CHECKSUM_FILE} | grep (\${ISO} | cut -d' ' -f4)"
echo "\${URL}/\${ISO}" "\${HASH}"
}
EOF
echo "$MSG_DONE"
meld "${TMP_DIR}"/template.tmp "$DH_CONFIG_DIR"/quickget
}
function TOOL_quickget_sort_functions() {
#TODO
# Get the name of the script from the command line argument
script_name=$1
# Get a list of all the function names in the script
function_names=$(grep -oP '^[[:space:]]*function \K\w+' "$script_name")
# Sort the function names alphabetically
sorted_function_names=$(echo "$function_names" | sort)
# Loop through the sorted function names and print the function definitions
for function_name in $sorted_function_names
do
# Print the function definition to stdout
grep -A "$(wc -l < "$script_name")" -w "function $function_name" "$script_name"
done
}
function TOOL_dh_translate() {
echo "$MSG_LANG_CHANGE"
echo "$MSG_LANG_CODE"
read lang
echo "$MSG_LANG: $lang"
echo "$MSG_DUMP"
bash --dump-po-strings dh > "$DH_CONFIG_DIR"/lang/dh-source.pot
echo "$MSG_MERGING"
meld "$DH_CONFIG_DIR"/lang/dh-source.pot "$DH_CONFIG_DIR"/lang/distrohopper-"$lang".pot
echo "$MSG_MO"
msgfmt -o "$DH_CONFIG_DIR"/lang/distrohopper-"$lang".mo "$DH_CONFIG_DIR"/lang/distrohopper-"$lang".pot
echo "$MSG_COPY $lang $MSG_TRANSLATION '/usr/share/local' $MSG_AS_ROOT"
read response
if [[ "$response" =~ ^[YyAa]$ ]]; then
echo "$MSG_C_TRANSLATION '/usr/share/local'..."
sudo cp "$DH_CONFIG_DIR"/lang/distrohopper-"$lang".mo /usr/share/lang/"$lang"/LC_MESSAGES/distrohopper.mo
fi
}
function WIP() {
echo ""
}
TOOL_set_default_terminal() {
echo "$MSG_DEFAULT_TERMINAL:"
select term in alacritty foot gnome-terminal kitty konsole mate-terminal roxterm sakura st tilix xfce4-terminal xterm custom; do
case $term in
alacritty)
export terminal=alacritty
break
;;
foot)
export terminal=foot
break
;;
gnome-terminal)
export terminal=gnome-terminal
break
;;
kitty)
export terminal=kitty
break
;;
konsole)
export terminal=konsole
break
;;
mate-terminal)
export terminal=mate-terminal
break
;;
roxterm)
export terminal=roxterm
break
;;
sakura)
export terminal=sakura
break
;;
st)
export terminal=st
break
;;
tilix)
export terminal=tilix
break
;;
xfce4-terminal)
export terminal=xfce4-terminal
break
;;
xterm)
export terminal=xterm
break
;;
custom)
read -p "Enter the command to launch your preferred terminal emulator: " custom_terminal
export terminal=$custom_terminal
break
;;
*)
echo "$MSG_INVALID_AGAIN"
;;
esac
done
echo "$MSG_TERMINAL_SET $terminal."
}
# run ------------------------------------------------------------------
while true
do
variables_set
if [[ $# -eq 0 ]]; then
printf "$MSG_NO\n\n"
help_show
fi
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
h|help)
help_show
shift
;;
d|dir)
virtual_machines_directory_choose
shift
;;
i|install)
echo "$MSG_S_INSTALLATION"
installation_process
shift
;;
m|mode)
echo "$MSG_MODE"
work_in_current_dir
shift
;;
s|supported)
echo "$MSG_U_SUPPORTED"
virtual_machines_update_supported
shift
;;
r|ready)
echo "$MSG_U_READY"
#virtual_machines_update_ready
renew_ready
shift
;;
t|tui)
echo "$MSG_S_TUI"
distrohopper_run_tui
shift
;;
g|gui)
echo "$MSG_S_GUI"
distrohopper_run_gui
shift
;;
a|add)
echo "$MSG_ADD_STARTED"
TOOL_quickget_add_distro
shift
;;
f|functions)
echo "$MSG_SORTING"
TOOL_quickget_sort_functions
shift
;;
p|push)
echo "$MSG_PUSHING"
push_changes
shift
;;
c|copy)
echo "$MSG_C_ISOS"
TOOL_copy_ISOs_to_dir
shift
;;
l|language)
TOOL_dh_translate
shift
;;
z)
WIP
shift
;;
*)
echo "$MSG_INVALID: $1"
echo ""
help_show
exit 1
;;
esac
done
bugs_notice_show
exit 0
done

9
dh.desktop Executable file
View File

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=DistroHopper
Description=Quickly download, create and run VM of any#TODO operating system.
version=0.77b
Exec=sh -c './dh m g'
Icon=/home/zen/git/distrohopper/icons/hop.svg
Categories=System;Virtualization;

125
icons/absolute.svg Normal file
View File

@ -0,0 +1,125 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg28"
sodipodi:docname="absolute.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs32" />
<sodipodi:namedview
id="namedview30"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg28" />
<rect
style="opacity:0.2;stroke-width:8.88753"
width="462.15149"
height="462.15149"
x="39.550114"
y="48.437645"
rx="23.107574"
ry="23.107574"
id="rect2" />
<rect
style="fill:#765e4a;stroke-width:8.88753"
width="462.15149"
height="462.15149"
x="39.550114"
y="39.550114"
rx="23.107574"
ry="23.107574"
id="rect4" />
<rect
style="opacity:0.2;stroke-width:8.88753"
width="124.4254"
height="302.17596"
x="341.72607"
y="12.887528"
rx="17.775057"
ry="17.775057"
id="rect6" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:8.88753"
d="m 62.657689,39.550115 c -12.805151,0 -23.107574,10.302423 -23.107574,23.107574 v 8.887529 c 0,-12.806929 10.302423,-23.107575 23.107574,-23.107575 H 478.59403 c 12.80693,0 23.10757,10.300646 23.10757,23.107575 v -8.887529 c 0,-12.805151 -10.30064,-23.107574 -23.10757,-23.107574 z"
id="path8" />
<rect
style="fill:#b38a48;stroke-width:8.88753"
width="124.4254"
height="302.17596"
x="341.72607"
y="4"
rx="17.775057"
ry="17.775057"
id="rect10" />
<rect
style="opacity:0.2;stroke-width:8.88753"
width="302.17596"
height="124.4254"
x="4"
y="350.61362"
rx="17.775057"
ry="17.775057"
id="rect12" />
<rect
style="fill:#c8a972;stroke-width:8.88753"
width="302.17596"
height="124.4254"
x="4"
y="341.72607"
rx="17.775057"
ry="17.775057"
id="rect14" />
<rect
style="opacity:0.2;stroke-width:8.88753"
width="124.4254"
height="124.4254"
x="341.72607"
y="350.61362"
rx="17.775057"
ry="17.775057"
id="rect16" />
<rect
style="fill:#ffffff;stroke-width:8.88753"
width="124.4254"
height="124.4254"
x="341.72607"
y="341.72607"
rx="17.775057"
ry="17.775057"
id="rect18" />
<path
style="opacity:0.2;stroke-width:8.88753"
d="m 92.875286,92.875286 c -9.847381,0 -17.775057,7.927674 -17.775057,17.775054 V 128.4254 H 235.07574 v 54.40056 H 75.100229 v 114.46249 c 0,9.84738 7.927676,17.77505 17.775057,17.77505 H 288.40092 c 9.84738,0 17.77505,-7.92767 17.77505,-17.77505 V 110.65034 c 0,-9.84738 -7.92767,-17.775054 -17.77505,-17.775054 z M 110.65034,217.30069 h 124.4254 v 63.28809 h -124.4254 z"
id="path20" />
<path
style="fill:#ffffff;stroke-width:8.88753"
d="m 92.875286,83.987758 c -9.847381,0 -17.775057,7.927675 -17.775057,17.775062 v 17.77505 H 235.07574 v 54.40057 H 75.100229 v 114.46248 c 0,9.84738 7.927676,17.77505 17.775057,17.77505 H 288.40092 c 9.84738,0 17.77505,-7.92767 17.77505,-17.77505 v -186.6381 c 0,-9.847387 -7.92767,-17.775062 -17.77505,-17.775062 z M 110.65034,208.41316 h 124.4254 v 63.28809 h -124.4254 z"
id="path22" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.88753"
d="m 359.50115,4 c -9.84739,0 -17.77506,7.927676 -17.77506,17.775057 v 8.887529 c 0,-9.847382 7.92767,-17.775057 17.77506,-17.775057 h 88.87528 c 9.84738,0 17.77506,7.927675 17.77506,17.775057 V 21.775057 C 466.15149,11.927676 458.22381,4 448.37643,4 Z"
id="path24" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.88753"
d="M 21.775057,341.72609 C 11.927676,341.72609 4,349.65376 4,359.50115 v 8.88752 c 0,-9.84738 7.927676,-17.77505 17.775057,-17.77505 H 288.40092 c 9.84738,0 17.77505,7.92767 17.77505,17.77505 v -8.88752 c 0,-9.84739 -7.92767,-17.77506 -17.77505,-17.77506 z"
id="path26" />
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

63
icons/academix.svg Normal file
View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg16"
sodipodi:docname="academix.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs20" />
<sodipodi:namedview
id="namedview18"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg16" />
<circle
style="opacity:0.2;stroke-width:8.91008"
cx="256.3941"
cy="261.74213"
r="249.48216"
id="circle2" />
<path
style="fill:#ffab32;stroke-width:8.91008"
d="M 259.16109,18.942506 92.810653,441.12701 c 43.802417,38.08748 100.979907,61.18717 163.583447,61.18717 64.57025,0 123.3721,-24.57453 167.67303,-64.82429 z"
id="path4" />
<path
style="fill:#255f8a;stroke-width:8.91008"
d="M 242.85496,3.8371409 A 249.48216,249.48216 0 0 0 6.9119416,252.83203 249.48216,249.48216 0 0 0 82.508377,431.39902 Z"
id="path6" />
<path
style="fill:#df391e;stroke-width:8.91008"
d="M 270.02025,4.0285686 430.36684,431.62525 A 249.48216,249.48216 0 0 0 505.87625,252.83203 249.48216,249.48216 0 0 0 270.02025,4.0285686 Z"
id="path8" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.91008"
d="M 256.3941,3.3498711 A 249.48216,249.48216 0 0 0 6.9119416,252.83203 249.48216,249.48216 0 0 0 7.1035083,258.05333 249.48216,249.48216 0 0 1 256.3941,12.259948 249.48216,249.48216 0 0 1 505.68914,256.5208 249.48216,249.48216 0 0 0 505.87625,252.83203 249.48216,249.48216 0 0 0 256.3941,3.3498711 Z"
id="path10" />
<path
style="opacity:0.2;stroke-width:8.91008"
d="m 256.3941,12.259948 a 249.48216,249.48216 0 0 0 -27.33932,1.809859 C 227.54482,18.719255 150.35209,255.93161 72.571556,430.02423 a 249.48216,249.48216 0 0 0 37.223934,33.27356 L 167.29333,341.9328 h 187.11161 l 55.21812,116.5619 a 249.48216,249.48216 0 0 0 36.23199,-34.56135 C 366.96344,250.21855 285.14311,17.985715 283.69861,13.878383 A 249.48216,249.48216 0 0 0 256.3941,12.259948 Z m 0,71.280616 71.28061,204.931776 H 185.11348 Z"
id="path12" />
<path
style="fill:#ffffff;stroke-width:8.91008"
d="M 256.3941,3.3498711 A 249.48216,249.48216 0 0 0 229.05478,5.1597305 C 227.54482,9.8091781 150.35209,247.02153 72.571556,421.11415 a 249.48216,249.48216 0 0 0 37.223934,33.27357 l 57.49784,-121.365 h 187.11161 l 55.21812,116.5619 a 249.48216,249.48216 0 0 0 36.23199,-34.56135 C 366.96344,241.30847 285.14311,9.0756381 283.69861,4.9683064 A 249.48216,249.48216 0 0 0 256.3941,3.3498711 Z m 0,71.2806159 71.28061,204.931773 H 185.11348 Z"
id="path14" />
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

24340
icons/agarimos.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 1.1 MiB

57
icons/aix.svg Normal file
View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="aix.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<circle
cx="256.72266"
cy="260.85086"
r="248.7115"
style="opacity:0.2;stroke-width:8.88255"
id="circle2" />
<circle
cx="256.72266"
cy="251.96831"
r="248.7115"
style="fill:#95e000;stroke-width:8.88255"
id="circle4" />
<path
d="M 256.72267,3.2568013 A 248.7115,248.7115 0 0 0 8.0111684,251.9683 248.7115,248.7115 0 0 0 8.2021433,257.17348 248.7115,248.7115 0 0 1 256.72267,12.139355 248.7115,248.7115 0 0 1 505.24764,255.64568 248.7115,248.7115 0 0 0 505.43417,251.9683 248.7115,248.7115 0 0 0 256.72267,3.2568013 Z"
style="opacity:0.2;fill:#ffffff;stroke-width:8.88255"
id="path6" />
<path
d="M 256.72267,38.787015 A 222.06384,222.06384 0 0 0 34.658829,260.85085 222.06384,222.06384 0 0 0 256.72267,482.91469 222.06384,222.06384 0 0 0 478.78651,260.85085 222.06384,222.06384 0 0 0 256.72267,38.787015 Z m 0,17.765108 A 204.29873,204.29873 0 0 1 461.0214,260.85085 204.29873,204.29873 0 0 1 256.72267,465.14959 204.29873,204.29873 0 0 1 52.423936,260.85085 204.29873,204.29873 0 0 1 256.72267,56.552123 Z M 150.13203,198.67298 105.71926,314.14618 h 26.64766 l 10.65213,-26.64766 h 43.52797 l 7.99778,26.64766 h 26.64766 l -35.53022,-115.4732 z m 88.82553,0 v 115.4732 h 26.64766 v -115.4732 z m 44.41277,0 44.41277,57.7366 -44.41277,57.7366 h 26.64766 l 31.08894,-40.42256 31.08894,40.42256 h 26.64766 l -44.41277,-57.7366 44.41277,-57.7366 h -26.64766 l -31.08894,40.42256 -31.08894,-40.42256 z m -115.4732,26.64766 10.65213,35.53021 h -24.86074 z"
style="opacity:0.2;stroke-width:8.88255"
id="path8" />
<path
d="M 256.72267,29.904462 A 222.06384,222.06384 0 0 0 34.658829,251.9683 222.06384,222.06384 0 0 0 256.72267,474.03214 222.06384,222.06384 0 0 0 478.78651,251.9683 222.06384,222.06384 0 0 0 256.72267,29.904462 Z m 0,17.765107 A 204.29873,204.29873 0 0 1 461.0214,251.9683 204.29873,204.29873 0 0 1 256.72267,456.26703 204.29873,204.29873 0 0 1 52.423936,251.9683 204.29873,204.29873 0 0 1 256.72267,47.669569 Z M 150.13203,189.79043 105.71926,305.26362 h 26.64766 l 10.65213,-26.64766 h 43.52797 l 7.99778,26.64766 h 26.64766 L 185.66224,189.79043 Z m 88.82553,0 v 115.47319 h 26.64766 V 189.79043 Z m 44.41277,0 44.41277,57.73659 -44.41277,57.7366 h 26.64766 l 31.08894,-40.42255 31.08894,40.42255 h 26.64766 l -44.41277,-57.7366 44.41277,-57.73659 h -26.64766 l -31.08894,40.42255 -31.08894,-40.42255 z m -115.4732,26.64766 10.65213,35.53021 h -24.86074 z"
style="fill:#ffffff;stroke-width:8.88255"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

13
icons/alma.svg Normal file
View File

@ -0,0 +1,13 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="white"/>
<path d="M444.764 297.722C463.935 296.247 479.42 308.782 480.894 327.954C482.369 347.863 468.359 364.085 449.188 365.559C430.754 367.034 414.532 353.024 413.057 334.59C411.582 314.681 424.855 299.934 444.764 297.722Z" fill="#86DA2F"/>
<path d="M211.755 454.78C211.755 435.609 226.502 420.862 244.199 420.862C261.896 420.862 278.855 437.084 278.855 455.518C278.855 473.215 264.108 488.699 247.148 489.436C225.765 489.436 211.755 476.164 211.755 454.78V454.78Z" fill="#24C2FF"/>
<path d="M264.107 239.47C261.157 240.945 259.682 238.733 258.945 236.521C231.663 185.643 239.774 121.492 287.702 83.1493C300.237 72.8262 323.833 70.6141 334.156 80.9372C338.58 84.624 339.318 89.0482 340.055 94.2098C341.53 105.27 343.742 116.331 351.115 125.179C359.226 134.765 369.55 138.452 381.347 137.714C391.67 137.714 401.994 136.239 408.63 148.037C412.317 154.674 410.842 180.481 404.943 185.643C401.994 187.855 399.781 186.38 397.569 185.643C380.61 179.007 362.913 179.007 345.217 181.956C339.318 182.693 336.368 181.219 336.368 174.582C335.631 163.522 333.419 153.199 327.52 143.613C316.459 123.704 295.813 122.967 282.541 141.401C271.48 156.148 268.531 173.845 265.581 191.542C262.632 207.026 263.369 223.248 264.107 239.47C264.107 239.47 263.369 239.47 264.107 239.47V239.47Z" fill="#FFCB12"/>
<path d="M282.543 250.531C281.068 248.319 281.805 246.107 284.017 244.632C326.047 206.289 388.723 198.915 437.389 236.521C449.924 246.844 458.035 268.228 451.399 280.763C448.449 285.924 444.763 288.136 440.338 289.611C430.015 294.035 420.43 298.459 413.793 308.045C407.157 317.631 405.682 328.691 408.632 340.489C410.844 350.075 414.531 360.398 404.945 369.246C399.783 374.408 374.713 378.832 368.077 374.408C365.127 372.196 365.865 369.984 366.602 367.034C368.814 348.6 364.39 331.641 357.754 315.419C355.542 309.52 356.279 306.57 362.178 305.096C372.501 302.146 382.087 296.985 389.46 289.611C405.682 274.126 401.995 254.218 380.612 245.369C363.653 237.996 345.956 239.47 328.997 240.945C312.775 241.682 297.29 246.107 282.543 250.531Z" fill="#86DA2F"/>
<path d="M272.958 269.702C275.17 267.49 276.645 268.228 278.857 269.702C327.523 299.197 352.594 357.448 330.473 414.225C324.574 428.973 305.402 443.72 291.392 440.033C285.494 438.558 282.544 435.609 279.595 431.922C272.958 423.074 265.585 414.963 254.524 411.276C242.726 407.589 232.403 409.801 222.08 415.7C213.232 420.862 204.384 427.498 193.323 420.862C186.687 417.175 175.626 394.317 177.838 386.943C179.313 383.994 182.263 383.994 185.212 383.994C203.646 381.044 218.393 372.196 232.403 360.398C236.828 356.711 240.514 356.711 244.201 361.873C250.1 370.721 257.474 378.095 267.059 383.256C286.231 394.317 304.665 384.731 306.877 362.61C309.089 344.176 302.453 327.954 296.554 311.732C289.918 296.985 281.807 282.975 272.958 269.702V269.702Z" fill="#24C2FF"/>
<path d="M249.362 274.126C246.413 288.874 239.776 302.884 230.928 315.419C204.383 355.236 166.04 371.458 118.849 367.034C101.889 365.56 87.8794 351.55 86.4047 337.54C85.6673 331.641 87.142 327.217 90.8289 322.792C95.9904 316.156 100.415 310.257 102.627 302.146C107.051 285.924 101.152 272.652 89.3541 260.854C73.1321 244.632 75.3442 229.885 94.5157 218.087C96.7278 216.612 99.6772 215.137 102.627 213.663C107.051 211.451 110.738 211.451 112.212 216.612C118.849 233.571 132.121 246.107 146.868 256.43C152.03 260.854 152.03 263.803 147.606 268.965C138.757 278.551 133.596 290.348 132.859 303.621C131.384 319.843 140.97 330.166 157.192 330.166C167.515 330.166 177.1 326.479 185.949 322.055C208.807 310.257 226.504 293.298 243.463 275.601C245.675 274.864 246.413 273.389 249.362 274.126Z" fill="#0069DA"/>
<path d="M128.433 119.28C129.907 119.28 133.594 120.018 137.281 120.755C164.563 125.916 181.523 116.331 190.371 90.523C196.27 73.5636 208.805 68.4021 225.027 77.2504C225.765 77.2504 225.765 77.9878 226.502 77.9878C243.461 87.5735 243.461 89.0482 233.138 103.796C224.29 115.593 219.866 128.866 217.654 142.876C216.179 150.987 213.229 152.461 205.856 149.512C194.058 145.088 181.523 145.088 168.988 149.512C154.978 153.936 149.079 166.471 153.503 180.481C159.402 198.915 175.624 207.026 189.634 216.612C203.644 226.198 219.866 231.359 235.35 237.996C237.562 238.733 241.249 238.733 240.512 242.42C239.774 244.632 236.825 244.632 233.876 244.632C200.694 246.107 168.988 240.945 143.18 218.824C118.847 198.915 101.15 174.582 104.1 140.664C106.312 129.603 114.423 121.492 128.433 119.28V119.28Z" fill="#FF4649"/>
<path d="M67.9701 326.479C50.2734 328.691 32.5766 313.944 31.1019 295.51C29.6272 277.813 44.3744 260.117 61.3338 258.642C80.5052 256.43 98.202 269.702 99.6767 287.399C100.414 304.358 89.3536 325.004 67.9701 326.479V326.479Z" fill="#0069DA"/>
<path d="M377.664 63.9779C396.098 62.5031 413.795 77.2504 415.27 95.6845C416.744 113.381 401.997 130.341 384.3 131.815C365.129 133.29 348.169 119.28 346.695 100.846C345.22 82.4119 358.493 65.4526 377.664 63.9779V63.9779Z" fill="#FFCB12"/>
<path d="M185.21 77.9878C187.422 97.1592 174.149 113.381 154.241 116.331C137.281 118.543 119.584 104.533 117.372 88.3109C115.16 66.9273 126.958 51.4427 146.867 49.2306C165.301 47.0185 182.998 61.0284 185.21 77.9878V77.9878Z" fill="#FF4649"/>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

4
icons/alpine.svg Normal file
View File

@ -0,0 +1,4 @@
<svg width="512" height="512" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<path style="fill:#fff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m67.158 295.202 145.106-143.387 100.75 16.506 127.123 126.881-23.123 29.614-330.98-3.594-18.876-26.02"/>
<path style="fill:#0d597f;stroke-width:3.43855" d="M127.914 34.214 0 256l127.914 221.785h256.172L512 256.001 384.086 34.214Zm84.35 117.601 57.767 59.487 42.983-42.98 97.654 97.997 29.469 28.883c-4.264 2.957-8.287 5.393-12.035 7.36-3.748 1.95-7.28 3.462-10.557 4.607-3.267 1.142-6.284 1.916-9.076 2.404-2.785.485-5.328.688-7.635.688-2.785 0-5.171-.276-7.22-.696a27.864 27.864 0 0 1-5.09-1.539 20.203 20.203 0 0 1-3.087-1.59 10.461 10.461 0 0 1-1.146-.822l.355.244-26.271-26.029-45.045-45.045-6.139 6.139-32.95-32.588-2.425 2.437 32.78 32.747-.963.962 51.922 50.891c-4.264 2.957-8.286 5.39-12.034 7.357-3.748 1.95-7.283 3.463-10.556 4.608-3.267 1.141-6.29 1.916-9.078 2.404-2.786.485-5.331.688-7.635.688-2.75 0-5.171-.276-7.22-.696a28.007 28.007 0 0 1-5.089-1.539 20.165 20.165 0 0 1-3.084-1.59 10.342 10.342 0 0 1-1.148-.82l-22.66-23.314-64.99-64.989-23.416 22.454-65.676 65.677c-.07.059-.447.377-1.149.825a19.9 19.9 0 0 1-3.084 1.585c-1.34.568-3.04 1.127-5.09 1.543-2.063.42-4.456.696-7.22.696-2.304 0-4.848-.203-7.633-.692-2.785-.485-5.808-1.258-9.078-2.4-3.267-1.135-6.809-2.644-10.557-4.607-3.748-1.995-7.736-4.403-12-7.36zm-26.721 104.346v53.924a45.613 45.613 0 0 1-7.6-.764c-2.785-.509-5.772-1.293-9.007-2.441a83.227 83.227 0 0 1-10.42-4.608c-3.714-1.96-7.633-4.343-11.829-7.255z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

45
icons/android.svg Normal file
View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
viewBox="0 0 512 512"
fill="none"
version="1.1"
id="svg6"
sodipodi:docname="android.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs10" />
<sodipodi:namedview
id="namedview8"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg6" />
<circle
cx="256"
cy="256"
r="256"
fill="white"
id="circle2" />
<path
d="m 345.91707,304.57979 c -3.129,10e-4 -6.189,-0.927 -8.792,-2.665 -2.603,-1.738 -4.631,-4.21 -5.83,-7.101 -1.198,-2.891 -1.512,-6.073 -0.902,-9.143 0.61,-3.07 2.117,-5.89 4.33,-8.103 2.212,-2.214 5.032,-3.721 8.101,-4.333 3.07,-0.611 6.252,-0.298 9.144,0.899 2.891,1.197 5.363,3.225 7.103,5.827 1.739,2.602 2.668,5.662 2.668,8.791 -0.005,4.196 -1.673,8.218 -4.639,11.185 -2.966,2.967 -6.987,4.637 -11.183,4.643 z m -174.898,0 c -3.13,10e-4 -6.189,-0.927 -8.792,-2.665 -2.603,-1.738 -4.632,-4.21 -5.83,-7.101 -1.198,-2.891 -1.512,-6.073 -0.902,-9.143 0.61,-3.07 2.116,-5.89 4.329,-8.103 2.213,-2.214 5.032,-3.721 8.102,-4.333 3.07,-0.611 6.251,-0.298 9.143,0.899 2.892,1.197 5.364,3.225 7.103,5.827 1.74,2.602 2.668,5.662 2.669,8.791 -0.004,4.196 -1.672,8.219 -4.638,11.186 -2.966,2.967 -6.988,4.637 -11.184,4.642 z m 180.573,-95.315 31.623,-54.771 c 0.432,-0.7481 0.713,-1.5741 0.826,-2.4308 0.114,-0.8567 0.057,-1.7273 -0.166,-2.5621 -0.223,-0.8349 -0.609,-1.6176 -1.134,-2.3034 -0.526,-0.6859 -1.182,-1.2615 -1.93,-1.694 -0.748,-0.4325 -1.574,-0.7135 -2.431,-0.8267 -0.856,-0.1133 -1.727,-0.0568 -2.562,0.1664 -0.835,0.2232 -1.617,0.6086 -2.303,1.1343 -0.686,0.5256 -1.262,1.1812 -1.694,1.9294 l -32.022,55.4629 c -24.487,-11.1763 -51.989,-17.3994 -81.334,-17.3994 -29.344,0 -56.843,6.2321 -81.33,17.3994 l -32.019,-55.4629 c -0.432,-0.7484 -1.007,-1.4043 -1.693,-1.9303 -0.685,-0.5261 -1.468,-0.912 -2.302,-1.1358 -0.835,-0.2237 -1.705,-0.2809 -2.562,-0.1682 -0.856,0.1127 -1.682,0.393 -2.431,0.8249 -0.748,0.4319 -1.404,1.007 -1.93,1.6924 -0.526,0.6854 -0.912,1.4677 -1.136,2.3023 -0.223,0.8345 -0.281,1.705 -0.168,2.5616 0.113,0.8567 0.393,1.6827 0.825,2.431 l 31.626,54.78 c -54.303,29.535 -91.445301,84.509 -96.878201,149.46 H 448.47007 c -5.439,-64.951 -42.578,-119.925 -96.878,-149.46"
fill="#3ddc84"
id="path4" />
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

61
icons/antix.svg Normal file
View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg14"
sodipodi:docname="antix.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs18" />
<sodipodi:namedview
id="namedview16"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg14" />
<circle
style="opacity:0.2;stroke-width:8.86091"
cx="256.57034"
r="248.10544"
cy="260.96634"
id="circle2" />
<circle
style="fill:#acaeb5;stroke-width:8.86091"
cx="256.57034"
r="248.10544"
cy="252.10544"
id="circle4" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:8.86091"
d="M 256.57035,4 A 248.10543,248.10543 0 0 0 8.4649198,252.10543 248.10543,248.10543 0 0 0 8.6206777,256.46666 248.10543,248.10543 0 0 1 256.57035,12.860908 248.10543,248.10543 0 0 1 504.4508,256.46666 248.10543,248.10543 0 0 0 504.67578,252.10543 248.10543,248.10543 0 0 0 256.57035,4 Z"
id="path6" />
<path
style="opacity:0.2;stroke-width:8.86091"
d="m 157.32819,12.860908 c -33.67146,0 -51.39328,0 -122.280545,53.16545 C 132.51764,39.443633 194.54399,83.748174 283.15308,190.07907 159.10036,322.9927 8.4649198,509.07177 8.4649198,509.07177 H 132.51764 L 327.45762,243.24452 c 44.30454,70.88727 79.74817,141.77454 79.74817,265.82725 h 72.65945 C 478.09306,411.60178 424.92761,296.40997 362.90125,198.93998 l 53.16545,-62.02636 c 0,0 26.58273,-35.44363 62.02636,0 0,-35.44363 26.58272,-53.165446 26.58272,-53.165446 h -97.46999 c -8.2887,0 -35.44363,26.582726 -79.74817,70.887266 C 265.43126,74.887266 203.4049,12.860908 157.32819,12.860908 Z"
id="path8" />
<path
style="fill:#e4e4e4;stroke-width:8.86091"
d="M 157.32819,4 C 123.65673,4 105.93491,4 35.047645,57.16545 132.51764,30.582725 194.54399,74.887266 283.15308,181.21817 159.10036,314.13179 8.4649198,500.21086 8.4649198,500.21086 H 132.51764 L 327.45762,234.38361 c 44.30454,70.88727 79.74817,141.77454 79.74817,265.82725 h 72.65945 C 478.09306,402.74087 424.92761,287.54906 362.90125,190.07907 l 53.16545,-62.02635 c 0,0 26.58273,-35.443637 62.02636,0 0,-35.443637 26.58272,-53.165454 26.58272,-53.165454 h -97.46999 c -8.2887,0 -35.44363,26.582724 -79.74817,70.887264 C 265.43126,66.026358 203.4049,4 157.32819,4 Z"
id="path10" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.86091"
d="M 157.3351,4 C 123.66364,4 105.93491,4 35.047645,57.16545 41.182571,55.492288 47.176803,54.108302 53.046365,52.994593 108.93669,13.305404 126.78991,12.860908 157.3351,12.860908 c 46.07671,0 108.09616,62.026358 170.12252,141.774532 44.30454,-44.30454 71.45947,-70.887266 79.74817,-70.887266 h 87.89952 c 5.18421,-5.806057 9.57047,-8.860908 9.57047,-8.860908 h -97.46999 c -8.2887,0 -35.44363,26.582724 -79.74817,70.887264 C 265.43126,66.026358 203.41181,4 157.3351,4 Z M 279.25912,185.49286 C 155.95966,318.09679 8.4649198,500.21086 8.4649198,500.21086 H 15.716328 C 34.788923,476.74613 167.9244,313.53837 283.15308,190.07907 c -1.32183,-1.5862 -2.58375,-3.02764 -3.89396,-4.58621 z m 86.79191,9.76084 -3.14978,3.68628 c 60.16796,94.54966 111.855,205.72196 116.52441,301.27088 h 0.43266 C 478.11684,404.42962 426.68845,291.62794 366.05103,195.2537 Z"
id="path12" />
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

4
icons/arch.svg Normal file
View File

@ -0,0 +1,4 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M255.962 3.515c-17.85 43.756-28.616 72.377-48.49 114.832 12.185 12.914 27.142 27.953 51.431 44.938-26.113-10.744-43.926-21.53-57.238-32.723-25.435 53.063-65.284 128.65-146.15 273.923 63.558-36.686 112.827-59.304 158.744-67.934a116.3 116.3 0 0 1-3.017-27.219l.076-2.036c1.008-40.712 22.19-72.02 47.284-69.894 25.093 2.125 44.597 36.872 43.588 77.585-.19 7.66-1.054 15.03-2.564 21.866 45.418 8.882 94.16 31.442 156.86 67.632-12.364-22.757-23.399-43.27-33.937-62.807-16.599-12.863-33.912-29.604-69.229-47.727 24.275 6.306 41.655 13.582 55.203 21.714C301.38 116.222 292.703 89.721 255.963 3.515h-.001Z" fill="#1793D1"/>
</svg>

After

Width:  |  Height:  |  Size: 798 B

53
icons/archbang.svg Normal file
View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="archbang.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<path
style="opacity:0.2;stroke-width:8.86679"
d="M 256.24077,12.866785 C 167.57292,216.80284 167.57292,225.66963 7.9707904,509.40675 c 0,0 141.8685596,-79.80106 248.2699796,-79.80106 106.40142,0 248.26999,79.80106 248.26999,79.80106 C 344.90862,225.66963 344.90862,216.80284 256.24077,12.866785 Z"
id="path2" />
<path
style="fill:#1793d1;stroke-width:8.86679"
d="M 256.24077,4 C 167.57292,207.93606 167.57292,216.80284 7.9707904,500.53997 c 0,0 141.8685596,-79.80107 248.2699796,-79.80107 106.40142,0 248.26999,79.80107 248.26999,79.80107 C 344.90862,216.80284 344.90862,207.93606 256.24077,4 Z"
id="path4" />
<path
style="opacity:0.2;stroke-width:8.86679"
d="m 305.4603,126.24637 c 0,0 -22.61917,10.75541 -58.08631,10.75541 0,26.60035 8.86678,26.60035 8.86678,88.66785 0,53.20071 -8.86678,124.13499 -8.86678,124.13499 l 35.46714,-26.60036 34.27012,-170.54374 z m -53.65292,250.1586 a 31.033748,31.033748 0 0 0 -31.03375,31.03375 31.033748,31.033748 0 0 0 10.87955,23.58565 c 8.32591,-0.83348 16.58089,-1.41868 24.58759,-1.41868 5.39101,0 10.92388,0.33693 16.46562,0.72707 a 31.033748,31.033748 0 0 0 10.13474,-22.89404 31.033748,31.033748 0 0 0 -31.03375,-31.03375 z"
id="path6" />
<path
style="fill:#ffffff;stroke-width:8.86679"
d="m 305.4603,117.37958 c 0,0 -22.61917,10.75541 -58.08631,10.75541 0,26.60036 8.86678,26.60036 8.86678,88.66785 0,53.20071 -8.86678,124.13499 -8.86678,124.13499 l 35.46714,-26.60035 34.27012,-170.54375 z m -53.65292,250.15861 a 31.033748,31.033748 0 0 0 -31.03375,31.03375 31.033748,31.033748 0 0 0 10.87955,23.58565 c 8.32591,-0.83348 16.58089,-1.41869 24.58759,-1.41869 5.39101,0 10.92388,0.33694 16.46562,0.72708 a 31.033748,31.033748 0 0 0 10.13474,-22.89404 31.033748,31.033748 0 0 0 -31.03375,-31.03375 z"
id="path8" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.86679"
d="M 256.24077,4 C 167.57292,207.93606 167.57292,216.80284 7.9707904,500.53997 c 0,0 2.6609226,-1.47189 7.1173676,-3.84819 C 166.79264,226.69817 169.06254,213.3714 256.24077,12.866785 343.419,213.3714 345.6889,226.69817 497.39073,496.69178 c 4.45999,2.3763 7.12003,3.84819 7.12003,3.84819 C 344.90862,216.80284 344.90862,207.93606 256.24077,4 Z"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

15
icons/archcraft.svg Normal file
View File

@ -0,0 +1,15 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="paint0_linear_201_2" x1="55.7289" y1="443.382" x2="351.186" y2="153.173" gradientUnits="userSpaceOnUse">
<stop stop-color="#62AEEF"/>
<stop offset="1" stop-color="#98C379"/>
</linearGradient>
<clipPath id="clip0_201_2">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_201_2)">
<path d="M256 512C397.385 512 512 397.385 512 256C512 114.615 397.385 0 256 0C114.615 0 0 114.615 0 256C0 397.385 114.615 512 256 512Z" fill="#1D2128"/>
<path d="M256.334 84.9991V85.0061C242.234 119.568 233.733 142.178 218.034 175.712C231.69 182.613 243.642 193.596 258.657 211.209C241.583 197.705 228.273 189.55 213.443 185.361C193.352 227.275 161.875 286.98 98 401.726C116.936 390.621 223.989 362.666 214.266 337.352C211.643 331.031 206.365 330.192 198.242 327.305V311.221C206.38 308.325 211.643 307.496 214.266 301.171C216.894 294.835 213.756 290.522 210.048 282.719L221.422 271.351C229.262 275.078 233.547 278.192 239.874 275.565H239.877C246.199 272.942 247.033 267.68 249.93 259.544H266.017C268.924 267.72 269.75 272.947 276.066 275.565H276.07C282.412 278.192 286.756 275.043 294.526 271.351L305.896 282.719C302.178 290.547 299.058 294.845 301.681 301.171V301.174C304.295 307.48 309.488 308.3 317.706 311.221V327.305C264.526 357.018 388.804 391.47 414.727 401.726C404.961 383.751 396.243 367.546 387.92 352.115C374.809 341.955 361.132 328.733 333.235 314.418C352.409 319.4 366.139 325.147 376.84 331.571C292.209 174.034 285.355 153.101 256.334 84.9991ZM257.972 299.358C246.976 299.358 238.064 308.272 238.064 319.265C238.064 330.258 246.976 339.169 257.972 339.169C268.967 339.169 277.883 330.258 277.883 319.265C277.883 308.272 268.967 299.358 257.972 299.358Z" fill="url(#paint0_linear_201_2)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

53
icons/archlabs.svg Normal file
View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="archlabs.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<path
style="opacity:0.2;stroke-width:8.89219"
d="M 257.91437,12.698712 C 168.99247,217.21907 168.99247,226.11126 8.9330613,510.66133 c 0,0 142.2750287,-80.02971 248.9813087,-80.02971 106.70628,0 248.98131,80.02971 248.98131,80.02971 C 346.83627,226.11126 346.83627,217.21907 257.91437,12.698712 Z"
id="path2" />
<path
style="fill:#606060;stroke-width:8.89219"
d="M 257.91437,3.8065221 C 168.99247,208.32688 168.99247,217.21907 8.9330613,501.76914 c 0,0 142.2750287,-80.02971 248.9813087,-80.02971 106.70628,0 248.98131,80.02971 248.98131,80.02971 C 346.83627,217.21907 346.83627,208.32688 257.91437,3.8065221 Z"
id="path4" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:8.89219"
d="M 257.91437,3.8065221 C 168.99247,208.32688 168.99247,217.21907 8.9330613,501.76914 c 0,0 2.6685457,-1.4761 7.1377607,-3.85921 C 168.20996,227.14276 170.48636,213.77779 257.91437,12.698712 345.34238,213.77779 347.61878,227.14276 499.75525,497.90993 c 4.47277,2.38311 7.14043,3.85921 7.14043,3.85921 C 346.83627,217.21907 346.83627,208.32688 257.91437,3.8065221 Z"
id="path6" />
<path
style="opacity:0.2;stroke-width:8.89219"
d="m 266.80656,172.75812 c 0,0 -71.13752,53.35314 -71.13752,106.70628 0,38.50128 8.13709,73.43681 18.49645,102.48596 -0.43418,-4.77689 -0.71207,-9.38056 -0.71207,-13.56406 0,-53.35314 35.56876,-88.9219 35.56876,-88.9219 0,0 35.56876,26.67657 35.56876,71.13752 0,24.43364 -5.32689,56.5909 -10.14265,80.75914 3.29632,0.23111 6.61226,0.54687 9.95161,0.90312 16.93934,-25.74612 35.7598,-64.14412 35.7598,-108.33883 0,-62.24533 -53.35314,-124.49066 -53.35314,-124.49066 z"
id="path8" />
<path
style="fill:#ffffff;stroke-width:8.89219"
d="m 266.80656,163.86593 c 0,0 -71.13752,53.35314 -71.13752,106.70628 0,38.50128 8.13709,73.43681 18.49645,102.48596 -0.43418,-4.77689 -0.71207,-9.38056 -0.71207,-13.56406 0,-53.35314 35.56876,-88.9219 35.56876,-88.9219 0,0 35.56876,26.67657 35.56876,71.13752 0,24.43364 -5.32689,56.5909 -10.14265,80.75914 3.29632,0.23107 6.61226,0.54686 9.95161,0.90312 16.93934,-25.74612 35.7598,-64.14412 35.7598,-108.33883 0,-62.24533 -53.35314,-124.49066 -53.35314,-124.49066 z"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

77
icons/archman.svg Normal file
View File

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg24"
sodipodi:docname="archman.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs28" />
<sodipodi:namedview
id="namedview26"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg24" />
<path
style="opacity:0.2;fill-rule:evenodd;stroke-width:8.86676"
d="m 256.14791,12.175969 c -22.1013,54.174607 -35.45006,89.617491 -60.05846,142.179921 15.08914,15.99208 30.01288,31.8211 60.09309,52.85422 -32.33867,-13.30459 -50.79533,-23.87499 -67.28001,-37.7357 C 157.40566,235.18552 108.05558,328.78631 7.9131987,508.68004 86.470311,463.33852 141.21189,435.35281 197.95978,424.61897 a 79.800862,97.534387 0 0 1 -21.61273,-66.63926 79.800862,97.534387 0 0 1 79.80086,-97.53439 79.800862,97.534387 0 0 1 79.80086,97.53439 79.800862,97.534387 0 0 1 -20.46975,65.04602 c -0.12689,0.61899 -0.17645,1.29274 -0.31176,1.90496 56.24442,11.00067 111.64124,38.9348 189.2846,83.74935 -15.31016,-28.17947 -28.98134,-53.58112 -42.03053,-77.77468 -20.55591,-15.92876 -38.37007,-32.7835 -82.10415,-55.22676 30.06033,7.80921 47.9578,12.94456 64.7343,23.01548 C 312.39098,151.74987 301.63804,118.89845 256.14791,12.175969 Z"
id="path2" />
<path
style="fill:#af0500;fill-rule:evenodd;stroke-width:8.86676"
d="M 256.14791,3.3092068 C 234.04661,57.483813 220.69785,92.926692 196.08945,145.48913 c 15.08914,15.99207 30.01288,31.8211 60.09309,52.85422 -32.33867,-13.30459 -50.79533,-23.87499 -67.28001,-37.7357 C 157.40566,226.31876 108.05558,319.91955 7.9131987,499.81327 86.470311,454.47175 141.21189,426.48605 197.95978,415.75221 a 79.800862,97.534387 0 0 1 -21.61273,-66.63926 79.800862,97.534387 0 0 1 79.80086,-97.53439 79.800862,97.534387 0 0 1 79.80086,97.53439 79.800862,97.534387 0 0 1 -20.46975,65.04601 c -0.12687,0.61902 -0.17648,1.29274 -0.31172,1.90497 56.24442,11.00067 111.64124,38.9348 189.28459,83.74934 -15.31016,-28.17946 -28.98133,-53.58112 -42.03053,-77.77467 -20.5559,-15.92877 -38.37007,-32.7835 -82.10414,-55.22676 30.06033,7.80921 47.9578,12.94456 64.7343,23.01548 C 312.39098,142.88311 301.63804,110.03169 256.14791,3.3092068 Z"
id="path4" />
<path
style="opacity:0.2;stroke-width:8.86676"
d="m 256.14791,260.44532 a 79.800862,97.534387 0 0 0 -79.80086,97.53439 79.800862,97.534387 0 0 0 22.32276,67.48783 c 5.13099,-0.91332 10.25053,-1.83547 15.48221,-2.52841 a 53.200575,84.234243 0 0 1 -11.20468,-51.65928 53.200575,84.234243 0 0 1 53.20057,-84.23424 53.200575,84.234243 0 0 1 53.20058,84.23424 53.200575,84.234243 0 0 1 -11.25663,51.64197 c 5.28512,0.69914 10.4557,1.63902 15.63806,2.56304 a 79.800862,97.534387 0 0 0 22.21885,-67.50515 79.800862,97.534387 0 0 0 -79.80086,-97.53439 z"
id="path6" />
<path
style="fill:#c2c2c2;stroke-width:8.86676"
d="m 256.14791,251.57856 a 79.800862,97.534387 0 0 0 -79.80086,97.53439 79.800862,97.534387 0 0 0 22.32276,67.48783 c 5.13099,-0.91332 10.25053,-1.83547 15.48221,-2.52841 a 53.200575,84.234243 0 0 1 -11.20468,-51.65928 53.200575,84.234243 0 0 1 53.20057,-84.23424 53.200575,84.234243 0 0 1 53.20058,84.23424 53.200575,84.234243 0 0 1 -11.25663,51.64197 c 5.28512,0.69917 10.4557,1.63902 15.63806,2.56304 a 79.800862,97.534387 0 0 0 22.21885,-67.50515 79.800862,97.534387 0 0 0 -79.80086,-97.53439 z"
id="path8" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.86676"
d="m 256.14791,251.57856 a 79.800862,97.534387 0 0 0 -79.80086,97.53439 79.800862,97.534387 0 0 0 0.15586,3.67138 79.800862,97.534387 0 0 1 79.645,-92.33901 79.800862,97.534387 0 0 1 79.66232,93.9669 79.800862,97.534387 0 0 0 0.13854,-5.29927 79.800862,97.534387 0 0 0 -79.80086,-97.53439 z m 53.07935,114.50592 a 53.200575,84.234243 0 0 1 -11.1354,47.97058 c 1.19357,0.15789 2.3495,0.39199 3.53284,0.57148 a 53.200575,84.234243 0 0 0 7.72379,-43.34669 53.200575,84.234243 0 0 0 -0.12123,-5.19537 z m -106.1587,1.5413 a 53.200575,84.234243 0 0 0 -0.12122,3.65407 53.200575,84.234243 0 0 0 7.6545,43.36401 c 1.18892,-0.18006 2.35096,-0.41265 3.55018,-0.57149 a 53.200575,84.234243 0 0 1 -11.08346,-46.44659 z"
id="path10" />
<path
style="opacity:0.1;fill:#ffffff;fill-rule:evenodd;stroke-width:8.86676"
d="M 256.14791,3.3092068 C 234.04661,57.483813 220.69785,92.926692 196.08945,145.48913 c 0.89189,0.94526 1.82501,1.91222 2.71891,2.85746 22.75278,-49.130996 36.14112,-84.209132 57.33955,-136.170621 44.62784,104.699511 56.51721,139.508501 182.18426,373.910681 2.27188,1.17176 4.51146,2.41528 6.71935,3.74067 C 312.39101,142.88311 301.63804,110.03169 256.14791,3.3092068 Z M 188.90253,160.60765 C 157.40566,226.31876 108.05558,319.91955 7.9131987,499.81327 10.384888,498.38666 12.640154,497.13581 15.065492,495.74356 109.85192,325.21134 158.25716,233.40905 188.90253,169.47441 c 16.48468,13.86071 34.94133,24.43111 67.28001,37.7357 -11.12848,-7.78141 -19.74543,-14.68971 -27.50081,-21.31833 -16.40833,-8.14843 -28.72965,-15.9934 -39.7792,-25.28413 z m 146.89038,192.17668 a 79.800862,97.534387 0 0 1 -20.31389,61.37463 c -0.12689,0.61898 -0.17641,1.29274 -0.31172,1.90497 1.41403,0.27657 2.82956,0.68915 4.24289,0.98712 a 79.800862,97.534387 0 0 0 16.53858,-59.07134 79.800862,97.534387 0 0 0 -0.15586,-5.19538 z m -159.30732,1.71448 a 79.800862,97.534387 0 0 0 -0.13854,3.4809 79.800862,97.534387 0 0 0 16.31346,58.98475 c 1.76781,-0.36858 3.52834,-0.87728 5.29927,-1.21225 a 79.800862,97.534387 0 0 1 -21.47419,-61.2534 z m 203.83163,21.17979 c 43.73407,22.44326 61.54824,39.298 82.10414,55.22676 10.89892,20.20688 22.74415,42.15248 35.10337,64.95943 2.34942,1.34799 4.53624,2.56848 6.92716,3.94848 -15.31016,-28.17946 -28.98133,-53.58112 -42.03053,-77.77467 -14.79235,-11.46259 -28.3157,-23.43803 -50.94925,-37.59715 -8.97129,-2.81558 -18.87861,-5.57366 -31.15489,-8.76285 z"
id="path12" />
<path
style="opacity:0.2;stroke-width:8.86676"
d="m 256.14791,331.37942 -15.20511,35.46705 h -37.99546 l 26.60028,26.60029 -26.60028,53.20057 53.20057,-26.60029 53.20058,26.60029 -26.60029,-53.20057 26.60029,-26.60029 h -37.99546 z"
id="path14" />
<path
style="fill:#e6e6e6;stroke-width:8.86676"
d="m 256.14791,322.51266 -15.20511,35.46705 h -37.99546 l 26.60028,26.60028 -26.60028,53.20058 53.20057,-26.60029 53.20058,26.60029 -26.60029,-53.20058 26.60029,-26.60028 h -37.99546 z"
id="path16" />
<path
style="fill:#9f9f9f;stroke-width:8.86676"
d="m 256.14791,375.71323 -53.20057,62.06734 53.20057,-26.60029 z"
id="path18" />
<path
style="fill:#f4f4f4;stroke-width:8.86676"
d="m 256.14791,322.51266 v 53.20057 l 53.20058,-17.73352 h -37.99546 z"
id="path20" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.86676"
d="m 256.14791,322.51266 -15.20511,35.46705 h -37.99546 l 8.86676,8.86676 h 29.1287 l 15.20511,-35.46705 15.20512,35.46705 h 29.12869 l 8.86677,-8.86676 h -37.99546 z m -29.56164,67.97274 -23.63893,47.29517 5.9054,-2.96136 20.69488,-41.37245 z m 59.12328,0 -2.96135,2.96136 20.69488,41.37245 5.90541,2.96136 z"
id="path22" />
</svg>

After

Width:  |  Height:  |  Size: 7.6 KiB

4
icons/arco.svg Normal file
View File

@ -0,0 +1,4 @@
<svg height="512" width="512" xmlns="http://www.w3.org/2000/svg">
<circle style="fill:#fff;fill-opacity:1;stroke-width:8.74298;stroke-dasharray:8.74298,8.74298;stop-color:#000;stroke:none" cx="256" cy="256" r="256"/>
<path style="fill:#658de5;fill-opacity:1;stroke-width:1.93458" d="M57.745 398.121c0-1.311 190.016-362.764 196.386-373.572l4.4-7.466 4.807 8.434c2.643 4.638 22.016 41.515 43.05 81.947 21.035 40.434 63.45 121.726 94.257 180.65 43.229 82.686 55.416 107.515 53.4 108.792-1.436.911-18.746 1.668-38.467 1.684l-35.856.028-10.574-10.722c-26.529-26.9-72.896-51.288-124.715-65.596l-23.215-6.41 29.019-1.457c27.26-1.368 58.013-.444 74.827 2.242 5.62.899 7.393.53 7.393-1.535 0-5.103-71.135-135.134-73.927-135.134-2.034 0-16.395 25.032-72.141 125.749-27.385 49.477-49.943 90.142-50.127 90.366-.825 1.002-78.517 2.976-78.517 1.995z"/>
</svg>

After

Width:  |  Height:  |  Size: 846 B

45
icons/artix.svg Normal file
View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg8"
sodipodi:docname="artix.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs12" />
<sodipodi:namedview
id="namedview10"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" />
<path
style="opacity:0.2;stroke-width:9.01536"
d="M 256.43017,13.015363 166.27654,193.32263 400.67598,292.49162 Z M 148.24581,238.39944 4,508.86034 409.69135,337.56844 Z m 288.49163,135.23045 -126.21509,63.10755 198.33799,72.1229 z"
id="path2" />
<path
style="fill:#3bb2d4;stroke-width:9.01536"
d="m 256.43017,4 -90.15363,180.30726 234.39944,99.169 z M 148.24581,229.38408 4,499.84498 409.69135,328.55308 Z m 288.49163,135.23045 -126.21509,63.10754 198.33799,72.12291 z"
id="path4" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:9.01536"
d="m 256.43017,4 -90.15363,180.30726 3.71531,1.56713 86.43832,-172.859027 138.29427,267.942937 5.95154,2.51796 z M 148.24581,229.38408 4,499.84498 l 6.198062,-2.62362 138.047748,-258.82192 250.19394,94.90783 11.2516,-4.75419 z m 288.49163,135.23045 -126.21509,63.10754 10.44162,3.80336 115.77347,-57.89554 66.15375,124.04929 5.96915,2.1658 z"
id="path6" />
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

71
icons/aryalinux.svg Normal file
View File

@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg16"
sodipodi:docname="aryalinux.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs20" />
<sodipodi:namedview
id="namedview18"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg16" />
<rect
style="opacity:0.2;stroke-width:8.93337"
width="500.26877"
height="500.26877"
x="6.9523911"
y="13.494582"
rx="25.013437"
ry="25.013437"
id="rect2" />
<rect
style="fill:#4f4f4f;stroke-width:8.93337"
width="500.26877"
height="500.26877"
x="6.9523911"
y="4.5612111"
rx="25.013437"
ry="25.013437"
id="rect4" />
<path
style="opacity:0.2;stroke-width:8.93337"
d="m 203.48654,67.094806 -8.93337,24.566769 V 460.16311 H 248.1534 V 67.094806 Z m 62.5336,0 V 460.16311 h 35.73348 l 17.86674,-53.60022 V 67.094806 Z M 167.75306,165.36188 60.552615,460.16311 h 53.600225 l 53.60022,-154.85104 z m 178.66742,241.20101 -17.86675,53.60022 h 125.06719 v -53.60022 z"
id="path6" />
<path
style="fill:#16ae16;stroke-width:8.93337"
d="m 203.48654,58.161435 -8.93337,24.566769 V 451.22974 H 248.1534 V 58.161435 Z M 167.75306,156.42851 60.552615,451.22974 H 114.15284 L 167.75306,296.3787 Z"
id="path8" />
<path
style="fill:#ff8416;stroke-width:8.93337"
d="M 266.02014,58.161435 V 451.22974 h 35.73348 l 17.86674,-53.60022 V 58.161435 Z m 80.40034,339.468085 -17.86675,53.60022 h 125.06719 v -53.60022 z"
id="path10" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.93337"
d="m 203.48654,58.161435 -8.93337,24.566769 v 8.933371 l 8.93337,-24.566769 h 44.66686 v -8.933371 z m 62.5336,0 v 8.933371 h 53.60022 V 58.161435 Z M 167.75306,156.42851 60.552615,451.22974 h 3.242814 L 167.75306,165.36188 Z m 178.66742,241.20101 -17.86675,53.60022 h 2.98375 l 14.883,-44.66685 h 107.20044 v -8.93337 z"
id="path12" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:8.93337"
d="m 31.972976,4.5612113 c -13.857445,0 -25.0205848,11.1631397 -25.0205848,25.0205847 v 8.93337 c 0,-13.857444 11.1631398,-25.020584 25.0205848,-25.020584 H 482.19878 c 13.85565,0 25.02237,11.16314 25.02237,25.020584 v -8.93337 c 0,-13.857445 -11.16672,-25.0205847 -25.02237,-25.0205847 z"
id="path14" />
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

744
icons/athenaos.svg Normal file
View File

@ -0,0 +1,744 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg104"
width="682.66669"
height="682.66669"
viewBox="0 0 682.66669 682.66669"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs108" />
<g
id="g110">
<image
width="682.66669"
height="682.66669"
preserveAspectRatio="none"
xlink:href="data:image/png;base64,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
"
id="image112" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 55 KiB

57
icons/backbox.svg Normal file
View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg14"
sodipodi:docname="backbox.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs18" />
<sodipodi:namedview
id="namedview16"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg14" />
<path
d="m 159.2919,12.816813 c -4.46731,-0.003 -8.76929,1.689459 -12.037,4.735597 L 15.002757,140.98773 c -3.572818,3.33766 -5.5996708,8.00877 -5.5966113,12.89803 v 335.03876 c 9.698e-4,9.73838 7.8952413,17.63265 17.6336193,17.63362 H 353.2617 c 4.46731,0.003 8.7693,-1.68946 12.03701,-4.73559 L 497.55086,378.38722 c 3.57282,-3.33765 5.59967,-8.00877 5.59661,-12.89803 V 30.450441 c -9.7e-4,-9.738378 -7.89524,-17.632649 -17.63362,-17.633628 z"
style="opacity:0.2;stroke-width:8.81681"
id="path2" />
<path
d="m 159.2919,4.0000036 c -4.46731,-0.00303 -8.76929,1.6894585 -12.037,4.7355912 L 15.002757,132.17093 c -3.572817,3.33765 -5.5996672,8.00876 -5.5966078,12.89803 v 335.03876 c 9.734e-4,9.73837 7.8952438,17.63265 17.6336188,17.63362 H 353.26171 c 4.46731,0.003 8.7693,-1.68946 12.03701,-4.73559 L 497.55086,369.57042 c 3.57282,-3.33766 5.59967,-8.00877 5.59661,-12.89804 V 21.633626 C 503.1465,11.89525 495.25223,4.0009805 485.51386,4.0000071 Z"
style="fill:#e4e4e4;stroke-width:8.81681"
id="path4" />
<path
d="m 179.14694,48.084051 c -4.61749,5.83e-4 -9.05057,1.812149 -12.34698,5.045556 L 49.960022,167.74813 c -3.380867,3.31601 -5.286039,7.85242 -5.286638,12.58806 v 273.32109 c 9.7e-4,9.73838 7.895241,17.63265 17.633619,17.63362 H 333.40667 c 4.6175,-5.8e-4 9.05057,-1.81215 12.34698,-5.04556 L 462.5936,351.62682 c 3.38087,-3.31601 5.28603,-7.85243 5.28663,-12.58806 V 65.717666 c -9.7e-4,-9.738376 -7.89524,-17.632645 -17.63362,-17.633619 z"
style="opacity:0.2;stroke-width:8.81681"
id="path6" />
<path
d="m 179.14694,39.267241 c -4.61749,5.84e-4 -9.05057,1.812149 -12.34698,5.045557 L 49.960022,158.93132 c -3.380875,3.31601 -5.286043,7.85242 -5.286642,12.58806 v 273.32109 c 9.74e-4,9.73838 7.895243,17.63265 17.633619,17.63362 H 333.40667 c 4.61749,-5.8e-4 9.05057,-1.81215 12.34698,-5.04556 L 462.59359,342.81001 c 3.38088,-3.31601 5.28604,-7.85243 5.28664,-12.58806 V 56.900857 c -9.7e-4,-9.738376 -7.89524,-17.632646 -17.63362,-17.633619 z"
style="fill:#489ad4;stroke-width:8.81681"
id="path8" />
<path
d="m 179.14694,39.267241 c -4.61749,5.84e-4 -9.05057,1.812149 -12.34698,5.045557 L 49.960022,158.93132 c -3.380867,3.31601 -5.286042,7.85242 -5.286642,12.58806 v 8.81681 c 6e-4,-4.73564 1.905775,-9.27205 5.286642,-12.58806 L 166.79996,53.129607 c 3.29641,-3.233414 7.72949,-5.044974 12.34698,-5.045556 h 271.09967 c 9.73838,9.7e-4 17.63265,7.895241 17.63362,17.633619 v -8.81681 c -9.7e-4,-9.738376 -7.89524,-17.632645 -17.63362,-17.633619 z"
style="opacity:0.2;fill:#ffffff;stroke-width:8.81681"
id="path10" />
<path
d="m 159.2919,4.0000036 c -4.46731,-0.00302 -8.76929,1.6894541 -12.037,4.7355912 L 15.002757,132.17093 c -3.572818,3.33765 -5.5996672,8.00876 -5.5966078,12.89803 v 8.81681 c -0.00306,-4.88927 2.0237898,-9.56038 5.5966078,-12.89803 L 147.2549,17.552404 c 3.26771,-3.046137 7.56969,-4.738615 12.037,-4.735591 h 326.22195 c 9.73838,9.79e-4 17.63265,7.895246 17.63362,17.633619 v -8.81681 C 503.1465,11.895245 495.25223,4.0009823 485.51385,4.0000036 Z"
style="opacity:0.2;fill:#ffffff;stroke-width:8.81681"
id="path12" />
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

21
icons/batocera.svg Normal file
View File

@ -0,0 +1,21 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="paint0_linear_202_10" x1="256" y1="471" x2="256.6" y2="90.8969" gradientUnits="userSpaceOnUse">
<stop stop-color="#E3117B"/>
<stop offset="1" stop-color="#FBBC38"/>
</linearGradient>
<clipPath id="clip0_202_10">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_202_10)">
<path d="M475.97 88L256 469L36.0296 88L475.97 88Z" fill="url(#paint0_linear_202_10)" stroke="#F8922E" stroke-width="2"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M309.455 70.4153C335.848 83.4385 341.583 118.873 320.623 139.423C317.647 142.341 312.477 146 309.136 147.554C305.795 149.109 302.847 151.067 302.585 151.905C302.323 152.744 300.727 160.977 299.038 170.201L295.966 186.971L299.435 190.021C308.205 197.731 308.263 208.445 299.575 215.617C281.37 230.644 249.378 211.821 262.438 193.767C264.102 191.467 266.794 188.896 268.419 188.055L271.373 186.525L271.817 166.928C272.246 147.976 272.191 147.284 270.151 145.868C264.956 142.263 256.012 132.058 253.809 127.219C243.32 104.181 254.627 76.6611 277.988 68.3743C281.992 66.9534 285.6 66.5662 292.936 66.7684C301.547 67.0063 303.356 67.4057 309.455 70.4153ZM227.285 175.307L240.325 177.716L237.326 180.311C235.676 181.738 233.413 184.278 232.295 185.955C229.448 190.23 210.679 247.183 210.692 251.513C210.703 255.628 213.58 260.86 217.103 263.171C218.448 264.053 234.57 267.969 252.93 271.871C271.289 275.773 292.705 280.381 300.521 282.112C319.447 286.303 324.058 286.145 329.805 281.115C333.563 277.826 334.601 273.56 337.07 251.269C338.449 238.825 340.024 225.214 340.571 221.021C341.893 210.888 341.88 201.032 340.544 198.532C339.489 196.558 339.545 196.548 342.635 198.148C351.572 202.775 358.629 212.894 359.572 222.431C360.271 229.505 353.1 311.934 351.32 317.289C347.122 329.912 333.834 339.94 321.301 339.94C318.031 339.94 293.433 335.01 193.954 314.413C180.41 311.609 167.257 308.297 164.319 306.95C157.446 303.798 150.32 296.576 146.923 289.319C144.615 284.39 144.213 282.172 144.213 274.382C144.213 266.178 144.544 264.554 147.428 258.628L150.645 252.021L150.727 256.382C151.091 275.533 178.714 283.918 194.782 269.754C197.779 267.113 199.841 264.273 200.507 261.872C201.985 256.546 201.806 246.941 200.158 243.095C198.267 238.681 192.879 233.891 187.442 231.787C181.695 229.564 169.617 229.492 164.459 231.65C162.363 232.527 160.484 233.08 160.283 232.878C159.879 232.474 180.468 190.394 182.886 186.681C188.455 178.13 200.195 171.956 209.679 172.592C212.191 172.76 220.114 173.982 227.285 175.307ZM253.585 220.782C258.11 225.459 267.138 229.732 275.745 231.271C289.428 233.721 304.337 229.209 312.228 220.232L316.395 215.491L315.726 224.609C314.78 237.497 311.893 243.324 303.879 248.51C296.365 253.373 289.507 254.962 278.569 254.372C267.227 253.761 259.164 250.192 252.409 242.79C246.409 236.216 245.437 232.682 246.024 219.576L246.477 209.49L248.401 213.453C249.46 215.632 251.792 218.93 253.585 220.782ZM180.785 237.74C183.635 238.932 184.305 239.764 184.305 242.11C184.305 243.704 183.795 245.518 183.172 246.142C182.339 246.977 182.473 247.896 183.679 249.621C184.582 250.91 185.32 252.628 185.32 253.438C185.32 256.101 182.07 258.628 178.642 258.628C173.713 258.628 164.871 256.373 164.337 254.979C163.9 253.84 170.119 240.333 172.366 237.538C173.711 235.866 176.463 235.932 180.785 237.74ZM172.631 241.352C171.712 243.131 171.185 244.812 171.459 245.086C171.733 245.361 173.777 245.83 176.001 246.129C179.449 246.592 180.223 246.338 181.259 244.4C182.708 241.689 181.309 239.836 177.019 238.784C174.689 238.211 174.064 238.576 172.631 241.352ZM169.293 248.761C168.754 249.437 168.01 250.98 167.64 252.193C167.03 254.187 167.512 254.52 172.692 255.681C178.999 257.094 181.767 256.259 181.767 252.94C181.767 249.779 171.283 246.266 169.293 248.761ZM347.334 299.792C346.88 300.91 345.591 304.215 344.469 307.135C341.855 313.936 334.894 320.98 328.702 323.093C322.867 325.084 312.73 327.492 304.073 325.513C300.445 324.683 295.877 323.769 293.923 323.479C291.969 323.189 286.032 322.076 280.728 321.005C269.063 318.649 239.596 311.284 218.053 308.041C216.796 307.852 215.769 308.038 215.769 308.456C215.769 309.681 246.475 317.657 282.758 325.855C305.984 331.104 304.316 330.807 314.223 331.447C321.555 331.921 323.764 331.663 328.94 329.727C340.401 325.442 349.371 312.679 348.495 301.907C348.227 298.619 347.987 298.18 347.334 299.792Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M224.887 168.113L237.927 170.522L234.927 173.117C233.278 174.544 231.015 177.084 229.897 178.761C227.05 183.036 208.281 239.989 208.294 244.319C208.305 248.434 211.182 253.666 214.705 255.977C216.05 256.859 232.172 260.774 250.532 264.676C268.891 268.578 290.307 273.187 298.123 274.918C317.049 279.108 321.66 278.951 327.407 273.92C331.164 270.631 332.203 266.365 334.672 244.075C336.051 231.631 337.626 218.019 338.173 213.827C339.495 203.694 339.482 193.838 338.146 191.338C337.091 189.364 337.147 189.354 340.236 190.953C349.173 195.581 356.231 205.699 357.174 215.236C357.873 222.31 350.702 304.74 348.922 310.094C344.724 322.718 331.435 332.746 318.902 332.746C315.633 332.746 291.035 327.815 191.556 307.219C178.012 304.415 164.859 301.102 161.921 299.755C155.048 296.604 147.922 289.382 144.524 282.125C142.216 277.195 141.814 274.977 141.814 267.188C141.814 258.983 142.146 257.359 145.03 251.434L148.246 244.827L148.329 249.187C148.693 268.338 176.316 276.724 192.384 262.56C195.38 259.918 197.443 257.079 198.109 254.678C199.587 249.352 199.408 239.747 197.76 235.901C195.869 231.487 190.481 226.696 185.044 224.592C179.297 222.369 167.219 222.297 162.06 224.456C159.964 225.332 158.086 225.885 157.885 225.684C157.481 225.279 178.07 183.199 180.488 179.486C186.057 170.935 197.797 164.762 207.281 165.398C209.793 165.566 217.716 166.787 224.887 168.113ZM208.007 262.435C205.848 259.535 204.5 250.704 205.752 247.665C206.355 246.2 206.784 246.639 207.941 249.909C211.542 260.084 211.215 259.965 266.15 271.226C299.292 278.019 315.69 280.959 318.61 280.633C323.04 280.137 328.526 276.599 329.603 273.54C330.647 270.585 332.419 271.462 331.657 274.557C329.645 282.729 323.44 288.024 315.877 288.024C313.246 288.024 293.203 284.347 271.337 279.851L222.764 269.908C215.003 268.434 210.94 266.376 208.007 262.435ZM342.071 299.94C343.193 297.02 344.482 293.716 344.936 292.598C345.588 290.986 345.829 291.425 346.097 294.713C346.973 305.485 338.002 318.248 326.542 322.533C321.366 324.468 319.157 324.726 311.825 324.253C301.918 323.612 303.586 323.909 280.36 318.661C244.077 310.462 213.371 302.486 213.371 301.262C213.371 300.844 214.398 300.658 215.655 300.847C237.198 304.089 266.665 309.057 278.33 311.413C283.634 312.484 289.571 313.597 291.525 313.886C293.479 314.176 298.046 315.091 301.675 315.92C310.332 317.899 320.469 317.89 326.304 315.899C332.496 313.786 339.457 306.741 342.071 299.94Z" fill="white"/>
<path d="M251.187 213.588C255.712 218.264 264.74 222.537 273.347 224.077C287.03 226.527 301.939 222.015 309.829 213.038L313.997 208.296L313.328 217.414C312.382 230.302 309.495 236.13 301.481 241.315C293.967 246.179 287.109 247.767 276.17 247.178C264.829 246.567 256.766 242.997 250.011 235.596C244.011 229.022 243.039 225.488 243.626 212.381L244.079 202.295L246.003 206.258C247.062 208.438 249.394 211.736 251.187 213.588Z" fill="white"/>
<path d="M307.056 63.2209C333.45 76.2441 339.185 111.679 318.224 132.229C315.248 135.147 310.079 138.806 306.738 140.36C303.396 141.915 300.449 143.873 300.187 144.711C299.925 145.55 298.329 153.782 296.64 163.006L293.568 179.777L297.037 182.826C305.807 190.537 305.865 201.251 297.177 208.422C278.972 223.45 246.98 204.627 260.04 186.573C261.704 184.273 264.396 181.702 266.021 180.861L268.975 179.331L269.419 159.734C269.848 140.782 269.793 140.089 267.753 138.674C262.557 135.068 253.614 124.864 251.411 120.025C240.922 96.9869 252.229 69.4667 275.59 61.18C279.594 59.759 283.202 59.3718 290.538 59.574C299.149 59.8119 300.957 60.2113 307.056 63.2209Z" fill="white"/>
<path d="M200.413 255.993C197.938 267.654 184.379 274.655 170.128 271.631C149.054 267.159 148.376 255.993 148.376 240.83C150.85 229.169 164.409 222.168 178.661 225.192C200.413 229.807 202.041 239.581 200.413 255.993Z" fill="#831308"/>
<path d="M200.413 248.799C197.938 260.459 184.379 267.46 170.128 264.436C155.876 261.412 146.329 249.508 148.803 237.848C151.277 226.187 164.836 219.186 179.088 222.21C193.339 225.234 202.887 237.138 200.413 248.799Z" fill="#BF1617"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M179.586 232.944C182.436 234.136 183.106 234.968 183.106 237.314C183.106 238.908 182.597 240.722 181.974 241.346C181.14 242.181 181.274 243.099 182.481 244.824C183.383 246.114 184.121 247.832 184.121 248.642C184.121 251.305 180.871 253.832 177.444 253.832C172.515 253.832 163.672 251.576 163.138 250.183C162.702 249.043 168.921 235.536 171.168 232.741C172.513 231.069 175.264 231.135 179.586 232.944ZM170.261 240.29C169.987 240.016 170.513 238.335 171.433 236.556C172.866 233.78 173.49 233.415 175.821 233.987C180.111 235.039 181.51 236.892 180.06 239.604C179.025 241.541 178.251 241.795 174.803 241.333C172.579 241.034 170.535 240.565 170.261 240.29ZM166.441 247.397C166.812 246.184 167.556 244.64 168.095 243.964C170.085 241.47 180.569 244.983 180.569 248.144C180.569 251.462 177.801 252.298 171.494 250.885C166.313 249.723 165.831 249.391 166.441 247.397Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

52
icons/biglinux.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 33 KiB

69
icons/blackarch.svg Normal file
View File

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg20"
sodipodi:docname="blackarch.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs24" />
<sodipodi:namedview
id="namedview22"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg20" />
<path
d="m 246.69014,83.566809 c -15.81541,38.766231 -25.35404,64.123701 -42.96205,101.733601 10.79559,11.44159 24.04734,24.7651 45.56835,39.81332 -23.13684,-9.51882 -38.9185,-19.07493 -50.71253,-28.99163 -22.53456,47.01326 -57.84119,113.98071 -129.488446,242.68638 56.312426,-32.50236 95.522796,-52.5409 136.207236,-60.18757 -1.74695,-7.51169 -2.74025,-15.63705 -2.67274,-24.115 l 0.0622,-1.80376 c 0.89346,-36.06992 24.49637,-64.82645 46.33088,-64.87516 21.83451,-0.0488 43.06777,35.61886 42.17413,71.68878 -0.16786,6.78786 -0.93388,13.3164 -2.27167,19.37245 40.24029,7.87048 79.8703,27.85752 135.42054,59.92026 -10.95371,-20.16111 -20.7304,-38.3355 -30.0665,-55.64487 -14.70681,-11.39629 -30.04608,-26.22782 -61.3358,-42.28494 21.50678,5.58713 36.90558,12.03307 48.90838,19.23835 C 286.92767,183.4176 279.24382,159.93585 246.68738,83.557928 Z"
style="fill:#3f3f3f;fill-rule:evenodd;stroke-width:8.88126"
id="path2" />
<path
d="M 228.92352,65.812746 V 509.87593 l 35.52505,-71.05011 V 65.812746 Z"
style="opacity:0.2;stroke-width:8.88126"
id="path4" />
<path
d="M 228.92352,56.931482 V 500.99467 l 35.52505,-71.05011 V 56.931482 Z"
style="fill:#8e8e8e;stroke-width:8.88126"
id="path6" />
<path
d="m 246.35647,83.592618 a 8.8821518,8.8821518 0 0 0 -7.92723,5.568135 v -0.0524 c -15.85529,38.864357 -25.2955,63.982557 -42.77577,101.319627 a 8.8821518,8.8821518 0 0 0 -0.43367,6.36606 8.8821518,8.8821518 0 0 0 -4.68348,4.3886 c -22.39257,46.71703 -57.61576,113.5601 -129.229324,242.20524 a 8.8821518,8.8821518 0 0 0 12.19441,12.00358 C 129.63672,422.99134 167.9769,403.55858 206.91117,396.24085 a 8.8821518,8.8821518 0 0 0 7.00787,-10.7373 c -1.5914,-6.84284 -2.50279,-14.25802 -2.44582,-21.97767 1.4e-4,-0.0178 -1.4e-4,-0.0337 0,-0.0524 l 0.0524,-1.56116 a 8.8821518,8.8821518 0 0 0 0.0178,-0.087 c 0.40028,-16.15795 5.96785,-30.70237 13.54739,-40.85034 7.57956,-10.14797 16.89497,-15.35308 23.92045,-15.36875 6.07485,-0.0133 14.93321,6.06763 21.94296,17.93599 7.00974,11.86836 11.72897,28.42777 11.32707,44.64916 -0.1548,6.26099 -0.86237,12.23521 -2.06419,17.6758 a 8.8821518,8.8821518 0 0 0 6.97318,10.63323 c 38.53773,7.5383 77.3301,26.94371 132.68045,58.89108 a 8.8821518,8.8821518 0 0 0 12.24643,-11.91685 c -10.94315,-20.14167 -20.72163,-38.31389 -30.06099,-55.62932 a 8.8821518,8.8821518 0 0 0 -2.37644,-2.81009 c -3.42047,-2.65053 -8.02078,-6.28416 -11.8995,-9.43635 a 8.8821518,8.8821518 0 0 0 1.85604,-10.78934 C 294.77248,188.22303 287.43768,165.4882 254.82143,88.969948 a 8.8821518,8.8821518 0 0 0 -8.46496,-5.37733 z m 0.45099,31.309932 c 24.45116,57.79615 44.34152,102.41091 116.32374,237.33095 -8.36877,-3.47545 -15.04436,-7.32566 -26.07137,-10.28631 -0.0444,-0.0231 -0.0595,-0.0462 -0.10409,-0.0693 v 0.0178 c -0.77009,-0.2064 -1.03656,-0.5073 -1.82135,-0.71121 a 8.8821518,8.8821518 0 0 0 -6.27933,16.49626 c 29.42056,15.09791 43.6653,28.59891 58.43941,40.20853 4.74292,8.79479 10.16737,18.79587 15.24733,28.20495 -38.75006,-21.36821 -72.18807,-36.96083 -104.04262,-44.37163 0.6105,-4.32317 1.43141,-8.55092 1.54381,-13.09639 0.49176,-19.84852 -4.94813,-39.14944 -13.79024,-54.1202 -8.84208,-14.97128 -21.51736,-26.69691 -37.27701,-26.66165 -14.80902,0.0329 -28.22308,9.23809 -38.12698,22.49804 -9.90389,13.25995 -16.57546,31.12062 -17.06868,51.03258 l -0.0693,1.71727 a 8.8821518,8.8821518 0 0 0 0,0.24281 c -0.0506,6.36626 1.07317,12.19084 2.01217,18.09211 -32.28056,7.2896 -65.8502,22.99952 -105.11809,44.7359 54.99151,-99.42474 90.84378,-166.36376 111.10253,-208.18932 11.5026,8.33024 25.14,16.41636 44.18081,24.25002 a 8.8821518,8.8821518 0 0 0 8.46496,-15.49017 c -18.92304,-13.23164 -29.95729,-24.49209 -40.00038,-34.96998 12.64603,-27.45574 21.93711,-50.77306 32.45478,-76.86109 z"
style="opacity:0.2;fill-rule:evenodd;stroke-width:8.88126"
id="path8" />
<path
d="m 246.69014,83.566809 c -15.81541,38.766231 -25.35404,64.123701 -42.96205,101.733601 10.79559,11.44159 24.04734,24.7651 45.56835,39.81332 -23.13684,-9.51882 -38.9185,-19.07493 -50.71253,-28.99163 -22.53456,47.01326 -57.84119,113.98071 -129.488446,242.68638 56.312426,-32.50236 95.522796,-52.5409 136.207236,-60.18757 -1.74695,-7.51169 -2.74025,-15.63705 -2.67274,-24.115 l 0.0622,-1.80376 c 0.89346,-36.06992 24.49637,-64.82645 46.33088,-64.87516 21.83451,-0.0488 43.06777,35.61886 42.17413,71.68878 -0.16786,6.78786 -0.93388,13.3164 -2.27167,19.37245 40.24029,7.87048 79.8703,27.85752 135.42054,59.92026 -10.95371,-20.16111 -20.7304,-38.3355 -30.0665,-55.64487 -14.70681,-11.39629 -30.04608,-26.22782 -61.3358,-42.28494 21.50678,5.58713 36.90558,12.03307 48.90838,19.23835 C 286.92767,183.4176 279.24382,159.93585 246.68738,83.557928 Z"
style="fill:none;stroke:#3db0ea;stroke-width:17.7625;stroke-linecap:round;stroke-linejoin:round"
id="path10" />
<path
d="m 246.39116,74.69401 a 8.8821518,8.8821518 0 0 0 -7.92722,5.568134 v -0.05204 C 222.60865,119.0741 213.16844,144.1923 195.68816,181.52937 a 8.8821518,8.8821518 0 0 0 -0.43365,6.36606 8.8821518,8.8821518 0 0 0 -4.68348,4.38859 C 168.17846,239.00106 132.95528,305.84413 61.341704,434.48927 a 8.8821518,8.8821518 0 0 0 0.06939,8.7078 C 132.94441,314.69211 168.15622,247.8737 190.53634,201.18264 a 8.8821518,8.8821518 0 0 1 4.68348,-4.3886 8.8821518,8.8821518 0 0 1 0.43365,-6.36606 c 17.48027,-37.33707 26.92049,-62.45491 42.77577,-101.319262 v 0.05204 a 8.8821518,8.8821518 0 0 1 7.92723,-5.568135 8.8821518,8.8821518 0 0 1 8.46496,5.37733 C 287.4231,165.45399 294.77166,188.23127 389.5148,364.60135 a 8.8821518,8.8821518 0 0 0 0.15612,-8.69046 C 294.80718,179.32443 287.47237,156.58958 254.85612,80.071339 a 8.8821518,8.8821518 0 0 0 -8.46496,-5.377329 z m -29.3498,110.91172 c -0.9599,2.12185 -1.6891,3.98776 -2.68866,6.15791 10.04309,10.47788 21.07733,21.73833 40.00037,34.96997 a 8.8821518,8.8821518 0 0 1 2.58459,2.84478 8.8821518,8.8821518 0 0 0 -2.54989,-11.74338 c -17.31329,-12.10605 -27.95772,-22.51306 -37.34641,-32.22928 z m 31.96908,93.34 c -14.80903,0.0329 -28.22309,9.23809 -38.12699,22.49804 -9.90389,13.25995 -16.57545,31.12062 -17.06868,51.03258 l -0.0694,1.71727 a 8.8821518,8.8821518 0 0 0 0,0.24285 c -0.01,1.23243 0.17449,2.37701 0.24285,3.57332 1.12081,-18.5474 7.52168,-35.16397 16.86053,-47.66741 9.9039,-13.25995 23.31796,-22.46518 38.12698,-22.49804 15.75965,-0.0353 28.43495,11.68985 37.27703,26.66113 7.72904,13.08622 12.86302,29.48429 13.70351,46.66133 0.0273,-0.48026 0.10931,-0.93534 0.12143,-1.42239 v -0.0173 c 0.4881,-19.84243 -4.95076,-39.15387 -13.79025,-54.1202 -8.8421,-14.97077 -21.51738,-26.6964 -37.27702,-26.66114 z m 83.52204,53.07942 a 8.8821518,8.8821518 0 0 0 -7.26807,13.28721 8.8821518,8.8821518 0 0 1 9.87,-4.1284 c 0.78479,0.20391 1.05127,0.50479 1.82135,0.7112 v -0.0174 c 0.0446,0.0231 0.0597,0.0463 0.10408,0.0694 11.027,2.96065 17.7026,6.81086 26.07137,10.28631 -2.4355,-4.56498 -3.78744,-7.25974 -6.10587,-11.62197 -5.88411,-2.67029 -11.71585,-5.35731 -19.9308,-7.56295 -0.0444,-0.0231 -0.0595,-0.0463 -0.10408,-0.0694 v 0.0173 c -0.77018,-0.2064 -1.03657,-0.50728 -1.82135,-0.71119 a 8.8821518,8.8821518 0 0 0 -2.63663,-0.2602 z m -120.79906,26.79992 c -0.0649,0.99941 -0.16572,1.9881 -0.19081,3.00089 a 8.8821518,8.8821518 0 0 1 -0.0173,0.0867 l -0.0521,1.56116 c -1.4e-4,0.0186 1.4e-4,0.0343 0,0.052 -0.0484,6.55845 0.71807,12.81395 1.89074,18.76862 a 8.8821518,8.8821518 0 0 0 0.58977,-5.68956 c -1.29605,-5.57292 -1.98207,-11.59241 -2.22031,-17.77987 z m 70.42565,2.79274 c -0.25697,5.39805 -0.85903,10.60234 -1.90809,15.35139 a 8.8821518,8.8821518 0 0 0 0.53773,5.46407 c 0.79922,-4.5094 1.36813,-9.24009 1.49177,-14.24125 0.0543,-2.18969 0.004,-4.38457 -0.12141,-6.57421 z m 108.53528,7.35479 a 8.8821518,8.8821518 0 0 1 -2.91416,6.62625 c 3.87872,3.15219 8.47903,6.78582 11.8995,9.43635 a 8.8821518,8.8821518 0 0 1 2.37644,2.81009 c 9.30378,17.24946 19.04693,35.37115 29.93956,55.42116 a 8.8821518,8.8821518 0 0 0 0.15612,-8.69046 c -10.9439,-20.14062 -20.72163,-38.31388 -30.06099,-55.62932 a 8.8821518,8.8821518 0 0 0 -2.37643,-2.81008 c -2.59434,-2.01035 -5.89789,-4.66156 -9.02004,-7.16399 z m -196.28981,3.9029 c -29.91708,6.96432 -61.16654,21.28862 -96.895968,40.72892 -2.437348,4.41569 -4.38659,8.00754 -6.903797,12.55866 39.267885,-21.73637 72.837535,-37.44629 105.118085,-44.7359 -0.45294,-2.84651 -0.93194,-5.67146 -1.31832,-8.55168 z m 105.23951,0.24284 c -0.32202,2.89356 -0.74131,5.74611 -1.14485,8.60373 31.85455,7.41081 65.29256,23.00342 104.04262,44.37162 -2.24914,-4.16583 -4.45254,-8.24741 -6.74769,-12.48927 -35.38423,-19.17857 -66.54961,-33.43252 -96.15008,-40.48608 z"
style="opacity:0.2;fill:#ffffff;fill-rule:evenodd;stroke-width:8.88126"
id="path12" />
<path
d="m 237.80478,11.744581 c -4.92022,0 -8.88126,3.961043 -8.88126,8.881263 v 45.186902 a 53.287582,13.321896 0 0 0 -35.52506,12.541312 53.287582,13.321896 0 0 0 43.19209,13.079046 c 0.41377,0.05862 0.78368,0.242814 1.21423,0.242814 h 17.76253 c 0.44948,0 0.83511,-0.196365 1.26627,-0.260221 A 53.287582,13.321896 0 0 0 299.97363,78.354058 53.287582,13.321896 0 0 0 264.44857,65.812746 V 20.625844 c 0,-4.92022 -3.96104,-8.881263 -8.88126,-8.881263 z"
style="opacity:0.2;stroke-width:8.88126"
id="path14" />
<path
d="m 237.80478,3.6439003 c -4.92022,0 -8.88126,3.9610436 -8.88126,8.8812637 v 45.186901 a 53.287582,13.321896 0 0 0 -35.52506,12.541313 53.287582,13.321896 0 0 0 43.19209,13.079046 c 0.41382,0.05864 0.78371,0.242849 1.21423,0.242849 h 8.88127 8.88126 c 0.44945,0 0.83512,-0.196382 1.26627,-0.260194 A 53.287582,13.321896 0 0 0 299.97363,70.253378 53.287582,13.321896 0 0 0 264.44857,57.712065 V 12.525164 c 0,-4.9202201 -3.96104,-8.8812637 -8.88126,-8.8812637 z"
style="fill:#4f4f4f;stroke-width:8.88126"
id="path16" />
<path
d="m 237.80478,3.6439003 c -4.92022,0 -8.88126,3.9610436 -8.88126,8.8812637 v 8.881263 c 0,-4.92022 3.96104,-8.881263 8.88126,-8.881263 h 17.76253 c 4.92022,0 8.88126,3.961043 8.88126,8.881263 v -8.881263 c 0,-4.9202201 -3.96104,-8.8812637 -8.88126,-8.8812637 z m -8.88126,54.0681647 a 53.287582,13.321896 0 0 0 -35.52506,12.541313 53.287582,13.321896 0 0 0 3.12232,4.440632 53.287582,13.321896 0 0 1 32.40274,-8.100681 z m 35.52505,0 v 8.881264 a 53.287582,13.321896 0 0 1 32.38539,8.100681 53.287582,13.321896 0 0 0 3.13967,-4.440632 53.287582,13.321896 0 0 0 -35.52506,-12.541313 z"
style="opacity:0.2;fill:#ffffff;stroke-width:8.88126"
id="path18" />
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

196645
icons/blendos.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.3 MiB

77
icons/bodhi.svg Normal file
View File

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg20"
sodipodi:docname="bodhi-linux.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs24" />
<sodipodi:namedview
id="namedview22"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg20" />
<circle
style="opacity:0.2;stroke-width:16.9039"
cx="257.39688"
cy="264.66245"
r="245.10686"
id="circle2" />
<circle
style="fill:#ff6600;stroke-width:16.9039"
cx="257.39688"
cy="247.75853"
r="245.10686"
id="circle4" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:16.9039"
d="M 257.39687,2.6516774 A 245.10685,245.10685 0 0 0 12.29002,247.75853 245.10685,245.10685 0 0 0 12.653191,257.56413 245.10685,245.10685 0 0 1 257.39687,19.555598 245.10685,245.10685 0 0 1 502.14057,254.85686 245.10685,245.10685 0 0 0 502.50373,247.75853 245.10685,245.10685 0 0 0 257.39687,2.6516774 Z"
id="path6" />
<circle
style="opacity:0.2;stroke-width:16.9039"
cx="257.39688"
cy="264.66245"
r="194.3951"
id="circle8" />
<circle
style="fill:#ffffff;stroke-width:16.9039"
cx="257.39688"
cy="247.75853"
r="194.3951"
id="circle10" />
<g
style="opacity:0.1"
transform="matrix(2.9451708,0,0,2.9567299,-88.984735,348.02313)"
id="g14">
<path
d="M 186.56017,45.31822 C 169.54353,30.824731 163.17243,22.126838 145.15565,8.8368253 c -3.15476,-1.30232 -3.71374,-0.1462094 -7.5,2.0454607 -14.60684,8.45511 -17.35822,10.00604 -24.55233,10.00604 -6.12314,0 -7.87129,-0.45849 -13.972463,-3.66457 -3.835524,-2.01551 -7.630332,-4.60301 -8.432907,-5.75 -4.845162,-6.9244001 -5.459248,-9.246735 -8.747564,-15.6948549 -2.014792,-3.95084 -3.912143,-9.1258371 -4.216334,-11.4999971 -0.304192,-2.374159 -1.347466,-5.902078 -2.318387,-7.839821 -0.970921,-1.937742 -2.965576,-8.237742 -4.432568,-14 -2.102127,-8.257033 -2.534088,-13.414109 -2.038735,-18.171115 0.794682,-7.631544 -2.711578,-10.549938 -8.665695,-16.469331 -5.565005,-5.53255 -21.886299,-26.920684 -24.671105,-33.095537 -2.389232,-5.29773 -0.99227,-8.04207 1.781969,-3.50068 8.639069,14.142021 23.203099,31.068518 30.319588,35.239059 4.202392,2.462765 4.568877,1.67543 11.215999,0.487523 11.74418,-2.098802 31.583842,0.235823 37.779162,4.44565 2.10345,1.429331 4.40624,2.598784 5.1173,2.598784 0.71107,0 3.85351,0.9 6.98321,2 3.1297,1.1 6.76294,2 8.07388,2 3.55807,0 9.62047,2.680076 11.35064,5.531551 0.84105,1.386124 3.733,3.971076 6.42656,5.744338 3.96438,2.609893 5.61121,4.65292 8.64442,10.724111 4.24734,8.501356 4.49647,11.311387 2.26472,18.826489 -1.19912,4.037863 -2.91362,6.670709 -6.95425,10.679196 -7.01133,6.9555343 -8.96235,10.67067427 -4.91286,16.5249643 4.72019,6.8238797 15.06282,16.3700447 31.0052,30.4755747 8.23928,7.28998 15.23856,13.92696 15.55396,14.74887 2.38354,6.21142 -2.71278,4.01232 -13.69689,-5.91031 z"
id="path12" />
</g>
<g
transform="matrix(2.9451708,0,0,2.9567299,-88.984735,331.11921)"
id="g18">
<path
style="fill:#5a860b"
d="M 186.56017,45.31822 C 169.54353,30.824731 163.17243,22.126838 145.15565,8.8368253 c -3.15476,-1.30232 -3.71374,-0.1462094 -7.5,2.0454607 -14.60684,8.45511 -17.35822,10.00604 -24.55233,10.00604 -6.12314,0 -7.87129,-0.45849 -13.972463,-3.66457 -3.835524,-2.01551 -7.630332,-4.60301 -8.432907,-5.75 -4.845162,-6.9244001 -5.459248,-9.246735 -8.747564,-15.6948549 -2.014792,-3.95084 -3.912143,-9.1258371 -4.216334,-11.4999971 -0.304192,-2.374159 -1.347466,-5.902078 -2.318387,-7.839821 -0.970921,-1.937742 -2.965576,-8.237742 -4.432568,-14 -2.102127,-8.257033 -2.534088,-13.414109 -2.038735,-18.171115 0.794682,-7.631544 -2.711578,-10.549938 -8.665695,-16.469331 -5.565005,-5.53255 -21.886299,-26.920684 -24.671105,-33.095537 -2.389232,-5.29773 -0.99227,-8.04207 1.781969,-3.50068 8.639069,14.142021 23.203099,31.068518 30.319588,35.239059 4.202392,2.462765 4.568877,1.67543 11.215999,0.487523 11.74418,-2.098802 31.583842,0.235823 37.779162,4.44565 2.10345,1.429331 4.40624,2.598784 5.1173,2.598784 0.71107,0 3.85351,0.9 6.98321,2 3.1297,1.1 6.76294,2 8.07388,2 3.55807,0 9.62047,2.680076 11.35064,5.531551 0.84105,1.386124 3.733,3.971076 6.42656,5.744338 3.96438,2.609893 5.61121,4.65292 8.64442,10.724111 4.24734,8.501356 4.49647,11.311387 2.26472,18.826489 -1.19912,4.037863 -2.91362,6.670709 -6.95425,10.679196 -7.01133,6.9555343 -8.96235,10.67067427 -4.91286,16.5249643 4.72019,6.8238797 15.06282,16.3700447 31.0052,30.4755747 8.23928,7.28998 15.23856,13.92696 15.55396,14.74887 2.38354,6.21142 -2.71278,4.01232 -13.69689,-5.91031 z"
id="path16" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

57
icons/bunsenlabs.svg Normal file
View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="bunsenlabs.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<circle
style="opacity:0.2;stroke-width:8.85047"
cx="256.62387"
cy="259.87366"
r="247.81329"
id="circle2" />
<circle
style="fill:#4f4f4f;stroke-width:8.85047"
cx="256.62387"
cy="251.02321"
r="247.81329"
id="circle4" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:8.85047"
d="M 256.62386,3.2099084 A 247.81329,247.81329 0 0 0 8.810567,251.0232 247.81329,247.81329 0 0 0 9.0008522,256.20958 247.81329,247.81329 0 0 1 256.62386,12.060383 247.81329,247.81329 0 0 1 504.25129,254.6873 247.81329,247.81329 0 0 0 504.43715,251.0232 247.81329,247.81329 0 0 0 256.62386,3.2099084 Z"
id="path6" />
<path
style="opacity:0.2;stroke-width:8.85047"
d="m 274.32481,65.163231 c 0,0 -97.35522,70.803799 -97.35522,141.607599 0,55.13059 11.92605,103.03448 26.98357,141.72859 -0.16026,-3.03285 -0.43215,-6.26452 -0.43215,-8.97147 0,-70.8038 35.4019,-123.90665 35.4019,-123.90665 0,0 37.99245,43.68519 44.25237,70.8038 12.67711,54.91852 -17.70095,168.15902 -17.70095,168.15902 0,0 79.65428,-97.35522 79.65428,-177.0095 0,-79.65427 -61.95333,-159.30854 -70.8038,-168.15901 -10.43038,-10.430388 0,-44.252379 0,-44.252379 z"
id="path8" />
<path
style="fill:#fbb620;stroke-width:8.85047"
d="m 274.32481,56.312756 c 0,0 -97.35522,70.803804 -97.35522,141.607594 0,55.1306 11.92605,103.03448 26.98357,141.7286 -0.16026,-3.03285 -0.43215,-6.26453 -0.43215,-8.97148 0,-70.8038 35.4019,-123.90664 35.4019,-123.90664 0,0 37.99245,43.68519 44.25237,70.80379 12.67711,54.91853 -17.70095,168.15902 -17.70095,168.15902 0,0 79.65428,-97.35522 79.65428,-177.00949 0,-79.65427 -61.95333,-159.30854 -70.8038,-168.15902 -10.43038,-10.430383 0,-44.252374 0,-44.252374 z"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

61
icons/cachyos.svg Normal file
View File

@ -0,0 +1,61 @@
<svg width="512" height="512" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient xlink:href="#a" id="d" x1="237.186" y1="296.2" x2="237.072" y2="304.08" gradientUnits="userSpaceOnUse" gradientTransform="translate(-232.187 -115.547) scale(1.23382)"/>
<linearGradient id="a">
<stop style="stop-color:#001313;stop-opacity:1" offset="0"/>
<stop style="stop-color:#001313;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient xlink:href="#b" id="e" x1="994.809" y1="1533.278" x2="982.344" y2="1556.765" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient id="b">
<stop style="stop-color:#020202;stop-opacity:1" offset="0"/>
<stop style="stop-color:#020202;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient xlink:href="#b" id="f" x1="1022.515" y1="1582.428" x2="1018.597" y2="1575.638" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.3811 0 0 2.2591 -2178.269 -3438.755)"/>
<linearGradient xlink:href="#b" id="g" x1="940.433" y1="1612.467" x2="930.589" y2="1594.47" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient xlink:href="#b" id="h" x1="965.605" y1="1571.427" x2="951.661" y2="1571.345" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient xlink:href="#b" id="i" x1="946.234" y1="1655.864" x2="961.373" y2="1655.846" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient xlink:href="#a" id="j" x1="366.154" y1="427.324" x2="350.922" y2="419.642" gradientUnits="userSpaceOnUse" gradientTransform="translate(-296.382 -110.159) scale(1.23382)"/>
<linearGradient xlink:href="#b" id="k" x1="936.335" y1="1628.774" x2="933.378" y2="1622.977" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient xlink:href="#b" id="l" x1="950.33" y1="1618.617" x2="941.971" y2="1645.767" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient xlink:href="#b" id="m" x1="1008.201" y1="1681.329" x2="1015.731" y2="1668.374" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient xlink:href="#c" id="n" x1="1148.342" y1="1585.508" x2="1145.437" y2="1629.975" gradientUnits="userSpaceOnUse" gradientTransform="translate(-282.868 -491.668) scale(.34992)"/>
<linearGradient id="c">
<stop style="stop-color:#008066;stop-opacity:0" offset="0"/>
<stop style="stop-color:#0fc;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient xlink:href="#c" id="o" gradientUnits="userSpaceOnUse" gradientTransform="translate(-211.152 -375.487) scale(.26565)" x1="1148.342" y1="1585.508" x2="1145.437" y2="1629.975"/>
<linearGradient xlink:href="#c" id="p" gradientUnits="userSpaceOnUse" gradientTransform="translate(-217.309 -786.915) scale(.55423)" x1="1148.342" y1="1585.508" x2="1145.437" y2="1629.975"/>
<linearGradient xlink:href="#a" id="q" x1="348.048" y1="194.78" x2="361.21" y2="187.235" gradientUnits="userSpaceOnUse" gradientTransform="translate(-296.382 -110.159) scale(1.23382)"/>
</defs>
<circle style="fill:#fff;stroke-width:117.924;stroke-dasharray:117.924,117.924;stop-color:#000" cx="256" cy="256" r="256"/>
<path style="fill:#fff;fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M123.982 65.458h230.052l-58.24 100.864h-124.76l-51.983 90.04 52.7 91.298h243.367l-59.723 103.436H119.04L5.004 253.576l109.173-189.09Z"/>
<path style="fill:#0a8;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m114.177 64.486 181.618 101.84 58.24-100.868zm57.579 283.174-52.713 103.436h236.36l59.719-103.436Z"/>
<path style="fill:#0cf;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m114.177 64.486 181.618 101.84h-124.76l-51.984 90.04 52.7 91.294-52.712 103.436L5 253.576l109.177-189.09"/>
<path style="fill:url(#d);fill-opacity:1;stroke:none;stroke-width:1.2338px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m5.004 253.58 114.043 2.787 3.19 5.461-113.651-2.289z"/>
<path style="fill:url(#e);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M295.795 166.326 114.177 64.486l-13.812 24.91 137.677 76.35z"/>
<path style="fill:url(#f);fill-opacity:1;stroke:none;stroke-width:.613651px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M170.131 165.374 355.124 60.9l-59.787 98.254Z"/>
<path style="fill:#0a8;fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m171.035 166.326 183-100.868-58.24 100.868z"/>
<path style="fill:#0a8;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m5.004 253.58 166.03-87.254-51.983 90.04z"/>
<path style="fill:url(#g);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m5.004 253.58 166.03-87.254-11.218-17.544L16.734 231.72Z"/>
<path style="fill:#0a8;fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m171.035 166.326-56.858-101.84 4.87 191.88z"/>
<path style="fill:#0cf;fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m171.756 347.66 183.648 103.436 59.718-103.436Z"/>
<path style="fill:url(#h);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m114.177 64.486-13.812 24.91 1.325 166.152 17.357.819z"/>
<path style="fill:#0a8;fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m119.047 256.367-87.067 43.66L119.04 451.1Z"/>
<path style="fill:url(#i);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M119.047 256.367v194.725l21.337-41.632 1.645-114.148z"/>
<path style="fill:url(#j);fill-opacity:1;stroke:none;stroke-width:1.2338px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m119.04 451.096-8.214-14.79 52.9-102.159 8.026 13.513z"/>
<path style="fill:url(#k);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m31.98 300.028 87.071-43.661-17.361-.819-75.544 36.093z"/>
<path style="fill:#0a8;fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m31.98 300.028 139.776 47.632-52.709-91.293Z"/>
<path style="fill:url(#l);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M171.756 347.66 31.98 300.028l15.178 26.206 114.87 41.725z"/>
<path style="fill:url(#m);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m171.756 347.66 183.648 103.436 22.008-39.18L259.22 346.65Z"/>
<g transform="translate(-18.702 .542) scale(4.0517)">
<circle style="fill:#0cf;fill-opacity:1;stroke:none;stroke-width:.0925842;stroke-opacity:1" cx="117.952" cy="75.441" r="9.689"/>
<circle style="fill:url(#n);fill-opacity:1;stroke:none;stroke-width:.0925842;stroke-opacity:1" cx="118.085" cy="75.341" r="9.689"/>
</g>
<g transform="translate(-.867 -8.388) scale(4.0517)">
<circle style="fill:#0cf;fill-opacity:1;stroke:none;stroke-width:.070287;stroke-opacity:1" cx="93.138" cy="55.045" r="7.356"/>
<circle style="fill:url(#o);fill-opacity:1;stroke:none;stroke-width:.070287;stroke-opacity:1" cx="93.239" cy="54.969" r="7.356"/>
</g>
<circle style="fill:#0cf;fill-opacity:1;stroke:none;stroke-width:.14664;stroke-opacity:1" cx="417.536" cy="111.312" r="15.348"/>
<circle style="fill:url(#p);fill-opacity:1;stroke:none;stroke-width:.14664;stroke-opacity:1" cx="417.747" cy="111.154" r="15.348"/>
<path style="fill:url(#q);fill-opacity:1;stroke:none;stroke-width:1.2338px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m171.035 166.326-56.858-101.84 14.485-.207 53.442 95.175z"/>
</svg>

After

Width:  |  Height:  |  Size: 8.1 KiB

12
icons/centos-stream.svg Normal file
View File

@ -0,0 +1,12 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="clip0_205_13">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_205_13)">
<circle cx="256" cy="256" r="256" fill="#A04E8B"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M256.067 463H257.892L288.073 432.647L318.254 402.295H359.596H400.938V361.045V319.795L432.035 288.536L463.133 257.277L432.035 226.017L400.938 194.758V153.508V112.258H359.73H318.521L287.294 81.1292L256.067 50L224.839 81.1292L193.612 112.258H152.403H111.195V153.508V194.758L80.0976 226.017L49 257.277L80.0976 288.536L111.195 319.795V361.045V402.295H152.537H193.879L224.06 432.647L254.242 463H256.067ZM239.221 398.922H256.067H272.912V367.471V336.02L264.489 328.099L256.067 320.179L247.644 328.099L239.221 336.02V367.471V398.922ZM166.518 368.668L189.393 345.945L212.268 323.222V312.17V301.119H201.079H189.89L167.186 323.514L144.481 345.909L155.499 357.288L166.518 368.668ZM341.784 368.57H343.405H345.027L356.186 357.743L367.345 346.916L344.645 324.018L321.945 301.119H310.905H299.865V313.675V326.232L320.824 347.401L341.784 368.57ZM114.564 274.139H145.984H177.403L185.315 265.708L193.228 257.277L185.315 248.845L177.403 240.414H145.984H114.564V257.277V274.139ZM334.73 274.139H366.15H397.569V257.277V240.414H366.15H334.73L326.818 248.845L318.905 257.277L326.818 265.708L334.73 274.139ZM189.528 213.434H200.898H212.268V202.383V191.332L189.393 168.609L166.518 145.885L155.465 157.3L144.413 168.715L166.97 191.074L189.528 213.434ZM253.872 193.199H255.594H257.317L265.114 185.866L272.912 178.533V147.082V115.631H256.067H239.221V146.609V177.588L246.546 185.393L253.872 193.199Z" fill="white"/>
<path d="M247.93 289.439L239.222 295.15V284.644V274.139H229.115H219.008V271.875V269.611L224.584 263.444L230.159 257.276L224.584 251.109L219.008 244.942V242.678V240.414H229.115H239.222V229.908V219.403L247.93 225.114L256.638 230.826L262.514 225.502L268.39 220.179H270.652H272.913V230.296V240.414H283.408H293.903L288.384 248.845L282.865 257.276L288.384 265.708L293.903 274.139H283.408H272.913V284.257V294.374H270.652H268.39L262.514 289.051L256.638 283.727L247.93 289.439ZM312.416 213.434H299.866V200.871V188.309L322.492 165.486L345.118 142.662L330.213 127.46L315.309 112.258H358.124H400.939V155.117V197.976L385.753 183.056L370.566 168.137L347.766 190.785L324.965 213.434H312.416Z" fill="#EDA527"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

73
icons/cereus.svg Normal file
View File

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="512"
height="512"
viewBox="0 0 380 380"
version="1.1"
id="svg1587"
xml:space="preserve"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="cereus-logo.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview1589"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.23785774"
inkscape:cx="2001.1962"
inkscape:cy="559.15776"
inkscape:window-width="1366"
inkscape:window-height="709"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><defs
id="defs1584" /><g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"><g
id="g815"><circle
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke-width:0.267534;paint-order:markers fill stroke"
id="path1760"
cx="190"
cy="190"
r="190" /><g
id="g2187"
transform="matrix(2.8601829,0,0,2.8601829,139.09517,289.80363)"><g
inkscape:label="Capa 1"
id="layer1-3"
transform="matrix(0.26458333,0,0,0.26458333,-49.02146,-103.23409)"><path
style="fill:#3a8844;fill-opacity:1;stroke:none;stroke-width:0.891054px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 258.545,305.72638 c 0,0 59.94318,16.28098 80.53145,-17.74661 26.84382,-44.36655 7.15835,-67.43718 35.79175,-88.73313 35.79176,-26.61992 82.54388,13.75536 53.68764,70.9865 -26.84382,53.23986 -90.54804,79.59489 -125.27114,70.98649 -35.79176,-8.8733 -44.7397,-35.49325 -44.7397,-35.49325 z"
id="path1067"
sodipodi:nodetypes="cssssc" /><path
style="fill:#3a8844;fill-opacity:1;stroke:none;stroke-width:0.891054px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 111.41581,145.91029 c 35.79176,0 17.89589,70.98651 35.79176,88.73312 l 17.89588,17.74662 c 0,0 -62.63557,8.87332 -80.531447,-44.36656 -12.771929,-35.66802 0,-62.11318 26.843807,-62.11318 z"
id="path1182"
sodipodi:nodetypes="ssccs" /><path
id="path8219"
style="fill:#bc4e48;fill-opacity:1;stroke:none;stroke-width:0.891054px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 257.39648,46.880859 c -5.09961,0.250168 -11.3324,3.317399 -11.76171,10.296875 0,0 -2.63869,14.123343 17.89648,26.619141 23.1953,14.114525 41.94132,1.745662 44.73828,-8.873047 2.79698,-10.618711 -4.41674,-13.910948 -8.94726,-13.310547 -0.98348,0.130334 -1.96456,0.646226 -2.94336,1.351563 0.0274,-6.57086 1.05118,-14.720728 -10.94141,-5.244141 -1.63333,1.290661 -3.41527,2.556085 -5.24023,3.572266 -4.93559,-12.639533 -8.73422,-6.4982 -12.24805,-0.828125 -1.96625,-3.662311 -2.33011,-10.208352 -4.95313,-12.28125 -1.19792,-0.9467 -3.2816,-1.416447 -5.59961,-1.302735 z" /><path
style="fill:#4e965c;fill-opacity:1;stroke:none;stroke-width:0.891054px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 335.11429,447.60288 c 0,0 -121.30898,-26.52345 -166.04867,-106.38325 C 141.58224,292.16214 138.63054,83.827756 245.6349,92.670418 353.01017,101.54374 294.33675,243.61322 276.44088,314.5997 258.545,385.58618 335.11429,447.60288 335.11429,447.60288 Z"
id="path937"
sodipodi:nodetypes="csszc" /><path
style="fill:#458161;fill-opacity:1;stroke:none;stroke-width:0.891054px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 79.586231,314.5997 c -26.843816,8.8733 -4.791924,57.36122 26.843819,88.7331 26.84381,26.61995 71.5835,44.36659 80.53144,26.61995 8.94794,-17.74661 -26.84382,-8.87332 -62.63556,-44.36657 -35.79176,-35.49323 -17.89588,-79.8598 -44.739699,-70.98648 z"
id="path11663"
sodipodi:nodetypes="zsssz" /><path
style="fill:#adc3ad;fill-opacity:1;stroke:none;stroke-width:0.891054px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 428.55584,154.88009 c 22.01589,-7.41173 -3.10009,-36.77438 -20.99597,-54.521 -17.89588,-17.74662 -41.6396,-34.212119 -50.58755,-16.465496 -8.94793,17.746626 14.7958,16.465496 32.69167,34.212116 17.89588,17.74662 16.87595,44.18612 38.89185,36.77438 z"
id="path14218"
sodipodi:nodetypes="zsssz" /></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

16
icons/chimera.svg Normal file
View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
<rect id="Logo" x="0" y="0" width="1024" height="1024" style="fill:none;"/>
<g id="Logo1" serif:id="Logo">
<g transform="matrix(1,0,0,1,-36,-36)">
<path d="M100,588L246.627,588C264.497,723.817 372.185,831.505 508,849.373L508,996L100,996L100,588ZM996,996L588,996L588,849.373C710.177,833.298 809.592,744.539 841.322,628L996,628L996,996ZM468,100L468,254.678C351.464,286.41 262.706,385.817 246.627,508L100,508L100,100L468,100Z" style="fill:rgb(123,123,123);"/>
</g>
<g id="Logo2" serif:id="Logo">
<path d="M64,552L210.627,552C228.497,687.817 336.185,795.505 472,813.373L472,960L64,960L64,552Z" style="fill:rgb(247,134,243);"/>
<path d="M960,960L552,960L552,813.373C674.177,797.298 773.592,708.539 805.322,592L960,592L960,960Z" style="fill:rgb(212,92,146);"/>
<path d="M432,64L432,218.678C315.464,250.41 226.706,349.817 210.627,472L64,472L64,64L432,64Z" style="fill:rgb(171,118,228);"/>
<path d="M743.456,528L960,528L960,440L656,440L656,512C656,591.476 591.476,656 512,656C432.524,656 368,591.476 368,512C368,432.524 432.524,368 512,368L584,368L584,64L496,64L496,280.544C375.407,288.775 280,389.334 280,512C280,640.044 383.956,744 512,744C634.666,744 735.225,648.593 743.456,528Z" style="fill:rgb(214,79,93);"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

71
icons/condres.svg Normal file
View File

@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg16"
sodipodi:docname="condres.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs20" />
<sodipodi:namedview
id="namedview18"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg16" />
<rect
x="9.9597654"
y="12.102962"
width="493.8334"
height="493.8334"
rx="17.636908"
ry="17.636908"
style="opacity:0.2;stroke-width:8.81845"
id="rect2" />
<rect
x="9.9597654"
y="3.2845075"
width="493.8334"
height="493.8334"
rx="17.636908"
ry="17.636908"
style="fill:#aeea66;stroke-width:8.81845"
id="rect4" />
<path
d="M 13.507815,10.380606 C 11.303284,13.324545 9.9597652,16.944258 9.9597652,20.921414 V 479.481 c 0,9.77084 7.8660598,17.6369 17.6369068,17.6369 H 256.87647 Z"
style="fill:#f8d057;stroke-width:8.81845"
id="path6" />
<path
d="M 500.24511,10.380606 256.87647,497.1179 h 229.27979 c 9.77084,0 17.6369,-7.86606 17.6369,-17.63691 V 20.92141 c 0,-3.977157 -1.34351,-7.59687 -3.54805,-10.540804 z"
style="fill:#3195d2;stroke-width:8.81845"
id="path8" />
<path
d="m 27.596672,3.2845074 c -9.770847,0 -17.6369068,7.8660596 -17.6369068,17.6369066 v 8.818453 c 0,-9.770846 7.8660598,-17.636907 17.6369068,-17.636907 H 486.15626 c 9.77084,0 17.6369,7.866061 17.6369,17.636907 v -8.818453 c 0,-9.770847 -7.86606,-17.6369066 -17.6369,-17.6369066 z"
style="opacity:0.2;fill:#ffffff;stroke-width:8.81845"
id="path10" />
<path
d="m 13.955627,18.665133 c -0.146298,0.180073 -0.308646,0.348065 -0.447801,0.533958 L 256.87647,505.93636 500.24511,19.199064 c -0.13915,-0.185893 -0.30159,-0.353884 -0.4478,-0.533957 L 256.87647,417.75182 Z"
style="opacity:0.2;stroke-width:8.81845"
id="path12" />
<path
d="M 13.955627,9.8466764 C 13.809366,10.026714 13.646993,10.194747 13.507815,10.380606 L 256.87647,497.1179 500.24511,10.380606 c -0.13917,-0.185859 -0.30155,-0.353892 -0.44781,-0.5339296 L 256.87647,408.93337 Z"
style="fill:#ffffff;stroke-width:8.81845"
id="path14" />
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

4
icons/debian.svg Normal file
View File

@ -0,0 +1,4 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg">
<circle style="fill:#fff;stroke-width:23.9308;stroke-dasharray:23.9308,23.9308;stop-color:#000" cx="256" cy="256" r="256"/>
<path d="M284.565 11c-7.59.637-15.14 1.014-22.6 1.977l3.283.45c5.49-2.01 13.493-1.103 19.317-2.427Zm-33.155 3.495c-12.343.75-29.466 7.183-24.18 1.332-20.133 8.982-55.888 21.594-75.953 40.408l-.636-4.218c-9.194 11.038-40.099 32.96-42.561 47.256l-2.454.574c-4.784 8.101-7.88 17.29-11.675 25.627-6.257 10.663-9.176 4.1-8.286 5.771-12.308 24.955-18.421 45.918-23.703 63.115 3.764 5.625.094 33.868 1.518 56.469-6.181 111.618 78.338 219.995 170.722 245.017 13.541 4.844 33.675 4.657 50.804 5.154-20.21-5.779-22.823-3.065-42.509-9.928-14.2-6.687-17.307-14.32-27.365-23.05l3.98 7.033c-19.727-6.98-11.475-8.639-27.524-13.722l4.253-5.55c-6.393-.484-16.937-10.779-19.82-16.476l-6.99.273c-8.403-10.37-12.882-17.836-12.557-23.624l-2.259 4.024c-2.562-4.396-30.922-38.888-16.21-30.86-2.734-2.498-6.36-4.068-10.3-11.224l2.992-3.424c-7.08-9.11-13.027-20.784-12.575-24.674 3.777 5.1 6.39 6.055 8.984 6.927-17.879-44.36-18.881-2.445-32.422-45.156l2.868-.23c-2.196-3.307-3.528-6.906-5.295-10.43l1.244-12.425c-12.872-14.883-3.595-63.282-1.738-89.827 1.288-10.794 10.739-22.283 17.932-40.302l-4.377-.75c8.376-14.612 47.825-58.685 66.097-56.417 8.85-11.119-1.756-.04-3.486-2.841 19.442-20.12 25.557-14.216 38.678-17.835 14.152-8.4-12.145 3.276-5.436-3.203 24.462-6.249 17.33-14.204 49.242-17.376 3.366 1.916-7.81 2.96-10.616 5.445 20.382-9.972 64.499-7.706 93.154 5.533 33.25 15.538 70.607 61.47 72.08 104.687l1.676.45c-.85 17.179 2.63 37.047-3.397 55.296l4.103-8.64c.484 13.13-3.84 19.503-7.739 30.781l-7.016 3.503c-5.742 11.151.556 7.086-3.556 15.955-8.964 7.97-27.202 24.942-33.04 26.492-4.26-.095 2.886-5.029 3.822-6.963-12 8.242-9.63 12.37-27.984 17.376l-.538-1.191c-45.264 21.294-108.144-20.906-107.317-78.487-.483 3.655-1.37 2.74-2.374 4.218-2.336-29.626 13.685-59.383 40.7-71.533 26.422-13.08 57.398-7.711 76.324 9.928-10.396-13.618-31.088-28.054-55.613-26.703-24.023.38-46.498 15.646-53.998 32.219-12.308 7.748-13.734 29.865-19.097 33.913-7.215 53.03 13.565 75.944 48.73 102.896 5.535 3.732 1.562 4.297 2.312 7.139-11.684-5.472-22.38-13.732-31.177-23.844 4.667 6.831 9.7 13.472 16.21 18.69-11.015-3.732-25.724-26.686-30.021-27.62 18.99 33.999 77.042 59.626 107.44 46.911-14.065.52-31.936.283-47.74-5.56-6.638-3.415-15.663-10.483-14.05-11.807 41.487 15.498 84.34 11.736 120.237-17.04 9.131-7.112 19.108-19.212 21.99-19.38-4.341 6.53.74 3.14-2.594 8.905 9.1-14.675-3.953-5.975 9.407-25.345l4.933 6.795c-1.834-12.18 15.127-26.975 13.405-46.241 3.89-5.892 4.342 6.345.212 19.9 5.729-15.037 1.51-17.456 2.983-29.863 1.59 4.17 3.685 8.598 4.756 12.999-3.732-14.531 3.83-24.463 5.7-32.908-1.843-.818-5.767 6.425-6.662-10.74.131-7.454 2.074-3.91 2.824-5.744-1.464-.84-5.297-6.556-7.633-17.517 1.694-2.576 4.526 6.68 6.83 7.06-1.482-8.716-4.035-15.366-4.139-22.053-6.732-14.07-2.382 1.87-7.845-6.045-7.166-22.352 5.945-5.18 6.83-15.338 10.862 15.737 17.058 40.128 19.9 50.23-2.169-12.316-5.675-24.257-9.954-35.801 3.298 1.387-5.313-25.336 4.289-7.634-10.257-37.736-43.897-72.998-74.842-89.544 3.786 3.466 8.564 7.816 6.847 8.498-15.389-9.163-12.682-9.876-14.887-13.749-12.538-5.1-13.36.411-21.664.01-23.63-12.534-28.184-11.2-49.93-19.053l.988 4.624c-15.656-5.214-18.237 1.978-35.158.018-1.03-.805 5.422-2.917 10.731-3.69-15.136 1.998-14.425-2.976-29.236.557 3.65-2.562 7.507-4.256 11.401-6.433zm12.231 2.823c4.333.778 9.362 1.375 8.657 2.41 4.74-1.04 5.815-1.998-8.657-2.41zm8.657 2.41-3.062.635 2.85-.256zm-199.782 96.18c-.004.265.02.486.062.67a19.7 19.7 0 0 0-.062-.67zm.062.67c.824 11.214-8.659 15.436 2.17 7.863 5.596-12.604-1.45-4.669-2.17-7.862zm-9.054 36.517c-7.03 8.987-3.24 10.901-3.98 17.014 2.544-7.807 3.008-12.496 3.98-17.014zm289.335 54.28c-1.004.026-2.29 2.576-2.939 5.366 1.514.787 2.71 10.309 4.175 4.422.49-7.311-.232-9.812-1.236-9.787zm88.785 24.64-1.191 2.991c-2.187 15.534-6.908 30.905-14.146 45.156 7.997-15.037 13.169-31.484 15.337-48.148zm-94.036 5.47c-1.084 5.387-4.008 10.034-6.76 14.941-15.176 9.556-1.427-5.675-.008-11.463-16.32 20.54-2.241 12.317-2.833 18.055 4.834-6.673 8.359-13.978 9.601-21.532zm-33.092 31.364c-6.601 1.617-13.317 1.651-20.085 1.032-8.12.113 1.534 4.185 12.134 5.816a108.477 108.477 0 0 0 7.95-6.848zm-102.455 1.059c1.79 6.583 5.449 12.233 8.86 17.984l-2.497-7.36c-2.824-3.121-4.492-6.879-6.363-10.624zm-6.257 11.119-1.138 5.692c5.336 7.247 9.574 15.098 16.387 20.764-4.902-9.57-8.548-13.52-15.249-26.456z" style="fill:#a80030;fill-opacity:1;stroke-width:4.51824"/>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

12
icons/deepin.svg Normal file
View File

@ -0,0 +1,12 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="clip0_205_37">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_205_37)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M327.863 10.3594C192.184 -29.3212 50.0573 48.4773 10.3583 184.151C-29.3215 319.816 48.4857 461.959 184.167 501.64C319.816 541.32 461.976 463.531 501.644 327.863C541.319 192.168 463.51 50.0401 327.863 10.3594Z" fill="#EFF4F8"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M326.228 15.9427C193.63 -22.83 54.7317 53.1918 15.9418 185.788C-22.8376 318.367 53.2026 457.282 185.798 496.059C318.366 534.838 457.296 458.814 496.058 326.233C534.838 193.622 458.795 54.7241 326.23 15.947L326.228 15.9427Z" fill="white"/>
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M331.614 47.7265C299.843 36.1366 267.293 33.0067 235.708 35.9445C199.087 38.8343 181.209 50.1754 182.267 48.1237C122.382 69.5028 71.7521 115.489 48.3018 179.984C6.54496 294.842 65.6867 421.859 180.372 463.677C295.103 505.497 421.932 446.272 463.689 331.417C505.459 216.559 446.317 89.5592 331.614 47.7265V47.7265ZM187.922 442.909C175.698 438.441 164.279 432.755 153.524 426.264C206.966 430.37 276.705 418.053 323.735 374.04C323.735 374.04 413.388 302.405 348.53 184.849C348.53 184.849 358.985 232.226 345.656 271.202C345.656 271.202 332.944 324.199 276.437 339.597C193.21 362.275 98.3773 304.02 58.7357 275.798C55.7519 246.787 58.4044 216.812 69.0358 187.565C84.7939 144.232 114.42 110.421 150.619 87.7127C141.572 151.023 148.725 209.31 159.008 233.726C172.808 266.465 196.795 304.649 243.59 309.544C290.382 314.455 316.187 270.665 316.187 270.665C340.192 234.184 343.951 181.802 343.588 180.539C343.222 179.26 337.191 175.802 337.191 175.802C321.036 241.179 294.394 263.021 294.394 263.021C252.386 303.575 222.633 275.449 222.633 275.449C190.653 241.101 213.046 185.275 213.046 185.275C225.57 147.249 262.068 91.5956 303.426 63.2975C310.313 65.0022 317.245 66.0608 324.052 68.5402C349.082 77.6681 371.003 91.4232 389.543 108.321C359.301 119.359 310.47 142.698 310.47 142.698C233.071 175.296 227.844 224.598 227.844 224.598C219.838 275.419 260.155 253.911 260.155 253.911C301.659 233.695 322.047 170.699 322.047 170.699C309.096 168.235 298.894 172.168 298.894 172.168C282.329 213.054 248.532 229.873 248.532 229.873C235.237 236.917 232.141 224.471 232.141 224.471C229.898 215.156 241.757 213.558 241.757 213.558C260.17 206.405 271.952 187.061 274.622 179.148C277.276 171.221 282.218 170.605 282.218 170.605C307.455 162.552 330.463 160.751 330.463 160.751C361.795 156.896 409.757 171.839 409.757 171.839C420.511 176.165 430.824 179.402 439.984 181.99C457.56 225.91 460.34 275.923 442.921 323.867C405.367 427.229 291.187 480.542 187.92 442.909H187.922Z" fill="#00B7FF"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

4
icons/devuan.svg Normal file
View File

@ -0,0 +1,4 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg">
<circle style="fill:#fff;stroke-width:3.24137;stroke-dasharray:3.24137,3.24137;stop-color:#000" cx="256" cy="256" r="256"/>
<path style="color:#000;font-style:normal;font-variant:normal;font-weight:100;font-stretch:normal;font-size:medium;line-height:150%;font-family:'Fira Sans';-inkscape-font-specification:'Fira Sans Thin';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;letter-spacing:0;word-spacing:0;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000;solid-opacity:1;fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.5964;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="M45.411 116.236c512.94 122.409 27.71 221.943 27.71 221.943-9.559 1.529-17.271 6.507-21.913 14.074-5.215 8.5-5.656 19.988-.786 28.063 5.926 9.827 13.433 13.225 19.91 14.688 10.188 2.304 18.412-1.366 18.412-1.366s112.586-33.493 185.488-77.86c3.123 7.323 7.037 13.917 11.872 19.717 14.875 17.841 36.644 27.308 60.988 27.308h104.886c8.067 0 14.606-6.538 14.61-14.606v-3.677c0-8.069-6.541-14.61-14.61-14.612h-104.57c-16.906 0-27.806-4.974-36.996-15.916-3.487-4.15-6.517-9.806-8.892-16.993 20.527-16.283 33.855-33.492 33.42-50.71-.311-12.254-8.84-27.322-27.792-43.098 1.038-1.675 2.124-3.205 3.264-4.562 9.19-10.942 20.09-15.922 36.995-15.922h104.57c8.069 0 14.612-6.542 14.612-14.611v-3.673c0-8.068-6.542-14.61-14.611-14.61H347.092c-24.383 0-46.191 9.705-61.022 27.822-1.923 2.31-3.681 4.76-5.323 7.311-44.633-26.188-119.628-52.144-235.335-68.71Z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

97237
icons/dietpi.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 4.5 MiB

57
icons/dragonflybsd.svg Normal file
View File

@ -0,0 +1,57 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="paint0_radial_205_48" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(257.185 161.89) scale(141.732 141.696)">
<stop stop-color="white"/>
<stop offset="0.0418" stop-color="#F7F9D8"/>
<stop offset="0.0906" stop-color="#EFF2B2"/>
<stop offset="0.1432" stop-color="#E8ED91"/>
<stop offset="0.1994" stop-color="#E2E976"/>
<stop offset="0.2607" stop-color="#DDE562"/>
<stop offset="0.3295" stop-color="#DAE353"/>
<stop offset="0.412" stop-color="#D9E14B"/>
<stop offset="0.5449" stop-color="#D8E148"/>
<stop offset="0.6791" stop-color="#D6E048"/>
<stop offset="0.7467" stop-color="#CFDD47"/>
<stop offset="0.7994" stop-color="#C2D946"/>
<stop offset="0.8444" stop-color="#B1D245"/>
<stop offset="0.8845" stop-color="#99CA44"/>
<stop offset="0.9206" stop-color="#7BC143"/>
<stop offset="0.927" stop-color="#75C044"/>
<stop offset="1" stop-color="#073800"/>
</radialGradient>
<clipPath id="clip0_205_48">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_205_48)">
<path d="M257.185 303.586C335.461 303.586 398.917 240.147 398.917 161.891C398.917 83.6342 335.461 20.1948 257.185 20.1948C178.909 20.1948 115.453 83.6342 115.453 161.891C115.453 240.147 178.909 303.586 257.185 303.586Z" fill="url(#paint0_radial_205_48)" stroke="black" stroke-width="5.89188"/>
<path d="M244.566 204.354H269.802C269.802 299.601 261.367 491.187 257.177 491.187C253.001 491.187 244.566 299.601 244.566 204.354Z" fill="#ED1C24"/>
<path d="M244.566 204.354C244.566 299.601 253.001 491.187 257.177 491.187" stroke="black" stroke-width="3.92792"/>
<path d="M269.802 204.354C269.802 299.601 261.367 491.187 257.178 491.187" stroke="black" stroke-width="3.92792"/>
<path d="M244.566 204.354H269.802" stroke="black" stroke-width="3.92792"/>
<path d="M244.781 236.924H269.606" stroke="black" stroke-width="3.92792"/>
<path d="M245.355 265.356H268.987" stroke="black" stroke-width="3.92792"/>
<path d="M246.074 293.786H268.296" stroke="black" stroke-width="3.92792"/>
<path d="M246.945 322.193H267.421" stroke="black" stroke-width="3.92792"/>
<path d="M248.01 350.597H266.41" stroke="black" stroke-width="3.92792"/>
<path d="M249.109 378.966H265.259" stroke="black" stroke-width="3.92792"/>
<path d="M250.414 407.335H263.953" stroke="black" stroke-width="3.92792"/>
<path d="M257.178 217.56C270.221 217.56 280.795 192.636 280.795 161.891C280.795 131.145 270.221 106.221 257.178 106.221C244.134 106.221 233.561 131.145 233.561 161.891C233.561 192.636 244.134 217.56 257.178 217.56Z" fill="#ED1C24"/>
<path d="M257.185 217.56C270.224 217.56 280.795 192.636 280.795 161.891C280.795 131.145 270.224 106.221 257.185 106.221C244.145 106.221 233.574 131.145 233.574 161.891C233.574 192.636 244.145 217.56 257.185 217.56Z" stroke="black" stroke-width="3.92792"/>
<path d="M280.773 101.85C280.773 107.477 277.953 112.564 273.419 116.158H273.405L263.766 82.9114C273.598 85.2891 280.773 92.8647 280.773 101.85V101.85Z" fill="#FDE92B"/>
<path d="M263.767 82.9114L273.406 116.158C269.768 116.158 263.643 99.0855 260.049 82.2755C261.32 82.3999 262.564 82.6073 263.767 82.9114V82.9114Z" fill="#FDE92B"/>
<path d="M273.404 116.158C269.171 119.517 263.462 121.577 257.169 121.577C250.878 121.577 245.167 119.517 240.936 116.158C244.572 116.158 250.698 99.0855 254.293 82.2755C255.233 82.1787 256.187 82.1234 257.169 82.1234C258.151 82.1234 259.105 82.1787 260.047 82.2755C263.642 99.0855 269.767 116.158 273.404 116.158V116.158Z" fill="#9A090D"/>
<path d="M257.17 60.1572L263.766 82.9114C262.563 82.6073 261.318 82.3999 260.047 82.2755C258.318 74.2023 257.17 66.1982 257.17 60.1572V60.1572Z" fill="#9A090D"/>
<path d="M260.047 82.2755C259.105 82.1787 258.152 82.1234 257.169 82.1234C256.187 82.1234 255.233 82.1787 254.293 82.2755C256.021 74.2023 257.169 66.1982 257.169 60.1572C257.17 66.1982 258.318 74.2023 260.047 82.2755Z" fill="black"/>
<path d="M250.574 82.9114L257.17 60.1572C257.17 66.1982 256.022 74.2023 254.294 82.2755C253.022 82.3999 251.777 82.6211 250.574 82.9114Z" fill="black"/>
<path d="M254.295 82.2755C250.7 99.0855 244.574 116.158 240.938 116.158L250.575 82.9114C251.778 82.6211 253.023 82.3999 254.295 82.2755V82.2755Z" fill="#FDE92B"/>
<path d="M250.574 82.9114L240.936 116.158C236.401 112.564 233.58 107.477 233.58 101.85C233.58 92.8785 240.757 85.2891 250.574 82.9114V82.9114Z" fill="#FDE92B"/>
<path d="M254.294 82.2755C255.234 82.1787 256.188 82.1234 257.17 82.1234C258.152 82.1234 259.106 82.1787 260.047 82.2755C261.319 82.3999 262.563 82.6073 263.766 82.9114C273.597 85.2891 280.773 92.8647 280.773 101.85C280.773 107.477 277.953 112.564 273.419 116.158H273.405C269.172 119.517 263.463 121.577 257.17 121.577C250.878 121.577 245.168 119.517 240.936 116.158C236.401 112.564 233.58 107.477 233.58 101.85C233.58 92.8785 240.757 85.2891 250.574 82.9114C251.777 82.6211 253.022 82.3999 254.294 82.2755V82.2755Z" stroke="black" stroke-width="3.66606"/>
<path d="M240.938 116.158C244.574 116.158 250.7 99.0855 254.295 82.2755C256.023 74.2023 257.171 66.1982 257.171 60.1572" stroke="black" stroke-width="3.66606"/>
<path d="M257.17 60.1572C257.17 66.1982 258.318 74.2023 260.047 82.2755C263.643 99.0855 269.767 116.158 273.405 116.158" stroke="black" stroke-width="3.66606"/>
<path d="M257.171 153.222C257.171 153.222 117.083 170.405 70.0595 81.9023C27.8179 2.40475 257.193 143.196 257.193 143.196L257.171 153.222Z" fill="white" stroke="black" stroke-width="3.92792"/>
<path d="M257.192 179.625C257.192 179.625 146.148 261.857 65.135 205.155C-7.64198 154.228 257.192 170.015 257.192 170.015V179.625Z" fill="white" stroke="black" stroke-width="3.92792"/>
<path d="M257.192 153.15C257.192 153.15 397.28 170.333 444.302 81.8304C486.543 2.33286 257.17 143.124 257.17 143.124L257.192 153.15Z" fill="white" stroke="black" stroke-width="3.92792"/>
<path d="M257.17 179.553C257.17 179.553 368.214 261.785 449.227 205.084C522.003 154.156 257.17 169.943 257.17 169.943V179.553Z" fill="white" stroke="black" stroke-width="3.92792"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

18
icons/edubuntu.svg Normal file
View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="440" height="418" id="svg1508">
<defs id="defs1510"/>
<path d="M 254.09532,85.160767 C 262.17062,106.0735 283.1187,125.58146 306.65546,125.81117 C 315.93234,125.34291 324.24619,122.47149 331.39381,116.77284 C 348.26006,136.75789 358.49997,159.34046 360.63807,185.26271 L 311.88586,185.26271 C 309.04095,162.90101 293.80919,141.74973 273.37356,130.58213 C 258.39802,122.94859 239.8531,119.62658 222.2447,123.66423 C 215.60069,110.8268 217.26169,93.483453 217.72995,77.78344 C 220.57486,48.530347 233.18258,23.341412 252.67286,0.74116707 C 252.45198,27.847324 249.12114,58.531707 254.09532,85.160767 z" id="path3112" style="fill:#f1480e"/>
<path d="M 195.37709,137.70324 C 174.20813,155.76224 165.41719,180.49174 169.20746,208.075 C 172.52946,224.95008 181.34691,239.92562 195.37709,252.08275 L 171.35439,293.67851 C 149.72601,279.40095 134.26454,257.29547 126.41895,234.43901 C 137.81626,229.24395 149.0192,217.56392 151.6344,204.98271 C 154.96524,189.99834 150.90992,175.03164 140.21942,164.32347 C 136.41148,160.04727 131.42847,157.90917 126.89605,155.28514 C 134.26454,133.17083 149.23124,111.29506 170.64758,96.301857 C 179.43853,109.17463 187.06324,123.91162 195.37709,137.70324 z" id="path3116" style="fill:#f68b11"/>
<path d="M 360.1698,206.18428 C 358.0052,231.88565 348.50744,255.1662 331.16409,274.65649 C 319.97883,266.34263 303.34229,262.77325 290.01009,268.71928 C 278.13569,273.23403 266.96809,285.12611 263.85813,297.48644 C 262.68306,302.46945 262.44451,307.94723 262.68306,313.64588 C 237.70616,318.66423 211.05943,315.08601 189.91698,305.09348 C 196.57867,291.08098 205.36078,276.80342 213.67463,262.78208 C 237.70616,272.27984 267.42752,267.04944 286.44954,250.89 C 301.17769,238.75938 308.33414,223.0682 312.1244,206.18428 L 360.1698,206.18428 L 360.1698,206.18428 z" id="path3120" style="fill:#d41308"/>
<path d="M 89.095453,141.16769 A 26.516504,26.516504 0 1 1 36.062445,141.16769 A 26.516504,26.516504 0 1 1 89.095453,141.16769 z" transform="matrix(1.0996925,0,0,1.0996925,39.682611,39.857906)" id="path2580" style="fill:#f1480e"/>
<path d="M 89.095453,141.16769 A 26.516504,26.516504 0 1 1 36.062445,141.16769 A 26.516504,26.516504 0 1 1 89.095453,141.16769 z" transform="matrix(1.0996925,0,0,1.0996925,237.18715,153.22924)" id="path2586" style="fill:#f68b11"/>
<path d="M 89.095453,141.16769 A 26.516504,26.516504 0 1 1 36.062445,141.16769 A 26.516504,26.516504 0 1 1 89.095453,141.16769 z" transform="matrix(1.0996925,0,0,1.0996925,233.24173,-71.214954)" id="path2588" style="fill:#d41308"/>
<path d="M 42.633469,392.04503 L 45.708043,390.30391 C 49.99797,385.29011 46.523358,378.54281 44.477452,373.63568 C 39.772248,365.04821 30.883794,360.44206 21.061919,361.26118 C 12.680179,361.88219 4.3974961,368.62568 1.9439323,376.70644 C -1.3249462,386.82168 -0.40676472,399.81338 6.3405358,407.98938 C 12.984969,415.15196 23.214502,416.58447 32.522043,414.64144 C 36.606236,413.21273 42.328678,411.47542 43.147803,406.15683 C 42.945879,404.31285 42.328678,402.57173 40.797106,401.23827 C 39.463647,400.21722 37.631094,400.12579 35.985225,400.43058 C 31.485755,403.38323 25.763313,406.05015 20.147547,403.59659 C 15.636647,401.96596 13.491684,397.05502 12.984969,392.55174 L 13.388817,392.14027 C 23.100205,392.14027 32.92589,392.34601 42.633469,392.04503 z M 20.551395,372.81655 C 25.664256,371.2926 31.283831,373.53281 33.741205,378.34088 L 35.276587,382.95084 L 13.186893,382.95084 C 13.903151,378.95046 16.150981,374.35194 20.551395,372.81655 z" id="e" style="fill:#f1480e"/>
<path d="M 56.382152,392.63824 C 56.382152,368.48192 66.422792,362.79805 79.332152,362.79805 C 85.786842,362.79805 89.372782,365.63997 89.372782,365.63997 L 89.372782,349.29891 C 89.372782,340.77316 102.28215,340.77316 102.28215,349.29891 L 102.28215,392.63824 C 102.28215,409.68976 92.241522,416.79459 79.332152,416.79459 C 66.422792,416.79459 56.382152,409.68976 56.382152,392.63824 M 89.372782,391.21728 C 89.372782,376.2972 82.200902,374.87622 79.332152,374.87622 C 75.029032,374.87622 69.291532,378.42864 69.291532,391.21728 C 69.291532,399.74304 72.877472,405.4269 79.332152,405.4269 C 85.786842,405.4269 89.372782,399.74304 89.372782,391.21728" id="d" style="fill:#f1480e"/>
<path d="M 160.45671,393.46882 L 160.45671,370.2657 C 160.45671,366.75008 157.64421,363.93757 154.12859,363.93757 C 150.61297,363.93757 147.80047,366.75008 147.80047,370.2657 L 147.80047,393.46882 C 147.80047,401.90631 144.28484,404.71882 137.95671,404.71882 C 131.62859,404.71882 128.11297,401.90631 128.11297,393.46882 L 128.11297,370.2657 C 128.11297,366.75008 125.30045,363.93757 121.78484,363.93757 C 118.26921,363.93757 115.45671,366.75008 115.45671,370.2657 L 115.45671,393.46882 C 115.45671,410.3438 125.30048,417.37508 137.95671,417.37508 C 150.61295,417.37508 160.45671,410.3438 160.45671,393.46882" id="u1" style="fill:#f1480e"/>
<path d="M 220.56184,393.07447 C 220.56184,368.91815 210.5212,363.23428 197.61184,363.23428 C 191.15715,363.23428 187.57121,366.0762 187.57121,366.0762 L 187.57121,349.73514 C 187.57121,341.20939 174.66184,341.20939 174.66184,349.73514 L 174.66184,393.07447 C 174.66184,410.12599 184.70247,417.23082 197.61184,417.23082 C 210.5212,417.23082 220.56184,410.12599 220.56184,393.07447 M 187.57121,391.65351 C 187.57121,376.73343 194.74309,375.31245 197.61184,375.31245 C 201.91496,375.31245 207.65246,378.86487 207.65246,391.65351 C 207.65246,400.17927 204.06652,405.86313 197.61184,405.86313 C 191.15715,405.86313 187.57121,400.17927 187.57121,391.65351" id="b" style="fill:#d41308"/>
<path d="M 278.59161,393.46882 L 278.59161,370.2657 C 278.59161,366.75008 275.77911,363.93757 272.26349,363.93757 C 268.74787,363.93757 265.93537,366.75008 265.93537,370.2657 L 265.93537,393.46882 C 265.93537,401.90631 262.41974,404.71882 256.09161,404.71882 C 249.76349,404.71882 246.24787,401.90631 246.24787,393.46882 L 246.24787,370.2657 C 246.24787,366.75008 243.43535,363.93757 239.91974,363.93757 C 236.40411,363.93757 233.59161,366.75008 233.59161,370.2657 L 233.59161,393.46882 C 233.59161,410.3438 243.43538,417.37508 256.09161,417.37508 C 268.74785,417.37508 278.59161,410.3438 278.59161,393.46882" id="u2" style="fill:#d41308"/>
<use transform="matrix(-1,0,0,-1,571.88026,781.31265)" id="n" xlink:href="#u2"/>
<path d="M 354.0363,363.32363 C 346.32452,363.32363 346.32452,374.67747 354.0363,374.67747 L 356.13951,374.67747 L 356.13951,399.3721 C 356.13951,412.85477 359.43455,417.25441 370.79189,417.25441 C 376.26023,417.25441 384.25244,416.26094 384.25244,410.58402 C 384.25244,407.03595 381.02752,406.11345 380.11613,406.11345 C 378.15314,406.11345 376.12002,406.96498 373.87659,406.96498 C 369.95061,406.96498 368.75878,404.97806 368.75878,398.30767 L 368.75878,374.67747 L 374.36734,374.67747 C 382.07912,374.67747 382.07912,363.32363 374.36734,363.32363 L 368.75878,363.32363 L 368.75878,349.84094 C 368.75878,341.32556 356.13951,341.32556 356.13951,349.84094 L 356.13951,363.32363 L 354.0363,363.32363" id="t" style="fill:#d41308"/>
<use transform="translate(160.95798,0)" id="u3" xlink:href="#u2"/>
</svg>

After

Width:  |  Height:  |  Size: 7.1 KiB

4
icons/elementary.svg Normal file
View File

@ -0,0 +1,4 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M256 0C114.615 0 0 114.615 0 256s114.615 256 256 256 256-114.615 256-256S397.385 0 256 0Zm0 21.333c107.492 0 198.105 72.276 225.893 170.88-23.934 49.368-57.991 93.816-99.466 129.734-19.925 17.254-41.678 32.636-65.707 43.466-24.029 10.831-50.459 16.976-76.773 15.467-19.77-1.134-39.3-6.641-56.614-16.24 45.884-24.863 87.284-58.012 121.174-97.707 22.244-26.054 41.706-55.664 49.2-89.093 3.746-16.714 4.381-34.219.88-50.987-3.502-16.767-11.255-32.746-22.987-45.226-11.462-12.193-26.508-20.83-42.64-25.28-16.132-4.45-33.298-4.795-49.76-1.787-32.923 6.017-62.318 25.151-85.893 48.907-41.556 41.872-67.246 100.955-62.534 159.76 2.356 29.402 12.21 58.293 29.094 82.48 3.768 5.398 7.912 10.541 12.346 15.413-24.596 8.608-50.064 14.736-75.893 18.187C34.144 343.473 21.333 301.237 21.333 256 21.333 126.397 126.397 21.333 256 21.333Zm1.493 47.414c16.496.022 33.105 5.016 46.267 14.96 11.859 8.958 20.645 21.704 25.627 35.706 4.981 14.003 6.259 29.209 4.56 43.974-3.399 29.529-18.296 56.61-36.294 80.266-31.867 41.887-74.224 75.412-121.333 98.88a379.381 379.381 0 0 1-14.64 6.88c-10.251-8.97-19.036-19.609-25.733-31.466-13.994-24.777-18.609-54.208-15.894-82.534 2.715-28.325 12.436-55.624 25.494-80.906 15.14-29.314 35.777-57.08 64.666-73.014 14.445-7.967 30.784-12.769 47.28-12.746Zm231.067 155.84A236.737 236.737 0 0 1 490.667 256c0 129.603-105.064 234.667-234.667 234.667-72.786 0-137.837-33.135-180.88-85.147 26.567-6.034 52.534-14.701 77.44-25.733 10.892 8.294 22.92 15.098 35.707 20 36.822 14.116 78.627 12.074 115.893-.827 37.266-12.901 70.312-36.056 99.12-62.987 34.318-32.081 63.253-69.894 85.28-111.386Z" fill="#000"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

13
icons/endeavoros.svg Normal file
View File

@ -0,0 +1,13 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="clip0_205_96">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_205_96)">
<circle cx="256" cy="256" r="256" fill="white"/>
<path d="M287.816 97.3981C321.829 146.401 464.952 335.953 367.453 375.459C321.903 396.807 114.401 362.923 117.378 368.462C102.492 393.381 90.6582 413.438 90.6582 413.438C90.6582 413.438 250.677 420.784 374.226 403.789C550.618 379.63 337.905 149.28 287.89 97.6184L287.816 97.3981Z" fill="#7F7FFF"/>
<path d="M287.816 97.3981C276.503 98.986 69 359.505 69 359.505C69 359.505 83.9598 363.835 117.973 368.849C128.988 360.112 283.946 93.8274 288.411 97.626C288.332 97.5189 288.203 97.4794 288.023 97.5045L287.816 97.3981Z" fill="#FF7F7F"/>
<path d="M287.813 97.3981C280.668 96.2129 117.375 368.621 117.375 368.621C117.375 368.621 265.485 384.576 326.515 383.512C498.442 380.549 327.825 151.035 288.111 97.0942C288.059 97.041 287.998 97.0122 287.926 97L287.813 97.3981Z" fill="#7F3FBF"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

61
icons/endeavouros.svg Normal file
View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg16"
sodipodi:docname="endeavouros.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs20" />
<sodipodi:namedview
id="namedview18"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg16" />
<path
style="opacity:0.2;stroke-width:8.33233"
d="M 297.10187,53.385758 C 281.97363,55.46637 4.8747877,396.72906 4.8747877,396.72906 c 0,0 19.9145463,5.67507 65.2925913,12.27476 C 84.901144,397.50641 291.35266,48.051221 297.61979,53.545309 c -0.10666,-0.140483 -0.2778,-0.19221 -0.51811,-0.159314 z"
id="path2" />
<path
style="opacity:0.2;stroke-width:8.33233"
d="M 297.61979,53.545309 C 297.10185,53.385828 70.167379,409.00382 70.167379,409.00382 c -19.803997,32.66513 -35.636118,58.91885 -35.636118,58.91885 0,0 212.884959,9.6288 378.424199,-12.64263 C 648.51688,423.58782 364.54007,121.58944 297.61979,53.545309 Z"
id="path4" />
<path
style="fill:#7f7fff;stroke-width:8.33233"
d="M 297.61979,45.212977 C 297.10185,45.053497 70.167379,400.67148 70.167379,400.67148 c -19.803997,32.66514 -35.636118,58.91886 -35.636118,58.91886 0,0 212.884959,9.62879 378.424199,-12.64264 C 648.51688,415.25548 364.54007,113.25711 297.61979,45.212977 Z"
id="path6" />
<path
style="opacity:0.1;stroke-width:8.33233"
d="M 297.37358,53.42181 C 287.85066,51.867352 70.167379,409.00382 70.167379,409.00382 c 0,0 205.723281,12.36832 286.748551,10.99533 229.42935,-3.88775 -6.35275,-296.20232 -59.29614,-366.453841 -0.0683,-0.06982 -0.14998,-0.107654 -0.24614,-0.123485 z"
id="path8" />
<path
style="fill:#ff7f7f;stroke-width:8.33233"
d="M 297.10187,45.053427 C 281.97363,47.134039 4.8747877,388.39672 4.8747877,388.39672 c 0,0 19.9145463,5.67507 65.2925913,12.27476 C 84.901144,389.17408 291.35266,39.718889 297.61979,45.212977 c -0.10666,-0.140483 -0.2778,-0.19221 -0.51811,-0.159314 z"
id="path10" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.33233"
d="M 297.10865,45.060363 C 281.98041,47.140976 4.8747852,388.39486 4.8747852,388.39486 c 0,0 4.3477148,0.98452 5.7122058,1.33448 C 27.604117,368.79006 282.47649,55.405083 297.10865,53.392698 c 0.10124,-0.01391 0.1349,0.0486 0.21156,0.0651 0.0108,8.34e-4 0.0388,-0.0342 0.0488,-0.03255 0.0962,0.01583 0.17578,0.04409 0.24411,0.113918 C 344.84077,101.55992 500.15243,266.08404 504.68468,369.90749 508.6477,266.7874 346.12466,94.533025 297.61314,45.20683 c -0.0683,-0.06982 -0.14795,-0.09809 -0.24411,-0.113918 -0.0101,-0.0016 -0.0382,0.03339 -0.0488,0.03255 -0.077,-0.01649 -0.11032,-0.07896 -0.21156,-0.0651 z M 65.577145,408.26553 c -16.188011,26.72876 -31.050966,51.32848 -31.050965,51.32848 0,0 4.451267,0.14154 4.947323,0.16274 3.586676,-5.94529 13.63542,-22.62386 30.692936,-50.75888 -1.774152,-0.25804 -2.89266,-0.47744 -4.589294,-0.73234 z"
id="path12" />
<path
style="fill:#7f3fbf;stroke-width:8.33233"
d="M 297.37358,45.089479 C 287.85066,43.53502 70.167379,400.67148 70.167379,400.67148 c 0,0 205.723281,12.36832 286.748551,10.99533 229.42935,-3.88775 -6.35275,-296.20231 -59.29614,-366.453833 -0.0683,-0.06983 -0.14998,-0.107653 -0.24614,-0.123485 z"
id="path14" />
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

161
icons/endless.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

4
icons/fedora.svg Normal file
View File

@ -0,0 +1,4 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="253.5" cy="253.5" r="248.5" fill="#fff"/>
<path d="M256.135 5C114.761 5 .295 117.283.045 255.907H0v194.228h.045c.068 31.438 26.084 56.904 58.17 56.904H256.16C397.56 506.95 512 394.681 512 256.132 512 117.508 397.41 5.225 255.91 5.225l.225-.225Zm52.018 103.316c42.991 0 83.58 32.263 83.58 76.772 0 4.128.025 8.259-.664 12.94-1.191 11.841-12.232 20.35-24.253 18.681-12.022-1.689-20.18-12.878-17.957-24.584.204-1.336.277-3.433.277-7.04 0-25.24-21.07-34.987-40.99-34.987-19.914 0-37.863 16.414-37.888 34.987.344 21.475 0 42.785 0 64.227l36.963-.271c28.86-.586 29.185 42.009.333 41.809l-37.288.271c-.09 17.274.136 14.15.045 22.849 0 0 .313 21.127-.33 37.136-4.462 47.033-45.316 84.619-94.409 84.619-52.043 0-94.908-41.684-94.908-92.815 1.563-52.581 44.341-93.941 98.235-93.466l30.06-.222v41.735l-30.06.27h-.159c-29.61.859-54.994 20.573-55.47 51.656 0 28.315 23.344 51.006 52.319 51.006 28.935 0 52.093-20.635 52.093-50.956l-.045-158.066c.015-2.934.113-5.266.442-8.502 4.884-38.661 40.164-68.125 80.103-68.125l-.029.076Z" fill="#51A2DA"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

226
icons/freebsd.svg Normal file
View File

@ -0,0 +1,226 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter0_f_108_19" x="11.8842" y="14.8842" width="488.232" height="482.232" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4.5579" result="effect1_foregroundBlur_108_19"/>
</filter>
<filter id="filter1_f_108_19" x="50.2194" y="32.2194" width="414.561" height="220.561" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4.39032" result="effect1_foregroundBlur_108_19"/>
</filter>
<filter id="filter2_f_108_19" x="340.537" y="87.5371" width="138.926" height="194.926" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="5.73143" result="effect1_foregroundBlur_108_19"/>
</filter>
<radialGradient id="paint0_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(339.573 -36.4521) rotate(180) scale(337.312 337.312)">
<stop offset="0.3644" stop-color="#FF2F00"/>
<stop offset="0.498" stop-color="white"/>
<stop offset="0.5567" stop-color="#FFB700"/>
<stop offset="0.6193" stop-color="#FF8800"/>
<stop offset="0.7376" stop-color="#FF3300"/>
<stop offset="0.7915" stop-color="#FF1100"/>
<stop offset="0.9413" stop-color="#7C0000"/>
<stop offset="1" stop-color="#EB0000"/>
</radialGradient>
<linearGradient id="paint1_linear_108_19" x1="181.003" y1="77.0001" x2="33.0018" y2="77.0001" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.5016" stop-color="#787878"/>
<stop offset="0.845" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint2_linear_108_19" x1="32.5421" y1="130.866" x2="55.9763" y2="116.22" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint3_linear_108_19" x1="32.5421" y1="130.866" x2="55.9763" y2="116.22" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint4_linear_108_19" x1="141.965" y1="35.2322" x2="89.2334" y2="93.8234" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint5_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(254.425 493.873) scale(471.744)">
<stop/>
<stop offset="1" stop-color="white"/>
</radialGradient>
<radialGradient id="paint6_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(189.244 171.973) scale(390.257 389.368)">
<stop stop-color="#FF0000"/>
<stop offset="0.1131" stop-color="#E20000"/>
<stop offset="0.4558" stop-color="#8D0000"/>
<stop offset="0.6119" stop-color="#6B0000"/>
<stop offset="0.9525" stop-color="#FF0000"/>
</radialGradient>
<linearGradient id="paint7_linear_108_19" x1="29.9994" y1="257.002" x2="479.999" y2="257.002" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint8_linear_108_19" x1="482.999" y1="261.001" x2="32.9998" y2="261.001" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint9_linear_108_19" x1="257.5" y1="37.6276" x2="257.5" y2="270.936" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint10_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(263.998 262.505) rotate(180) scale(211.516 212.068)">
<stop stop-color="#FF0000"/>
<stop offset="0.4772" stop-color="#FF7A00"/>
<stop offset="0.8374" stop-color="#FFD000"/>
<stop offset="1" stop-color="#FFF200"/>
</radialGradient>
<linearGradient id="paint11_linear_108_19" x1="257.5" y1="37.6276" x2="257.5" y2="270.936" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint12_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(263.383 -312.771) rotate(-119.675) scale(534.307 472.149)">
<stop offset="0.3644" stop-color="#FF2F00"/>
<stop offset="0.498" stop-color="white"/>
<stop offset="0.5567" stop-color="#FFB700"/>
<stop offset="0.6193" stop-color="#FF8800"/>
<stop offset="0.7376" stop-color="#FF3300"/>
<stop offset="0.7915" stop-color="#FF1100"/>
<stop offset="0.9413" stop-color="#7C0000"/>
<stop offset="1" stop-color="#EB0000"/>
</radialGradient>
<radialGradient id="paint13_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(174.429 -36.4521) scale(337.308 337.314)">
<stop offset="0.3644" stop-color="#FF2F00"/>
<stop offset="0.498" stop-color="white"/>
<stop offset="0.5567" stop-color="#FFB700"/>
<stop offset="0.6193" stop-color="#FF8800"/>
<stop offset="0.7376" stop-color="#FF3300"/>
<stop offset="0.7915" stop-color="#FF1100"/>
<stop offset="0.9413" stop-color="#7C0000"/>
<stop offset="1" stop-color="#EB0000"/>
</radialGradient>
<linearGradient id="paint14_linear_108_19" x1="356.187" y1="45.432" x2="423.577" y2="93.7764" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint15_linear_108_19" x1="356.187" y1="45.432" x2="423.577" y2="93.7764" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint16_linear_108_19" x1="335.998" y1="77.0001" x2="484.999" y2="77.0001" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.5016" stop-color="#787878"/>
<stop offset="0.845" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint17_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(320.808 81.0604) scale(164.138 164.137)">
<stop stop-color="#B00000"/>
<stop offset="1" stop-color="#EBBFBF"/>
</radialGradient>
<radialGradient id="paint18_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(308.923 82.1605) scale(59.7131 58.6952)">
<stop stop-color="#B00000"/>
<stop offset="1" stop-color="white"/>
</radialGradient>
<linearGradient id="paint19_linear_108_19" x1="596.032" y1="-42.2698" x2="381.593" y2="191.768" gradientUnits="userSpaceOnUse">
<stop offset="0.1629" stop-color="#FF5900"/>
<stop offset="0.1874" stop-color="#FF5000"/>
<stop offset="0.2921" stop-color="#FF2F00"/>
<stop offset="1" stop-color="#EB0000"/>
</linearGradient>
<radialGradient id="paint20_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(427.499 57.498) rotate(58.358) scale(10.4164 48.1713)">
<stop offset="0.2584" stop-color="white"/>
<stop offset="0.3764" stop-color="#AFAFAF"/>
<stop offset="1"/>
</radialGradient>
<radialGradient id="paint21_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(81.0013 52.4987) rotate(-56.3512) scale(10.4721 38.3294)">
<stop offset="0.2584" stop-color="white"/>
<stop offset="0.3764" stop-color="#AFAFAF"/>
<stop offset="1"/>
</radialGradient>
<radialGradient id="paint22_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(130.005 154) rotate(40.723) scale(44.214 72.8753)">
<stop offset="0.2584" stop-color="white"/>
<stop offset="0.3764" stop-color="#AFAFAF"/>
<stop offset="1"/>
</radialGradient>
<radialGradient id="paint23_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(103.498 205.004) rotate(27.0638) scale(30.2766 49.7531)">
<stop offset="0.2584" stop-color="white"/>
<stop offset="0.3764" stop-color="#AFAFAF"/>
<stop offset="1"/>
</radialGradient>
<linearGradient id="paint24_linear_108_19" x1="441.696" y1="60.0316" x2="132.078" y2="397.081" gradientUnits="userSpaceOnUse">
<stop offset="0.01" stop-color="#34B3D1"/>
<stop offset="0.1742" stop-color="white"/>
<stop offset="0.3315" stop-color="#FDBF6F"/>
<stop offset="0.427" stop-color="#FFFF7F"/>
<stop offset="0.5" stop-color="#673920"/>
<stop offset="0.6517" stop-color="#B55004"/>
<stop offset="1" stop-color="#4E0901"/>
</linearGradient>
<radialGradient id="paint25_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(176.605 161.416) rotate(-90) scale(371.942 366.204)">
<stop stop-color="#FF0000"/>
<stop offset="0.611881" stop-color="#6B0000"/>
<stop offset="1" stop-color="#FF0000"/>
</radialGradient>
<radialGradient id="paint26_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(352.388 111.898) rotate(58.4507) scale(105.3 138.442)">
<stop stop-color="white"/>
<stop offset="1"/>
</radialGradient>
<linearGradient id="paint27_linear_108_19" x1="470.406" y1="125.402" x2="451.355" y2="112.128" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
</defs>
<g filter="url(#filter0_f_108_19)">
<path d="M44.9399 24.0008C37.3304 24.0438 31.1165 25.9182 26.983 30.0542C9.14368 47.9047 34.7715 104.655 57.0391 143.436C37.6227 177.174 26.5029 216.267 26.5029 257.97C26.5029 384.947 129.491 488 256.389 488C383.287 488 486.275 384.947 486.275 257.97C486.275 215.982 474.922 176.658 455.258 142.763C477.443 103.999 502.771 47.8099 485.026 30.0542C467.33 12.3467 411.405 37.4942 372.676 59.6487C338.544 39.5567 298.827 27.9403 256.389 27.9403C213.797 27.9403 173.932 39.6144 139.717 59.8409C109.995 42.8029 70.0175 23.859 44.9399 24.0008Z" fill="black"/>
</g>
<path d="M27.9703 30.9702C1.52987 57.4106 70.7773 169.532 82.6385 181.394C94.4997 193.249 125.553 181.433 151.99 154.99C178.431 128.55 190.252 97.4996 178.391 85.6384C166.53 73.7773 54.4107 4.52993 27.9703 30.9702Z" fill="url(#paint0_radial_108_19)"/>
<path d="M172.045 126C122.765 80.8792 57.8537 28.0284 33 30.2726C51.2038 17.2261 123.848 62.821 181 104.008C179.685 110.648 176.619 118.19 172.045 126Z" fill="url(#paint1_linear_108_19)"/>
<path d="M29.7477 33.7488C4.29319 59.2033 70.9576 167.145 82.3814 178.563C93.7991 189.981 123.693 178.603 149.147 153.145C174.602 127.688 185.979 97.7972 174.565 86.3795C163.144 74.9588 55.2022 8.29113 29.7477 33.7488Z" fill="url(#paint2_linear_108_19)"/>
<path d="M29.7477 33.7488C4.29319 59.2033 70.9576 167.145 82.3814 178.563C93.7991 189.981 123.693 178.603 149.147 153.145C174.602 127.688 185.979 97.7972 174.565 86.3795C163.144 74.9588 55.2022 8.29113 29.7477 33.7488Z" fill="url(#paint3_linear_108_19)"/>
<path d="M29.7477 33.7488C4.29319 59.2033 70.9576 167.145 82.3814 178.563C93.7991 189.981 123.693 178.603 149.147 153.145C174.602 127.688 185.979 97.7972 174.565 86.3795C163.144 74.9588 55.2022 8.29113 29.7477 33.7488Z" fill="url(#paint4_linear_108_19)"/>
<path d="M257 489C384.026 489 487 386.025 487 259C487 131.975 384.026 29 257 29C129.975 29 27 131.975 27 259C27 386.025 129.975 489 257 489Z" fill="url(#paint5_radial_108_19)"/>
<path d="M256.5 483C377.726 483 476 384.95 476 264C476 143.05 377.726 45 256.5 45C135.273 45 37 143.05 37 264C37 384.95 135.273 483 256.5 483Z" fill="url(#paint6_radial_108_19)"/>
<path d="M48.1639 267.474C48.1639 147.458 145.455 50.1669 265.472 50.1669C373.653 50.1669 463.359 129.22 480 232.712C467.567 119.826 371.89 32 255.691 32C131.047 32 30 133.05 30 257.692C30 373.891 117.823 469.57 230.71 482C127.221 465.359 48.1639 375.657 48.1639 267.474Z" fill="url(#paint7_linear_108_19)"/>
<path opacity="0.63" d="M464.833 250.526C464.833 370.546 367.542 467.833 247.526 467.833C139.346 467.833 49.6442 388.783 33 285.291C45.4363 398.177 141.109 486 257.308 486C381.954 486 483 384.953 483 260.308C483 144.109 395.177 48.4332 282.291 36C385.777 52.6442 464.833 142.35 464.833 250.526Z" fill="url(#paint8_linear_108_19)"/>
<g filter="url(#filter1_f_108_19)">
<path d="M456 205.417C456 296.222 396.306 98.6564 200.001 173.413C124.812 202.049 59 296.222 59 205.417C59 114.612 147.873 41 257.5 41C367.127 41 456 114.612 456 205.417Z" fill="url(#paint9_linear_108_19)"/>
</g>
<path d="M194.639 121.439C192.848 133.403 204.729 149.942 211.5 128.653C218.271 107.363 218.517 79.3409 243.752 66.5826C268.987 53.8274 289.373 51.857 310.745 60.1049C325.427 65.7729 333.303 72.7923 336.794 76.6346C327.499 65.6374 290.123 27.6274 238.396 56.7799C178.438 90.5812 196.493 49.043 190.65 95.2917C184.809 141.55 194.639 121.439 194.639 121.439ZM336.794 76.6346C338.274 78.3833 339.07 79.4763 339.07 79.4763C339.07 79.4763 338.388 78.3833 336.794 76.6346ZM334.368 106.591C275.448 95.9814 203.043 133.04 152.34 195.686C172.646 160.318 152.932 103.866 150.857 109.823C121.23 194.719 75.2248 194.14 63.4026 221.252C47.7727 257.094 61.7444 299.772 94.5918 317.099C78.271 403.953 160.164 462.926 210.517 462.926C261.353 462.926 219.419 391.761 219.419 316.837C219.419 241.919 212.105 149.594 334.368 106.591ZM468.169 237.615C453.537 171.598 434.514 146.654 434.514 146.654C434.514 146.654 466.704 209.737 457.928 266.953C449.149 324.171 412.447 327.216 411.102 341.775C409.757 356.334 424.273 359.382 435.981 352.045C435.978 352.045 482.797 303.629 468.169 237.615ZM418.316 231.639C318.818 274.181 303.585 285.308 271.996 318.198C233.95 357.806 236.33 428.142 256.363 457.101C276.396 486.072 321.389 486.33 356.846 457.683C408.216 416.191 331.989 332.868 418.316 231.639Z" fill="url(#paint10_radial_108_19)"/>
<path d="M456 205.417C456 296.222 396.306 98.6564 200.001 173.413C124.812 202.049 59 296.222 59 205.417C59 114.612 147.873 41 257.5 41C367.127 41 456 114.612 456 205.417Z" fill="url(#paint11_linear_108_19)"/>
<g opacity="0.44" filter="url(#filter2_f_108_19)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M461.871 270.937C449.659 272.872 434.266 229.87 419.347 212.603C391.026 179.824 317.806 148.072 370.697 109.911C422.868 72.2685 443.884 139.313 459.471 200.128C465.235 222.617 474.083 269.002 461.871 270.937Z" fill="black"/>
</g>
<path opacity="0.15" d="M269.825 54.1931C285.18 38.8643 376.303 69.0537 411.244 88.5968C425.387 96.5015 428.189 118.281 417.539 137.171C406.893 156.064 382.57 169.828 372.68 157.007C311.601 77.864 261.946 62.0578 269.825 54.1931Z" fill="url(#paint12_radial_108_19)"/>
<path d="M486.03 30.9703C512.47 57.4106 443.224 169.532 431.36 181.394C419.502 193.249 388.449 181.434 362.009 154.99C335.569 128.547 323.748 97.4995 335.609 85.6384C347.47 73.7772 459.59 4.52991 486.03 30.9703Z" fill="url(#paint13_radial_108_19)"/>
<path d="M484.252 33.7488C509.707 59.2033 443.04 167.145 431.622 178.563C420.201 189.981 390.311 178.603 364.853 153.145C339.396 127.691 328.021 97.7971 339.436 86.3794C350.856 74.9587 458.798 8.29114 484.252 33.7488Z" fill="url(#paint14_linear_108_19)"/>
<path d="M484.252 33.7488C509.707 59.2033 443.04 167.145 431.622 178.563C420.201 189.981 390.311 178.603 364.853 153.145C339.396 127.691 328.021 97.7971 339.436 86.3794C350.856 74.9587 458.798 8.29114 484.252 33.7488Z" fill="url(#paint15_linear_108_19)"/>
<path d="M345.013 126C394.626 80.8792 459.975 28.0284 485 30.2726C466.67 17.2261 393.536 62.821 336 104.008C337.321 110.648 340.408 118.19 345.013 126Z" fill="url(#paint16_linear_108_19)"/>
<path d="M431.123 181.587C419.294 193.413 388.317 181.627 361.942 155.249C335.567 128.871 323.775 97.9004 335.607 86.0686C338.202 83.4767 345.601 78.1306 355.846 71.6449C340.659 65.5635 327.896 65.2051 321.058 72.0493C307.087 86.0196 323.052 124.628 356.716 158.288C390.376 191.945 428.988 207.91 442.955 193.946C449.257 187.641 449.447 176.311 444.683 162.694C438.592 172.24 433.602 179.109 431.123 181.587Z" fill="url(#paint17_radial_108_19)"/>
<path d="M331.689 127L340 125.949C334.973 117.083 331.944 108.639 331.279 101.509L318 99C320.5 107.508 325.173 117.086 331.689 127Z" fill="url(#paint18_radial_108_19)"/>
<path opacity="0.53" d="M433.734 128.801C413.218 155.207 402.962 147.873 373 160.73C396.372 180.75 421.343 188.779 431.553 178.558C434.259 175.846 440.081 167.688 447.043 156.491C451.669 146.947 456.561 137.083 461.58 127.333C486.487 78.9241 449.753 108.187 433.734 128.801Z" fill="url(#paint19_linear_108_19)"/>
<path d="M433.758 67.6533C407.757 83.5336 383.873 91.86 380.42 86.2506C376.961 80.6413 395.241 63.2255 421.243 47.3452C447.244 31.4679 471.128 23.1416 474.581 28.7478C478.036 34.3572 459.759 51.776 433.758 67.6533Z" fill="url(#paint20_radial_108_19)"/>
<path d="M87.6422 42.5137C107.746 56.0675 121.063 71.5239 117.391 77.0392C113.722 82.5545 94.4535 76.0367 74.3557 62.4828C54.2547 48.929 40.9343 33.4757 44.6097 27.9605C48.2728 22.4452 67.5443 28.966 87.6422 42.5137Z" fill="url(#paint21_radial_108_19)"/>
<path d="M168.371 187.029C138.039 221.733 96.2756 235.076 75.0816 216.831C53.8906 198.589 61.3005 155.67 91.6325 120.972C121.961 86.2677 163.725 72.9253 184.919 91.167C206.11 109.409 198.697 152.329 168.371 187.029Z" fill="url(#paint22_radial_108_19)"/>
<path d="M134.375 220.771C119.899 248.71 94.3407 264.292 77.2885 255.586C60.2394 246.871 58.1499 217.163 72.6262 189.224C87.0995 161.291 112.658 145.706 129.71 154.415C146.762 163.124 148.849 192.839 134.375 220.771Z" fill="url(#paint23_radial_108_19)"/>
<path d="M480 260.008C480 241.108 477.632 222.771 473.192 205.254C473.333 208.102 473.404 210.965 473.404 213.843C473.404 307.316 397.629 383.091 304.16 383.091C210.687 383.091 134.909 307.316 134.909 213.843C134.909 120.371 210.687 44.5962 304.16 44.5962C307.038 44.5962 309.901 44.67 312.742 44.8115C295.235 40.3679 276.895 38 257.998 38C135.392 38 36 137.395 36 260.005C36 382.608 135.392 482 257.998 482C380.611 482.003 480 382.611 480 260.008Z" fill="url(#paint24_linear_108_19)"/>
<path d="M262.738 457.963C144.881 457.963 49.3401 360.504 49.3401 240.288C49.3401 148.512 105.028 70.0097 183.814 38C99.4839 68.1309 39 150.012 39 246.312C39 368.198 135.867 467 255.352 467C332.83 467 400.79 425.449 439 363.004C400.568 420.332 335.965 457.963 262.738 457.963Z" fill="url(#paint25_radial_108_19)"/>
<path d="M397.9 112.738C374.254 127.401 348.869 129.163 341.205 116.677C333.541 104.191 346.496 82.1853 370.143 67.5253C393.792 52.8623 463.638 23.5362 471.302 36.0191C478.963 48.5052 421.544 98.0807 397.9 112.738Z" fill="url(#paint26_radial_108_19)"/>
<path d="M488.086 37C483.475 63.6189 468.101 89.8573 443.259 108.977C414.408 131.186 379.383 138.723 349 132.239C353.28 138.278 358.404 144.353 364.287 150.202C389.859 175.609 419.889 186.968 431.363 175.572C442.085 164.915 501.307 70.0719 488.086 37Z" fill="url(#paint27_linear_108_19)"/>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

10
icons/freedos.svg Normal file
View File

@ -0,0 +1,10 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.02734 345.602L15.0969 225.419L57.5145 134.928L116.899 78.371L194.665 51.5065L287.983 58.5761L354.438 103.822L409.58 171.69L444.928 280.561L481.69 270.664L502.899 276.32L463.309 322.979L459.068 354.085L484.518 402.159L451.998 385.192L412.408 341.36L384.13 373.88L385.544 393.675L396.855 434.679L392.613 458.715L338.885 404.986L317.676 426.195L248.394 447.404H162.145L102.76 433.265L85.7929 429.023L54.6867 454.474L51.8589 433.265L63.1702 403.572L8.02734 345.602V345.602Z" fill="#BFCFE7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M123.975 296.822C123.975 306.233 120.44 315.272 114.123 322.007C107.807 328.742 99.2103 332.639 90.1703 332.866C81.1303 333.093 72.3633 329.632 65.742 323.222C59.1207 316.812 55.17 307.962 54.7337 298.561C54.2975 289.16 57.4103 279.955 63.4073 272.91C69.4043 265.866 77.81 261.542 86.8289 260.861C95.8479 260.18 104.765 263.197 111.676 269.267C118.586 275.337 122.943 283.979 123.814 293.347" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M200.321 302.477C200.321 310.043 197.578 317.31 192.68 322.724C187.781 328.138 181.115 331.271 174.104 331.454C167.094 331.636 160.295 328.854 155.16 323.701C150.025 318.547 146.961 311.432 146.623 303.875C146.285 296.317 148.699 288.917 153.35 283.254C158.001 277.591 164.519 274.114 171.514 273.567C178.508 273.02 185.423 275.446 190.783 280.325C196.142 285.205 199.52 292.153 200.196 299.684" fill="white"/>
<path d="M199.099 46.2896C136.653 50.792 87.5187 82.5044 45.4312 144.95C21.549 180.578 14.5018 202.307 1.19039 280.805C0.0158576 287.852 -0.375646 303.708 0.407377 320.543C1.97342 351.277 0.603134 348.145 16.8509 358.716C20.5702 361.065 29.1835 370.461 36.0349 379.27C42.6906 388.275 50.5208 397.475 53.0657 399.433L57.9596 403.152L51.8911 416.268C42.4949 436.235 43.0821 463.837 52.8699 463.837C56.5893 463.837 70.8794 453.462 81.646 443.086L90.455 434.473L110.031 442.108C179.72 469.318 262.916 463.249 327.515 426.447L344.742 416.464L351.397 423.902C355.117 428.209 363.143 437.801 369.015 445.24C389.178 470.297 393.093 472.45 397.987 460.509C406.013 441.716 404.056 425.664 389.766 389.254L386.242 380.053L399.749 367.133C415.997 351.669 414.039 352.06 422.848 363.61C435.181 380.053 460.629 398.846 480.205 406.284C493.908 411.374 494.103 406.676 481.771 386.513C459.063 350.103 457.693 339.336 472.962 317.803C483.533 302.534 495.474 290.984 505.457 286.286C513.483 282.567 513.875 280.022 508.002 274.541C498.018 265.536 478.247 263.187 461.999 268.864C452.212 272.387 450.45 271.213 447.905 260.055C416.976 122.439 326.536 39.2424 213.781 45.3108C210.453 45.5065 203.993 45.8981 199.099 46.2896ZM274.465 63.1246C307.548 71.3463 332.409 86.028 356.879 111.868C400.532 158.458 425.393 214.248 437.726 293.138C437.921 293.529 440.858 291.376 444.381 288.439C455.148 279.435 476.877 273.758 490.384 276.89C495.669 277.869 495.474 278.26 478.051 296.27C447.709 327.591 445.947 350.103 471.396 385.926C473.941 389.254 474.528 391.407 472.962 391.407C463.37 391.407 421.086 345.6 422.065 336.204C423.24 324.458 407.579 332.68 398.183 348.928C395.442 353.43 390.94 359.303 388.004 362.044L382.718 366.938L377.237 360.282C372.148 354.409 371.365 354.018 367.645 356.562L363.73 359.303L367.645 365.959C379.978 385.926 392.702 422.728 392.898 437.41C392.898 453.657 388.2 453.462 376.65 436.627C367.645 423.119 342.197 395.518 335.933 392.386C322.621 385.339 315.183 390.037 325.362 399.041C335.345 407.655 335.345 407.655 310.484 421.358C265.069 446.219 157.991 452.287 118.644 432.516C96.915 421.358 62.462 395.126 53.8487 383.185L49.7378 377.117L54.436 378.291C56.9808 378.879 67.1601 381.619 77.1436 384.36C117.274 395.322 228.659 397.084 249.996 387.1C277.793 374.18 280.925 355.584 253.52 365.959C204.776 384.556 104.354 379.074 44.4524 354.801C29.9665 348.928 16.8509 343.447 15.2848 342.86C11.7612 341.489 13.523 279.435 17.8296 254.378C29.575 185.668 66.3771 119.894 109.639 90.3346C114.141 87.2025 121.189 82.5044 125.3 79.568C152.705 60.7755 230.029 52.358 274.465 63.1246V63.1246ZM75.5776 422.924C78.1224 426.251 79.8842 428.992 79.4927 429.384C70.8794 435.256 57.7638 442.499 56.785 441.52C55.0232 439.759 59.5256 426.252 63.4407 421.358C67.9431 415.681 69.9007 415.876 75.5776 422.924Z" fill="black"/>
<path d="M69.5155 257.51C46.2205 270.038 39.1733 312.126 57.5744 328.961C88.1123 357.345 130.787 336.791 131.374 293.529C131.766 266.515 93.5934 244.394 69.5155 257.51ZM104.164 267.689C125.893 281.196 129.221 297.836 114.539 318.39C91.0486 351.081 43.6757 320.739 58.3574 282.371C64.6216 265.732 88.308 258.097 104.164 267.689Z" fill="black"/>
<path d="M80.669 275.715C62.268 283.35 65.2043 315.062 84.3884 316.628C93.0016 317.411 96.5252 315.062 100.44 305.666C108.662 285.895 97.504 268.864 80.669 275.715ZM96.1337 284.329C97.3083 286.09 97.504 288.048 96.721 288.831C94.3719 291.376 80.669 286.873 80.0818 283.35C78.9072 277.086 92.0229 277.869 96.1337 284.329V284.329Z" fill="black"/>
<path d="M163.664 270.038C133.909 279.043 134.888 324.85 165.23 335.812C178.346 340.315 185.98 339.336 194.006 331.897C220.042 307.036 196.942 259.859 163.664 270.038V270.038ZM181.478 280.805C198.704 289.81 201.249 309.189 186.959 324.263C175.018 336.987 152.114 322.305 152.114 302.338C152.114 283.545 166.404 272.975 181.478 280.805Z" fill="black"/>
<path d="M162.889 290.788C154.471 303.708 161.519 323.48 173.264 319.76C184.814 316.041 189.316 310.364 189.316 299.402C189.316 287.069 169.545 280.609 162.889 290.788ZM179.528 292.55C182.66 296.27 180.507 299.206 175.613 298.031C170.915 296.857 168.957 294.312 170.719 291.571C172.481 288.831 176.788 289.222 179.528 292.55Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

196645
icons/gabeeos.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.2 MiB

159
icons/garuda.svg Normal file
View File

@ -0,0 +1,159 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="a" x1="412.82" y1="212.156" x2="504.015" y2="212.156" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="b" x1="280.523" y1="291.197" x2="343.114" y2="275.082" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="c" x1="295.044" y1="275.064" x2="360.179" y2="258.295" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="d" x1="314.18" y1="170.788" x2="412.82" y2="170.788" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="e" x1="409.808" y1="199.093" x2="408.797" y2="217.778" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="f" x1="51.046" y1="184.186" x2="246.723" y2="148.348" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="g" x1="130.527" y1="142.894" x2="315.3" y2="142.894" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="h" x1="412.82" y1="162.604" x2="460.687" y2="162.604" gradientUnits="userSpaceOnUse">
<stop stop-color="#279FF0"/>
<stop offset="1" stop-color="#8DE1FD"/>
</linearGradient>
<linearGradient id="i" x1="412.529" y1="172.513" x2="503.723" y2="172.513" gradientUnits="userSpaceOnUse">
<stop stop-color="#279FF0"/>
<stop offset="1" stop-color="#8DE1FD"/>
</linearGradient>
<linearGradient id="j" x1="468.364" y1="240.945" x2="504.015" y2="240.945" gradientUnits="userSpaceOnUse">
<stop stop-color="#279FF0"/>
<stop offset="1" stop-color="#8DE1FD"/>
</linearGradient>
<linearGradient id="k" x1="333.453" y1="101.654" x2="423.11" y2="101.654" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="l" x1="241.977" y1="85.675" x2="382.757" y2="85.675" gradientUnits="userSpaceOnUse">
<stop stop-color="#279FF0"/>
<stop offset="1" stop-color="#8DE1FD"/>
</linearGradient>
<linearGradient id="m" x1="130.527" y1="110.14" x2="335.039" y2="110.14" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="n" x1="333.722" y1="129.165" x2="423.111" y2="123.787" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="o" x1="355.754" y1="162.604" x2="423.111" y2="162.604" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="p" x1="312.35" y1="177.027" x2="412.82" y2="177.027" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="q" x1="296.687" y1="178.67" x2="157.166" y2="217.002" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="r" x1="361.893" y1="253.52" x2="356.846" y2="190.459" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="s" x1="82.373" y1="225.349" x2="298.076" y2="168.819" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="t" x1="8.005" y1="252.893" x2="234.865" y2="252.893" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="u" x1="20.528" y1="266.847" x2="234.866" y2="266.847" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="v" x1="129.114" y1="263.179" x2="175.186" y2="320.834" gradientUnits="userSpaceOnUse">
<stop stop-color="#279FF0"/>
<stop offset="1" stop-color="#8DE1FD"/>
</linearGradient>
<linearGradient id="w" x1="134.272" y1="278.311" x2="234.866" y2="313.445" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="x" x1="234.865" y1="287.984" x2="352.842" y2="287.984" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="y" x1="234.865" y1="302.57" x2="336.777" y2="302.57" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="z" x1="149.064" y1="300.535" x2="246.503" y2="334.089" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="A" x1="234.865" y1="318.076" x2="321.238" y2="318.076" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="B" x1="193.904" y1="330.09" x2="259.269" y2="328.644" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="C" x1="234.865" y1="325.393" x2="294.804" y2="325.393" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="D" x1="229.811" y1="213.012" x2="351.516" y2="312.417" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
</defs>
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M234.103 439.961c-29.639-9.867-67.912-22.323-68.611-22.323-.529 0-1.142 1.106-2.127 3.828a48.066 48.066 0 0 0-1.379 4.174c0 .182-.255.687-.565 1.106-.638.881 1.567 1.987-31.814-15.938-24.797-13.306-25.447-13.628-26.231-12.978-.334.279-3.214 4.156-6.392 8.616l-5.784 8.099-.614-1.476c-.644-1.544-11.472-32.325-21.272-60.494-3.154-9.053-5.912-16.466-6.137-16.466-.59 0-8.02 5.165-20.871 14.492-6.265 4.544-11.454 8.202-11.533 8.129-.079-.073 3.512-8.366 7.984-18.434 14.285-32.149 15.324-34.646 14.45-34.646-.14 0-7.17 3.542-15.629 7.874-8.451 4.333-15.372 7.772-15.372 7.638 0-.128 2.515-7.96 5.59-17.39 3.062-9.436 5.578-17.426 5.578-17.748 0-.729.4-.851-11.812 3.561-5.39 1.944-9.953 3.487-10.129 3.42-.346-.121 4.782-5.778 25.902-28.557 11.758-12.687 13.04-14.236 17.822-21.509 12.31-18.745 22.42-34.525 22.42-34.992 0-.286-.425-.407-.996-.286-.553.122-5.31 1.154-10.56 2.309-5.256 1.154-9.844 2.041-10.19 1.969-.353-.073 11.386-7.626 26.078-16.789 55.013-34.299 66.126-41.068 69.097-42.082 1.125-.383 2.048-.802 2.048-.93 0-.122-4.678-.079-10.39.097-5.705.182-10.275.231-10.153.116.261-.244 51.27-39.884 72.566-56.386 17.147-13.295 32.155-24.724 35.132-26.753 1.762-1.197 2.51-1.422 4.691-1.422 1.428 0 16.065.911 32.519 2.011 75.799 5.092 102.783 7.012 103.646 7.37.516.22 9.916 11.527 20.883 25.137l19.948 24.742 18.41 8.488c10.129 4.673 18.447 8.525 18.484 8.561 0 0 1.482 2.564.383 1.216l1.257 1.44c2.431 2.782 41.5 55.085 41.688 55.814.17.644-4.915 44.477-5.438 46.901-.182.851-26.091 25.988-26.091 28.266-.078-.079.547-10.007 1.392-22.062.845-12.055 2.916-24.043 1.823-26.03l-2.273-4.107-1.944-.261c-2.127-.286-40.558-2.735-91.469-5.833-18.046-1.106-34.476-2.127-36.505-2.267l-3.682-.267v1.397c0 1.471 4.295 39.142 10.293 90.23l3.572 30.441-1.561 2.266a1508.405 1508.405 0 0 1-9.333 13.003l-7.765 10.755 1.136 2.035 1.136 2.036-9.904 12.334c-5.45 6.787-9.904 12.681-9.904 13.106 0 .426.948 3.002 2.102 5.742l2.109 4.977-1.483 1.166c-.814.638-7.34 5.013-14.497 9.722l-13.015 8.567.115 1.519c.061.833.729 3.998 1.483 7.048.753 3.038 1.294 5.596 1.203 5.687-.176.183-16.6-2.005-33.783-4.496a459.945 459.945 0 0 0-11.453-1.58c-.426 0-.499 1.349-.322 5.827.133 3.312.06 5.803-.164 5.779-.219-.025-6.423-2.054-13.793-4.509Z" fill="#297BE5"/>
<path d="m404.318 195.296 99.696 7-31.826 23.557-67.87-30.557Z" fill="url(#a)"/>
<path d="m298.291 214.272 54.605 125.465-90.685-127.805 36.08 2.34Z" fill="url(#b)"/>
<path d="m338.162 213.603 14.862 126.516-57.978-130.094 43.116 3.578Z" fill="url(#c)"/>
<path d="m314.174 155.941 98.645 42.533-57.067-55.359-41.578 12.826Z" fill="url(#d)"/>
<path d="m472.2 225.768-59.71-28.029-179.487 12.99L472.2 225.768Z" fill="url(#e)"/>
<path d="m50.8 213.798 98.786-61.217 256.604-16.77L50.8 213.798Z" fill="url(#f)"/>
<path d="M334.285 104.41s-191.961 46.16-203.761 48.876l9.831-1.428-9.721 1.422 225.41-9.867-12.031-21.127-9.728-17.876Z" fill="url(#g)"/>
<path d="m460.686 144.075-47.868 54.399 10.293-71.728 37.575 17.329Z" fill="url(#h)"/>
<path d="M504.203 202.326 460.2 143.68l-47.673 54.12 91.676 4.526Z" fill="url(#i)"/>
<path d="m468.36 279.608 3.828-53.755 31.827-23.557-5.9 48.365-29.755 28.947" fill="url(#j)"/>
<path d="m423.111 126.746-40.6-50.176-50.492 28.272 91.092 21.904Z" fill="url(#k)"/>
<path d="m241.978 67 92.125 37.362 48.651-27.743L241.978 67Z" fill="url(#l)"/>
<path d="M130.524 153.286 241.978 67l92.757 37.605-204.211 48.681Z" fill="url(#m)"/>
<path d="m423.111 126.746-67.712 17.098-21.357-39.373 89.069 22.275Z" fill="url(#n)"/>
<path d="m423.112 126.746-71.121 17.201 60.822 54.527 10.299-71.728Z" fill="url(#o)"/>
<path d="m319.539 192.811 93.28 5.663-98.773-43.061 5.493 37.398Z" fill="url(#p)"/>
<path d="M320.086 192.775 49.683 250.108l264.71-94.847 5.693 37.514Z" fill="url(#q)"/>
<path d="m235.16 210.748 85.351-18.065 94.1 5.347-179.451 12.718Z" fill="url(#r)"/>
<path d="M314.338 155.443 77.371 207.88l-27.688 42.228 264.655-94.665Z" fill="url(#s)"/>
<path d="m234.862 210.772-185.18 39.336L8 295.023l226.862-84.251Z" fill="url(#t)"/>
<path d="m20.523 322.936 214.34-112.164-201.786 74.942-12.554 37.222Z" fill="url(#u)"/>
<path d="m28.599 361.1 24.887-55.414 181.377-94.914L28.599 361.1Z" fill="url(#v)"/>
<path d="m90.72 416.137-28.272-81.225 172.415-124.14L90.72 416.137Z" fill="url(#w)"/>
<path d="m352.841 339.524-18.58 25.689-99.399-154.441 117.979 128.752Z" fill="url(#x)"/>
<path d="m316.178 394.385-81.316-183.619L336.776 369.12l-20.598 25.265Z" fill="url(#y)"/>
<path d="M161.604 428.636 103.76 397.55l131.103-186.778-73.259 217.864Z" fill="url(#z)"/>
<path d="m321.24 405.808-86.378-195.042 56.216 214.625 30.162-19.583Z" fill="url(#A)"/>
<path d="m234.863 210.772 14.4 234.494-84.026-27.434 69.626-207.06Z" fill="url(#B)"/>
<path d="m234.862 210.772 13.617 222.536 46.64 6.623-60.257-229.159Z" fill="url(#C)"/>
<path d="M274.558 126.995c46.676-21.418 88.163 44.234 112.875 17.56-10.773 17.213-35.849 18.775-53.324 18.836 0 0-26.82-.638-23.308-23.15-5.796-9.57-24.152-9.381-36.237-13.246h-.006Z" fill="#000"/>
<path d="M318.305 133.685a14.208 14.208 0 0 0-5.906 11.508 14.211 14.211 0 0 0 8.769 13.13 14.204 14.204 0 0 0 19.643-13.13 14.24 14.24 0 0 0-.425-3.39c-.824 2.679-2.302 4.99-4.237 6.623s-4.234 2.511-6.591 2.515a9.831 9.831 0 0 1-4.429-1.069c-1.405-.706-2.681-1.741-3.755-3.046-1.075-1.304-1.928-2.853-2.51-4.557a16.705 16.705 0 0 1-.881-5.376c.006-1.081.114-2.157.322-3.208Z" fill="#fff"/>
<path d="M443.667 158.214s-16.15 4.041-14.133 13.124c0 0 6.562-.504 14.133-13.124Z" fill="#000"/>
<path d="m264.247 212.692 88.71 127.105-118.216-128.995 29.506 1.89Z" fill="url(#D)"/>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

45
icons/gentoo.svg Normal file
View File

@ -0,0 +1,45 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="paint0_linear_205_172" x1="-65.4956" y1="-1170.67" x2="256.111" y2="512.656" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.3421" stop-color="white"/>
<stop offset="0.52" stop-color="#BEBDF3"/>
<stop offset="0.7541" stop-color="#8F82F9"/>
<stop offset="0.8711" stop-color="#9F99C7"/>
<stop offset="1" stop-color="#524C76"/>
</linearGradient>
<linearGradient id="paint1_linear_205_172" x1="329.451" y1="378.233" x2="232.389" y2="-56.9172" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.3421" stop-color="white"/>
<stop offset="0.52" stop-color="#BEBDF3"/>
<stop offset="0.7541" stop-color="#8F82F9"/>
<stop offset="0.8711" stop-color="#9F99C7"/>
<stop offset="1" stop-color="#524C76"/>
</linearGradient>
<radialGradient id="paint2_radial_205_172" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(215.649 113.859) scale(86.3776 66.222)">
<stop stop-color="white"/>
<stop offset="0.3421" stop-color="white"/>
<stop offset="0.52" stop-color="#BEBDF3"/>
<stop offset="0.7541" stop-color="#8F82F9"/>
<stop offset="0.8711" stop-color="#9F99C7"/>
<stop offset="1" stop-color="#524C76"/>
</radialGradient>
<radialGradient id="paint3_radial_205_172" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.8425 135.102) rotate(90.903) scale(751.372 640.908)">
<stop stop-color="white"/>
<stop offset="0.3421" stop-color="white"/>
<stop offset="0.52" stop-color="#BEBDF3"/>
<stop offset="0.7541" stop-color="#8F82F9"/>
<stop offset="0.8711" stop-color="#9F99C7"/>
<stop offset="1" stop-color="#524C76"/>
</radialGradient>
<clipPath id="clip0_205_172">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_205_172)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.0582 408.268C11.1143 386.669 29.4738 356.517 55.5632 329.119C72.9999 310.811 90.7081 294.739 129.308 261.831C102.61 247.183 61.0821 229.508 40.2319 206.355C32.5219 197.792 18.5511 178.382 21.2571 152.457C26.7809 99.6118 91.9995 19.4601 184.686 2.43457C215.529 -3.20689 250.946 0.865259 280.095 13.9659C371.556 55.0739 483.332 157.244 497.15 207.087C501.993 224.638 501.062 252.62 492.712 268.214C482.366 287.542 446.538 326.792 397.55 367.324C320.648 430.878 212.901 499.087 132.38 510.602C106.381 514.312 79.8143 510.442 61.1767 499.926C32.0112 483.468 22.3304 461.499 18.9253 454.911C9.87795 437.4 10.999 415.209 11.0187 408.251L11.0582 408.268ZM227.455 165.633C228.448 153.386 276.468 165.579 273.433 175.281C270.231 185.513 226.312 179.685 227.455 165.633Z" fill="url(#paint0_linear_205_172)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M155.274 241.631C130.007 262.966 113.203 277.352 92.1392 296.606C41.408 342.97 6.92922 378.263 24.7115 426.477C45.2079 482.127 90.1488 479.306 142.821 468.959C278.614 442.171 501.92 270.492 490.57 207.161C481.358 155.862 356.586 53.8484 282.809 17.5766C259.738 6.23447 233.147 0.378344 206.474 1.62853C104.896 6.422 25.608 98.8468 29.6382 149.019C33.5795 197.759 156.795 240.233 155.315 241.713L155.274 241.631ZM140.033 71.4579C109.477 105.46 129.011 171.226 179.685 207.087C238.987 249.042 334.971 256.633 354.135 224.285C389.782 163.939 350.862 100.089 292.769 71.6307C235.359 43.5015 159.115 50.2377 140.033 71.4291V71.4579Z" fill="url(#paint1_linear_205_172)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M244.267 205.688C287.168 211.651 324.148 194.47 329.888 152.111C334.293 119.845 284.906 84.5849 255.215 76.4504C230.417 69.66 176.585 78.3915 172.966 125.29C169.193 174.039 219.222 202.217 244.234 205.688H244.267ZM223.261 124.607C195.066 168.281 264.196 181.713 274.782 173.751C320.413 139.412 235.68 105.369 223.261 124.607Z" fill="url(#paint2_radial_205_172)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M198.29 13.201C148.422 18.4567 138.865 24.8721 93.6693 59.0548C78.5272 70.5121 50.6613 98.3863 43.5138 131.459C40.7939 144.051 44.0089 154.924 53.0794 162.549C82.1215 186.968 130.739 206.774 170.613 225.93C182.293 231.539 174.56 241.713 155.726 258.015C108.194 299.164 43.9498 349.229 39.4261 387.393C37.3123 405.381 43.4694 429.817 65.3016 442.327C90.807 456.934 143.742 447.402 179.134 434.238C230.795 415 298.642 372.551 352.515 330.851C408.535 287.456 460.59 232.316 463.222 223.351C466.386 212.313 466.071 202.115 459.965 190.394C450.375 171.987 437.561 158.309 423.792 142.994C386.862 104.057 347.786 69.85 300.994 43.6372C267.231 24.7035 237.531 9.06795 198.265 13.2051L198.29 13.201ZM271.549 100.467C307.582 117.887 344.578 163.643 271.228 189.954C251.283 197.115 187.992 172.369 189.966 138.598C192.79 88.7055 227.562 79.1811 271.549 100.451L271.549 100.467Z" fill="url(#paint3_radial_205_172)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

57
icons/ghostbsd.svg Normal file
View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="ghostbsd.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="299.10653"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<circle
cx="256.96085"
cy="261.36014"
r="245.61403"
style="opacity:0.2;stroke-width:8.77192"
id="circle2" />
<circle
cx="256.96085"
cy="252.5882"
r="245.61403"
style="fill:#4d4d5b;stroke-width:8.77192"
id="circle4" />
<path
d="M 256.96085,6.974164 A 245.61403,245.61403 0 0 0 11.346821,252.5882 245.61403,245.61403 0 0 0 11.535418,257.72855 245.61403,245.61403 0 0 1 256.96085,15.746093 245.61403,245.61403 0 0 1 502.39066,256.21977 245.61403,245.61403 0 0 0 502.57488,252.5882 245.61403,245.61403 0 0 0 256.96085,6.974164 Z"
style="opacity:0.1;fill:#ffffff;stroke-width:8.77192"
id="path6" />
<path
d="m 392.04857,77.151214 c -57.01679,0 -113.2025,24.858756 -162.32531,61.700856 -56.34272,42.25704 -121.6176,123.69908 -121.6176,172.82189 0,17.36754 12.2807,36.8421 36.8421,36.8421 61.40351,0 138.32888,-74.27891 138.32888,-74.27891 0,0 -66.18341,74.06734 -100,109.9316 -19.85779,21.06023 -35.24191,22.86871 -59.80331,59.71081 -10.13807,15.2071 14.92679,21.31223 19.45243,19.23656 41.94171,-19.23638 64.51617,-61.66572 83.33333,-78.94737 13.37188,-12.2807 55.27234,-41.30241 110.40639,-90.42521 3.14651,-2.80345 -15.41116,-7.66841 -18.30112,-5.70862 -36.84211,24.9841 -42.19094,34.73032 -42.19094,34.73032 0,0 53.94715,-66.73263 97.04837,-119.29824 8.67234,-10.57665 -6.26028,-12.2807 -6.26028,-12.2807 H 349.8117 c 0,0 78.20852,-43.05254 78.78162,-78.94736 0.27728,-17.365323 -11.98335,-35.087726 -36.54475,-35.087726 z m -6.88392,25.376916 c 8.64021,0.45675 11.64401,4.32504 6.88392,11.46519 -24.56141,36.8421 -49.12281,49.1228 -73.68421,49.1228 -3.37547,-3.07533 0,-12.2807 0,-12.2807 0,0 -26.3158,10.52632 -26.3158,22.80702 0,11.57836 14.0351,26.31579 26.3158,26.31579 9.15348,0 24.03575,-8.77193 24.03575,-8.77193 0,0 -65.84679,70.17544 -159.12347,119.29824 -24.29709,12.7957 -41.22347,-2.40751 -38.32888,-11.09129 12.2807,-36.8421 68.41334,-112.79097 121.61761,-148.26047 50.65789,-33.77193 99.59084,-49.60942 118.59928,-48.60465 z"
style="opacity:0.2;stroke-width:8.77192"
id="path8" />
<path
d="m 392.04857,68.37767 c -57.01679,0 -113.2025,24.858753 -162.32531,61.70087 -56.34272,42.25703 -121.6176,123.69907 -121.6176,172.82188 0,17.36754 12.2807,36.84209 36.8421,36.84209 61.40351,0 138.32888,-74.2789 138.32888,-74.2789 0,0 -66.18341,74.06734 -100,109.9316 -19.85779,21.06022 -35.24191,22.8687 -59.80331,59.7108 -10.13807,15.2071 14.92679,21.31223 19.45243,19.23656 41.94171,-19.23637 64.51617,-61.66572 83.33333,-78.94736 13.37188,-12.2807 55.27234,-41.30242 110.40639,-90.42522 3.14651,-2.80344 -15.41116,-7.66841 -18.30112,-5.70861 -36.84211,24.98409 -42.19094,34.73032 -42.19094,34.73032 0,0 53.94715,-66.73264 97.04837,-119.29824 8.67234,-10.57666 -6.26028,-12.28071 -6.26028,-12.28071 H 349.8117 c 0,0 78.20852,-43.05253 78.78162,-78.94735 0.27728,-17.365327 -11.98335,-35.08773 -36.54475,-35.08773 z m -6.88392,25.376911 c 8.64021,0.45672 11.64401,4.325036 6.88392,11.465199 -24.56141,36.8421 -49.12281,49.12281 -73.68421,49.12281 -3.37547,-3.07535 0,-12.28071 0,-12.28071 0,0 -26.3158,10.52632 -26.3158,22.80702 0,11.57836 14.0351,26.31579 26.3158,26.31579 9.15348,0 24.03575,-8.77194 24.03575,-8.77194 0,0 -65.84679,70.17545 -159.12347,119.29825 -24.29709,12.7957 -41.22347,-2.40752 -38.32888,-11.09128 12.2807,-36.84211 68.41334,-112.79099 121.61761,-148.26048 50.65789,-33.77194 99.59084,-49.609421 118.59928,-48.604659 z"
style="fill:#00a4b9;stroke-width:8.77192"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

177
icons/guix.svg Normal file
View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="70mm"
width="77mm"
viewBox="0 0 272.83464 248.0315"
id="svg3338"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="Guix-logo.svg">
<defs
id="defs3344">
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4702-3"
id="linearGradient3936"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.4874381,0,0,1.4874381,1284.8057,-24.050665)"
x1="142.96875"
y1="63.65625"
x2="176.60477"
y2="70.667412" />
<linearGradient
id="linearGradient4702-3">
<stop
style="stop-color:#ff0000;stop-opacity:0.58431375;"
offset="0"
id="stop4704-1" />
<stop
style="stop-color:#ffcc00;stop-opacity:1;"
offset="1"
id="stop4706-8" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4702-3"
id="linearGradient3932"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.4874381,0,0,1.4874381,1284.7576,-1291.8882)"
x1="113.5146"
y1="1004.8033"
x2="78.000107"
y2="922.07178" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4696-5"
id="linearGradient3929"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.83291399,0,0,0.83291399,1519.4606,-667.62588)"
x1="108.08774"
y1="1025.709"
x2="80.655251"
y2="1043.709" />
<linearGradient
id="linearGradient4696-5">
<stop
style="stop-color:#ffb638;stop-opacity:1;"
offset="0"
id="stop4698-6" />
<stop
style="stop-color:#f0ae26;stop-opacity:1;"
offset="1"
id="stop4700-2" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4702-3"
id="linearGradient3926"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.4874381,0,0,1.4874381,1586.895,-24.051145)"
x1="142.96875"
y1="63.65625"
x2="177.04297"
y2="69.791016" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview3342"
showgrid="false"
inkscape:zoom="1.8132778"
inkscape:cx="141.73228"
inkscape:cy="141.73228"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg3338" />
<metadata
id="metadata3340">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="g3398"
transform="translate(-1299.1761,-41.051394)">
<g
id="g3122"
transform="translate(1285.8501,-737.48576)">
<path
inkscape:connector-curvature="0"
id="path3240"
style="font-style:normal;font-weight:bold;font-size:67.20256042px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none"
d="m 114.29864,1016.2686 c -3.15017,1.5313 -6.4206,2.6798 -9.81131,3.4454 -3.39079,0.7657 -6.89092,1.1485 -10.500399,1.1485 -8.159708,0 -14.62401,-2.2751 -19.392927,-6.8253 -4.768937,-4.572 -7.153401,-10.7629 -7.153397,-18.57256 -4e-6,-7.89714 2.428211,-14.10987 7.284652,-18.63821 4.85642,-4.52825 11.506666,-6.79239 19.95076,-6.79244 3.259466,5e-5 6.376771,0.30631 9.351921,0.91878 2.99694,0.61258 5.81892,1.52042 8.46595,2.72354 l 0,10.13945 c -2.73453,-1.55314 -5.45807,-2.71256 -8.17063,-3.47825 -2.69076,-0.76562 -5.392426,-1.14844 -8.104994,-1.14849 -5.031469,5e-5 -8.914426,1.41104 -11.648882,4.23298 -2.712621,2.80014 -4.068921,6.81435 -4.068905,12.04264 -1.6e-5,5.18456 1.312533,9.18786 3.93765,12.00986 2.625077,2.822 6.354903,4.233 11.189489,4.233 1.312517,0 2.526625,-0.077 3.642326,-0.2297 1.137506,-0.175 2.154736,-0.4376 3.051676,-0.7876 l 0,-9.516 -7.711228,0 0,-8.46591 19.688248,0 0,23.56031" />
<path
inkscape:connector-curvature="0"
id="path3242"
style="font-style:normal;font-weight:bold;font-size:67.20256042px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none"
d="m 124.47091,1005.6041 0,-22.44461 11.81295,0 0,3.67514 c -2e-5,1.99073 -0.011,4.49551 -0.0328,7.51435 -0.0219,2.99701 -0.0328,4.99865 -0.0328,6.00492 -2e-5,2.9532 0.0765,5.0861 0.22969,6.3987 0.15311,1.2907 0.41563,2.2313 0.78753,2.822 0.48125,0.7656 1.10471,1.3563 1.87039,1.7719 0.78751,0.4156 1.68441,0.6235 2.69072,0.6235 2.45007,0 4.37514,-0.9407 5.77522,-2.822 1.40003,-1.8813 2.10005,-4.4955 2.10008,-7.8425 l 0,-18.14601 11.74732,0 0,36.75141 -11.74732,0 0,-5.3158 c -1.77197,2.1438 -3.65329,3.7298 -5.64396,4.758 -1.96885,1.0062 -4.14549,1.5094 -6.52994,1.5094 -4.24392,0 -7.48154,-1.3016 -9.71287,-3.9048 -2.20946,-2.6033 -3.31419,-6.3878 -3.31419,-11.3536" />
<path
inkscape:connector-curvature="0"
id="path3244"
style="font-style:normal;font-weight:bold;font-size:67.20256042px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none"
d="m 172.77274,983.15949 11.74732,0 0,36.75141 -11.74732,0 0,-36.75141 m 0,-14.3068 11.74732,0 0,9.58162 -11.74732,0 0,-9.58162" />
<path
inkscape:connector-curvature="0"
id="path3246"
style="font-style:normal;font-weight:bold;font-size:67.20256042px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none"
d="m 205.15991,1001.1086 -13.25675,-17.94911 12.43641,0 7.51435,10.89416 7.61279,-10.89416 12.43641,0 -13.25676,17.88351 13.91303,18.8679 -12.43641,0 -8.26906,-11.6161 -8.17063,11.6161 -12.43641,0 13.91303,-18.8023" />
</g>
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffcc00;fill-opacity:1;stroke:none"
d="m 1557.9367,46.602435 c -2.6825,4.90263 -5.4059,8.89401 -8.1809,12.03897 -2.6825,3.05258 -5.6406,5.49427 -8.8781,7.34422 -3.1451,1.75757 -6.7135,3.02514 -10.691,3.76506 -3.885,0.64751 -8.3459,0.97629 -13.4334,0.9761 -3.7529,0 -7.1256,-0.1922 -10.0867,-0.55773 -0.012,0 -0.034,0 -0.047,0 -0.3754,-0.0273 -1.1508,-0.15334 -1.9523,-0.27891 -0.8442,-0.13218 -1.7071,-0.25955 -3.0678,-0.5113 -24.9421,-4.61489 -33.2141,12.7003 -35.0013,17.47744 -0.2797,0.74767 -0.4183,1.20845 -0.4183,1.20845 l -30.3066,84.505085 -18.593,31.60821 37.1395,0 c 15.2535,-33.96261 29.9183,-104.875515 45.5993,-111.139545 3.3988,0.47537 7.6118,0.69713 12.6897,0.69713 6.6601,0 12.6232,-0.79843 17.8957,-2.46349 5.2726,-1.66502 10.0151,-4.24757 14.2702,-7.76263 4.255,-3.60748 8.1051,-8.20868 11.5276,-13.75881 3.515,-5.54998 6.8486,-12.21732 9.9937,-19.98743 l -8.4597,-3.16082 z"
id="path3143" />
<path
style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3936);fill-opacity:1;stroke:none"
d="m 1557.9358,46.605905 c -2.6826,4.90263 -5.4057,8.8885 -8.1808,12.03346 -2.6824,3.05259 -5.6417,5.49543 -8.8792,7.34538 -0.7789,0.43527 -1.5819,0.83524 -2.4125,1.20983 -0.01,0.003 -0.014,0.0109 -0.022,0.0144 -1.0455,0.73525 -2.3902,1.36643 -4.2128,1.80033 -21.0208,5.00504 -35.3388,23.73821 -36.6837,25.5504 0.6098,-0.50134 1.2236,-0.91065 1.8364,-1.22422 0.092,-0.0488 0.1814,-0.093 0.2736,-0.13683 0.015,-0.007 0.029,-0.0148 0.043,-0.0216 0.1068,-0.0498 0.2172,-0.0941 0.3241,-0.13682 3.3988,0.47537 7.6109,0.69853 12.6888,0.69853 6.6601,0 12.6228,-0.805 17.8954,-2.47007 5.2725,-1.66501 10.0108,-4.2408 14.2658,-7.75586 4.2551,-3.60747 8.1069,-8.21164 11.5294,-13.76177 3.515,-5.55 6.8504,-12.22084 9.9955,-19.99096 l -8.4616,-3.1542 z"
id="path3145"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffcc00;fill-opacity:1;stroke:none"
d="m 1313.7642,46.602455 c 2.6826,4.90263 5.4059,8.89399 8.1809,12.03895 2.6825,3.05258 5.6407,5.49427 8.8782,7.34422 3.145,1.75757 6.7134,3.02514 10.6909,3.76506 3.8851,0.6477 8.3459,0.97629 13.4334,0.9761 3.7529,0 7.1256,-0.1922 10.0867,-0.55773 0.012,0 0.035,0 0.047,0 0.3754,-0.0269 1.1508,-0.15333 1.9523,-0.27891 0.8442,-0.13218 1.7071,-0.25955 3.0678,-0.5113 24.9421,-4.61489 33.2141,12.7003 35.0013,17.47744 0.2797,0.74767 0.4183,1.20845 0.4183,1.20845 l 30.3066,84.505085 18.593,31.60821 -37.1395,0 c -15.2535,-33.96261 -29.9183,-104.875515 -45.5993,-111.139545 -3.3988,0.47537 -7.6118,0.69713 -12.6897,0.69713 -6.6601,0 -12.6232,-0.79843 -17.8957,-2.46349 -5.2726,-1.66502 -10.0151,-4.24757 -14.2702,-7.76263 -4.255,-3.60748 -8.105,-8.20867 -11.5276,-13.75881 -3.515,-5.54993 -6.8486,-12.21728 -9.9937,-19.98743 l 8.4598,-3.1608 z"
id="path3147" />
<path
sodipodi:nodetypes="ccccccccsscccccccccccc"
id="path3149"
d="m 1313.7627,46.601235 c 2.6826,4.90262 5.4059,8.89399 8.1809,12.03894 2.6825,3.05259 5.6407,5.49427 8.8781,7.34422 3.1451,1.75757 6.7135,3.02514 10.691,3.76507 3.8851,0.64768 8.3459,0.97628 13.4334,0.97609 3.7529,0 7.1256,-0.19221 10.0867,-0.55772 0.012,0 0.035,0 0.047,0 0.3754,-0.027 1.1508,-0.15335 1.9523,-0.27892 0.8442,-0.13218 1.7071,-0.25955 3.0678,-0.5113 24.9421,-4.61489 33.2141,12.70029 35.0013,17.47744 0.2797,0.74767 0.4183,1.20845 0.4183,1.20845 l 30.3066,84.505095 15.6181,31.60819 -34.1646,0 c -15.2535,-33.9626 -29.9183,-104.875505 -45.5993,-111.139535 -3.3988,0.47537 -7.6118,0.69713 -12.6897,0.69713 -6.6601,0 -12.6232,-0.79843 -17.8957,-2.46349 -5.2726,-1.66502 -10.0151,-4.24758 -14.2701,-7.76263 -4.2551,-3.60748 -8.1051,-8.20867 -11.5277,-13.7588 -3.515,-5.54995 -6.8486,-12.21728 -9.9937,-19.98743 l 8.4598,-3.1608 z"
style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3932);fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path3151"
style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3929);fill-opacity:1;stroke:none"
d="m 1435.8193,172.5566 -18.52,31.62143 37.1209,0"
sodipodi:nodetypes="ccc" />
<path
style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3926);fill-opacity:1;stroke:none"
d="m 1313.7667,46.605905 -8.4616,3.1542 c 0.9829,2.42817 1.9835,4.75137 3.003,6.96371 0.2039,0.44246 0.4068,0.87683 0.6121,1.31064 8e-4,0.002 -8e-4,0.006 0,0.007 0.2044,0.4318 0.4135,0.85862 0.6193,1.28184 0.069,0.14106 0.1401,0.27758 0.2089,0.41768 0.3452,0.70349 0.6877,1.40177 1.037,2.08119 0,0.003 0.01,0.004 0.01,0.007 0.2082,0.40484 0.4169,0.80634 0.6265,1.20263 0.8454,1.59852 1.7025,3.12828 2.5709,4.58726 0.2168,0.36432 0.4298,0.7174 0.6481,1.073 0.085,0.13784 0.1672,0.27395 0.252,0.41048 0.1351,0.21746 0.2749,0.43399 0.4105,0.64812 0.2139,0.34687 0.4237,0.69034 0.6409,1.0298 0.3462,0.54084 0.7041,1.06956 1.0586,1.59149 0.09,0.13178 0.1764,0.26551 0.2665,0.39607 0.225,0.32622 0.4486,0.64634 0.6769,0.96499 0.4544,0.6341 0.9152,1.25393 1.3827,1.85795 0.2337,0.302 0.4687,0.59851 0.7057,0.89296 0.474,0.58892 0.9532,1.16257 1.4403,1.72113 0.3692,0.42348 0.7467,0.83988 1.1234,1.24584 0.119,0.12822 0.2403,0.2552 0.36,0.38166 0.5012,0.52939 1.0055,1.04257 1.5195,1.54109 0.2564,0.24866 0.511,0.49359 0.7706,0.73454 0.2608,0.24217 0.5209,0.47857 0.7849,0.71294 0.2628,0.23322 0.5262,0.45866 0.7922,0.68413 0.7978,0.65907 1.6161,1.28595 2.4484,1.87955 2.2197,1.58292 4.563,2.93443 7.0357,4.05436 0.3091,0.14 0.6159,0.27768 0.929,0.41048 0.6283,0.26652 1.2637,0.51855 1.9084,0.75614 0.3213,0.11842 0.6396,0.22723 0.965,0.33846 0.3254,0.11123 0.657,0.22 0.9866,0.32406 0.3295,0.10407 0.6588,0.20515 0.9937,0.30246 0.6699,0.19463 1.3538,0.37949 2.0452,0.5473 0.3458,0.0839 0.6931,0.16039 1.0442,0.23765 0.3512,0.0773 0.7021,0.15261 1.0586,0.22324 0.3588,0.0711 0.7159,0.13718 1.0802,0.20164 0.7239,0.12808 1.458,0.24373 2.2036,0.34566 1.1184,0.15292 2.2607,0.27964 3.4279,0.37447 0.7781,0.0633 1.5694,0.1135 2.3692,0.15123 0.7999,0.0377 1.6125,0.0595 2.4341,0.072 0.4108,0.006 0.8224,0.007 1.2386,0.007 0.6348,0 1.2574,-2.1e-4 1.8652,-0.007 1.2156,-0.014 2.3763,-0.0437 3.4854,-0.0864 0.5521,-0.0213 1.0943,-0.0435 1.6203,-0.072 0.5282,-0.0287 1.0462,-0.0646 1.5483,-0.10083 1.5062,-0.10864 2.895,-0.24661 4.1696,-0.42487 0.1069,0.0427 0.2173,0.087 0.3241,0.13682 0.015,0.006 0.028,0.0148 0.043,0.0216 0.092,0.0439 0.1815,0.088 0.2736,0.13682 0.6131,0.31376 1.2262,0.72249 1.8364,1.22423 -1.3421,-1.80851 -15.6604,-20.54497 -36.6837,-25.5504 -1.8226,-0.43396 -3.1673,-1.06505 -4.2128,-1.80034 -0.01,-0.003 -0.014,-0.0108 -0.022,-0.0144 -0.8287,-0.37374 -1.6352,-0.77569 -2.4125,-1.20983 0,-8e-4 -0.01,7.9e-4 -0.01,0 -0.2005,-0.11459 -0.3993,-0.23372 -0.5977,-0.35287 0,-8e-4 -0.01,8e-4 -0.01,0 -0.2001,-0.12025 -0.3925,-0.24238 -0.5905,-0.36726 -0.3976,-0.25081 -0.7922,-0.50819 -1.181,-0.77775 -0.1936,-0.13419 -0.3847,-0.27162 -0.5761,-0.41048 -0.3856,-0.27966 -0.7611,-0.56553 -1.1378,-0.86416 -0.1871,-0.14821 -0.3696,-0.29358 -0.5545,-0.44649 -0.1864,-0.15403 -0.3704,-0.30928 -0.5545,-0.46808 -0.1828,-0.15761 -0.3595,-0.32017 -0.5401,-0.4825 -0.9031,-0.81159 -1.7795,-1.67679 -2.6285,-2.60688 -0.1699,-0.18602 -0.3437,-0.37813 -0.5113,-0.56891 -0.6171,-0.6993 -1.2315,-1.4415 -1.8436,-2.22522 -0.076,-0.0976 -0.1471,-0.19638 -0.2232,-0.29525 -0.1719,-0.22327 -0.347,-0.44692 -0.5185,-0.67693 -0.8574,-1.15011 -1.7082,-2.38737 -2.5565,-3.70871 -0.3393,-0.52854 -0.6774,-1.07112 -1.0154,-1.62751 -0.169,-0.27819 -0.3354,-0.55736 -0.5041,-0.84255 -0.5043,-0.85289 -1.0109,-1.74117 -1.5123,-2.6573 z"
id="path3154"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

21638
icons/haiku.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 853 KiB

305
icons/holoiso.svg Normal file
View File

@ -0,0 +1,305 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="180"
height="180"
viewBox="0 0 180 180"
version="1.1"
id="svg1"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
sodipodi:docname="holoiso.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
inkscape:zoom="4.9833333"
inkscape:cx="90"
inkscape:cy="90.100334"
inkscape:window-width="3438"
inkscape:window-height="1390"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g64"
transform="matrix(3.3766708,0,0,3.3636892,-264.64853,-408.75614)">
<g
id="g2">
<path
style="fill:#fcfcfa"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.352896,14.22135 c 0.13056,-0.32742 0.30801,-0.81708 0.39434,-1.08813 0.11078,-0.34787 0.2533,-0.41674 0.48454,-0.23417 0.95277,0.75224 3.63489,0.51404 3.63489,-0.32282 0,-0.20336 0.23877,-0.44552 0.5306,-0.53814 1.00543,-0.31912 2.14283,-1.48017 1.97329,-2.01433 -0.17274,-0.54428 0.28966,-0.7068 0.47812,-0.16803 0.19689,0.5629 1.22305,-0.57243 1.40789,-1.55768 0.11852,-0.6318 0.3098,-0.88972 0.65984,-0.88972 0.77906,0 1.38217,-1.44193 1.17657,-2.81297 -0.14028,-0.93547 -0.0964,-1.15578 0.23046,-1.15578 0.78235,0 1.36129,-2.30643 1.05684,-4.21035 -0.14102,-0.88188 -0.25073,-1.0199 -0.74018,-0.93115 -0.40004,0.0726 -0.5854,-0.0349 -0.61012,-0.35371 -0.14874,-1.91879 -0.29946,-3.01663 -0.43238,-3.14955 -0.0858,-0.0858 -0.037,-0.37854 0.10852,-0.65045 0.35315,-0.65986 -0.13106,-1.59448 -0.71081,-1.37201 -0.51741,0.19855 -0.88589,-0.34106 -0.89125,-1.30518 -0.004,-0.74066 -0.066,-0.77585 -1.45926,-0.82939 -0.72299,-0.0278 -0.79463,-0.11309 -0.80361,-0.95687 -0.0137,-1.28923 -0.29429,-1.62803 -1.271,-1.53473 -0.73182,0.0699 -0.84592,-0.007 -0.91704,-0.6219 -0.13738,-1.18691 -4.16259,-1.81337 -4.9754,-0.77435 -0.30781,0.39348 -1.26116,0.66146 -1.03157,0.28997 0.0726,-0.1175 -0.0459,-0.2819 -0.26332,-0.36534 -0.30479,-0.11696 -0.39536,0.0625 -0.39536,0.78342 0,1.63316 1.06253,2.71841 1.39958,1.42951 0.17597,-0.6729 0.72558,-0.68614 0.89935,-0.0217 0.15749,0.60224 1.09759,1.02762 3.1814,1.43951 1.40054,0.27683 1.53894,0.36776 1.66382,1.09317 0.0904,0.52478 0.3805,0.9083 0.86166,1.13891 0.49137,0.23551 0.72544,0.55163 0.72544,0.97972 0,0.75295 0.88674,1.45111 1.60462,1.26338 0.55019,-0.14388 0.77949,1.05421 0.26288,1.37349 -0.2866,0.17713 -0.2361,1.70078 0.0727,2.19234 0.12227,0.19466 0.0801,0.33073 -0.10249,0.33073 -0.2097,0 -0.25322,0.27865 -0.1343,0.8599 0.72324,3.53502 0.61755,5.46591 -0.32205,5.88357 -0.43362,0.19275 -0.58757,0.48737 -0.58757,1.12448 0,0.79319 -0.0681,0.8633 -0.83906,0.8633 -1.19665,0 -1.79978,0.63182 -1.62591,1.70327 0.15354,0.94613 -0.34269,1.35939 -1.27647,1.06302 -0.27054,-0.0859 -0.49189,-0.0577 -0.49189,0.0626 0,0.42891 -1.19778,0.95633 -2.37528,1.04591 -3.04819,0.23191 -2.77538,0.0902 -2.86494,1.48786 -0.0445,0.69392 0.0151,1.24537 0.13229,1.22544 0.5536,-0.0941 0.8746,0.0613 0.8746,0.42331 0,0.62864 1.04023,0.47071 1.30706,-0.19844 z"
id="path64" />
<path
style="fill:#f2f4f4"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 31.338206,14.14363 c 8.35809,-2.87746 12.51845,-12.56411 8.74507,-20.36134 -1.29918,-2.6846 -4.47003,-6.21771 -5.58018,-6.21771 -0.20452,0 -0.37185,-0.12565 -0.37185,-0.27922 0,-0.61891 -4.82091,-2.31999 -6.68072,-2.35732 -1.38679,-0.0278 -0.54376,4.41354 0.8634,4.54875 11.7216,1.1263 11.40665,21.00754 -0.33424,21.09883 -0.99219,0.008 -0.99219,0.008 -0.99219,2.28671 0,2.5822 0.30829,2.67299 4.35071,1.2813 z"
id="path63" />
<path
style="fill:#edf2f2"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.011996,14.68767 c 16.24204,-3.8784 14.17553,-29.76892 -2.37606,-29.76892 -1.51852,0 -0.89666,4.39681 0.65089,4.6021 11.57618,1.53564 11.57618,19.42266 0,20.95829 -1.29933,0.17236 -1.29933,0.17236 -1.29933,2.38724 0,2.5539 -0.0123,2.54645 3.0245,1.82129 z"
id="path62" />
<path
style="fill:#e6e8e9"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.207346,14.69603 c 15.82108,-4.12086 14.47887,-28.00279 -1.66867,-29.69054 -2.4459,-0.25564 -2.45101,4.1653 -0.005,4.64645 11.33435,2.22989 11.31519,18.44886 -0.0245,20.69843 -1.52136,0.30181 -1.52136,0.30181 -1.52136,2.51634 0,2.53291 0.16302,2.62552 3.21985,1.82932 z"
id="path61" />
<path
style="fill:#dde2e3"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.529506,14.65664 c 14.61916,-3.5363 14.61916,-25.76132 0,-29.31516 -3.54244,-0.86115 -3.44824,-0.87928 -3.61917,0.6967 -0.30042,2.76975 0.005,3.47413 1.60879,3.70487 11.21534,1.61404 11.09176,18.92775 -0.14657,20.53533 -1.4362,0.20544 -1.75339,0.99683 -1.46542,3.65626 0.16777,1.54935 0.18659,1.5531 3.62237,0.722 z"
id="path60" />
<path
style="fill:#dadde0"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.447596,14.96748 c 16.15126,-3.09025 16.12452,-26.84983 -0.0337,-29.94141 -2.75837,-0.52776 -2.72618,-0.55468 -2.6352,2.20345 0.0765,2.31943 0.0765,2.31943 1.43729,2.48553 11.45289,1.39791 11.45289,19.17199 0,20.5699 -1.31352,0.16032 -2.0987,2.83643 -1.38098,4.70676 0.16833,0.43868 0.19445,0.43843 2.61259,-0.0242 z"
id="path59" />
<path
style="fill:#d6d9d9"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.645716,14.96943 c 16.07254,-3.40731 15.90532,-26.68724 -0.21531,-29.97471 -2.72422,-0.55555 -2.74324,-0.53954 -2.65171,2.2318 0.0765,2.31642 0.0765,2.31642 1.49768,2.52031 11.38136,1.63284 11.35816,18.8777 -0.0276,20.5102 -1.39359,0.19981 -1.39359,0.19981 -1.47163,2.29019 -0.11617,3.11157 -0.16976,3.06632 2.86855,2.42221 z"
id="path58" />
<path
style="fill:#cdd2d4"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.231056,14.83296 c 15.68412,-4.01132 15.17983,-26.38867 -0.67221,-29.82869 -2.82018,-0.61201 -2.87253,-0.57054 -2.78015,2.2027 0.0765,2.29689 0.0765,2.29689 1.68999,2.62536 11.23118,2.28641 11.23118,18.04959 0,20.33523 -1.61348,0.32835 -1.61348,0.32835 -1.69152,2.3992 -0.11851,3.14446 -0.0797,3.16994 3.45389,2.2662 z"
id="path57" />
<path
style="fill:#c4c8c9"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.135216,14.93905 c 16.57305,-3.90661 14.35642,-30.20407 -2.5524,-30.28098 -1.77555,-0.008 -1.2544,4.91291 0.54409,5.13762 11.42977,1.42806 11.37737,19.083 -0.0606,20.43767 -1.34334,0.1591 -1.34334,0.1591 -1.34334,2.63578 0,2.84469 0.0351,2.86598 3.4123,2.06991 z"
id="path56" />
<path
style="fill:#c3c4be"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 32.144246,14.30539 c 14.89692,-5.96501 11.29556,-29.65123 -4.50831,-29.65123 -1.76995,0 -1.36111,4.9158 0.42932,5.16205 11.46074,1.57625 11.46074,18.79132 0,20.36757 -1.34234,0.18462 -1.34234,0.18462 -1.34234,2.7116 0,2.86504 1.08367,3.14689 5.42133,1.41001 z"
id="path55" />
<path
style="fill:#bcc2c4"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 32.144246,14.30539 c 14.89692,-5.96501 11.29556,-29.65123 -4.50831,-29.65123 -1.76995,0 -1.36111,4.9158 0.42932,5.16205 11.4446,1.57403 11.4446,18.79354 0,20.36757 -1.34234,0.18462 -1.34234,0.18462 -1.34234,2.7116 0,2.86504 1.08367,3.14689 5.42133,1.41001 z"
id="path54" />
<path
style="fill:#babdc1"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.951036,15.05559 c 16.771,-3.47171 14.72027,-30.40143 -2.3151,-30.40143 -1.76995,0 -1.36111,4.9158 0.42932,5.16205 11.3247,1.55754 11.53232,18.29125 0.25159,20.27831 -1.59393,0.28077 -1.59393,0.28077 -1.59393,2.76604 0,2.80855 0.0617,2.8505 3.22812,2.19503 z"
id="path53" />
<path
style="fill:#b4b8ba"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.162496,15.05989 c 16.45948,-3.77404 14.44098,-30.40573 -2.30454,-30.40573 -2.10997,0 -1.71464,4.86845 0.42595,5.24551 11.21962,1.97629 11.21962,18.22436 0,20.20066 -1.56099,0.27496 -1.56099,0.27496 -1.56099,2.76023 0,2.74977 0.27424,2.92512 3.43958,2.19933 z"
id="path52" />
<path
style="fill:#abb1b3"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.489166,14.93156 c 15.78292,-3.81182 14.73885,-27.35994 -1.33685,-30.15154 -2.54182,-0.4414 -2.4294,-0.55238 -2.4294,2.39826 0,2.77066 -0.18833,2.51378 2.11667,2.887 10.2981,1.66745 10.2981,18.20198 0,19.86943 -2.30379,0.37302 -2.11667,0.12032 -2.11667,2.85852 0,3.14711 -0.12255,3.07753 3.76625,2.13833 z"
id="path51" />
<path
style="fill:#a8aeb2"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.691666,14.90219 c 15.55982,-4.25101 14.48889,-27.3709 -1.39629,-30.14408 -2.51421,-0.43893 -2.57239,-0.40405 -2.75488,1.65139 -0.23866,2.68803 0.0919,3.37243 1.72614,3.57429 11.04091,1.3637 11.03668,18.67346 -0.005,20.03241 -1.61475,0.19874 -1.98345,1.01148 -1.68387,3.7118 0.23435,2.11229 0.45234,2.17451 4.11379,1.17419 z"
id="path50" />
<path
style="fill:#a4a9ab"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.427306,15.23594 c 16.65377,-3.18639 16.54313,-27.29776 -0.13992,-30.49056 -2.72092,-0.52072 -2.82905,-0.42814 -2.82905,2.42232 0,2.48507 0.10771,2.64988 1.85364,2.83604 10.87904,1.15997 10.87904,18.83254 0,19.99252 -0.6557,0.0699 -1.34101,0.24518 -1.52291,0.38949 -0.44141,0.35017 -0.45251,4.46789 -0.0132,4.90716 0.39271,0.39272 0.28958,0.39494 2.65147,-0.057 z"
id="path49" />
<path
style="fill:#9ca2a5"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 31.485416,14.73501 c 15.23134,-4.95799 13.23811,-27.49394 -2.66402,-30.12012 -2.31667,-0.38259 -2.35349,-0.34221 -2.35901,2.58656 -0.005,2.45452 0.0918,2.59758 1.91077,2.83459 10.82079,1.40996 10.82079,18.51795 0,19.92791 -1.80784,0.23557 -1.91482,0.38904 -1.91482,2.7468 0,3.28354 0.51786,3.49207 5.02708,2.02426 z"
id="path48" />
<path
style="fill:#999ea2"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.721916,15.21807 c 16.63372,-3.52434 16.11546,-27.58499 -0.65889,-30.58895 -2.56302,-0.45899 -2.60544,-0.42095 -2.60064,2.33184 0.005,2.77758 0.0545,2.87127 1.61162,3.04215 11.20668,1.22977 11.20668,18.764 0,19.99378 -1.5539,0.17052 -1.60677,0.26859 -1.61162,2.98974 -0.005,2.97169 -0.0594,2.93465 3.25953,2.23144 z"
id="path47" />
<path
style="fill:#93989b"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.857826,15.2316 c 16.38335,-3.51349 15.85859,-27.74436 -0.6625,-30.59156 -2.77272,-0.47784 -2.7705,-0.47998 -2.68048,2.58611 0.0758,2.5812 0.0758,2.5812 1.5197,2.78845 11.37192,1.63225 11.37192,18.33914 0,19.97071 -1.44392,0.20716 -1.44392,0.20716 -1.52103,2.56446 -0.11144,3.40693 -0.0957,3.41956 3.34431,2.68183 z"
id="path46" />
<path
style="fill:#8b9196"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.965986,15.22236 c 16.25615,-3.44483 15.65771,-27.88279 -0.74966,-30.61315 -2.77988,-0.46261 -2.79156,-0.45129 -2.70148,2.61694 0.0758,2.5812 0.0758,2.5812 1.5197,2.78845 11.32242,1.62514 11.32242,18.34624 0,19.97071 -1.44392,0.20716 -1.44392,0.20716 -1.52103,2.56446 -0.11189,3.42092 -0.1048,3.42641 3.45247,2.67259 z"
id="path45" />
<path
style="fill:#878c93"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.097296,15.21248 c 16.83628,-3.9696 14.35511,-32.42977 -2.68261,-30.77085 -1.85818,0.18093 -1.16668,5.28289 0.76344,5.63276 11.15342,2.02177 11.15342,17.81874 0,19.84875 -1.5875,0.28894 -1.5875,0.28894 -1.66461,2.63644 -0.11148,3.39409 0.0218,3.49273 3.58378,2.6529 z"
id="path44" />
<path
style="fill:#83888b"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 32.233386,14.53428 c 14.81723,-5.9331 11.76087,-29.46178 -3.89138,-29.957 -2.68557,-0.085 -2.77822,4.9804 -0.10108,5.52649 11.12228,2.26874 11.0939,17.53336 -0.0368,19.79931 -1.55781,0.31714 -2.43947,3.25338 -1.61894,5.39164 0.22885,0.59636 3.28853,0.18443 5.64822,-0.76044 z"
id="path43" />
<path
style="fill:#7b8286"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.951036,15.31354 c 16.87539,-3.57315 15.45224,-29.41243 -1.69915,-30.85034 -2.72799,-0.22871 -2.74603,5.10833 -0.0191,5.65938 11.05359,2.23369 11.05359,17.52114 0,19.75483 -1.64214,0.33185 -1.64214,0.33185 -1.71754,3.03242 -0.0845,3.02672 0.0498,3.12066 3.43581,2.40371 z"
id="path42" />
<path
style="fill:#767c82"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.951036,15.31379 c 17.27498,-3.65473 15.0883,-30.92421 -2.47974,-30.92421 -2.08751,0 -1.36878,5.32738 0.77598,5.75176 10.99525,2.17559 10.99525,17.54173 0,19.71732 -1.65665,0.3278 -1.65665,0.3278 -1.73205,3.03977 -0.0845,3.03937 0.0475,3.13219 3.43581,2.41536 z"
id="path41" />
<path
style="fill:#72797c"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.508236,15.21574 c 16.68028,-4.34466 14.28989,-30.82616 -2.78257,-30.82616 -2.09446,0 -1.97887,5.40905 0.12173,5.69702 11.23031,1.5396 11.53281,17.77164 0.36742,19.71601 -1.75648,0.30588 -1.75648,0.30588 -1.75648,3.05684 0,3.07542 0.3986,3.30733 4.0499,2.35629 z"
id="path40" />
<path
style="fill:#6a7276"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.526476,15.18659 c 16.01042,-3.8724 15.02314,-27.82371 -1.26349,-30.65194 -2.8854,-0.50106 -2.80465,-0.57679 -2.80465,2.6305 0,2.95746 0.0429,3.03095 1.77601,3.04165 5.78418,0.0357 10.19447,8.60582 7.2983,14.18214 -1.43901,2.77069 -4.97621,5.38992 -7.2983,5.40425 -1.73363,0.0107 -1.77601,0.0834 -1.77601,3.04791 0,3.34342 -0.0171,3.33357 4.06814,2.34549 z"
id="path39" />
<path
style="fill:#646c72"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.294796,15.29508 c 16.46577,-3.61949 15.3416,-28.30905 -1.40616,-30.88277 -2.49401,-0.38327 -2.4303,-0.45517 -2.4303,2.7427 0,2.99631 0.0325,3.0554 1.68275,3.0554 2.45748,0 6.15742,2.83539 7.53522,5.7745 2.59856,5.54321 -1.91093,13.80467 -7.53522,13.80467 -1.6483,0 -1.68275,0.062 -1.68275,3.02692 0,3.45085 -0.14892,3.35464 3.83646,2.47858 z"
id="path38" />
<path
style="fill:#62686c"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.368746,15.49371 c 17.29842,-3.16288 16.88809,-28.21402 -0.5095,-31.10565 -2.50858,-0.41695 -2.6655,-0.25145 -2.6655,2.81132 0,2.53848 0.28806,3.01103 1.83544,3.01103 10.60141,0 10.89706,18.23891 0.31596,19.49208 -0.71659,0.0849 -1.4465,0.24307 -1.62203,0.35155 -0.4525,0.27966 -0.68599,4.50476 -0.28985,5.24496 0.35859,0.67003 0.34192,0.66892 2.93548,0.19471 z"
id="path37" />
<path
style="fill:#5b6368"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.497496,15.4871 c 17.2555,-3.30153 16.69382,-28.26821 -0.70057,-31.14083 -2.42384,-0.40029 -2.60318,-0.20373 -2.60318,2.85311 0,2.57582 0.19528,2.86644 2.07568,3.08915 10.68928,1.26599 10.64923,18.24984 -0.0458,19.41542 -1.80514,0.19673 -2.0299,0.53599 -2.0299,3.06401 0,3.27532 0.0748,3.33693 3.30375,2.71914 z"
id="path36" />
<path
style="fill:#535962"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 31.343686,15.06213 c 15.55766,-4.8325 13.82767,-28.0621 -2.28643,-30.70118 -2.76939,-0.45356 -2.86351,-0.36131 -2.86351,2.80675 0,2.78044 0.0793,2.91135 1.88026,3.10362 10.83879,1.15713 10.91051,18.00787 0.0827,19.42146 -1.89835,0.24783 -1.96292,0.35042 -1.96292,3.11899 0,3.38776 0.61834,3.65796 5.14994,2.25036 z"
id="path35" />
<path
style="fill:#52575c"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.965986,15.48694 c 16.7612,-3.55185 15.89313,-28.68427 -1.07607,-31.15427 -2.70265,-0.39339 -2.68661,-0.41049 -2.69211,2.86878 -0.005,2.74704 0.0645,2.85857 1.92218,3.10074 10.80032,1.40795 10.83168,17.98129 0.0367,19.39059 -1.88889,0.24659 -1.96292,0.36041 -1.96292,3.01797 0,3.50757 0.0717,3.56036 3.77224,2.77619 z"
id="path34" />
<path
style="fill:#4b5359"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.060566,15.48563 c 17.35249,-4.09229 14.80779,-32.77866 -2.7773,-31.30838 -2.17367,0.18174 -1.47558,5.85106 0.75296,6.115 10.81107,1.28041 10.88389,17.99757 0.0845,19.40545 -1.8706,0.24386 -1.92701,0.33914 -1.92701,3.25518 0,3.28232 0.18225,3.40169 3.86682,2.53275 z"
id="path33" />
<path
style="fill:#510c95"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 32.230576,14.81404 c 15.1907,-5.89867 12.00736,-30.07293 -4.01709,-30.50577 -2.64974,-0.0716 -3.05987,5.59432 -0.43224,5.97138 11.27512,1.61796 11.27512,17.82644 0,19.44014 -1.39173,0.19919 -2.27221,3.72466 -1.4593,5.84308 0.23277,0.60656 3.47694,0.19541 5.90863,-0.74883 z"
id="path32" />
<path
style="fill:#4c0e91"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 32.230576,14.81404 c 15.1907,-5.89867 12.00736,-30.07293 -4.01709,-30.50577 -2.64974,-0.0716 -3.05987,5.59432 -0.43224,5.97138 11.27512,1.61796 11.27512,17.82644 0,19.44014 -1.39173,0.19919 -2.27221,3.72466 -1.4593,5.84308 0.23277,0.60656 3.47694,0.19541 5.90863,-0.74883 z"
id="path31" />
<path
style="fill:#4a1090"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 32.230576,14.81404 c 15.1907,-5.89867 12.00736,-30.07293 -4.01709,-30.50577 -2.64974,-0.0716 -3.05987,5.59432 -0.43224,5.97138 11.27512,1.61796 11.27512,17.82644 0,19.44014 -1.39173,0.19919 -2.27221,3.72466 -1.4593,5.84308 0.23277,0.60656 3.47694,0.19541 5.90863,-0.74883 z"
id="path30" />
<path
style="fill:#48108e"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 32.230576,14.81404 c 15.1907,-5.89867 12.00736,-30.07293 -4.01709,-30.50577 -2.64974,-0.0716 -3.05987,5.59432 -0.43224,5.97138 11.27512,1.61796 11.27512,17.82644 0,19.44014 -1.39173,0.19919 -2.27221,3.72466 -1.4593,5.84308 0.23277,0.60656 3.47694,0.19541 5.90863,-0.74883 z"
id="path29" />
<path
style="fill:#490e8e"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 32.230576,14.81404 c 15.1907,-5.89867 12.00736,-30.07293 -4.01709,-30.50577 -2.64974,-0.0716 -3.05987,5.59432 -0.43224,5.97138 11.27512,1.61796 11.27512,17.82644 0,19.44014 -1.39173,0.19919 -2.27221,3.72466 -1.4593,5.84308 0.23277,0.60656 3.47694,0.19541 5.90863,-0.74883 z m -0.87511,-10.26973 c 1.9531,-1.76555 2.11142,-2.0869 2.10856,-4.27973 -0.006,-4.62489 -2.24181,-7.10949 -6.56858,-7.29957 -2.75434,-0.121 -5.33028,1.18786 -4.08409,2.07517 0.22095,0.15732 0.0488,0.19209 -0.49253,0.0995 -1.020767,-0.17468 -1.262809,0.38894 -0.7207,1.67823 0.19926,0.4739 0.36229,1.13394 0.36229,1.46674 0,0.54271 0.16369,0.6241 1.5875,0.78935 1.40598,0.16319 1.5875,0.25113 1.5875,0.76916 0,0.3217 0.17481,0.81603 0.38846,1.0985 0.21365,0.28248 0.39407,0.75172 0.40093,1.04276 0.0257,1.09131 0.74623,1.35562 3.93936,1.44504 0.29271,0.008 0.29926,0.0871 0.0337,0.40705 -0.36248,0.43675 0.17043,0.59221 0.68025,0.19843 0.14131,-0.10914 0.002,0.0397 -0.3094,0.33073 -0.31148,0.29104 -0.632,0.70776 -0.71228,0.92604 -0.10503,0.28559 -0.15295,0.24849 -0.1709,-0.13229 -0.0207,-0.44037 -0.068,-0.46257 -0.28142,-0.13229 -0.78633,1.21676 0.73124,0.89133 2.2513,-0.48277 z"
id="path28" />
<path
style="fill:#454c53"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 32.230576,14.81404 c 15.1907,-5.89867 12.00736,-30.07293 -4.01709,-30.50577 -2.64974,-0.0716 -3.05987,5.59432 -0.43224,5.97138 11.27512,1.61796 11.27512,17.82644 0,19.44014 -1.39173,0.19919 -2.27221,3.72466 -1.4593,5.84308 0.23277,0.60656 3.47694,0.19541 5.90863,-0.74883 z m -1.38582,-9.46211 c 3.51963,-2.92554 3.68899,-7.80885 0.37608,-10.8438 -2.586,-2.36902 -8.31965,-2.00158 -9.65729,0.6189 -0.14553,0.28507 -0.532478,0.89142 -0.8599,1.34742 -0.796697,1.10958 -0.75624,1.23965 0.330729,1.06326 0.876161,-0.14218 0.926041,-0.10982 0.926041,0.60086 0,0.72119 0.0633,0.75848 1.5875,0.93538 1.40598,0.16319 1.5875,0.25113 1.5875,0.76916 0,0.3217 0.17481,0.81603 0.38846,1.0985 0.21365,0.28248 0.39407,0.75172 0.40093,1.04276 0.0257,1.09038 0.72871,1.34977 3.9165,1.44504 0.22113,0.007 0.10534,0.35591 -0.33073,0.99763 -0.98432,1.44857 -0.0637,2.08679 1.33418,0.92489 z"
id="path27" />
<path
style="fill:#450e8c"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.366006,15.4761 c 15.89462,-3.74748 15.81678,-27.27914 -0.10245,-30.97106 -3.66085,-0.84901 -3.93751,-0.66215 -3.93751,2.65929 0,2.90705 0,2.90705 1.77061,3.22795 10.87883,1.97168 10.87646,17.24705 -0.003,19.21541 -1.76762,0.31981 -1.76762,0.31981 -1.84392,2.944 -0.10752,3.69806 0.1273,3.86489 4.11626,2.92441 z m 0.47875,-10.12417 c 3.51963,-2.92554 3.68899,-7.80885 0.37608,-10.8438 -2.586,-2.36902 -8.31965,-2.00158 -9.65729,0.6189 -0.14553,0.28507 -0.532478,0.89142 -0.8599,1.34742 -0.796697,1.10958 -0.75624,1.23965 0.330729,1.06326 0.876161,-0.14218 0.926041,-0.10982 0.926041,0.60086 0,0.72119 0.0633,0.75848 1.5875,0.93538 1.40598,0.16319 1.5875,0.25113 1.5875,0.76916 0,0.3217 0.17481,0.81603 0.38846,1.0985 0.21365,0.28248 0.39407,0.75172 0.40093,1.04276 0.0257,1.09038 0.72871,1.34977 3.9165,1.44504 0.22113,0.007 0.10534,0.35591 -0.33073,0.99763 -0.98432,1.44857 -0.0637,2.08679 1.33418,0.92489 z"
id="path26" />
<path
style="fill:#44108b"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.366006,15.4761 c 15.89462,-3.74748 15.81678,-27.27914 -0.10245,-30.97106 -3.66085,-0.84901 -3.93751,-0.66215 -3.93751,2.65929 0,2.90705 0,2.90705 1.77061,3.22795 10.87883,1.97168 10.87646,17.24705 -0.003,19.21541 -1.76762,0.31981 -1.76762,0.31981 -1.84392,2.944 -0.10752,3.69806 0.1273,3.86489 4.11626,2.92441 z m 0.0688,-9.79157 c 3.7412,-1.93465 4.17294,-8.07364 0.786,-11.1764 -3.49169,-3.19872 -9.34997,-1.65748 -11.089368,2.91748 -0.258009,0.67861 -0.239254,0.69938 0.498306,0.55187 0.802102,-0.16042 0.845342,-0.0747 1.152992,2.2871 0.0349,0.26816 0.53633,0.46982 1.54595,0.62179 1.00485,0.15125 1.54547,0.36789 1.65065,0.66146 0.086,0.2401 0.2252,0.58366 0.3093,0.76347 0.0875,0.18717 -0.13877,0.45983 -0.52934,0.63779 -0.87085,0.39678 -0.86391,0.6991 0.0238,1.03661 0.38832,0.14764 0.83625,0.4465 0.99539,0.66414 0.19536,0.26717 0.78204,0.40159 1.80621,0.41382 0.94828,0.0113 1.45505,0.11813 1.35196,0.28493 -0.0907,0.14675 -8.1e-4,0.37075 0.19973,0.49777 0.46744,0.29607 0.39562,0.30503 1.29842,-0.16183 z"
id="path25" />
<path
style="fill:#421184"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.366006,15.4761 c 15.89462,-3.74748 15.81678,-27.27914 -0.10245,-30.97106 -3.66085,-0.84901 -3.93751,-0.66215 -3.93751,2.65929 0,2.90705 0,2.90705 1.77061,3.22795 10.87883,1.97168 10.87646,17.24705 -0.003,19.21541 -1.76762,0.31981 -1.76762,0.31981 -1.84392,2.944 -0.10752,3.69806 0.1273,3.86489 4.11626,2.92441 z m -0.29007,-9.46281 c 6.49564,-4.05272 3.80286,-13.14901 -3.89445,-13.15557 -4.15731,-0.004 -8.108875,5.42037 -6.347179,8.71213 0.527037,0.98478 1.14695,0.19826 0.908109,-1.15217 -0.212447,-1.2012 -0.207741,-1.99055 0.01319,-2.21148 0.33725,-0.33725 0.544875,0.35062 0.568043,1.88197 0.03345,2.21055 0.245647,2.7524 1.156177,2.95239 0.41801,0.0918 1.02613,0.39774 1.3514,0.67985 0.32529,0.28211 0.76171,0.51292 0.96985,0.51292 0.9814,0 0.0284,0.62297 -0.98054,0.64094 -3.151177,0.0561 -0.004,1.94129 3.29926,1.97618 1.34615,0.0142 1.79557,-0.11306 2.95614,-0.83716 z"
id="path24" />
<path
style="fill:#420e85"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.366006,15.4761 c 15.89462,-3.74748 15.81678,-27.27914 -0.10245,-30.97106 -3.66085,-0.84901 -3.93751,-0.66215 -3.93751,2.65929 0,2.90705 0,2.90705 1.77061,3.22795 10.87883,1.97168 10.87646,17.24705 -0.003,19.21541 -1.76762,0.31981 -1.76762,0.31981 -1.84392,2.944 -0.10752,3.69806 0.1273,3.86489 4.11626,2.92441 z m -0.87281,-9.00157 c 0.80468,-0.36806 1.46305,-0.79181 1.46305,-0.94165 0,-0.14985 0.10558,-0.2072 0.23461,-0.12745 0.29134,0.18006 0.88431,-0.49415 0.64504,-0.73342 -0.0957,-0.0958 -0.0514,-0.1741 0.0986,-0.1741 3.18781,0 2.07234,-8.12176 -1.46663,-10.67863 -2.02871,-1.46572 -8.24288,-1.15768 -8.24288,0.4086 0,0.11873 -0.15073,0.21587 -0.33496,0.21587 -0.87666,0 -2.330435,3.15004 -2.442161,5.29166 -0.09828,1.88387 1.215755,2.9923 1.807136,1.52439 0.07395,-0.18357 0.145686,-0.0361 0.159405,0.3277 0.0352,0.9329 0.27544,1.20116 1.4059,1.56967 0.5457,0.1779 0.99218,0.43101 0.99218,0.56247 0,0.13146 0.30285,0.31503 0.67299,0.40793 1.0359,0.26 0.62292,0.72376 -0.66495,0.7467 -1.59701,0.0284 -1.6367,0.55085 -0.0941,1.23909 0.7022,0.31331 1.45532,0.66631 1.6736,0.78445 0.79962,0.43281 2.63702,0.2428 4.0932,-0.42328 z"
id="path23" />
<path
style="fill:#3e1183"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.366006,15.4761 c 15.89462,-3.74748 15.81678,-27.27914 -0.10245,-30.97106 -3.66085,-0.84901 -3.93751,-0.66215 -3.93751,2.65929 0,2.90705 0,2.90705 1.77061,3.22795 10.87883,1.97168 10.87646,17.24705 -0.003,19.21541 -1.76762,0.31981 -1.76762,0.31981 -1.84392,2.944 -0.10752,3.69806 0.1273,3.86489 4.11626,2.92441 z m -0.78604,-8.90964 c 0.24763,-0.20437 0.7855,-0.53958 1.19525,-0.74492 5.87071,-2.94195 2.89243,-12.67278 -3.95592,-12.92505 -5.17486,-0.19062 -10.391094,7.3426 -6.674669,9.63948 0.12556,0.0776 0.22829,0.34344 0.22829,0.59076 0,0.40818 2.379969,2.74316 3.398769,3.3345 1.26691,0.73536 4.96361,0.80234 5.80828,0.10523 z"
id="path22" />
<path
style="fill:#42147c"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.366006,15.4761 c 15.89462,-3.74748 15.81678,-27.27914 -0.10245,-30.97106 -3.66085,-0.84901 -3.93751,-0.66215 -3.93751,2.65929 0,2.90705 0,2.90705 1.77061,3.22795 10.87883,1.97168 10.87646,17.24705 -0.003,19.21541 -1.76762,0.31981 -1.76762,0.31981 -1.84392,2.944 -0.10752,3.69806 0.1273,3.86489 4.11626,2.92441 z m -0.0311,-9.30982 c 7.73143,-5.25653 0.58384,-17.36074 -7.39581,-12.52457 -3.525408,2.13662 -5.177406,10.59162 -2.06947,10.59162 0.143765,0 0.332746,0.22482 0.419957,0.4996 0.766453,2.41487 6.309703,3.29328 9.045323,1.43335 z"
id="path21" />
<path
style="fill:#3b434a"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.366006,15.4761 c 15.89462,-3.74748 15.81678,-27.27914 -0.10245,-30.97106 -3.66085,-0.84901 -3.93751,-0.66215 -3.93751,2.65929 0,2.90705 0,2.90705 1.77061,3.22795 10.87883,1.97168 10.87646,17.24705 -0.003,19.21541 -1.76762,0.31981 -1.76762,0.31981 -1.84392,2.944 -0.10752,3.69806 0.1273,3.86489 4.11626,2.92441 z m 0.0611,-9.32279 c 4.2856,-2.76759 4.66287,-8.90736 0.73719,-11.997 -3.01632,-2.37393 -7.59106,-2.01617 -10.051448,0.78605 -5.512382,6.27826 2.331988,15.72 9.314258,11.21095 z"
id="path20" />
<path
style="fill:#3a1476"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 31.220836,15.3103 c 16.06601,-5.08807 14.14659,-28.86393 -2.51354,-31.13512 -3.37362,-0.45991 -4.01424,5.58318 -0.66146,6.2397 10.80408,2.11559 10.9476,17.34988 0.17996,19.10236 -2.09373,0.34076 -2.03205,0.23622 -2.03205,3.44355 0,2.52626 0.0562,2.88683 0.46303,2.96946 0.61751,0.12544 3.40674,-0.25343 4.56406,-0.61995 z m -0.79375,-9.15699 c 4.2856,-2.76759 4.66287,-8.90736 0.73719,-11.997 -3.01632,-2.37393 -7.59106,-2.01617 -10.051448,0.78605 -5.512382,6.27826 2.331988,15.72 9.314258,11.21095 z"
id="path19" />
<path
style="fill:#343c44"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 31.220836,15.3103 c 16.06601,-5.08807 14.14659,-28.86393 -2.51354,-31.13512 -3.37362,-0.45991 -4.01424,5.58318 -0.66146,6.2397 10.80408,2.11559 10.9476,17.34988 0.17996,19.10236 -2.09373,0.34076 -2.03205,0.23622 -2.03205,3.44355 0,2.52626 0.0562,2.88683 0.46303,2.96946 0.61751,0.12544 3.40674,-0.25343 4.56406,-0.61995 z m -3.43209,-7.88009 c 8.8917,-1.45672 8.0523,-14.46478 -0.95487,-14.7976 -9.812266,-0.36256 -10.54058,13.785 -0.77242,15.00421 0.14552,0.0182 0.9228,-0.0748 1.72729,-0.20661 z"
id="path18" />
<path
style="fill:#341668"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.423206,15.75756 c 17.24379,-3.07487 17.15306,-28.51178 -0.11245,-31.52593 -3.18351,-0.55577 -3.11701,-0.61577 -3.11701,2.8123 0,3.22111 0.11819,3.43107 1.93144,3.43107 5.51852,0 9.87003,8.05348 7.29102,13.49375 -1.35476,2.85779 -4.84413,5.5495 -7.20748,5.55986 -2.02366,0.009 -2.01498,-0.005 -2.01498,3.31249 0,3.65059 -0.14635,3.51843 3.22946,2.91646 z m -1.63446,-8.32735 c 8.8917,-1.45672 8.0523,-14.46478 -0.95487,-14.7976 -9.812266,-0.36256 -10.54058,13.785 -0.77242,15.00421 0.14552,0.0182 0.9228,-0.0748 1.72729,-0.20661 z"
id="path17" />
<path
style="fill:#2d1662"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.423206,15.75756 c 17.24379,-3.07487 17.15306,-28.51178 -0.11245,-31.52593 -3.18351,-0.55577 -3.11701,-0.61577 -3.11701,2.8123 0,3.22111 0.11819,3.43107 1.93144,3.43107 5.51852,0 9.87003,8.05348 7.29102,13.49375 -1.35476,2.85779 -4.84413,5.5495 -7.20748,5.55986 -2.02366,0.009 -2.01498,-0.005 -2.01498,3.31249 0,3.65059 -0.14635,3.51843 3.22946,2.91646 z m 1.17258,-9.26469 c 3.34742,-2.22256 4.58477,-6.99627 2.66151,-10.26815 -3.9866,-6.78207 -14.324889,-4.15237 -14.324889,3.64375 0,6.05497 6.748349,9.8878 11.663379,6.6244 z"
id="path16" />
<path
style="fill:#2d3740"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.423206,15.75756 c 17.24379,-3.07487 17.15306,-28.51178 -0.11245,-31.52593 -3.18351,-0.55577 -3.11701,-0.61577 -3.11701,2.8123 0,3.22111 0.11819,3.43107 1.93144,3.43107 5.51852,0 9.87003,8.05348 7.29102,13.49375 -1.35476,2.85779 -4.84413,5.5495 -7.20748,5.55986 -2.02366,0.009 -2.01498,-0.005 -2.01498,3.31249 0,3.65059 -0.14635,3.51843 3.22946,2.91646 z m -1.24508,-8.18419 c 7.66284,-1.6679 8.05598,-13.11403 0.51564,-15.01271 -10.176633,-2.56251 -13.986655,11.82063 -3.96961,14.98559 1.38426,0.43736 1.56276,0.43876 3.45397,0.0271 z"
id="path15" />
<path
style="fill:#31165c"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.543916,15.74619 c 16.34223,-3.1001 17.40193,-26.68872 1.40103,-31.18666 -4.59143,-1.29068 -5.11658,-0.98667 -4.9742,2.87968 0.10576,2.87215 0.0614,2.80193 1.93238,3.05584 10.94185,1.48484 10.94185,17.52506 0,19.0099 -1.82652,0.24786 -1.71464,0.0795 -1.88425,2.83554 -0.2405,3.90787 -0.057,4.08519 3.52504,3.4057 z m -1.36579,-8.17282 c 7.66284,-1.6679 8.05598,-13.11403 0.51564,-15.01271 -10.176633,-2.56251 -13.986655,11.82063 -3.96961,14.98559 1.38426,0.43736 1.56276,0.43876 3.45397,0.0271 z"
id="path14" />
<path
style="fill:#2a1756"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.543916,15.74619 c 16.34223,-3.1001 17.40193,-26.68872 1.40103,-31.18666 -4.59143,-1.29068 -5.11658,-0.98667 -4.9742,2.87968 0.10576,2.87215 0.0614,2.80193 1.93238,3.05584 10.94185,1.48484 10.94185,17.52506 0,19.0099 -1.82652,0.24786 -1.71464,0.0795 -1.88425,2.83554 -0.2405,3.90787 -0.057,4.08519 3.52504,3.4057 z m -1.61282,-8.0982 c 9.78396,-1.80424 7.79997,-15.78601 -2.16632,-15.26672 -8.51141,0.44348 -9.519336,12.88045 -1.22751,15.14634 1.6667,0.45546 1.59127,0.45278 3.39383,0.12038 z"
id="path13" />
<path
style="fill:#2a333a"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.543916,15.74619 c 16.34223,-3.1001 17.40193,-26.68872 1.40103,-31.18666 -4.59143,-1.29068 -5.11658,-0.98667 -4.9742,2.87968 0.10576,2.87215 0.0614,2.80193 1.93238,3.05584 10.94185,1.48484 10.94185,17.52506 0,19.0099 -1.82652,0.24786 -1.71464,0.0795 -1.88425,2.83554 -0.2405,3.90787 -0.057,4.08519 3.52504,3.4057 z m -0.92396,-8.04695 c 6.04642,-1.40499 7.7913,-10.01727 2.83016,-13.96898 -2.12922,-1.696 -6.08287,-2.12436 -8.43137,-0.91351 -8.49181,4.37828 -3.722984,17.04914 5.60121,14.88249 z"
id="path12" />
<path
style="fill:#232c35"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.859896,15.7507 c 17.30475,-3.64016 16.51448,-29.1338 -0.98217,-31.68396 -2.883,-0.42021 -2.94856,-0.3539 -2.94856,2.98217 0,3.04481 0.13939,3.27488 2.12676,3.51025 10.57039,1.25191 10.53045,17.71792 -0.0458,18.87416 -1.91948,0.20984 -2.08098,0.48371 -2.08098,3.52891 0,3.449 0.18084,3.57729 3.93073,2.78847 z m -1.23994,-8.05146 c 6.04642,-1.40499 7.7913,-10.01727 2.83016,-13.96898 -2.12922,-1.696 -6.08287,-2.12436 -8.43137,-0.91351 -8.49181,4.37828 -3.722984,17.04914 5.60121,14.88249 z"
id="path11" />
<path
style="fill:#231847"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.951036,15.85116 c 16.60072,-3.41489 16.60072,-28.28743 0,-31.70233 -3.79519,-0.7807 -4.02187,-0.6037 -4.02187,3.14041 0,2.95267 0.0485,3.03337 1.98438,3.30382 10.69337,1.4939 10.67521,17.43867 -0.0215,18.83513 -1.93073,0.25206 -1.96292,0.30986 -1.96292,3.52469 0,3.53168 0.20935,3.68255 4.02187,2.89828 z m -1.33108,-8.15192 c 6.04642,-1.40499 7.7913,-10.01727 2.83016,-13.96898 -2.12922,-1.696 -6.08287,-2.12436 -8.43137,-0.91351 -8.49181,4.37828 -3.722984,17.04914 5.60121,14.88249 z"
id="path10" />
<path
style="fill:#1d1944"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.951036,15.85116 c 16.60072,-3.41489 16.60072,-28.28743 0,-31.70233 -3.79519,-0.7807 -4.02187,-0.6037 -4.02187,3.14041 0,2.95267 0.0485,3.03337 1.98438,3.30382 10.69337,1.4939 10.67521,17.43867 -0.0215,18.83513 -1.93073,0.25206 -1.96292,0.30986 -1.96292,3.52469 0,3.53168 0.20935,3.68255 4.02187,2.89828 z m -0.61948,-8.2144 c 8.44939,-3.21246 6.16875,-15.59042 -2.87983,-15.62993 -8.534132,-0.0373 -11.168811,13.85701 -2.94816,15.5475 0.38819,0.0798 1.063,0.25114 1.49956,0.38068 0.87595,0.25993 3.29953,0.0929 4.32843,-0.29825 z"
id="path9" />
<path
style="fill:#21193b"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.951036,15.85116 c 16.60072,-3.41489 16.60072,-28.28743 0,-31.70233 -3.79519,-0.7807 -4.02187,-0.6037 -4.02187,3.14041 0,2.95267 0.0485,3.03337 1.98438,3.30382 10.69337,1.4939 10.67521,17.43867 -0.0215,18.83513 -1.93073,0.25206 -1.96292,0.30986 -1.96292,3.52469 0,3.53168 0.20935,3.68255 4.02187,2.89828 z m -1.15099,-8.03217 c 0.77861,-0.20724 1.61227,-0.55473 1.85256,-0.77219 0.2403,-0.21746 0.76624,-0.5206 1.16877,-0.67364 0.40664,-0.15461 0.85551,-0.60348 1.01012,-1.01012 0.15304,-0.40253 0.45025,-0.92192 0.66047,-1.15421 4.99549,-5.51996 -3.64377,-14.98729 -10.60243,-11.61866 -8.893121,4.30509 -3.664361,17.77734 5.91051,15.22882 z"
id="path8" />
<path
style="fill:#1b2632"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 29.951036,15.85116 c 16.60072,-3.41489 16.60072,-28.28743 0,-31.70233 -3.79519,-0.7807 -4.02187,-0.6037 -4.02187,3.14041 0,2.95267 0.0485,3.03337 1.98438,3.30382 10.69337,1.4939 10.67521,17.43867 -0.0215,18.83513 -1.93073,0.25206 -1.96292,0.30986 -1.96292,3.52469 0,3.53168 0.20935,3.68255 4.02187,2.89828 z m -0.28702,-8.28299 c 3.93579,-1.78494 5.66092,-5.34166 4.74076,-9.77405 -1.20535,-5.80613 -9.55261,-8.01217 -13.764694,-3.63777 -6.096127,6.33105 1.089254,17.01033 9.023934,13.41182 z"
id="path7" />
<path
style="fill:#1b1a3b"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.366006,15.74068 c 17.25071,-4.0672 15.35908,-31.49245 -2.18788,-31.72047 -3.094,-0.0402 -3.39298,6.05579 -0.32478,6.62206 10.79317,1.99201 10.92227,16.91064 0.16133,18.64364 -2.20766,0.35553 -2.08551,0.14949 -2.08551,3.5179 0,3.73768 0.27322,3.91853 4.43684,2.93687 z m -0.70199,-8.17251 c 3.93579,-1.78494 5.66092,-5.34166 4.74076,-9.77405 -1.20535,-5.80613 -9.55261,-8.01217 -13.764694,-3.63777 -6.096127,6.33105 1.089254,17.01033 9.023934,13.41182 z"
id="path6" />
<path
style="fill:#1a232b"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 30.366006,15.74068 c 17.25071,-4.0672 15.35908,-31.49245 -2.18788,-31.72047 -3.094,-0.0402 -3.39298,6.05579 -0.32478,6.62206 10.79317,1.99201 10.92227,16.91064 0.16133,18.64364 -2.20766,0.35553 -2.08551,0.14949 -2.08551,3.5179 0,3.73768 0.27322,3.91853 4.43684,2.93687 z m -1.26184,-7.82578 c 0.65484,-0.15084 1.42875,-0.49629 1.71979,-0.76767 0.29104,-0.27138 0.84958,-0.57293 1.24119,-0.6701 0.49826,-0.12363 0.76092,-0.39931 0.87489,-0.91822 0.0896,-0.40785 0.37896,-0.9371 0.64307,-1.17611 5.81402,-5.26162 -4.69744,-16.021 -11.36074,-11.6287 -8.349044,5.50351 -2.938618,17.42282 6.8818,15.1608 z"
id="path5" />
<path
style="fill:#1a1b33"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 28.921196,16.11484 c 18.17809,-2.76404 18.38535,-29.12158 0.25295,-32.16802 -3.39807,-0.57092 -3.24498,-0.72092 -3.24498,3.17951 0,3.58891 0.0155,3.61325 2.2987,3.61325 10.48774,0 9.72596,16.88037 -0.84349,18.69107 -1.32292,0.22664 -1.32292,0.22664 -1.3982,3.25317 -0.10371,4.16994 -0.31329,3.92494 2.93502,3.43102 z m 0.18297,-8.19994 c 0.65484,-0.15084 1.42875,-0.49629 1.71979,-0.76767 0.29104,-0.27138 0.84958,-0.57293 1.24119,-0.6701 0.49826,-0.12363 0.76092,-0.39931 0.87489,-0.91822 0.0896,-0.40785 0.37896,-0.9371 0.64307,-1.17611 5.81402,-5.26162 -4.69744,-16.021 -11.36074,-11.6287 -8.349044,5.50351 -2.938618,17.42282 6.8818,15.1608 z"
id="path4" />
<path
style="fill:#151d32"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 28.921196,16.11484 c 18.17809,-2.76404 18.38535,-29.12158 0.25295,-32.16802 -3.39807,-0.57092 -3.24498,-0.72092 -3.24498,3.17951 0,3.58891 0.0155,3.61325 2.2987,3.61325 10.48774,0 9.72596,16.88037 -0.84349,18.69107 -1.32292,0.22664 -1.32292,0.22664 -1.3982,3.25317 -0.10371,4.16994 -0.31329,3.92494 2.93502,3.43102 z m 0.18174,-8.15655 c 0.89837,-0.27961 1.83171,-0.68403 2.07409,-0.89873 0.24238,-0.21469 0.66912,-0.43241 0.94833,-0.48381 0.54092,-0.0996 1.69192,-2.0961 2.39068,-4.14686 0.58752,-1.72428 0.52374,-4.42676 -0.1354,-5.73619 -1.07008,-2.12581 -1.33645,-2.48813 -2.23958,-3.0463 -0.50612,-0.3128 -0.92022,-0.667 -0.92022,-0.78711 0,-1.37414 -7.53111,-1.53623 -9.08557,-0.19554 -0.37583,0.32416 -0.992361,0.8275 -1.370061,1.11854 -3.847064,2.9644 -3.631984,9.52501 0.415303,12.66802 2.540738,1.97305 4.952908,2.4322 7.922428,1.50798 z"
id="path3" />
<path
style="fill:#181d2b"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 28.921196,16.11484 c 18.17809,-2.76404 18.38535,-29.12158 0.25295,-32.16802 -3.3994,-0.57114 -3.24498,-0.72325 -3.24498,3.19637 0,3.29938 0,3.29938 1.25677,3.45883 1.71999,0.21822 3.13356,0.66423 3.70763,1.16983 0.26412,0.23262 0.65417,0.46208 0.86677,0.50992 0.47302,0.10644 1.31258,0.83859 1.31258,1.14465 0,0.47791 -1.11446,0.19028 -1.69662,-0.43788 -0.33716,-0.3638 -0.78943,-0.66146 -1.00505,-0.66146 -0.21562,0 -0.78349,-0.19529 -1.26195,-0.43397 -1.20405,-0.60066 -5.24786,-0.33245 -6.54734,0.43426 -0.493,0.29088 -1.207611,0.52888 -1.588017,0.52888 -0.909746,0 -1.659537,0.70627 -1.658621,1.56236 4.04e-4,0.37763 -0.228562,1.16284 -0.508813,1.74493 -1.968545,4.08867 -0.584037,8.94244 3.148041,11.03634 0.80359,0.45085 1.64784,0.97876 1.8761,1.17312 0.33176,0.28249 0.86253,0.29889 2.64583,0.0817 3.94214,-0.48002 4.16823,-0.53846 4.59325,-1.18712 0.22227,-0.33923 0.72727,-0.6547 1.12222,-0.70105 0.55669,-0.0653 0.76715,-0.2749 0.93632,-0.93232 0.12002,-0.46642 0.43795,-1.0022 0.7065,-1.19063 0.5257,-0.36884 0.71702,-1.20663 1.07403,-4.70325 0.24596,-2.40908 0.0679,-3.04187 -1.36004,-4.83432 -0.68645,-0.86165 -0.3349,-1.59599 0.38264,-0.79928 4.50752,5.00483 0.59261,14.97729 -5.95925,15.18002 -2.14321,0.0663 -2.11229,0.0133 -2.06021,3.53229 0.0603,4.078 -0.20732,3.78485 3.00926,3.29576 z"
id="path2" />
<path
style="fill:#152029"
d="m 78.592194,148.35708 c 0,-26.45834 0,-26.45834 26.458336,-26.45834 26.45833,0 26.45833,0 26.45833,26.45834 0,26.45833 0,26.45833 -26.45833,26.45833 -26.458336,0 -26.458336,0 -26.458336,-26.45833 z m 28.921196,16.11484 c 18.18629,-2.76529 18.39353,-29.12021 0.25295,-32.16802 -3.39807,-0.57092 -3.24498,-0.72092 -3.24498,3.17951 0,3.58587 0.0173,3.61325 2.28492,3.61325 0.82474,0 3.10209,1.0733 2.82449,1.33116 -0.11804,0.10964 -1.20847,-0.0474 -2.42317,-0.34894 -1.92966,-0.47905 -2.39944,-0.50887 -3.7201,-0.23609 -0.83134,0.17171 -1.7834,0.3122 -2.11569,0.3122 -0.38164,0 -0.65512,0.1949 -0.74254,0.52917 -0.10028,0.38348 -0.36089,0.52917 -0.94658,0.52917 -1.050323,0 -1.775913,0.67678 -1.775913,1.65646 0,0.44672 -0.282961,1.11697 -0.661458,1.56679 -0.428962,0.50979 -0.661458,1.11057 -0.661458,1.70923 0,0.50773 -0.126877,1.16021 -0.281948,1.44996 -0.214065,0.39999 -0.146657,0.98504 0.279975,2.43 1.020988,3.45799 1.532738,4.12124 4.734872,6.13652 0.23122,0.14552 0.69796,0.46684 1.03719,0.71404 0.46692,0.34025 0.77723,0.38846 1.27704,0.19844 0.36313,-0.13807 1.21803,-0.25628 1.89978,-0.2627 1.55431,-0.0147 3.56401,-0.53414 4.19668,-1.08482 0.26535,-0.23096 0.79023,-0.4928 1.1664,-0.58185 0.51626,-0.12221 0.76316,-0.42627 1.007,-1.24015 0.17768,-0.59303 0.49498,-1.14421 0.70511,-1.22484 0.21014,-0.0806 0.38207,-0.42378 0.38207,-0.76254 0,-0.33876 0.13249,-0.9511 0.29442,-1.36076 0.77618,-1.96362 0.56277,-4.87643 -0.46703,-6.37425 -0.9283,-1.35021 -1.02267,-1.85731 -0.29355,-1.57752 5.25644,2.01708 0.21863,15.00124 -5.82524,15.01363 -1.01648,0.002 -2.70444,0.50434 -2.70444,0.80471 0,0.13868 0.11907,0.25215 0.26459,0.25215 0.1601,0 0.26458,1.13183 0.26458,2.86632 0,3.6251 -0.21249,3.41703 2.99203,2.92977 z"
id="path1" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 51 KiB

298
icons/hop.svg Normal file
View File

@ -0,0 +1,298 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
id="Layer_1"
xml:space="preserve"
version="1.0"
viewBox="0 0 511.99999 418.54757"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
sodipodi:docname="hop.svg"
width="512"
height="418.54758"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs77" /><sodipodi:namedview
id="namedview75"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="2"
inkscape:cx="66.5"
inkscape:cy="269.75"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<g
id="g236"
transform="matrix(1.4002461,0,0,1.4002461,1.5922901e-6,0)">
<g
id="g238">
<g
id="g240">
<path
id="path242"
style="fill:#8bc53f;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 1.5,236.16 c -0.004,-12.97 10.514,-23.49 23.49,-23.5 12.977,0 23.496,10.53 23.493,23.5 z" />
<g
id="g244">
<path
id="path246"
style="fill:#8bc53f"
d="m 32.152,229.69 c 0,0 19.769,-113.59 23.814,-137.78 3.201,-19.139 15.393,-18.975 22.186,-13.222 17.223,14.586 51.998,61.002 51.998,61.002 l 18,-14 c 0,0 -55.121634,-49.760407 -71.080634,-65.720407 C 67.466366,50.366593 51.322,58.771 44.966,77.914 37.237,101.19 16.152,215.694 16.152,215.694 l 16,14 z"
sodipodi:nodetypes="cccccccccc" />
<g
id="g248">
<path
id="path250"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 14.152,220.69 c 0,0 24.769,-112.59 28.814,-136.78 3.201,-19.139 19.686,-38.722 36.186,-22.222 15.959,15.959 68.998,64.002 68.998,64.002" />
<path
id="path252"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="M 34.152,219.69 C 49.121,121.36 50.043,126.36 54.966,96.91 58.932,73.2 68.554,70.091 83.152,84.688 99.111,100.65 131.15,139.69 131.15,139.69" />
</g>
</g>
</g>
<g
id="g254">
<path
id="path256"
style="fill:#8bc53f;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 364.15,236.16 c 0.01,-12.97 -10.51,-23.49 -23.49,-23.5 -12.98,0 -23.49,10.53 -23.49,23.5 z" />
<g
id="g258">
<path
id="path260"
style="fill:#8bc53f"
d="m 333.5,229.69 c 0,0 -19.77,-113.59 -23.81,-137.78 -3.21,-19.139 -15.4,-18.975 -22.19,-13.222 -17.22,14.586 -52,61.002 -52,61.002 l -18,-14 c 0,0 55.41772,-51.621245 71.37772,-67.581245 9.6,-9.603 25.45228,0.662245 31.81228,19.805245 7.73,23.276 28.81,137.78 28.81,137.78 l -16,14 z"
sodipodi:nodetypes="cccccccccc" />
<g
id="g262">
<path
id="path264"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 351.5,220.69 c 0,0 -24.77,-112.59 -28.81,-136.78 C 319.48,64.771 303,45.188 286.5,61.688 c -15.96,15.959 -69,64.002 -69,64.002" />
<path
id="path266"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="M 331.5,219.69 C 316.53,121.36 315.61,126.36 310.69,96.91 306.72,73.2 297.1,70.091 282.5,84.688 c -15.96,15.962 -48,55.002 -48,55.002" />
</g>
</g>
</g>
</g>
<g
id="g268">
<g
id="g270">
<path
id="path272"
style="fill:#f7a03a;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 105.9,190.62 c -0.01,42.44 34.39,76.86 76.83,76.86 42.45,0 76.85,-34.41 76.85,-76.86 z" />
<path
id="path274"
style="fill:#d37d1a;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 105.9,190.62 c -0.01,25.67 34.39,63.07 76.83,63.07 42.45,0 76.85,-37.4 76.85,-63.07 z" />
<path
id="path276"
style="display:none;fill:#b06815;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 105.9,190.62 c -0.01,17.88 34.39,48.97 76.83,48.97 42.45,0 76.85,-31.08 76.85,-48.97 z" />
</g>
<g
id="g278">
<path
id="path280"
style="fill:#8bc53f;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 182.94,113.83 c -42.56,0 -77.05,34.57 -77.04,77.19 h 77.04 z" />
<path
id="path282"
style="fill:#8bc53f;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 259.75,191.02 c 0.01,-42.63 -34.48,-77.19 -77.03,-77.19 v 77.19 z" />
</g>
</g>
<g
id="g284">
<g
id="g286">
<path
id="path288"
style="fill:#8bc53f;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 36.584,267.68 c -0.004,-12.97 10.515,-23.5 23.49,-23.5 12.978,0 23.496,10.52 23.493,23.5 z" />
<g
id="g290">
<path
id="path292"
style="fill:#8bc53f"
d="M 71.655,251.69 71.47,147.91 c 2.303,-27.62 7.436,-35.72 25.186,-19.22 16.534,15.36 23.004,32 23.004,32 l 2,-23 c 0,0 -11.47,-9.64 -28.004,-25 -17.75,-16.503 -29.883,-7.4 -32.186,20.22 l -7.814,115.78 z" />
<g
id="g294">
<path
id="path296"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 53.655,249.69 7.814,-116.78 c 2.303,-27.62 14.436,-36.722 32.186,-20.22 16.535,15.36 28.005,25 28.005,25" />
<path
id="path298"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="M 71.655,251.69 71.47,147.91 c 2.303,-27.62 7.436,-35.72 25.186,-19.22 16.534,15.36 22.004,34 22.004,34" />
</g>
</g>
</g>
<g
id="g300">
<path
id="path302"
style="fill:#8bc53f;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 329.07,267.68 c 0,-12.97 -10.52,-23.5 -23.49,-23.5 -12.98,0 -23.5,10.52 -23.5,23.5 z" />
<g
id="g304">
<path
id="path306"
style="fill:#8bc53f"
d="m 294,251.69 0.18,-103.78 c -2.3,-27.62 -7.43,-35.72 -25.18,-19.22 -16.53,15.36 -23,32 -23,32 l -2,-23 c 0,0 11.47,-9.64 28,-25 17.75,-16.502 29.88,-7.4 32.18,20.22 L 312,248.69 Z" />
<g
id="g308">
<path
id="path310"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 312,249.69 -7.82,-116.78 c -2.3,-27.62 -14.43,-36.722 -32.18,-20.22 -16.53,15.36 -28,25 -28,25" />
<path
id="path312"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 294,251.69 0.18,-103.78 c -2.3,-27.62 -7.43,-35.72 -25.18,-19.22 -16.53,15.36 -22,34 -22,34" />
</g>
</g>
</g>
</g>
<g
id="g314">
<path
id="path2383"
style="fill:#8bc53f;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 240.49,185.01 c 0.01,31.85 -25.81,57.68 -57.67,57.68 -31.85,0 -57.67,-25.83 -57.66,-57.69 -0.01,-31.85 25.82,-57.68 57.67,-57.68 31.85,0.01 57.67,25.84 57.66,57.69 z" />
<g
id="g317">
<g
id="g319">
<g
id="g321">
<path
id="path323"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 171.09,141.5 c 0,0 14,-135.5 -110.5,-135.5" />
<circle
id="circle325"
cy="6"
cx="60.591"
r="6" />
</g>
<g
id="g327">
<path
id="path329"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 194.56,143.69 c 0,0 -14,-135.5 110.5,-135.5" />
<circle
id="circle331"
cy="8.1870003"
cx="305.06"
r="6" />
</g>
</g>
<path
id="path333"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 145.2,193.86 c -0.01,20.78 16.84,37.63 37.62,37.63 20.79,0.01 37.64,-16.85 37.63,-37.63" />
<g
id="g335">
<g
id="g337">
<path
id="path3159_1_"
style="fill:#ffffff;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 246.72,146.52 c 0.01,16.48 -13.35,29.85 -29.84,29.85 -16.49,0 -29.85,-13.37 -29.84,-29.85 -0.01,-16.49 13.36,-29.85 29.84,-29.85 16.49,0 29.85,13.37 29.84,29.85 z" />
<path
id="path3161_1_"
d="m 220.2,151.79 c 0,5.49 -4.46,9.95 -9.95,9.95 -5.49,0 -9.95,-4.46 -9.95,-9.95 0,-5.5 4.46,-9.95 9.95,-9.95 5.5,0 9.95,4.45 9.95,9.95 z" />
</g>
<g
id="g341">
<path
id="path3157_1_"
style="fill:#ffffff;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 178.61,146.52 c 0.01,16.48 -13.35,29.85 -29.84,29.85 -16.49,0 -29.85,-13.37 -29.84,-29.86 -0.01,-16.48 13.36,-29.85 29.84,-29.85 16.49,0 29.85,13.37 29.84,29.86 z" />
<path
id="path3163_1_"
d="m 166.18,151.78 c 0,5.5 -4.45,9.95 -9.95,9.95 -5.49,0 -9.95,-4.45 -9.94,-9.95 -0.01,-5.49 4.45,-9.95 9.94,-9.95 5.5,0 9.95,4.46 9.95,9.95 z" />
</g>
</g>
</g>
</g>
<g
id="g345">
<g
id="g347">
<path
id="path349"
style="fill:#8bc53f;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 89.5,297.41 c -0.004,-12.97 10.51,-23.49 23.49,-23.49 12.98,0 23.5,10.52 23.49,23.49 z" />
<path
id="path351"
style="fill:#8bc53f"
d="m 119.35,279.79 -18.07,-75.07 c -10.25,-39.95 -1.19,-48.26 12.07,-21.93 l 4,-13 C 98.655,138.15 76.405,141.1 82.276,168.72 l 22.074,115.07 z" />
<g
id="g353">
<path
id="path355"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="M 104.35,283.79 82.276,168.72 c -5.395,-25.38 11.307,-32.32 31.794,-5.6 5.96,7.78 10.96,7.65 10.96,7.65" />
<path
id="path357"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 119.35,279.79 -18.07,-75.07 c -9.672,-36.09 -4.625,-46.53 8.68,-25.25 1.47,2.35 1.2,7.68 1.2,7.68" />
</g>
</g>
<g
id="g359">
<path
id="path361"
style="fill:#8bc53f;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 276.15,297.41 c 0.01,-12.97 -10.51,-23.49 -23.49,-23.49 -12.98,0 -23.49,10.52 -23.49,23.49 z" />
<path
id="path363"
style="fill:#8bc53f"
d="m 246.3,279.79 18.08,-75.07 c 10.24,-39.95 1.18,-48.26 -12.08,-21.93 l -4,-13 c 18.7,-31.64 40.95,-28.69 35.08,-1.07 L 261.3,283.79 Z" />
<g
id="g365">
<path
id="path367"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 261.3,283.79 22.08,-115.07 c 5.39,-25.38 -11.31,-32.32 -31.8,-5.6 -5.96,7.78 -10.96,7.65 -10.96,7.65" />
<path
id="path369"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
d="m 246.3,279.79 18.08,-75.07 c 9.66,-36.09 4.62,-46.53 -8.69,-25.25 -1.47,2.35 -1.19,7.68 -1.19,7.68" />
</g>
</g>
</g>
</g>
<metadata
id="metadata72"><rdf:RDF><cc:Work><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><cc:license
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" /><dc:publisher><cc:Agent
rdf:about="http://openclipart.org/"><dc:title>Openclipart</dc:title></cc:Agent></dc:publisher><dc:date>2009-11-24T19:25:36</dc:date><dc:description>Cartoon Grasshopper in the style of Lemmling.</dc:description><dc:source>https://openclipart.org/detail/28477/cartoon-grasshopper-by-studiofibonacci</dc:source><dc:creator><cc:Agent><dc:title>StudioFibonacci</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>bug</rdf:li><rdf:li>cartoon</rdf:li><rdf:li>cricket</rdf:li><rdf:li>grasshopper</rdf:li><rdf:li>insect</rdf:li></rdf:Bag></dc:subject></cc:Work><cc:License
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /></cc:License></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 12 KiB

69
icons/hyperbola.svg Normal file
View File

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="503.01755"
height="512"
version="1.1"
id="svg14"
sodipodi:docname="hyperbola.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs18" />
<sodipodi:namedview
id="namedview16"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="470.65292"
inkscape:cy="244.85682"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg14" />
<rect
opacity="0.2"
width="491.228"
height="491.228"
x="5.8947716"
y="14.771961"
ry="70.17543"
id="rect2"
style="stroke-width:8.77193" />
<rect
style="fill:#4f4f4f;stroke-width:8.77193"
width="491.228"
height="491.228"
x="5.8947716"
y="6.0000353"
ry="70.17543"
id="rect4" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="M 268.65858,83.421079 C 199.29016,245.52632 355.8144,296.3139 461.72667,87.447251 382.28809,154.85075 266.46559,229.20351 268.65858,83.421079 Z m 2.6213,150.613331 0.0342,0.0342 C 222.38248,234.22025 147.76947,286.31907 40.982485,431.96818 268.43962,263.19627 313.24081,299.15788 342.05495,432.10524 358.837,341.05261 341.61779,233.85896 271.27988,234.03441 Z"
id="path6" />
<path
fill="#ffffff"
style="opacity:0.1;stroke-width:8.77193"
d="m 76.070205,6.0000354 c -38.877192,0 -70.1754296,31.2982386 -70.1754296,70.1754296 v 8.771932 c 0,-38.877191 31.2982376,-70.175429 70.1754296,-70.175429 H 426.94734 c 38.87719,0 70.17542,31.298238 70.17542,70.175429 v -8.771932 c 0,-38.877191 -31.29823,-70.1754296 -70.17542,-70.1754296 z"
id="path8" />
<path
fill="#c0c0c0"
d="M 271.32102,225.29824 C 222.38937,225.44983 147.76947,277.54386 40.982485,423.19296 268.43962,254.42106 313.23251,290.38597 342.04665,423.3333 358.82872,332.28069 341.62402,225.08772 271.2861,225.26316 Z"
id="path10"
style="stroke-width:8.77193" />
<path
fill="#c0c0c0"
d="M 268.66137,74.645758 C 199.29297,236.75099 355.81925,287.54046 461.73152,78.673824 382.29293,146.07732 266.4684,220.42819 268.66137,74.645758 Z"
id="path12"
style="stroke-width:8.77193" />
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

4
icons/kali.svg Normal file
View File

@ -0,0 +1,4 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M269.443 151.449s-34.003-2.264-91.901 15.855c-59.004 18.462-92.467 44.631-92.467 44.631s87.943-49.102 187.206-51.892l-2.838-8.594Zm126.819 53.388 4.422-.291s-25.326-30.726-73.801-45.693c27.25 11.077 50.966 25.753 69.375 45.981l.004.003Zm7.234 12.767c.68-1.179 2.872 3.742 4.535 5.809.076.416.189.665-.775.465-.083-.423-.223-.544-.223-.544s-2.332-1.391-3.046-2.374c-.718-.982-.843-2.706-.491-3.356Zm59.488 146.264s5.375-61.725-91.598-75.955a315.264 315.264 0 0 0-43.558-3.231c-77.721 1.028-80.555-89.641-21.989-94.222 24.272-2.003 53.252 11.093 81.59 24.287-.105 3.519.038 6.648 2.351 9.536 2.313 2.891 11.187 6.043 14.026 7.672 2.834 1.625 11.924 7.404 17.495 14.653 1.209-2.26 11.293-8.825 11.293-8.825s-2.419.053-8.035-2.049c-5.624-2.101-12.295-8.458-12.454-8.825-.155-.366-.26-.945 1.055-1.209.994-.839-1.262-3.572-2.26-4.566-.998-1.001-7.673-12.343-7.827-12.608-.159-.264-.212-.525-.681-.839-1.474-.476-7.937.68-7.937.68s-9.939-4.879-13.364-15.401c.053 1.841-1.7 3.855 0 8.088-5.177-2.192-9.63-5.93-13.141-15.167-2.09 5.254 0 8.595 0 8.595s-12.2-3.409-14.154-14.664c-2.139 5.053 0 8.091 0 8.091s-19.887-10.378-52.938-10.529c-22.129-2.03-26.736-40.954-24.688-47.508 0 0-31.913-16.818-94.742-24.252-62.826-7.43-114.351-1.119-114.351-1.119s111.274-5.34 200.416 30.749c3.031 13.553 12.147 36.128 17.056 46.979-14.051 9.713-29.895 18.848-32.359 51.245-2.468 32.39 25.386 60.887 59.923 61.767 32.794 1.747 55.456 1.996 82.921 16.233 26.214 14.494 47.711 58.664 49.839 98.39 2.298-29.476-8.764-92.857-60.376-112.098 72.138 12.623 78.483 66.102 78.483 66.102h.004ZM267.739 146.604l-2.597-8.372s-42.828-7.604-100.416-3.514C107.139 138.814 49 158.97 49 158.97s118.965-29.933 218.735-12.366" fill="#000"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

65
icons/kaos.svg Normal file
View File

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg18"
sodipodi:docname="kaos.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs22" />
<sodipodi:namedview
id="namedview20"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.6697111"
inkscape:cx="545.00445"
inkscape:cy="235.66951"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg18" />
<path
style="opacity:0.2;stroke-width:8.62069"
d="m 320.42255,46.825358 c -8.86888,0.21381 -17.93767,1.22788 -27.12228,3.06398 -48.00362,9.59844 -81.5742,40.26438 -110.13795,74.680122 -1.26969,-8.11446 -3.15866,-16.30471 -7.70597,-24.915832 -10.48348,-19.85231 -37.53131,-35.56348 -58.72004,-35.58921 -27.2259,-0.0328 -43.94236,11.71169 -58.31626,24.30975 C 44.04616,100.97224 32.27093,116.77507 23.22167,135.68057 -6.1537006,197.05392 8.3349194,262.48539 30.25462,318.03745 52.17431,373.5895 84.18878,422.84968 109.23225,456.79164 a 51.692279,51.722334 0 0 0 89.27469,-50.63972 c -1.65,-3.95017 -1.94855,-6.44788 -3.43237,-10.20202 101.25869,-7.17333 140.51701,-17.24438 236.66369,31.44781 a 51.692279,51.722334 0 0 0 57.10485,-85.28619 C 446.68197,305.75093 381.02825,254.44498 304.10207,232.11154 c 21.18385,-12.42486 38.5566,-23.33765 69.1517,-41.01008 15.8431,-9.15026 30.42992,-19.96366 40.17865,-40.06736 9.74872,-20.10369 6.63531,-51.285072 -5.98977,-68.585852 -25.25019,-34.60156 -56.01171,-36.37043 -87.0201,-35.62289 z"
id="path2" />
<path
style="fill:#124364;stroke-width:8.62069"
d="m 320.42255,38.204668 c -8.86888,0.21382 -17.93767,1.22789 -27.12228,3.06398 -48.00362,9.59845 -81.5742,40.26438 -110.13795,74.680122 -1.26969,-8.11446 -3.15866,-16.304702 -7.70597,-24.915822 -10.48348,-19.85231 -37.53131,-35.56349 -58.72004,-35.58922 -27.2259,-0.0331 -43.94236,11.7117 -58.31626,24.30976 -14.37389,12.59807 -26.14912,28.400892 -35.19838,47.306402 -29.3753706,61.37334 -14.8867506,126.80481 7.03295,182.35688 21.91969,55.55204 53.93416,104.81222 78.97763,138.75419 a 51.692279,51.722334 0 0 0 89.27469,-50.63973 c -1.65,-3.95017 -1.94855,-6.44788 -3.43237,-10.20202 101.25869,-7.17333 140.51701,-17.24438 236.66369,31.44781 a 51.692279,51.722334 0 0 0 57.10485,-85.28619 C 446.68197,297.13025 381.02825,245.82428 304.10207,223.49085 c 21.18385,-12.42486 38.5566,-23.33765 69.1517,-41.01008 15.8431,-9.15026 30.42992,-19.96366 40.17865,-40.06735 9.74872,-20.10369 6.63531,-51.285072 -5.98977,-68.585862 -25.25019,-34.60155 -56.01171,-36.37043 -87.0201,-35.62289 z"
id="path4" />
<path
style="opacity:0.2;stroke-width:8.62069"
d="m 321.45008,98.430558 c -5.85579,0.14112 -11.98412,0.80198 -18.2516,2.054152 -89.7197,17.92927 -147.04132,153.1077 -170.79741,228.98707 63.94985,-106.65067 116.48679,-126.49613 214.81006,-183.257 42.18915,-24.35236 15.22954,-48.771832 -25.76105,-47.784222 z M 116.30463,115.67195 c -14.2867,-0.0172 -34.60814,16.61515 -46.87501,42.2279 -39.01498,81.46581 34.67222,205.29029 81.0547,268.11691 -47.0292,-112.52036 -31.59961,-165.65696 -18.42,-276.4682 2.82573,-23.76909 -4.64782,-33.86313 -15.75969,-33.87661 z m 124.09078,156.14897 c -17.69929,-0.75534 -34.75325,1.70328 -50.54552,8.38497 -47.07367,19.92379 -67.06708,68.14801 -12.02183,64.75619 112.26821,-6.9118 166.62869,-19.70143 277.14169,36.23384 C 405.76913,338.789 317.09227,275.09442 240.39541,271.82092 Z"
id="path6" />
<path
style="fill:#3eb9ff;stroke-width:8.62069"
d="M 454.96975,372.56849 C 394.41515,320.37536 274.07784,235.96413 189.85233,271.59968 c -47.07366,19.9238 -67.07167,68.12701 -12.02643,64.73519 112.26822,-6.9118 166.63085,-19.70164 277.14385,36.23362"
id="path8" />
<path
style="fill:#007ae0;stroke-width:8.62069"
d="m 132.38777,320.84434 c 23.75608,-75.87937 81.08336,-211.055 170.80306,-228.984272 50.13987,-10.0176 92.2492,17.896232 44.03302,45.727492 -98.32327,56.76086 -150.88624,76.60612 -214.83608,183.25678"
id="path10" />
<path
style="fill:#0055b2;stroke-width:8.62069"
d="M 150.48311,417.39607 C 104.10063,354.56946 30.40934,230.74627 69.42433,149.28046 c 21.80775,-45.53378 69.0825,-62.689572 62.62369,-8.36023 -13.17962,110.81124 -28.5941,163.95549 18.43509,276.47584"
id="path12" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.62069"
d="m 321.4501,89.809858 c -5.85579,0.14112 -11.98414,0.80198 -18.25162,2.05414 -89.7197,17.929272 -147.04132,153.107712 -170.79741,228.987082 2.13946,-3.56802 4.22207,-6.69642 6.33081,-10.05186 26.64364,-77.49826 81.52494,-193.73976 164.4666,-210.31453 6.26748,-1.252162 12.39583,-1.913032 18.25162,-2.054152 23.53563,-0.56705 42.36887,7.258592 46.20151,18.622042 4.81452,-15.8107 -17.08019,-27.944372 -46.20151,-27.242722 z M 116.30463,107.05123 c -14.2867,-0.0172 -34.60814,16.61516 -46.87501,42.22793 -7.7795,16.24409 -10.72211,34.25331 -10.60749,53.05427 0.77348,-15.68735 4.01886,-30.67611 10.60749,-44.43359 12.26687,-25.61276 32.58831,-42.24516 46.87501,-42.22791 8.66283,0.0105 15.02916,6.25439 16.11327,20.22158 1.20078,-20.06303 -5.84547,-28.82982 -16.11327,-28.84228 z m 124.09078,156.14899 c -17.69931,-0.75535 -34.75325,1.70328 -50.54552,8.38497 -29.6262,12.53919 -48.45047,36.26963 -44.66932,51.3032 3.16136,-14.40826 20.26168,-32.35206 44.66932,-42.68251 15.79227,-6.68169 32.84621,-9.14032 50.54552,-8.38497 65.05017,2.77641 138.47737,48.964 189.36894,88.81668 8.09442,3.57796 16.43394,7.49802 25.20541,11.93763 -49.20062,-42.40691 -137.87749,-106.1015 -214.57435,-109.375 z M 119.03226,284.5499 c -0.10601,4.78652 -0.11606,9.56188 -0.0337,14.34536 0.0136,-1.9081 -0.009,-3.81397 0.0337,-5.72467 0.93386,34.26005 7.16948,69.13029 23.60587,113.02869 2.64815,3.81048 5.37167,7.84499 7.84619,11.19679 -22.37718,-53.53881 -30.38186,-93.58444 -31.45206,-132.84617 z"
id="path14" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:8.62069"
d="m 332.02391,38.102558 c -3.85805,-0.0444 -7.72483,0.008 -11.60089,0.10102 -8.86888,0.21381 -17.94026,1.22829 -27.12486,3.06438 -48.00362,9.59846 -81.56892,40.25762 -110.13268,74.673362 -1.26969,-8.11446 -3.16416,-16.291232 -7.71147,-24.902352 -10.48349,-19.85231 -37.52289,-35.56827 -58.71162,-35.59401 -27.22589,-0.0332 -43.95045,11.71496 -58.32435,24.31303 -14.3739,12.59808 -26.14068,28.390442 -35.18992,47.295932 -12.30226,25.70286 -16.8582406,52.12343 -16.4500306,78.22604 0.64726,-23.2832 5.5001406,-46.72799 16.4500306,-69.60534 9.04924,-18.9055 20.81602,-34.69787 35.18992,-47.295942 14.3739,-12.59806 31.09846,-24.34579 58.32435,-24.31303 21.18873,0.0258 48.22813,15.74171 58.71162,35.59402 4.54731,8.611122 6.44178,16.787882 7.71147,24.902342 28.56376,-34.415742 62.12906,-65.074912 110.13268,-74.673362 9.1846,-1.83609 18.25598,-2.85057 27.12486,-3.06438 31.0084,-0.74754 61.76491,1.02613 87.01509,35.62769 6.87352,9.41913 10.80569,22.950452 11.49987,36.570592 0.91669,-16.33517 -3.16774,-33.773352 -11.49987,-45.191282 -22.0939,-30.27636 -48.40783,-35.41787 -75.4142,-35.72871 z M 313.55341,226.4781 c -3.10607,1.84921 -6.22322,3.75042 -9.44571,5.64049 76.92618,22.33344 142.57754,73.6374 184.73869,109.99799 a 51.692279,51.722334 0 0 1 17.61179,34.66796 51.692279,51.722334 0 0 0 -17.61179,-43.28866 C 448.42823,298.63848 386.38587,250.11277 313.55341,226.4781 Z m -115.6553,169.24839 c -1.06808,0.0772 -1.74658,0.14223 -2.82867,0.21889 1.48381,3.75413 1.78481,6.25322 3.43481,10.20338 a 51.692279,51.722334 0 0 1 3.75471,15.37246 51.692279,51.722334 0 0 0 -3.75471,-23.99315 c -0.28705,-0.6872 -0.38755,-1.18803 -0.60614,-1.80158 z"
id="path16" />
</svg>

After

Width:  |  Height:  |  Size: 7.9 KiB

30
icons/kdeneon.svg Normal file
View File

@ -0,0 +1,30 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="b" x1="266.667" y1=".002" x2="266.667" y2="512.002" gradientUnits="userSpaceOnUse">
<stop stop-color="#1ABC9C"/>
<stop offset="1" stop-color="#2980B9"/>
</linearGradient>
<linearGradient id="c" x1="256.002" y1="255.997" x2="488.932" y2="488.927" gradientUnits="userSpaceOnUse">
<stop/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="d" x1="255.986" y1="256.226" x2="488.914" y2="489.155" gradientUnits="userSpaceOnUse">
<stop/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="e" x1="255.972" y1="256.354" x2="488.901" y2="489.283" gradientUnits="userSpaceOnUse">
<stop/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<clipPath id="a">
<path fill="#fff" d="M0 0h512v512H0z"/>
</clipPath>
</defs>
<g clip-path="url(#a)">
<path d="M256 512c141.385 0 256-114.615 256-256S397.385 0 256 0 0 114.615 0 256s114.615 256 256 256Z" fill="url(#b)"/>
<path opacity=".2" fill-rule="evenodd" clip-rule="evenodd" d="m293.269 218.73-74.539 74.538 177.078 177.067a256.008 256.008 0 0 0 74.443-74.624L293.269 218.73Z" fill="url(#c)"/>
<path opacity=".2" fill-rule="evenodd" clip-rule="evenodd" d="m360.811 151.188-4.704 4.704a141.657 141.657 0 0 1 41.536 100.107A141.651 141.651 0 0 1 256 397.652a141.653 141.653 0 0 1-100.107-41.546l-4.704 4.704 147.542 147.563A256.002 256.002 0 0 0 508.16 298.516L360.811 151.188Z" fill="url(#d)"/>
<path opacity=".2" fill-rule="evenodd" clip-rule="evenodd" d="M414.4 97.556v.043l-12.32 12.32a206.708 206.708 0 0 1 60.64 146.08A206.709 206.709 0 0 1 256 462.708a206.706 206.706 0 0 1-146.08-60.65L97.6 414.399l87.338 87.328A256.023 256.023 0 0 0 256 511.999a256 256 0 0 0 256-256 255.965 255.965 0 0 0-10.166-70.997L414.4 97.556Z" fill="url(#e)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M256 31.997a18.447 18.447 0 0 0-17.986 14.428 210.822 210.822 0 0 0-117.547 48.792 18.45 18.45 0 0 0-9.408-2.609 18.447 18.447 0 0 0-18.447 18.448 18.446 18.446 0 0 0 2.596 9.395 210.82 210.82 0 0 0-48.885 117.587A18.445 18.445 0 0 0 32 255.998a18.446 18.446 0 0 0 14.415 17.986A210.823 210.823 0 0 0 95.221 391.53a18.449 18.449 0 0 0-2.61 9.409 18.446 18.446 0 0 0 18.448 18.446 18.443 18.443 0 0 0 9.368-2.582 210.822 210.822 0 0 0 117.613 48.884A18.455 18.455 0 0 0 256 479.998a18.45 18.45 0 0 0 17.986-14.43 210.824 210.824 0 0 0 117.692-48.699 18.445 18.445 0 0 0 9.263 2.516 18.447 18.447 0 0 0 18.447-18.446 18.438 18.438 0 0 0-2.596-9.382 210.826 210.826 0 0 0 49.07-117.639A18.449 18.449 0 0 0 480 255.998a18.454 18.454 0 0 0-14.441-17.988 210.821 210.821 0 0 0-48.687-117.678 18.452 18.452 0 0 0 2.516-9.276 18.444 18.444 0 0 0-18.447-18.448 18.45 18.45 0 0 0-9.395 2.596A210.822 210.822 0 0 0 273.92 46.148 18.448 18.448 0 0 0 256 31.997Zm0 7.906a10.541 10.541 0 1 1 0 21.082 10.541 10.541 0 0 1 0-21.082ZM238.647 56.65A18.445 18.445 0 0 0 256 68.905a18.445 18.445 0 0 0 17.261-11.991 200.29 200.29 0 0 1 111.131 46.038 18.444 18.444 0 0 0-1.898 8.104 18.45 18.45 0 0 0 18.447 18.447c2.824-.001 5.61-.65 8.143-1.898a200.294 200.294 0 0 1 46.092 111.105 18.442 18.442 0 0 0-12.07 17.288 18.448 18.448 0 0 0 11.99 17.26 200.274 200.274 0 0 1-46.051 111.144 18.45 18.45 0 0 0-8.104-1.91 18.447 18.447 0 0 0-18.447 18.447 18.437 18.437 0 0 0 1.898 8.116 200.283 200.283 0 0 1-111.091 46.118A18.451 18.451 0 0 0 256 443.103a18.457 18.457 0 0 0-10.492 3.289 18.454 18.454 0 0 0-6.756 8.675 200.291 200.291 0 0 1-111.223-45.854 18.437 18.437 0 0 0 1.977-8.274 18.452 18.452 0 0 0-5.403-13.045 18.446 18.446 0 0 0-13.044-5.402c-2.82.002-5.601.651-8.13 1.896A200.284 200.284 0 0 1 56.666 273.35a18.446 18.446 0 0 0 12.228-17.352 18.445 18.445 0 0 0-11.964-17.249 200.286 200.286 0 0 1 45.854-111.223 18.441 18.441 0 0 0 8.275 1.977 18.45 18.45 0 0 0 18.447-18.447 18.438 18.438 0 0 0-1.898-8.13A200.284 200.284 0 0 1 238.647 56.65ZM256 95.258a18.444 18.444 0 0 0-18.025 14.546 147.576 147.576 0 0 0-129.551 146.194 147.576 147.576 0 0 0 129.577 146.258A18.446 18.446 0 0 0 256 416.75a18.445 18.445 0 0 0 18.025-14.56 147.578 147.578 0 0 0 129.551-146.192 147.57 147.57 0 0 0-129.577-146.259A18.444 18.444 0 0 0 256 95.244v.014Zm-144.941 5.27a10.54 10.54 0 1 1 .002 21.08 10.54 10.54 0 0 1-.002-21.08Zm289.882 0a10.54 10.54 0 1 1 .002 21.08 10.54 10.54 0 0 1-.002-21.08ZM256 103.163a10.541 10.541 0 1 1 0 21.083 10.541 10.541 0 0 1 0-21.083Zm-17.235 17.103A18.445 18.445 0 0 0 256 132.138a18.449 18.449 0 0 0 17.208-11.846 137.037 137.037 0 0 1 119.827 135.719 137.035 137.035 0 0 1-119.8 135.716 18.44 18.44 0 0 0-6.774-8.608A18.442 18.442 0 0 0 256 379.868a18.448 18.448 0 0 0-17.208 11.834 137.034 137.034 0 0 1-119.827-135.704 137.033 137.033 0 0 1 119.8-135.732ZM256 203.292a52.709 52.709 0 0 0-37.269 15.436 52.71 52.71 0 0 0 0 74.538A52.71 52.71 0 0 0 256 308.704a52.71 52.71 0 0 0 52.706-52.706 52.71 52.71 0 0 0-15.437-37.27A52.709 52.709 0 0 0 256 203.292ZM50.447 245.456a10.54 10.54 0 1 1 .002 21.08 10.54 10.54 0 0 1-.002-21.08Zm411.106 0a10.54 10.54 0 1 1 .002 21.08 10.54 10.54 0 0 1-.002-21.08ZM256 387.762a10.54 10.54 0 1 1 .002 21.08 10.54 10.54 0 0 1-.002-21.08Zm-144.941 2.635a10.54 10.54 0 1 1 0 21.082 10.54 10.54 0 0 1-7.454-17.995 10.54 10.54 0 0 1 7.454-3.087Zm289.882 0a10.54 10.54 0 1 1 0 21.082c-2.796 0-5.477-1.11-7.454-3.086a10.545 10.545 0 0 1 0-14.909 10.54 10.54 0 0 1 7.454-3.087ZM256 451.009a10.541 10.541 0 1 1 0 21.083 10.541 10.541 0 0 1 0-21.083Z" fill="#FCFCFC"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.4 KiB

137
icons/knoppix.svg Normal file
View File

@ -0,0 +1,137 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg48"
sodipodi:docname="knoppix.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs52" />
<sodipodi:namedview
id="namedview50"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg48" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="m 133.98859,241.95381 h 245.61403 c 0,0 17.54386,-68.22807 87.7193,-122.80702 0,-17.54386 0,-26.315788 -43.85965,-8.77193 -35.08772,27.28947 -157.89474,105.26316 -157.89474,105.26316 h -17.54386 c 0,0 -114.03508,-77.97369 -149.122806,-105.26316 -52.63158,-17.543858 -52.63158,-8.77193 -52.63158,8.77193 70.175436,54.57895 87.719306,122.80702 87.719306,122.80702 z"
id="path2" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="m 125.21666,364.76082 h 263.15789 l 26.31579,62 26.31579,-0.59649 c 22.49122,-0.50877 43.85965,23.02632 43.85965,35.08772 -26.57895,12.0614 -78.94737,17.54386 -78.94737,17.54386 l -78.94737,8.77193 -65.78947,-48.24561 -65.78947,48.24561 -87.71931,-8.77193 c 0,0 -56.322796,-5.48246 -78.947366,-17.54386 0,-12.0614 21.36229,-35.08772 43.85965,-35.08772 h 26.31579 z"
id="path4" />
<path
style="fill:#f77d00;stroke-width:8.77193"
d="m 125.21666,355.98889 h 263.15789 l 26.31579,62 26.31579,-0.59649 c 22.49122,-0.50877 43.85965,23.02632 43.85965,35.08772 -26.57895,12.0614 -78.94737,17.54386 -78.94737,17.54386 l -78.94737,8.77193 -65.78947,-48.24561 -65.78947,48.24561 -87.71931,-8.77193 c 0,0 -56.322796,-5.48246 -78.947366,-17.54386 0,-12.0614 21.36229,-35.08772 43.85965,-35.08772 h 26.31579 z"
id="path6" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.77193"
d="M 125.21666,355.98889 98.900864,417.3924 h -26.31579 c -22.49736,0 -43.85965,23.02632 -43.85965,35.08772 0.66667,0.35965 1.60702,0.64912 2.32983,0.99123 5.93596,-12.16667 23.25614,-27.30702 41.52982,-27.30702 h 26.31579 l 26.315796,-61.40351 h 263.15789 l 26.31579,62 26.31579,-0.59649 c 18.24561,-0.41228 35.55263,14.9386 41.50877,27.21053 0.74561,-0.31579 1.64035,-0.57018 2.35088,-0.89474 0,-12.0614 -21.36843,-35.59649 -43.85965,-35.08772 l -26.31579,0.59649 -26.31579,-62 z"
id="path8" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="m 298.46227,505.1117 h 125 c 0,-46.36842 -48.75439,-66.07895 -83.33334,-69.54386 -30.92982,-3.10526 -83.33333,27.60526 -83.33333,27.60526 0,0 -67.53508,-35.97368 -104.16666,-27.60526 -28.85966,6.58772 -62.500006,23.17544 -62.500006,69.54386 H 215.12894 c 26.51754,0 41.66666,-27.95614 41.66666,-27.95614 0,0 15.14913,27.95614 41.66667,27.95614 z"
id="path10" />
<path
style="fill:#eab108;stroke-width:8.77193"
d="m 298.46227,496.33977 h 125 c 0,-46.36842 -48.75439,-66.07895 -83.33334,-69.54386 -30.92982,-3.10526 -83.33333,27.60526 -83.33333,27.60526 0,0 -67.53508,-35.97368 -104.16666,-27.60526 -28.85966,6.58772 -62.500006,23.17544 -62.500006,69.54386 H 215.12894 c 26.51754,0 41.66666,-27.95614 41.66666,-27.95614 0,0 15.14913,27.95614 41.66667,27.95614 z"
id="path12" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.77193"
d="m 167.62017,425.58538 c -5.35088,-0.18421 -10.41228,0.16667 -14.99123,1.21053 -28.85966,6.58772 -62.500006,23.17544 -62.500006,69.54386 h 0.44737 c 3.99123,-39.7193 35.096496,-54.61403 62.052636,-60.77193 36.63158,-8.36842 104.16666,27.60526 104.16666,27.60526 0,0 52.40351,-30.71052 83.33333,-27.60526 32.30702,3.23684 76.97369,20.67544 82.70176,60.77193 h 0.63158 c 0,-46.36842 -48.75439,-66.07895 -83.33334,-69.54386 -30.92982,-3.10526 -83.33333,27.60526 -83.33333,27.60526 0,0 -51.71052,-27.54386 -89.17543,-28.81579 z"
id="path14" />
<path
style="fill:#4f4f4f;stroke-width:8.77193"
d="m 133.98859,233.18188 h 245.61403 c 0,0 17.54386,-68.22807 87.7193,-122.80702 0,-17.543858 0,-26.315788 -43.85965,-8.77193 -35.08772,27.28947 -157.89474,105.26316 -157.89474,105.26316 h -17.54386 c 0,0 -114.03508,-77.97369 -149.122806,-105.26316 -52.63158,-17.543858 -52.63158,-8.771928 -52.63158,8.77193 70.175436,54.57895 87.719306,122.80702 87.719306,122.80702 z"
id="path16" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:8.77193"
d="m 59.118414,92.041522 c -12.84913,-0.16666 -12.84913,7.36843 -12.84913,18.333338 0.15088,0.11403 0.27807,0.24561 0.42807,0.35965 1.40965,-11.307018 9.08772,-14.728068 52.20351,-0.35965 35.087726,27.28947 149.122806,105.26316 149.122806,105.26316 h 17.54386 c 0,0 122.80702,-77.97369 157.89474,-105.26316 35.85965,-14.342108 42.30701,-10.956138 43.5,0.28947 0.1228,-0.0965 0.23684,-0.19298 0.35965,-0.28947 0,-17.543858 0,-26.315788 -43.85965,-8.77193 -35.08772,27.28947 -157.89474,105.26316 -157.89474,105.26316 h -17.54386 c 0,0 -114.03508,-77.97369 -149.122806,-105.26316 -19.73684,-6.578948 -32.07017,-9.456138 -39.78245,-9.561408 z"
id="path18" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="m 256.7956,13.883632 c -47.10526,0 -87.71929,43.82807 -87.71929,98.254388 0,32.29824 -4.91228,56.82456 -12.06141,77.18421 H 81.357004 c -26.31403,0.2807 -70.17544,17.54386 -70.17544,26.31579 44.77457,5.97368 79.62281,17.04386 117.868426,29.02631 -15.71053,25.76316 -30.149126,49.64913 -30.149126,88.51755 0,94.95614 70.692986,171.92982 157.894736,171.92982 87.20175,0 157.89474,-76.97368 157.89474,-171.92982 0,-39.57895 -14.95614,-63.62281 -31.00878,-89.94737 34.55264,-11.42105 81.45615,-21.85965 118.72808,-27.59649 0,-8.77193 -43.85965,-26.31579 -70.17544,-26.31579 h -75.6579 c -7.14912,-20.35965 -12.0614,-44.88597 -12.0614,-77.18421 0,-54.426318 -40.61403,-98.254388 -87.7193,-98.254388 z"
id="path20" />
<path
style="fill:#cbcbcb;stroke-width:8.77193"
d="m 256.7956,5.1117017 c -47.10526,0 -87.71929,43.8596503 -87.71929,96.4912283 0,35.08772 -4.91228,58.58772 -12.06141,78.94737 H 81.357004 c -26.31403,0.2807 -70.17544,17.54386 -70.17544,26.31579 44.77457,5.97368 79.62281,17.04386 117.868426,29.02631 -15.71053,25.76316 -30.149126,49.64913 -30.149126,88.51755 0,94.95614 70.692986,171.92982 157.894736,171.92982 87.20175,0 157.89474,-76.97368 157.89474,-171.92982 0,-39.57895 -14.95614,-63.62281 -31.00878,-89.94737 34.55264,-11.42105 81.45615,-21.85965 118.72808,-27.59649 0,-8.77193 -43.85965,-26.31579 -70.17544,-26.31579 h -75.6579 c -7.14912,-20.35965 -12.0614,-43.85965 -12.0614,-78.94737 0,-52.631578 -40.61403,-96.4912283 -87.7193,-96.4912283 z"
id="path22" />
<path
style="opacity:0.1;stroke-width:8.77193"
d="m 256.7956,154.23451 c -31.4035,0 -52.63157,28.35965 -52.63157,61.40351 0,74.57017 -52.63158,78.94737 -52.63158,131.57894 0,57.64913 47.13158,105.26316 105.26315,105.26316 58.13158,0 105.26316,-47.61403 105.26316,-105.26316 0,-52.63157 -52.63158,-57.00877 -52.63158,-131.57894 0,-33.04386 -21.22807,-61.40351 -52.63158,-61.40351 z"
id="path24" />
<path
style="fill:#ffffff;stroke-width:8.77193"
d="m 256.7956,145.46258 c -31.4035,0 -52.63157,28.35965 -52.63157,61.40351 0,74.57017 -52.63158,78.94737 -52.63158,131.57894 0,57.64913 47.13158,105.26316 105.26315,105.26316 58.13158,0 105.26316,-47.61403 105.26316,-105.26316 0,-52.63157 -52.63158,-57.00877 -52.63158,-131.57894 0,-33.04386 -21.22807,-61.40351 -52.63158,-61.40351 z"
id="path26" />
<circle
style="opacity:0.1;stroke-width:8.77193"
cx="221.70789"
cy="101.60293"
r="35.087719"
id="circle28" />
<circle
style="fill:#ffffff;stroke-width:8.77193"
cx="221.70789"
cy="92.831001"
r="35.087719"
id="circle30" />
<circle
style="fill:#323232;stroke-width:8.77193"
cx="221.70789"
cy="92.831001"
r="17.543859"
id="circle32" />
<path
style="opacity:0.1;stroke-width:8.77193"
d="m 309.42718,147.21696 c 0,33.91229 -23.5614,59.64913 -52.63158,59.64913 -29.07017,0 -52.63157,-25.73684 -52.63157,-59.64913 z"
id="path34" />
<path
style="fill:#f77d00;stroke-width:8.77193"
d="m 309.42718,138.44503 c 0,33.91229 -23.5614,59.64913 -52.63158,59.64913 -29.07017,0 -52.63157,-25.73684 -52.63157,-59.64913 z"
id="path36" />
<circle
style="opacity:0.1;stroke-width:8.77193"
cx="291.88333"
cy="101.60293"
r="35.087719"
id="circle38" />
<circle
style="fill:#ffffff;stroke-width:8.77193"
cx="291.88333"
cy="92.831001"
r="35.087719"
id="circle40" />
<circle
style="fill:#323232;stroke-width:8.77193"
cx="291.88333"
cy="92.831001"
r="17.543859"
id="circle42" />
<path
style="fill:#eab108;stroke-width:8.77193"
d="m 309.42718,139.6117 c 0,5.85088 -23.5614,40.9386 -52.63158,40.9386 -29.07017,0 -52.63157,-35.08772 -52.63157,-40.9386 0,-16.14912 23.5614,-29.23684 52.63157,-29.23684 29.07018,0 52.63158,13.08772 52.63158,29.23684 z"
id="path44" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.77193"
d="m 256.7956,5.1117017 c -47.10526,0 -87.71929,43.8596503 -87.71929,96.4912283 0,35.08772 -4.91228,58.58772 -12.06141,78.94737 H 81.357004 c -26.31403,0.2807 -70.17544,17.54386 -70.17544,26.31579 2.45264,0.32456 4.76667,0.7193 7.16141,1.07894 13.50789,-8.58771 43.21316,-18.41228 63.01403,-18.6228 H 157.0149 c 7.14913,-20.35965 12.06141,-43.85965 12.06141,-78.94737 0,-52.631578 40.61403,-96.491228 87.71929,-96.491228 47.10527,0 87.7193,43.85965 87.7193,96.491228 0,35.08772 4.91228,58.58772 12.0614,78.94737 h 75.6579 c 19.93859,0 49.85965,10.0614 63.23684,18.76316 2.26316,-0.3772 4.73684,-0.8772 6.9386,-1.2193 0,-8.77193 -43.85965,-26.31579 -70.17544,-26.31579 h -75.6579 c -7.14912,-20.35965 -12.0614,-43.85965 -12.0614,-78.94737 0,-52.631578 -40.61403,-96.4912283 -87.7193,-96.4912283 z M 388.10262,241.91872 c -1.41228,0.44737 -3.05263,0.86842 -4.42106,1.31579 15.42983,25.31579 29.71053,48.65789 30.80702,85.57894 0.0263,-1.47368 0.20176,-2.91228 0.20176,-4.4035 0,-35.80702 -12.36842,-58.92106 -26.58772,-82.49123 z m -263.42106,1.38596 c -13.85964,23.0965 -25.780696,45.98246 -25.780696,81.10527 0,1.48245 0.17544,2.92105 0.20176,4.38596 1.078936,-36.22807 14.859646,-59.38596 29.956136,-84.13158 -1.48245,-0.46491 -2.90351,-0.89473 -4.3772,-1.35965 z"
id="path46" />
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

15697
icons/kolibrios.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 793 KiB

73
icons/korora.svg Normal file
View File

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg22"
sodipodi:docname="korora.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs26" />
<sodipodi:namedview
id="namedview24"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg22" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="m 327.50247,16.396142 c -96.89473,0 -175.43859,78.54386 -175.43859,175.438598 0,96.89474 78.54386,175.43859 175.43859,175.43859 96.89474,0 175.4386,-78.54385 175.4386,-175.43859 V 43.220702 c 0,-14.91228 -11.91229,-26.82456 -26.82457,-26.82456 z"
id="path2" />
<path
style="fill:#666666;stroke-width:8.77193"
d="m 327.50247,7.6242125 c -96.89473,0 -175.43859,78.5438595 -175.43859,175.4385975 0,96.89474 78.54386,175.43859 175.43859,175.43859 96.89474,0 175.4386,-78.54385 175.4386,-175.43859 V 34.448772 c 0,-14.91228 -11.91229,-26.8245595 -26.82457,-26.8245595 z"
id="path4" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="m 327.50247,314.64176 c 68.07017,0 122.80702,-54.73685 122.80702,-122.80702 V 69.027722 H 327.50247 c -68.07017,0 -122.80702,54.736838 -122.80702,122.807018 0,68.07017 54.73685,122.80702 122.80702,122.80702 z"
id="path6" />
<path
style="fill:#ececec;stroke-width:8.77193"
d="m 327.50247,305.86983 c 68.07017,0 122.80702,-54.73685 122.80702,-122.80702 V 60.255792 H 327.50247 c -68.07017,0 -122.80702,54.736838 -122.80702,122.807018 0,68.07017 54.73685,122.80702 122.80702,122.80702 z"
id="path8" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="m 187.15159,156.74702 c -96.894737,0 -175.438597,78.54386 -175.438597,175.43859 V 480.7821 c 0,14.91229 11.98071,26.84211 26.8579,26.84211 H 187.15159 c 96.89474,0 175.4386,-78.54386 175.4386,-175.4386 0,-96.89473 -78.54386,-175.43859 -175.4386,-175.43859 z"
id="path10" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:8.77193"
d="m 327.50247,7.6242125 c -96.89473,0 -175.43859,78.5438595 -175.43859,175.4385975 0,1.47368 0.0702,2.92105 0.10526,4.38596 2.33333,-94.859648 79.91228,-171.052628 175.33333,-171.052628 h 148.60526 c 14.91228,0 26.83334,11.91754 26.83334,26.82982 v -8.77193 c 0,-14.91228 -11.92106,-26.8298195 -26.83334,-26.8298195 z"
id="path12" />
<path
style="fill:#808080;stroke-width:8.77193"
d="m 187.15159,147.97509 c -96.894737,0 -175.438597,78.54386 -175.438597,175.4386 v 148.59648 c 0,14.91229 11.98071,26.84211 26.8579,26.84211 H 187.15159 c 96.89474,0 175.4386,-78.54386 175.4386,-175.43859 0,-96.89474 -78.54386,-175.4386 -175.4386,-175.4386 z"
id="path14" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="m 187.15159,209.3786 c -68.07017,0 -122.807017,54.73684 -122.807017,122.80701 V 454.99263 H 187.15159 c 68.07018,0 122.80702,-54.73684 122.80702,-122.80702 0,-68.07017 -54.73684,-122.80701 -122.80702,-122.80701 z"
id="path16" />
<path
style="fill:#ffffff;stroke-width:8.77193"
d="m 187.15159,200.60667 c -68.07017,0 -122.807017,54.73684 -122.807017,122.80702 V 446.2207 H 187.15159 c 68.07018,0 122.80702,-54.73684 122.80702,-122.80701 0,-68.07018 -54.73684,-122.80702 -122.80702,-122.80702 z"
id="path18" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.77193"
d="m 187.15159,147.97509 c -96.894737,0 -175.438597,78.54386 -175.438597,175.4386 v 8.77192 c 0,-96.89473 78.54386,-175.43859 175.438597,-175.43859 95.42106,0 173,76.19298 175.33333,171.05263 0.0351,-1.46491 0.10527,-2.91228 0.10527,-4.38596 0,-96.89474 -78.54386,-175.4386 -175.4386,-175.4386 z"
id="path20" />
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

12
icons/kubuntu.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,4 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M256 0C114.621 0 0 114.621 0 256c0 141.401 114.621 256 256 256 141.401 0 256-114.599 256-256C512 114.621 397.401 0 256 0Zm0 43.652c117.293 0 212.348 95.055 212.348 212.348 0 18.04-2.461 35.449-6.696 52.174l-101-112.261-129.13 146.913 62.304-124.652-31.13-55.652L79.13 373.478C56.736 339.827 43.652 299.446 43.652 256c0-117.293 95.055-212.348 212.348-212.348Z" fill="#DC682E"/>
</svg>

After

Width:  |  Height:  |  Size: 519 B

75
icons/lite.svg Normal file
View File

@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1"
id="svg18"
sodipodi:docname="linux-lite.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs22" />
<sodipodi:namedview
id="namedview20"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg18" />
<rect
x="10.787246"
y="17.742413"
width="491.22806"
height="491.22806"
rx="24.561403"
ry="24.561403"
style="opacity:0.2;stroke-width:8.77193"
id="rect2" />
<rect
x="10.787246"
y="8.9704857"
width="491.22806"
height="491.22806"
rx="24.561403"
ry="24.561403"
style="fill:#4f4f4f;stroke-width:8.77193"
id="rect4" />
<path
d="m 35.355494,8.9704861 c -13.60702,0 -24.56826,10.9612399 -24.56826,24.5682599 v 8.77193 c 0,-13.60702 10.96124,-24.56826 24.56826,-24.56826 H 477.44705 c 13.60702,0 24.56826,10.96124 24.56826,24.56826 v -8.77193 c 0,-13.60702 -10.96124,-24.5682599 -24.56826,-24.5682599 z"
style="opacity:0.1;fill:#ffffff;stroke-width:8.77193"
id="path6" />
<path
d="m 299.21341,52.830126 c -30.49566,18.43699 -61.82084,35.59464 -91.64191,55.090464 -10.941,52.2759 -21.5421,104.62848 -31.78898,157.04467 11.49991,14.59995 24.11293,28.28635 36.02351,42.55002 -11.6343,-3.71221 -26.24935,-12.08248 -39.08897,-17.26367 10.1075,37.3309 20.68006,74.55134 31.70511,111.62165 14.74128,-1.26789 29.37046,-3.62405 44.10698,-4.94028 -10.57882,10.89858 -22.00089,20.94909 -32.64251,31.7859 18.60344,-7.74095 36.9006,-16.19893 55.44139,-24.08879 3.56219,5.83573 -7.00051,26.73296 -8.42365,38.06996 8.12739,-13.16237 15.869,-26.56695 23.59239,-39.97096 l 7.1168,-3.34714 c 0,0 -2.08407,-2.08837 0,0 16.16349,2.54959 32.29124,5.62736 48.44156,8.0627 -14.53393,-7.13455 -29.30963,-13.76684 -43.84377,-20.90097 14.53446,-6.02526 30.02077,-10.59747 44.86738,-16.21312 -14.60136,-0.13684 -29.20355,0.26298 -43.80527,0.0965 2.35886,-5.20874 19.98582,-14.3977 27.6214,-21.51514 -10.6651,-12.38775 -22.68191,-23.5498 -33.42446,-35.87035 18.57944,-60.84349 38.076,-121.40512 57.15612,-182.094 -17.11091,-26.0556 -33.82689,-52.382254 -51.41312,-78.118144 z"
style="opacity:0.2;stroke-width:8.77193"
id="path8" />
<path
d="m 299.21341,44.058196 c -30.49566,18.43699 -61.82084,35.59464 -91.64191,55.09046 -10.941,52.275904 -21.5421,104.628484 -31.78898,157.044674 11.49991,14.59995 24.11293,28.28635 36.02351,42.55002 -11.6343,-3.71221 -26.24935,-12.08248 -39.08897,-17.26367 10.1075,37.33089 20.68006,74.55134 31.70511,111.62165 14.74128,-1.26789 29.37046,-3.62405 44.10698,-4.94028 -10.57882,10.89858 -22.00089,20.94909 -32.64251,31.7859 18.60344,-7.74095 36.9006,-16.19893 55.44139,-24.08879 3.56219,5.83573 -7.00051,26.73296 -8.42365,38.06996 8.12739,-13.16237 15.869,-26.56695 23.59239,-39.97096 l 7.1168,-3.34714 c 0,0 -2.08407,-2.08837 0,0 16.16349,2.54959 32.29124,5.62736 48.44156,8.0627 -14.53393,-7.13455 -29.30963,-13.76684 -43.84377,-20.90097 14.53446,-6.02526 30.02077,-10.59747 44.86738,-16.21312 -14.60136,-0.13684 -29.20355,0.26298 -43.80527,0.0965 2.35886,-5.20874 19.98582,-14.3977 27.6214,-21.51514 -10.6651,-12.38775 -22.68191,-23.5498 -33.42446,-35.87035 18.57944,-60.84349 38.076,-121.40512 57.15612,-182.094 C 333.51562,96.120036 316.79964,69.793386 299.21341,44.057496 Z"
style="fill:#ffc107;stroke-width:8.77193"
id="path10" />
<path
d="m 284.40371,105.32752 c -25.69363,69.07197 -41.92228,152.54862 -45.86635,229.71511 -0.9293,10.75239 -0.66719,8.5737 6.34763,17.01623 34.81639,41.90902 69.55878,86.24895 104.56789,121.82391 l -0.0114,-2.45712 c -33.46659,-45.8877 -66.93315,-84.57514 -100.39971,-125.3787 -2.92778,-3.51453 -3.72578,-3.5642 -3.4816,-7.82246 4.44217,-77.346 21.84161,-162.98642 38.84354,-232.89697 z"
style="opacity:0.2;stroke-width:8.77193"
id="path12" />
<path
d="M 284.40371,96.555586 C 258.71008,165.62756 242.48143,249.10421 238.53736,326.2707 c -0.9293,10.75239 -0.66719,8.5737 6.34763,17.01623 34.81639,41.90902 69.55878,86.24895 104.56789,121.82391 l -0.0114,-2.45712 c -33.46659,-45.8877 -66.93315,-84.57514 -100.39971,-125.3787 -2.92778,-3.51453 -3.72578,-3.5642 -3.4816,-7.82246 4.44217,-77.346 21.84161,-162.98642 38.84354,-232.896974 z"
style="fill:#ffffff;stroke-width:8.77193"
id="path14" />
<path
d="m 299.1987,44.058206 c -30.49567,18.43699 -61.80448,35.60287 -91.62555,55.09868 -10.941,52.275914 -21.55137,104.621914 -31.79824,157.038114 0.45421,0.57666 0.93036,1.13573 1.40487,1.69613 9.81672,-50.05019 19.94498,-100.04006 30.39337,-149.96231 29.82107,-19.495814 61.12988,-36.661694 91.62555,-55.098684 16.94662,24.79989 33.10101,50.154654 49.56482,75.280974 0.62018,-1.97664 1.2461,-3.9515 1.86747,-5.9279 C 333.52008,96.127606 316.78492,69.794096 299.1987,44.058206 Z M 172.72529,281.48282 c 0.91381,3.37506 1.89127,6.73218 2.86115,10.09115 4.11603,1.78896 8.3143,3.73874 12.55826,5.77371 4.12279,4.8386 8.24164,9.68597 12.38692,14.51138 3.92389,1.72423 7.76545,3.31263 11.29044,4.43736 -7.78451,-9.32244 -15.79961,-18.47518 -23.67736,-27.72067 -5.21136,-2.49882 -10.46359,-5.09309 -15.41941,-7.09293 z m 124.86293,27.20669 c -1.34789,4.38174 -2.77296,8.73914 -4.11184,13.12363 0.66465,0.76228 1.36675,1.48896 2.03879,2.24438 0.69588,-2.19715 1.3954,-4.39317 2.07305,-6.59608 8.1252,8.90315 16.60579,17.47986 24.68819,26.41859 1.73807,-1.28284 3.32428,-2.53767 4.60868,-3.73493 -9.35166,-10.86215 -19.637,-20.87083 -29.29687,-31.45559 z m 45.50438,52.87144 c -7.07804,-0.0667 -14.16621,-0.0272 -21.2445,0.0342 -6.9552,5.14305 -15.64,10.57775 -19.9767,14.80263 13.47244,-5.32558 27.59615,-9.68328 41.2212,-14.83691 z m -43.2086,16.99561 c -0.1228,0.19737 -0.53184,0.46368 -0.61675,0.65105 0.6507,0.007 1.30244,-0.005 1.95312,0 -0.44561,-0.21631 -0.89126,-0.43386 -1.33635,-0.65105 z m 19.05154,9.08032 c -4.52821,1.56615 -8.95098,3.28185 -13.39776,4.96848 12.1746,2.06459 24.35162,4.22903 36.52687,6.06496 -7.66579,-3.76305 -15.39973,-7.40249 -23.12911,-11.03344 z m -70.4153,18.05784 c -6.78957,0.60649 -13.55388,1.42174 -20.31935,2.26152 -4.14816,3.95084 -8.28802,7.90601 -12.30126,11.99286 10.90037,-4.53565 21.68286,-9.34782 32.48356,-14.11731 z m 22.82073,7.70971 c -0.99772,0.42456 -1.98465,0.87438 -2.98109,1.30208 -2.25088,6.83702 -4.79647,14.03109 -5.44818,19.22286 1.57062,-2.54364 3.05083,-5.14333 4.55729,-7.72684 0.30517,-0.91811 0.59096,-1.81308 0.89089,-2.72409 0.32667,-0.14018 0.65123,-0.285 0.97656,-0.42834 0.83088,-1.42737 1.67671,-2.84545 2.51851,-4.26603 0.25509,-2.2457 0.21535,-4.18504 -0.51395,-5.37966 z"
style="opacity:0.2;fill:#ffffff;stroke-width:8.77193"
id="path16" />
</svg>

After

Width:  |  Height:  |  Size: 7.1 KiB

57
icons/lmde.svg Normal file
View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="lmde.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<circle
style="opacity:0.2;stroke-width:8.77193"
cx="255.62099"
cy="263.44467"
r="245.61403"
id="circle2" />
<circle
style="fill:#86be43;stroke-width:8.77193"
cx="255.62099"
cy="254.67274"
r="245.61403"
id="circle4" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="m 97.725311,114.32187 v 208.02494 c 0,49.56302 40.657649,90.22067 90.220669,90.22067 h 135.34814 c 48.71912,0 88.8686,-39.30714 90.22067,-87.7193 V 211.84462 c 0.003,-0.34263 0.003,-0.68527 0,-1.0279 0,-38.75682 -31.41862,-70.17544 -70.17544,-70.17544 -0.35404,-0.003 -0.70825,-0.003 -1.06228,0 -15.58214,0.24509 -30.63942,5.67003 -42.79737,15.41934 -12.44319,-9.974 -27.91244,-15.41241 -43.85965,-15.41941 -0.35403,-0.003 -0.70816,-0.003 -1.06223,0 -38.34136,0.58044 -69.11759,31.82969 -69.11321,70.17544 v 114.03153 h 52.63158 v -37.34923 -76.6823 c 0,-9.68921 7.85465,-17.54386 17.54386,-17.54386 9.68921,0 17.54386,7.85465 17.54386,17.54386 v 76.71656 37.31497 h 52.63158 v -37.34923 -75.65433 c 0.003,-0.34263 0.003,-0.68527 0,-1.0279 0,-9.68921 7.85465,-17.54386 17.54386,-17.54386 9.68921,0 17.54386,7.85465 17.54386,17.54386 v 76.71649 28.54304 c 0,26.31579 -17.54386,43.85965 -46.36102,43.85965 h -119.5518 c -27.06964,0 -44.6135,-17.54386 -44.6135,-43.85965 V 114.32187 Z"
id="path6" />
<path
style="fill:#ffffff;stroke-width:8.77193"
d="m 97.725311,105.54994 v 208.02494 c 0,49.56302 40.657649,90.22067 90.220669,90.22067 h 135.34814 c 48.71912,0 88.8686,-39.30714 90.22067,-87.7193 V 203.07269 c 0.003,-0.34263 0.003,-0.68527 0,-1.0279 0,-38.75682 -31.41862,-70.17544 -70.17544,-70.17544 -0.35404,-0.003 -0.70825,-0.003 -1.06228,0 -15.58214,0.24509 -30.63942,5.67003 -42.79737,15.41934 -12.44319,-9.974 -27.91244,-15.41241 -43.85965,-15.41941 -0.35403,-0.003 -0.70816,-0.003 -1.06223,0 -38.34136,0.58044 -69.11759,31.82969 -69.11321,70.17544 v 114.03153 h 52.63158 v -37.34923 -76.6823 c 0,-9.68921 7.85465,-17.54386 17.54386,-17.54386 9.68921,0 17.54386,7.85465 17.54386,17.54386 v 76.71656 37.31497 h 52.63158 v -37.34923 -75.65433 c 0.003,-0.34263 0.003,-0.68527 0,-1.0279 0,-9.68921 7.85465,-17.54386 17.54386,-17.54386 9.68921,0 17.54386,7.85465 17.54386,17.54386 v 76.71649 28.54304 c 0,26.31579 -17.54386,43.85965 -46.36102,43.85965 h -119.5518 c -27.06964,0 -44.6135,-17.54386 -44.6135,-43.85965 V 105.54994 Z"
id="path8" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.77193"
d="M 255.62099,9.0587056 A 245.61404,245.61404 0 0 0 10.006951,254.67274 a 245.61404,245.61404 0 0 0 0.0514,4.3003 A 245.61404,245.61404 0 0 1 255.62099,17.830636 245.61404,245.61404 0 0 1 501.18363,258.95591 245.61404,245.61404 0 0 0 501.23503,254.67274 245.61404,245.61404 0 0 0 255.62099,9.0587056 Z"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

13
icons/lubuntu.svg Normal file
View File

@ -0,0 +1,13 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h512v512H0z"/>
</clipPath>
</defs>
<g clip-path="url(#a)">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M512 256.008C512 114.629 397.382 0 255.995 0 114.613 0 0 114.629 0 256.008 0 397.389 114.613 512 255.995 512 397.382 512 512 397.389 512 256.008Z" fill="#0068C8"/>
<path d="M240.72 211.746c-9.1-9.863-15.099-22.543-16.949-35.83-1.85-13.287.457-27.122 6.517-39.092 6.061-11.97 15.849-22.023 27.657-28.405 11.809-6.383 25.586-9.066 38.929-7.583 21.46 2.385 41.363 15.949 51.418 35.042l120.912 16.665H331.397c-8.598-10.996-21.586-18.464-35.421-20.367-9.88-1.359-20.128.069-29.26 4.075-9.132 4.006-17.119 10.579-22.805 18.766a54.612 54.612 0 0 0-9.612 27.914c-.56 9.95 1.689 20.042 6.421 28.815Zm17 45.207L72.652 123.992c-8.866 17.497-12.375 37.66-9.94 57.12 2.434 19.46 10.802 38.139 23.706 52.917 16.923 19.381 41.647 31.758 67.315 33.7-12.117-3.912-23.217-10.927-31.947-20.19a76.279 76.279 0 0 1-18.254-33.074c-3.645-14.113-3.107-29.277 1.529-43.096l152.659 85.584Z" fill="#fff"/>
<path d="m247.447 292.869-162.61-45.722c-1.31 15.198 1.674 30.742 8.52 44.376 6.846 13.634 17.533 25.317 30.509 33.352 19.25 11.92 43.49 15.484 65.36 9.61-21.91.147-43.616-10.731-56.602-28.365-7.331-9.955-11.94-21.892-13.199-34.188l128.022 20.937Zm74.159-102.046a71.684 71.684 0 0 0-6.214 19.844c-3.386 21.307 2.95 42.828 9.265 63.458 6.315 20.631 12.752 42.099 9.567 63.437-2.379 15.937-10.156 30.855-21.041 42.743-10.884 11.889-24.778 20.829-39.708 26.917-24.594 10.028-52.258 12.384-78.195 6.66v70.93l21.329-50.632c27.643 6.304 57.238 3.754 83.393-7.186 18.732-7.835 35.822-20.034 48.145-36.163 12.322-16.128 19.673-36.28 19.152-56.564-.626-24.385-12.15-46.985-23.304-68.682-11.154-21.698-22.456-44.471-22.58-68.864a75.38 75.38 0 0 1 .191-5.898Z" fill="#fff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

63
icons/lxle.svg Normal file
View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="lxle.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<rect
style="opacity:0.2;stroke-width:8.77193"
rx="24.561403"
ry="24.561403"
height="491.22806"
width="491.22806"
y="16.116428"
x="11.461591"
id="rect2" />
<rect
style="fill:#4f4f4f;stroke-width:8.77193"
rx="24.561403"
ry="24.561403"
height="491.22806"
width="491.22806"
y="7.3445015"
x="11.461591"
id="rect4" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:8.77193"
d="m 36.030022,7.3445017 c -13.60702,0 -24.56843,10.9614003 -24.56843,24.5684203 v 8.77193 c 0,-13.60702 10.96141,-24.56842 24.56843,-24.56842 H 478.11949 c 13.60526,0 24.57017,10.9614 24.57017,24.56842 v -8.77193 c 0,-13.60702 -10.96491,-24.5684203 -24.57017,-24.5684203 z"
id="path6" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="M 62.345802,68.748012 V 454.71292 H 106.20545 V 68.748012 Z m 114.035088,0 v 43.859648 l 201.75439,114.03509 v 26.31579 h 70.17544 V 209.09889 L 246.55633,103.83573 V 68.748012 Z m 201.75439,0 v 35.087718 l -40.57018,21.15885 46.1897,24.10568 64.55592,-36.4926 V 68.748012 Z m -145.26796,110.882678 -56.48643,29.4682 v 43.85965 h 70.17544 V 226.64275 L 281.3014,207.0087 Z m -12.62678,90.87171 c -24.29824,0 -43.85965,19.5614 -43.85965,43.85965 v 96.49122 c 0,24.29825 19.56141,43.85965 43.85965,43.85965 H 448.31072 V 402.08134 H 237.7844 c -9.7193,0 -17.54386,-7.82456 -17.54386,-17.54386 V 331.9059 c 0,-9.71929 7.82456,-17.54385 17.54386,-17.54385 h 122.80702 l -87.7193,61.4035 h 78.94737 l 96.49123,-61.4035 c 0,-24.29825 -19.56141,-43.85965 -43.85965,-43.85965 z"
id="path8" />
<path
style="fill:#ffffff;stroke-width:8.77193"
d="M 62.345802,59.976082 V 445.94099 H 106.20545 V 59.976082 Z m 114.035088,0 v 43.859648 l 201.75439,114.03509 v 26.31579 h 70.17544 V 200.32696 L 246.55633,95.063802 v -35.08772 z m 201.75439,0 v 35.08772 l -40.57018,21.158848 46.1897,24.10568 64.55592,-36.4926 V 59.976082 Z m -145.26796,110.882678 -56.48643,29.4682 v 43.85965 h 70.17544 v -26.31579 l 34.74507,-19.63405 z m -12.62678,90.87171 c -24.29824,0 -43.85965,19.5614 -43.85965,43.85965 v 96.49122 c 0,24.29825 19.56141,43.85965 43.85965,43.85965 h 175.4386 8.77193 43.85965 v -43.85965 -8.77193 H 395.67914 237.7844 c -9.7193,0 -17.54386,-7.82456 -17.54386,-17.54386 v -52.63157 c 0,-9.7193 7.82456,-17.54386 17.54386,-17.54386 h 122.80702 l -87.7193,61.4035 h 78.94737 l 96.49123,-61.4035 c 0,-24.29825 -19.56141,-43.85965 -43.85965,-43.85965 z"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

86
icons/mac.svg Normal file
View File

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg28"
sodipodi:docname="mac.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs32" />
<sodipodi:namedview
id="namedview30"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg28" />
<rect
style="opacity:0.2;stroke-width:8.92857"
width="500"
height="464.28571"
x="6.4173112"
y="29.40016"
rx="25"
ry="25"
id="rect2" />
<path
style="fill:#1da0f8;stroke-width:8.92857"
d="M 309.98874,484.7573 H 31.417311 c -13.85,0 -25,-11.15178 -25,-25 V 45.471594 c 0,-13.85 11.15,-25 25,-25 H 274.27445 l 35.71429,35.71428 z"
id="path4" />
<path
style="opacity:0.2;stroke-width:8.92857"
d="m 213.03338,252.61445 c -0.32143,2.36607 -1.25893,8.92857 -1.25893,8.92857 h 71.42857 c 0,0 0.16965,85.79464 25.23215,223.21428 h 1.55357 C 283.20302,341.90016 283.20302,252.61445 283.20302,252.61445 Z"
id="path6" />
<path
style="fill:#e4e4e4;stroke-width:8.92857"
d="M 265.34588,20.471594 C 229.6316,109.7573 211.77445,252.61445 211.77445,252.61445 h 71.42857 c 0,0 0,89.28571 26.78572,232.14285 h 171.41964 c 13.84822,0 25.00893,-11.16071 25.00893,-25.00893 V 45.478734 c 0,-13.85 -11.16071,-25.00714 -25.00893,-25.00714 z"
id="path8" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.92857"
d="m 31.424451,20.471594 c -13.85,0 -25.00714,11.15714 -25.00714,25.00714 v 8.92857 c 0,-13.85 11.15714,-25.00714 25.00714,-25.00714 H 481.40838 c 13.84822,0 25.00893,11.15714 25.00893,25.00714 v -8.92857 c 0,-13.85 -11.16071,-25.00714 -25.00893,-25.00714 z"
id="path10" />
<g
style="opacity:0.2;fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round"
transform="matrix(8.9285714,0,0,8.9285714,-29.296979,-24.171266)"
id="g18">
<path
d="m 15.5,39.5 c 0,0 4.5,7 16.5,7 12,0 16.5,-7 16.5,-7"
id="path12" />
<path
d="m 20.5,20.5 v 4"
id="path14" />
<path
d="m 43.5,20.5 v 4"
id="path16" />
</g>
<g
style="fill:none;stroke:#4c4c4c;stroke-width:3;stroke-linecap:round"
id="g26"
transform="matrix(8.9285714,0,0,8.9285714,-29.296979,-33.099836)">
<path
d="m 15.5,39.5 c 0,0 4.5,7 16.5,7 12,0 16.5,-7 16.5,-7"
id="path20" />
<path
d="m 20.5,20.5 v 4"
id="path22" />
<path
d="m 43.5,20.5 v 4"
id="path24" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

4
icons/macos.svg Normal file
View File

@ -0,0 +1,4 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M281.797 169.861v-4.22l-13.114.901c-3.714.234-6.502 1.024-8.377 2.356-1.876 1.345-2.813 3.208-2.813 5.589 0 2.32.925 4.17 2.788 5.54 1.851 1.381 4.343 2.06 7.452 2.06 1.986 0 3.849-.308 5.564-.913 1.715-.605 3.22-1.456 4.478-2.542a11.378 11.378 0 0 0 2.949-3.849c.716-1.493 1.073-3.133 1.073-4.922ZM256 0C113.146 0 0 113.146 0 256c0 142.866 113.146 256 256 256 142.854 0 256-113.134 256-256C512 113.146 398.866 0 256 0Zm49.695 151.737c1.209-3.393 2.911-6.304 5.12-8.722 2.208-2.419 4.861-4.282 7.97-5.589 3.109-1.308 6.576-1.962 10.388-1.962 3.442 0 6.551.518 9.315 1.542 2.775 1.024 5.144 2.406 7.13 4.146 1.987 1.739 3.566 3.763 4.726 6.082a20.465 20.465 0 0 1 2.085 7.353h-10.277a13.236 13.236 0 0 0-1.394-3.973 10.894 10.894 0 0 0-2.628-3.183c-1.098-.9-2.381-1.604-3.85-2.109-1.48-.519-3.133-.765-4.996-.765-2.184 0-4.17.444-5.934 1.32-1.777.876-3.294 2.122-4.553 3.726-1.258 1.604-2.233 3.565-2.924 5.86-.703 2.307-1.049 4.861-1.049 7.674 0 2.911.346 5.527 1.049 7.822.691 2.307 1.678 4.244 2.961 5.835a12.788 12.788 0 0 0 4.602 3.652c1.789.839 3.763 1.271 5.91 1.271 3.516 0 6.378-.827 8.599-2.48 2.22-1.653 3.652-4.071 4.318-7.254h10.289c-.296 2.813-1.073 5.379-2.332 7.698a19.81 19.81 0 0 1-4.885 5.934c-2.011 1.641-4.368 2.912-7.082 3.8-2.714.889-5.7 1.345-8.944 1.345-3.85 0-7.317-.641-10.438-1.912-3.109-1.271-5.786-3.109-8.007-5.49-2.221-2.381-3.935-5.281-5.144-8.698-1.21-3.418-1.814-7.255-1.814-11.536-.025-4.182.58-7.982 1.789-11.387Zm-146.235-15.57h10.29v9.142h.197a15.219 15.219 0 0 1 2.467-4.071 15.425 15.425 0 0 1 3.504-3.06c1.32-.851 2.788-1.493 4.368-1.937a18.62 18.62 0 0 1 5.021-.666c3.775 0 6.971.901 9.561 2.702 2.604 1.801 4.454 4.392 5.54 7.773h.259a16.181 16.181 0 0 1 2.727-4.368 17.463 17.463 0 0 1 3.873-3.306c1.456-.913 3.06-1.604 4.8-2.085 1.739-.481 3.565-.716 5.49-.716 2.652 0 5.058.42 7.229 1.271 2.172.851 4.022 2.036 5.565 3.578 1.542 1.542 2.726 3.417 3.553 5.613.826 2.196 1.246 4.639 1.246 7.329v36.777h-10.734v-34.199c0-3.541-.913-6.292-2.739-8.229-1.813-1.937-4.416-2.912-7.797-2.912-1.653 0-3.17.297-4.552.876-1.37.58-2.566 1.395-3.553 2.443-1 1.037-1.777 2.295-2.332 3.751-.568 1.456-.851 3.047-.851 4.774v33.496h-10.586v-35.087c0-1.555-.247-2.961-.728-4.22-.481-1.258-1.159-2.331-2.06-3.232-.888-.901-1.986-1.579-3.257-2.06-1.283-.481-2.714-.728-4.306-.728-1.653 0-3.183.308-4.602.925a10.861 10.861 0 0 0-3.627 2.554 11.612 11.612 0 0 0-2.356 3.874c-.543 1.48-1.431 3.109-1.431 4.861v33.101H159.46v-53.964Zm23.355 258.332c-47.191 0-76.788-32.793-76.788-85.128s29.597-85.238 76.788-85.238c47.19 0 76.676 32.903 76.676 85.238 0 52.323-29.486 85.128-76.676 85.128Zm87.373-204.491c-1.74.444-3.516.666-5.342.666-2.69 0-5.145-.383-7.378-1.148-2.245-.765-4.158-1.838-5.761-3.232a14.486 14.486 0 0 1-3.751-5.046c-.901-1.974-1.345-4.17-1.345-6.588 0-4.738 1.765-8.439 5.293-11.104 3.528-2.665 8.636-4.219 15.335-4.651l14.558-.839v-4.17c0-3.109-.987-5.49-2.961-7.106-1.974-1.616-4.762-2.431-8.377-2.431-1.455 0-2.825.185-4.083.543-1.259.37-2.369.888-3.331 1.567a8.945 8.945 0 0 0-2.381 2.443 8.713 8.713 0 0 0-1.296 3.158h-10.092c.062-2.381.654-4.589 1.764-6.613 1.111-2.023 2.616-3.775 4.528-5.268 1.912-1.493 4.146-2.652 6.736-3.479 2.591-.826 5.404-1.246 8.451-1.246 3.282 0 6.255.407 8.92 1.246s4.948 2.011 6.835 3.553c1.888 1.542 3.344 3.393 4.368 5.564 1.024 2.172 1.542 4.602 1.542 7.279v37.025h-10.277v-8.994h-.259a16.19 16.19 0 0 1-2.9 3.948 18.593 18.593 0 0 1-3.972 3.01 20.02 20.02 0 0 1-4.824 1.913Zm67.892 204.491c-35.988 0-60.453-18.851-62.155-48.449h23.428c1.826 16.915 18.173 28.117 40.566 28.117 21.479 0 36.913-11.202 36.913-26.513 0-13.25-9.376-21.257-31.078-26.735l-21.146-5.256c-30.399-7.538-44.217-21.368-44.217-44.106 0-27.993 24.453-47.424 59.306-47.424 34.051 0 57.812 19.542 58.725 47.646h-23.194c-1.604-16.914-15.422-27.314-36-27.314-20.456 0-34.619 10.511-34.619 25.711 0 11.992 8.908 19.085 30.621 24.563l17.828 4.454c33.94 8.229 47.881 21.603 47.881 45.599-.012 30.621-24.23 49.707-62.859 49.707ZM182.815 245.143c-32.336 0-52.557 24.798-52.557 64.216 0 39.307 20.221 64.105 52.557 64.105 32.225 0 52.557-24.798 52.557-64.105.012-39.418-20.332-64.216-52.557-64.216Z" fill="#000"/>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

190
icons/madlinux.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 23 KiB

67
icons/mageia.svg Normal file
View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="180"
height="180"
viewBox="0 0 180 180"
version="1.1"
id="svg1"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
sodipodi:docname="mageia.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
inkscape:zoom="6.5888889"
inkscape:cx="89.924115"
inkscape:cy="90"
inkscape:window-width="3438"
inkscape:window-height="1390"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<path
d="m 76.343363,69.820833 h -0.0081 c -5.377612,0 -9.75697,-4.373322 -9.762692,-9.747219 -0.0081,-5.391804 4.372057,-9.771637 9.754552,-9.777359 5.385736,0 9.764304,4.373322 9.770832,9.747219 0,5.391811 -4.372041,9.772443 -9.754553,9.778165 z"
id="path2"
style="stroke-width:0.805888" />
<path
d="m 102.70961,62.662127 c -5.021442,0 -9.108552,-4.082751 -9.111857,-9.099849 -0.0081,-5.030338 4.078786,-9.119754 9.103557,-9.123864 5.02807,0 9.11516,4.081905 9.12008,9.098962 0,5.030331 -4.0796,9.119755 -9.10356,9.124671 h -0.008 z"
id="path3"
style="stroke-width:0.805888" />
<path
d="m 95.207032,36.641427 a 8.1355955,8.1355955 0 1 1 -16.271191,0 8.1355955,8.1355955 0 1 1 16.271191,0 z"
id="path4"
style="stroke-width:1.16223" />
<path
d="m 107.57503,22.973278 a 7.4846996,7.4846996 0 1 1 -14.969398,0 7.4846996,7.4846996 0 1 1 14.969398,0 z"
id="path5"
style="stroke-width:0.650843" />
<path
d="m 90.655745,9.6301221 a 6.5084989,6.5084989 0 1 1 -13.016997,0 6.5084989,6.5084989 0 1 1 13.016997,0 z"
id="path6"
style="stroke-width:0.619857" />
<path
d="m 49.140597,78.61549 c -8.421855,10.91616 -15.252081,23.19427 -15.252081,38.06847 0,32.24061 24.46548,58.82985 54.800404,58.82985 30.33396,0 54.8004,-26.58908 54.8004,-58.82985 0,-14.8771 -6.84109,-26.765162 -15.73916,-38.06847 -3.33657,-3.501287 -8.15365,-2.980691 -11.66039,-0.740257 -10.26138,5.309635 -15.80033,7.431048 -27.40085,7.379084 -11.219577,-0.05029 -17.114408,-1.882571 -27.376267,-7.476508 -3.506758,-2.14301 -8.835437,-2.663622 -12.172056,0.837665 z m 7.312784,9.056492 c 10.636355,5.881002 20.122305,8.864771 32.235531,8.864771 12.123458,0 21.593698,-2.983809 32.235528,-8.864771 5.80683,8.187664 11.28244,18.340328 11.28244,29.011978 0,26.43418 -19.48259,47.54741 -43.517968,47.54741 -24.036504,0 -44.323856,-21.11307 -44.323856,-47.54741 0,-10.65755 6.268836,-20.817867 12.088325,-29.011978 z"
fill="#262f45"
id="path13"
style="stroke-width:0.805888" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

4
icons/manjaro.svg Normal file
View File

@ -0,0 +1,4 @@
<svg height="512" width="512" xmlns="http://www.w3.org/2000/svg">
<circle style="fill:#fff;stroke-width:5.60681;stroke-dasharray:5.60681,5.60681;stop-color:#000;stroke:none" cx="256" cy="256" r="256"/>
<path style="fill:#35bf5c;stroke-width:5.2857" d="M83.564 90.088v331.824h96.995V183.413h123.939V90.088Zm247.877 0v331.824h96.995V90.088Zm-123.939 119.25v212.574h96.996V209.337Z"/>
</svg>

After

Width:  |  Height:  |  Size: 389 B

57
icons/midnightbsd.svg Normal file
View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="midnightbsd.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<circle
cx="256.65234"
cy="261.90735"
r="245.61403"
style="opacity:0.2;stroke-width:8.77193"
id="circle2" />
<circle
cx="256.65234"
cy="253.13542"
r="245.61403"
style="fill:#4f4f4f;stroke-width:8.77193"
id="circle4" />
<path
d="M 256.65235,7.5213882 A 245.61404,245.61404 0 0 0 11.038308,253.13542 a 245.61404,245.61404 0 0 0 0.1886,5.14035 A 245.61404,245.61404 0 0 1 256.65235,16.293318 245.61404,245.61404 0 0 1 502.08217,256.767 245.61404,245.61404 0 0 0 502.26639,253.13542 245.61404,245.61404 0 0 0 256.65235,7.5213882 Z"
style="opacity:0.1;fill:#ffffff;stroke-width:8.77193"
id="path6" />
<path
d="M 206.762,88.713138 C 133.62787,114.93437 81.298538,184.21471 81.213748,261.90735 c 0,101.73666 85.986072,184.21053 187.722732,184.21053 51.71849,-0.0851 101.00911,-21.90912 135.84498,-60.13569 -5.18515,1.87801 -10.31203,3.5642 -15.45367,5.05414 0.52719,-3.54903 -7.27879,-5.32328 -7.94956,-8.49781 -2.66387,-12.60769 -2.35479,-25.7342 0.80526,-38.30866 2.38084,-9.47394 10.62623,-15.72489 10.6394,-25.49342 0.0202,-14.24417 -1.07936,-26.7441 -1.07936,-26.7441 0,0 9.5051,-3.53607 13.99739,-6.08211 4.5901,-2.60147 9.33766,-8.3015 9.28591,-14.8883 -0.0298,-3.81901 -6.44051,-6.67257 -8.82333,-10.60512 -1.98309,-3.27283 -1.16996,-7.58863 -3.54647,-10.58799 -2.0295,-2.56141 -9.50863,-6.37336 -9.50863,-6.37336 0,0 -4.00173,-16.92463 -11.47889,-16.32744 -3.05259,0.24382 -2.21014,16.75575 -2.21014,16.75575 0,0 -16.23441,5.88674 -17.21834,21.21026 -0.42036,6.54647 -5.48543,9.69414 -11.03344,14.35718 -5.54802,4.66306 -12.46646,10.83966 -18.5547,12.57539 -44.50052,12.68692 -47.36313,38.23154 -48.48546,63.27097 -0.34781,7.75949 4.84854,22.95778 4.84854,22.95778 0,0 -23.23699,-19.65572 -24.05427,-33.7685 -0.82632,-14.2699 14.64753,-24.96021 13.02083,-39.07964 -0.95471,-8.28678 -14.3068,-23.62168 -20.14802,-17.42393 -4.27591,4.5369 11.14546,11.0823 11.75301,19.63406 0.40991,5.77111 -14.87959,20.419 -13.02084,37.74328 1.19716,11.15783 9.15381,26.93794 14.93969,37.36637 C 206.01835,354.23776 160.16112,288.63628 160.16112,212.78798 160.24358,166.84571 175.73489,122.59554 206.762,88.713138 Z M 365.41058,367.06771 c 1.62683,-0.17228 3.18767,0.59755 3.51219,2.80977 1.22783,8.37072 1.68209,23.75237 1.7304,25.44202 -5.55297,0.99541 -11.2099,1.63863 -16.94421,2.02165 0.75587,-3.68007 3.8923,-18.58697 7.72683,-27.4808 0.65026,-1.50813 2.34795,-2.62033 3.97479,-2.79264 z"
style="opacity:0.2;stroke-width:8.77193"
id="path8" />
<path
d="M 206.762,79.941208 C 133.62787,106.16244 81.298538,175.44278 81.213748,253.13542 c 0,101.73666 85.986072,184.21053 187.722732,184.21053 51.71849,-0.0851 101.00911,-21.90912 135.84498,-60.13569 -5.18515,1.87801 -10.31203,3.5642 -15.45367,5.05414 0.52717,-3.54903 -7.27879,-5.32328 -7.94956,-8.49781 -2.66387,-12.60769 -2.35479,-25.7342 0.80523,-38.30866 2.38085,-9.47394 10.62623,-15.72489 10.6394,-25.49342 0.0198,-14.24417 -1.07936,-26.7441 -1.07936,-26.7441 0,0 9.5051,-3.53607 13.99739,-6.08211 4.5901,-2.60147 9.33766,-8.3015 9.28592,-14.8883 -0.0298,-3.81901 -6.44051,-6.67257 -8.82334,-10.60512 -1.98308,-3.27282 -1.16995,-7.58863 -3.54646,-10.58799 -2.0295,-2.56141 -9.50863,-6.37336 -9.50863,-6.37336 0,0 -4.00174,-16.92463 -11.4789,-16.32744 -3.05256,0.24382 -2.21011,16.75575 -2.21011,16.75575 0,0 -16.23441,5.88674 -17.21834,21.21026 -0.42033,6.54647 -5.48543,9.69414 -11.03344,14.35718 -5.54802,4.66306 -12.46646,10.83966 -18.5547,12.57539 -44.50052,12.68692 -47.36313,38.23153 -48.48546,63.27097 -0.3478,7.75949 4.84854,22.95779 4.84854,22.95779 0,0 -23.23699,-19.65573 -24.05427,-33.76851 -0.82633,-14.2699 14.64753,-24.96021 13.02083,-39.07964 -0.95471,-8.28678 -14.3068,-23.62168 -20.14802,-17.42393 -4.27591,4.5369 11.14546,11.0823 11.75301,19.63406 0.40995,5.77111 -14.87959,20.419 -13.02084,37.74328 1.19716,11.15783 9.15381,26.93794 14.93969,37.36637 C 206.01835,345.46583 160.16112,279.86435 160.16112,204.01605 160.24358,158.07378 175.73489,113.82361 206.762,79.941208 Z M 365.41058,358.29578 c 1.62683,-0.17229 3.18767,0.59754 3.51219,2.80977 1.22783,8.37072 1.68209,23.75237 1.7304,25.44202 -5.55297,0.99541 -11.2099,1.63863 -16.94421,2.02165 0.75587,-3.68007 3.8923,-18.58697 7.72683,-27.4808 0.65023,-1.50813 2.34795,-2.62033 3.97479,-2.79264 z"
style="fill:#ffffff;stroke-width:8.77193"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

5
icons/mint.svg Normal file
View File

@ -0,0 +1,5 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M256 20.813C126.11 20.813 20.813 126.11 20.813 256c0 129.89 105.297 235.187 235.187 235.187 129.89 0 235.187-105.297 235.187-235.187C491.187 126.11 385.89 20.813 256 20.813ZM0 256C0 114.615 114.615 0 256 0s256 114.615 256 256-114.615 256-256 256S0 397.385 0 256Z" fill="#000"/>
<path d="M110.309 120.715v187.318c0 45.732 37.52 83.252 83.252 83.252h124.878c45.732 0 83.252-37.52 83.252-83.252V203.967c0-34.237-28.201-62.439-62.439-62.439-15.995 0-30.526 6.323-41.626 16.372-11.1-10.049-25.631-16.372-41.626-16.372-34.238 0-62.439 28.202-62.439 62.439v104.066h41.626V203.967c0-11.741 9.072-20.813 20.813-20.813s20.813 9.072 20.813 20.813v104.066h41.626V203.967c0-11.741 9.072-20.813 20.813-20.813s20.813 9.072 20.813 20.813v104.066c0 23.235-18.39 41.626-41.626 41.626H193.561c-23.236 0-41.626-18.391-41.626-41.626V120.715h-41.626Z" fill="#000"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

322790
icons/miyo.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 MiB

99
icons/ms-dos.svg Normal file
View File

@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg30"
sodipodi:docname="ms-dos.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs34" />
<sodipodi:namedview
id="namedview32"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg30" />
<rect
style="opacity:0.2;stroke-width:8.47458"
width="491.52542"
height="491.52542"
x="10.503183"
y="13.502787"
rx="36.864407"
ry="36.864407"
id="rect2" />
<rect
style="fill:#48487b;stroke-width:8.47458"
width="491.52542"
height="491.52542"
x="10.503183"
y="5.0282073"
rx="36.864407"
ry="36.864407"
id="rect4" />
<path
style="opacity:0.2;stroke-width:8.47458"
d="m 357.96081,360.89848 q 0,44.22546 -24.35977,68.75387 -24.22369,24.5284 -68.72449,24.5284 -45.04515,0 -69.26881,-24.28064 -24.08761,-24.40453 -24.08761,-69.24939 0,-44.84485 24.22368,-68.87775 24.35978,-24.03288 69.40493,-24.03288 44.3647,0 68.58839,24.40452 24.22368,24.40453 24.22368,68.75387 z m -151.87431,0 q 0,33.44783 14.83361,50.79115 14.8336,17.21943 43.95644,17.21943 28.98677,0 43.68428,-17.09554 14.83361,-17.09558 14.83361,-50.91504 0,-33.32395 -14.69751,-50.54339 -14.56143,-17.21944 -43.54819,-17.21944 -29.25893,0 -44.22863,17.21944 -14.83361,17.21944 -14.83361,50.54339 z"
id="path6" />
<path
style="opacity:0.2;stroke-width:8.47458"
d="M 78.299793,64.350237 V 250.79092 h 32.971397 v -86.69888 c 0,-6.26692 -0.13763,-13.41046 -0.46348,-21.41817 -0.32576,-8.00773 -0.66729,-15.48115 -0.99311,-22.44439 -0.32576,-6.96323 -0.56542,-12.17648 -0.7283,-15.6581 h 0.99315 l 42.00875,146.21954 h 33.96451 l 44.95498,-145.95471 h 0.99305 l -0.72822,15.6581 c -0.16271,6.78916 -0.40237,14.02344 -0.7283,21.683 -0.16272,7.65956 -0.26492,14.44008 -0.26492,20.35885 v 88.25476 h 34.46117 V 64.350237 h -50.3509 L 170.65944,206.92836 h -0.72829 L 128.65069,64.350237 Z m 293.233567,0 c -21.77267,0 -38.97293,4.56076 -51.60884,13.70499 -12.63593,8.97489 -18.96847,21.61435 -18.96847,37.870763 0,8.29754 1.66084,15.39204 4.96557,21.31884 3.30477,5.92683 7.49195,11.02743 12.54634,15.26087 5.24876,4.0641 10.68262,7.51586 16.32017,10.39459 5.63759,2.70941 10.89747,5.08527 15.75742,7.11732 7.77595,3.21743 14.66351,6.25792 20.68988,9.13667 6.02636,2.70939 10.80166,5.6875 14.30085,8.90491 3.69359,3.21741 5.52834,7.11353 5.52834,11.68564 0,5.58814 -2.31932,10.24439 -6.9849,13.96982 -4.47117,3.5561 -12.1539,5.32971 -23.04025,5.32971 -10.49753,0 -21.08773,-1.52017 -31.77966,-4.56832 -10.49754,-3.21743 -20.70668,-6.70227 -30.62104,-10.4277 v 35.81833 c 17.30151,7.2815 36.92461,10.92425 58.89168,10.92425 24.49427,0 43.35532,-4.75175 56.57442,-14.23464 13.41355,-9.65224 20.12712,-22.51197 20.12712,-38.59906 0,-9.48289 -2.04181,-17.433 -6.1242,-23.86784 -4.08236,-6.43482 -9.89726,-12.04217 -17.47882,-16.78363 -7.38715,-4.74146 -16.45318,-9.3022 -27.14513,-13.70498 -13.02471,-5.4188 -22.81971,-9.97955 -29.42929,-13.70498 -6.60956,-3.72542 -9.93113,-8.82602 -9.93113,-15.26085 0,-5.41881 2.24889,-9.82167 6.72006,-13.20842 4.47117,-3.386753 10.87417,-5.064893 19.23333,-5.064893 7.97033,0 15.75661,0.918 23.33818,2.78072 7.58154,1.862723 16.1299,4.491963 25.65546,7.878713 L 433.3713,77.062107 c -10.88638,-4.0641 -21.19904,-7.20009 -30.91897,-9.40148 -9.71995,-2.20139 -20.03263,-3.31039 -30.91897,-3.31039 z"
id="path8" />
<path
style="fill:#ffffff;stroke-width:8.47458"
d="M 152.09413,242.31634 110.06556,96.088347 h -0.97741 q 0.24432,5.222443 0.73297,15.667293 0.48873,10.44487 0.97741,22.45644 0.48872,12.01159 0.48872,21.41196 v 86.6923 H 78.299793 V 55.875667 h 50.336537 l 41.29551,142.572273 h 0.73288 L 214.40393,55.875667 h 50.33654 V 242.31634 h -34.45366 v -88.25903 q 0,-8.87814 0.24424,-20.36747 0.48881,-11.48933 0.73288,-21.67307 0.48881,-10.44487 0.73322,-15.667293 h -0.97746 L 186.05908,242.31634 Z"
id="path10" />
<path
style="fill:#ffffff;stroke-width:8.47458"
d="m 434.23199,189.48302 q 0,24.13061 -20.1203,38.60898 -19.82865,14.22434 -56.57005,14.22434 -32.95061,0 -58.90287,-10.92227 v -35.8149 q 14.87153,5.58814 30.61783,10.41427 16.0379,4.57212 31.78419,4.57212 16.32954,0 23.03629,-5.33415 6.99837,-5.58813 6.99837,-13.97034 0,-6.85818 -5.54039,-11.6843 -5.24878,-4.82612 -14.28831,-8.89022 -9.03955,-4.31811 -20.70349,-9.14424 -7.28993,-3.04807 -15.7463,-7.11217 -8.45634,-4.31811 -16.32949,-10.41426 -7.58158,-6.35016 -12.53875,-15.24038 -4.95715,-8.89022 -4.95715,-21.33654 0,-24.384613 18.9539,-37.846953 18.95386,-13.71634 51.61288,-13.71634 16.32951,0 30.90942,3.30208 14.5799,3.30208 30.90944,9.39824 l -14.28834,29.97275 q -14.28832,-5.08012 -25.66064,-7.87419 -11.37236,-2.79407 -23.32788,-2.79407 -12.53871,0 -19.24548,5.08012 -6.70676,5.08013 -6.70676,13.208333 0,9.65225 9.91434,15.24039 9.91436,5.58813 29.45144,13.71633 16.03792,6.60418 27.11864,13.71635 11.37234,7.11217 17.49589,16.76441 6.12357,9.65226 6.12357,23.87661 z"
id="path12" />
<path
style="fill:#bd66ff;stroke-width:8.47458"
d="m 357.96081,352.4239 q 0,44.22546 -24.35977,68.75387 -24.22369,24.52841 -68.72449,24.52841 -45.04515,0 -69.26881,-24.28065 -24.08761,-24.40452 -24.08761,-69.24939 0,-44.84485 24.22368,-68.87775 24.35978,-24.03288 69.40493,-24.03288 44.3647,0 68.58839,24.40453 24.22368,24.40452 24.22368,68.75386 z m -151.87431,0 q 0,33.44784 14.83361,50.79116 14.8336,17.21942 43.95644,17.21942 28.98677,0 43.68428,-17.09554 14.83361,-17.09558 14.83361,-50.91504 0,-33.32395 -14.69751,-50.54339 -14.56143,-17.21944 -43.54819,-17.21944 -29.25893,0 -44.22863,17.21944 -14.83361,17.21944 -14.83361,50.54339 z"
id="path14" />
<path
style="opacity:0.2;stroke-width:8.47458"
d="m 256.26589,359.17507 q 0,46.16383 -28.65247,70.64851 -28.65246,24.35717 -82.53625,24.35717 H 86.774363 V 267.74007 h 64.432447 q 49.74981,0 77.40446,23.97458 27.65462,23.97459 27.65462,67.46042 z m -35.92252,1.02017 q 0,-66.9503 -69.99185,-66.9503 h -29.50781 v 135.30339 h 24.23346 q 75.2662,0 75.2662,-68.35309 z"
id="path16" />
<path
style="fill:#e73d3d;stroke-width:8.47458"
d="m 256.26589,350.7005 q 0,46.16383 -28.65247,70.64851 -28.65246,24.35717 -82.53625,24.35717 H 86.774363 V 259.2655 h 64.432447 q 49.74981,0 77.40446,23.97457 27.65462,23.9746 27.65462,67.46043 z m -35.92252,1.02017 q 0,-66.95031 -69.99185,-66.95031 h -29.50781 v 135.30339 h 24.23346 q 75.2662,0 75.2662,-68.35308 z"
id="path18" />
<path
style="opacity:0.2;stroke-width:8.47458"
d="m 442.70657,402.4537 c 0,16.12593 -8.5108,28.77859 -25.53239,37.95798 -17.0216,9.17938 -40.50171,13.76907 -70.44037,13.76907 -29.9387,0 -54.44495,-3.18383 -73.51876,-9.55151 V 416.5949 c 12.07203,3.88677 24.8684,6.94656 38.38911,9.17939 13.64139,2.23284 26.31704,3.34924 38.02692,3.34924 17.14232,0 29.75762,-2.23283 37.84589,-6.69847 8.20897,-4.46565 12.31346,-10.46119 12.31346,-17.98663 0,-6.78117 -3.74234,-12.52861 -11.22701,-17.24234 -7.48465,-4.71374 -22.93685,-10.29581 -46.35663,-16.74617 -24.14408,-6.69847 -41.16568,-14.34796 -51.06476,-22.94847 -9.89909,-8.60049 -14.84863,-18.93763 -14.84863,-31.01141 0,-15.13358 7.84683,-27.04197 23.54051,-35.72517 15.69366,-8.6832 36.75937,-13.0248 63.19715,-13.0248 25.3513,0 50.58188,3.80407 75.69173,11.41221 l -13.76215,24.18891 c -23.54048,-6.78117 -44.54583,-10.17175 -63.01607,-10.17175 -14.00358,0 -29.71143,2.10878 -36.95466,6.32633 -7.2432,4.13486 -10.86481,9.63422 -10.86481,16.49808 0,4.71375 1.44864,8.7659 4.34593,12.1565 2.89729,3.30788 11.05874,6.45035 17.69837,9.42745 6.63961,2.97709 20.28239,6.90521 37.54542,11.78434 19.43599,5.54071 33.68099,10.70929 42.73502,15.50571 9.05405,4.79643 15.69368,10.21309 19.9189,16.24999 4.22522,6.0369 6.33783,13.14884 6.33783,21.33586 z"
id="path20" />
<path
style="fill:#ffeb3b;stroke-width:8.47458"
d="m 442.70657,393.97913 c 0,16.12593 -8.5108,28.77859 -25.53239,37.95798 -17.0216,9.17937 -40.50171,13.76907 -70.44037,13.76907 -29.9387,0 -54.44495,-3.18383 -73.51876,-9.55151 v -28.03434 c 12.07203,3.88676 24.8684,6.94656 38.38911,9.17939 13.64139,2.23283 26.31704,3.34924 38.02692,3.34924 17.14232,0 29.75762,-2.23283 37.84589,-6.69848 8.20897,-4.46564 12.31346,-10.46119 12.31346,-17.98663 0,-6.78117 -3.74234,-12.52861 -11.22701,-17.24233 -7.48465,-4.71375 -22.93685,-10.29582 -46.35663,-16.74617 -24.14408,-6.69848 -41.16568,-14.34797 -51.06476,-22.94848 -9.89909,-8.60049 -14.84863,-18.93763 -14.84863,-31.01141 0,-15.13357 7.84683,-27.04196 23.54051,-35.72517 15.69366,-8.6832 36.75937,-13.02479 63.19715,-13.02479 25.3513,0 50.58188,3.80406 75.69173,11.4122 l -13.76215,24.18891 c -23.54048,-6.78117 -44.54583,-10.17174 -63.01607,-10.17174 -14.00358,0 -29.71143,2.10878 -36.95466,6.32632 -7.2432,4.13486 -10.86481,9.63422 -10.86481,16.49809 0,4.71374 1.44864,8.76589 4.34593,12.15649 2.89729,3.30788 11.05874,6.45036 17.69837,9.42746 6.63961,2.97708 20.28239,6.9052 37.54542,11.78434 19.43599,5.54071 33.68099,10.70928 42.73502,15.50571 9.05405,4.79642 15.69368,10.21308 19.9189,16.24998 4.22522,6.0369 6.33783,13.14885 6.33783,21.33587 z"
id="path22" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:8.47458"
d="m 47.380833,5.0282073 c -20.42288,0 -36.87765,16.4547697 -36.87765,36.8776497 v 8.47457 c 0,-20.42288 16.45477,-36.87764 36.87765,-36.87764 H 465.15096 c 20.42288,0 36.87764,16.45476 36.87764,36.87764 v -8.47457 c 0,-20.42288 -16.45476,-36.8776497 -36.87764,-36.8776497 z"
id="path24" />
<path
style="opacity:0.2;stroke-width:8.47458"
d="m 299.665,272.39116 c -10.46485,5.82781 -17.3393,13.13286 -20.77265,21.84851 12.61692,2.16978 32.32442,16.86547 39.57561,25.44028 v 0 c -2.89729,-3.39059 -4.3366,-7.4519 -4.3366,-12.16565 0,-6.86386 3.61485,-12.35083 10.85805,-16.48569 1.38606,-0.80704 3.1629,-1.5149 5.09799,-2.1683 -8.48787,-7.49085 -18.63114,-12.98098 -30.4224,-16.46915 z m -80.55814,3.85659 c -8.9117,3.86882 -16.75119,8.99442 -23.37129,15.52569 -0.84254,0.83594 -1.56835,1.77464 -2.36692,2.64831 9.8333,5.74874 16.93034,14.11652 21.38506,25.00992 1.78551,-3.31497 3.83537,-6.35583 6.17386,-9.07044 5.32719,-6.12779 12.05246,-10.5668 20.09402,-13.4236 -3.53211,-4.99596 -7.65247,-9.57712 -12.41393,-13.70497 -2.95278,-2.55985 -6.17051,-4.83537 -9.5008,-6.98491 z"
id="path26" />
<path
style="fill:#bd66ff;stroke-width:8.47458"
d="m 265.13772,259.2655 c -30.03011,0 -53.14574,8.01144 -69.38559,24.03337 -16.14913,16.02193 -24.232,38.99247 -24.232,68.88903 0,6.12702 0.55034,11.75862 1.22492,17.31329 l 33.60037,-12.61254 c -0.0491,-1.53017 -0.26492,-2.88463 -0.26492,-4.46902 2e-5,-22.21596 4.94144,-39.0699 14.83051,-50.54952 9.97982,-11.47963 24.72075,-17.21399 44.22671,-17.21399 19.32451,0 33.857,5.73436 43.56461,17.21399 3.26772,3.8284 5.80009,8.48384 7.97802,13.50635 l 31.18379,-11.71874 c -3.70501,-7.4916 -8.3772,-14.1936 -14.13533,-19.99472 -16.14912,-16.26967 -39.01463,-24.3975 -68.59109,-24.3975 z"
id="path28" />
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

5
icons/mx.svg Normal file
View File

@ -0,0 +1,5 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg">
<rect ry="35.246" y="24.117" height="463.767" width="512" style="color:#000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000;solid-opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#fff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/>
<rect ry="23.832" y="38.554" x="14.915" height="433.039" width="482.169" style="color:#000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000;solid-opacity:1;fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:#fff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/>
<path d="m365.086 106.282-95.62 111.478-95.305-111.044-39.102 33.564L235.52 257.333l-14.672 17.106-24.901-29.432-67.997 80.362-68.013 80.35H452.06l-42.502-51.055-42.501-51.055-11.767 14.138-65.316-76.103 98.73-115.106-23.62-20.256zM256.024 281.217l65.825 76.71-15.044 18.074-42.861-50.632-22.74-26.875z" style="fill:#fff;fill-rule:evenodd;stroke:#000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

56
icons/netboot.svg Normal file
View File

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg"
version="1.1"
width="512"
height="512"
viewBox="0, 0, 400,400"
sodipodi:docname="netboot.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs9" />
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg" />
<g
id="svgg"
transform="matrix(1.3947804,0,0,1.3947804,-78.956483,-78.956877)">
<path
id="path0"
d="m 84,107.129 c -2.225,0.829 -5.61,4.156 -6.405,6.297 -0.505,1.358 -0.601,12.627 -0.696,82.266 l -0.11,80.692 -8.295,0.108 -8.294,0.108 -0.115,3.008 -0.115,3.008 6.992,5.492 6.993,5.492 H 199.997 326.04 l 6.996,-5.456 6.996,-5.456 -0.116,-3.044 -0.116,-3.044 -8.295,-0.108 -8.295,-0.108 -0.105,-80.892 c -0.118,-90.687 0.196,-82.065 -3.112,-85.653 -3.522,-3.821 9.8,-3.443 -120.108,-3.41 -105.717,0.028 -114.217,0.079 -115.885,0.7 m 229.874,8.541 0.926,0.869 v 79.931 79.93 h -44.61 -44.61 l -0.417,1.098 c -0.765,2.012 -2.447,3.778 -4.516,4.741 l -2.047,0.953 -18.513,0.004 c -19.958,0.004 -19.821,0.017 -22.667,-2.154 -0.673,-0.513 -1.641,-1.768 -2.15,-2.788 L 174.344,276.4 H 129.772 85.2 v -79.746 -79.746 l 0.829,-1.054 0.829,-1.054 h 113.045 113.045 l 0.926,0.87 M 206.68,135.5 c -0.353,0.825 -1.122,2.76 -1.708,4.3 -1.434,3.763 -2.637,6.897 -5.992,15.6 -0.509,1.32 -1.58,4.11 -2.38,6.2 -0.8,2.09 -1.907,4.97 -2.46,6.4 -1.497,3.871 -2.885,7.485 -3.996,10.4 -0.545,1.43 -1.341,3.443 -1.768,4.474 -1.114,2.689 -1.089,2.726 1.81,2.726 2.897,0 2.876,0.018 4.222,-3.739 0.406,-1.134 1.303,-3.501 1.992,-5.261 0.689,-1.76 1.589,-4.1 2,-5.2 0.411,-1.1 1.311,-3.44 2,-5.2 0.689,-1.76 1.589,-4.1 2,-5.2 0.411,-1.1 1.311,-3.44 2,-5.2 0.689,-1.76 1.589,-4.1 2,-5.2 0.411,-1.1 1.311,-3.44 2,-5.2 0.689,-1.76 1.589,-4.1 1.999,-5.2 0.409,-1.1 1.117,-2.945 1.571,-4.1 l 0.827,-2.1 h -2.738 -2.738 l -0.641,1.5 m -26.346,10.839 c -1.614,0.846 -7.524,3.894 -13.134,6.774 -5.61,2.88 -11.685,6.007 -13.5,6.948 l -3.3,1.712 v 2.057 2.056 l 3.7,1.91 c 2.035,1.05 6.22,3.214 9.3,4.809 12.015,6.221 19.812,10.195 20.002,10.195 0.109,0 0.198,-1.233 0.198,-2.74 v -2.74 l -13.064,-6.56 c -7.186,-3.608 -13.05,-6.74 -13.032,-6.96 0.018,-0.22 5.897,-3.348 13.064,-6.951 l 13.032,-6.551 v -2.749 c 0,-1.512 -0.075,-2.749 -0.166,-2.749 -0.091,0 -1.486,0.692 -3.1,1.539 m 36.066,1.203 v 2.743 l 13.42,6.663 c 7.381,3.665 13.336,6.795 13.232,6.957 -0.103,0.162 -6.142,3.263 -13.42,6.89 L 216.4,177.39 v 2.705 c 0,1.488 0.102,2.705 0.226,2.705 0.198,0 9.535,-4.749 27.374,-13.923 l 5.4,-2.777 v -2.281 -2.281 l -7.8,-3.995 c -4.29,-2.198 -11.631,-5.964 -16.314,-8.369 -4.683,-2.406 -8.598,-4.374 -8.7,-4.374 -0.102,0 -0.186,1.234 -0.186,2.742 M 155.2,203.8 v 2.6 h 14.4 14.4 v -2.6 -2.6 h -14.4 -14.4 v 2.6 m 42,0 v 2.6 h 5.2 5.2 v -2.6 -2.6 h -5.2 -5.2 v 2.6 m 23.6,0 v 2.6 h 5 5 v -2.6 -2.6 h -5 -5 v 2.6 m -65.432,7.14 c -0.118,0.306 -0.158,1.524 -0.091,2.708 l 0.123,2.152 9.718,0.107 9.719,0.107 -0.119,-2.707 -0.118,-2.707 -9.51,-0.107 c -7.813,-0.088 -9.548,-0.009 -9.722,0.447 m 28.106,-0.28 c -0.151,0.15 -0.274,1.417 -0.274,2.814 v 2.54 l 9.7,-0.107 9.7,-0.107 v -2.6 -2.6 l -9.426,-0.107 c -5.185,-0.059 -9.55,0.016 -9.7,0.167 m 23.326,2.54 v 2.8 h 9.6 9.6 v -2.8 -2.8 h -9.6 -9.6 v 2.8 m 28,0 v 2.8 h 9.6 9.6 v -2.8 -2.8 h -9.6 -9.6 v 2.8 m -74,10.2 v 2.6 h 9 9 v -2.6 -2.6 h -9 -9 v 2.6 m -5.6,8.4 v 2.6 h 9.8 9.8 v -2.6 -2.6 h -9.8 -9.8 v 2.6 m 32.8,0 v 2.6 h 7.4 7.4 v -2.6 -2.6 h -7.4 -7.4 v 2.6 m -32.634,7.144 c -0.116,0.303 -0.156,1.52 -0.089,2.704 l 0.123,2.152 h 23.6 23.6 v -2.6 -2.6 l -23.511,-0.103 c -19.668,-0.087 -23.546,-0.013 -23.723,0.447 M 216,241.2 v 2.8 h 9.6 9.6 v -2.8 -2.8 h -9.6 -9.6 v 2.8 m -65.2,9.203 v 2.802 l 28.3,-0.102 28.3,-0.103 0.126,-1.768 c 0.07,-0.972 0.021,-2.187 -0.107,-2.7 L 207.185,247.6 H 178.992 150.8 v 2.803 m 74.482,-0.11 0.118,2.707 h 9.6 9.6 v -2.6 -2.6 l -9.718,-0.107 -9.719,-0.107 0.119,2.707"
stroke="none"
fill="#090909"
fill-rule="evenodd" />
<path
id="path1"
d="m 143.9,115.1 c 30.855,0.057 81.345,0.057 112.2,0 30.855,-0.057 5.61,-0.103 -56.1,-0.103 -61.71,0 -86.955,0.046 -56.1,0.103 m 65.889,18.789 c 1.543,0.084 2.941,0.366 3.13,0.631 0.241,0.338 0.294,0.303 0.179,-0.12 -0.124,-0.461 -0.849,-0.607 -3.13,-0.631 l -2.968,-0.032 2.789,0.152 m 17.811,22.29 c 0,0.11 0.54,0.48 1.2,0.821 0.66,0.341 1.2,0.531 1.2,0.421 0,-0.11 -0.54,-0.48 -1.2,-0.821 -0.66,-0.341 -1.2,-0.531 -1.2,-0.421 m 4,2 c 0,0.11 0.54,0.48 1.2,0.821 0.66,0.341 1.2,0.531 1.2,0.421 0,-0.11 -0.54,-0.48 -1.2,-0.821 -0.66,-0.341 -1.2,-0.531 -1.2,-0.421 m 4,2 c 0,0.11 0.54,0.48 1.2,0.821 0.66,0.341 1.2,0.531 1.2,0.421 0,-0.11 -0.54,-0.48 -1.2,-0.821 -0.66,-0.341 -1.2,-0.531 -1.2,-0.421 m -85.173,1.189 c -0.279,0.336 -0.411,1.436 -0.323,2.7 l 0.148,2.132 0.074,-2.22 c 0.041,-1.221 0.29,-2.436 0.554,-2.7 0.264,-0.264 0.376,-0.48 0.249,-0.48 -0.127,0 -0.443,0.255 -0.702,0.568 m 99.297,2.432 c 0.002,1.32 0.077,1.812 0.166,1.093 0.089,-0.719 0.087,-1.799 -0.004,-2.4 -0.091,-0.601 -0.164,-0.013 -0.162,1.307 M 158,170.179 c 0,0.11 0.54,0.48 1.2,0.821 0.66,0.341 1.2,0.531 1.2,0.421 0,-0.11 -0.54,-0.48 -1.2,-0.821 -0.66,-0.341 -1.2,-0.531 -1.2,-0.421 m -3.14,33.297 c -0.033,1.582 0.075,2.96 0.24,3.063 0.165,0.102 0.249,-0.742 0.186,-1.877 -0.204,-3.678 -0.365,-4.125 -0.426,-1.186 m 42.077,0.324 c 0.002,1.76 0.072,2.43 0.156,1.489 0.085,-0.94 0.084,-2.38 -0.002,-3.2 -0.086,-0.819 -0.155,-0.049 -0.154,1.711 m 33.795,10e-4 c -0.073,1.65 0.003,3 0.168,3 0.165,-10e-4 0.3,-1.351 0.3,-3.001 0,-3.875 -0.298,-3.875 -0.468,10e-4 m -75.765,6.741 c -0.115,0.298 -0.152,1.693 -0.082,3.1 l 0.126,2.558 0.194,-3.101 c 0.195,-3.103 0.151,-3.572 -0.238,-2.557 m 19.747,1.558 c 0.206,3.782 0.365,4.155 0.426,1 0.033,-1.705 -0.075,-3.1 -0.24,-3.1 -0.165,0 -0.249,0.945 -0.186,2.1 m 8.253,-1.558 c -0.115,0.298 -0.152,1.693 -0.082,3.1 l 0.126,2.558 0.194,-3.101 c 0.195,-3.103 0.151,-3.572 -0.238,-2.557 m 19.747,1.558 c 0.206,3.782 0.365,4.155 0.426,1 0.033,-1.705 -0.075,-3.1 -0.24,-3.1 -0.165,0 -0.249,0.945 -0.186,2.1 m 23.423,0.9 c 0.002,1.76 0.072,2.43 0.156,1.489 0.085,-0.94 0.084,-2.38 -0.002,-3.2 -0.086,-0.819 -0.155,-0.049 -0.154,1.711 m 27.997,0.2 c 0,1.65 0.071,2.325 0.157,1.5 0.087,-0.825 0.087,-2.175 0,-3 -0.086,-0.825 -0.157,-0.15 -0.157,1.5 m -99.274,18.276 c -0.033,1.582 0.075,2.96 0.24,3.063 0.165,0.102 0.249,-0.742 0.186,-1.877 -0.204,-3.678 -0.365,-4.125 -0.426,-1.186 m 19.872,0.325 c -0.073,1.65 0.003,3 0.168,3 0.165,-10e-4 0.3,-1.351 0.3,-3.001 0,-3.875 -0.298,-3.875 -0.468,10e-4 m 28,0 c -0.073,1.65 0.003,3 0.168,3 0.165,-10e-4 0.3,-1.351 0.3,-3.001 0,-3.875 -0.298,-3.875 -0.468,10e-4 m -47.765,6.741 c -0.115,0.298 -0.152,1.693 -0.082,3.1 l 0.126,2.558 0.194,-3.101 c 0.195,-3.103 0.151,-3.572 -0.238,-2.557 m 47.747,1.558 c 0.206,3.782 0.365,4.155 0.426,1 0.033,-1.705 -0.075,-3.1 -0.24,-3.1 -0.165,0 -0.249,0.945 -0.186,2.1 m -37.785,7.4 c 7.882,0.061 20.662,0.061 28.4,0 7.739,-0.061 1.291,-0.111 -14.329,-0.11 -15.62,0 -21.952,0.049 -14.071,0.11 m 60.138,-0.033 c -0.368,0.367 -0.338,5.642 0.033,5.873 0.165,0.102 0.241,-1.144 0.169,-2.77 l -0.132,-2.956 9.732,-0.114 9.731,-0.115 -9.633,-0.092 c -5.299,-0.051 -9.754,0.027 -9.9,0.174 m 19.729,3.015 c -0.108,1.695 -0.052,2.937 0.124,2.76 0.175,-0.177 0.264,-1.563 0.196,-3.082 l -0.124,-2.76 -0.196,3.082 M 64.122,276.299 c 2.377,0.071 6.157,0.07 8.4,-10e-4 2.243,-0.071 0.298,-0.129 -4.322,-0.129 -4.62,0.001 -6.455,0.059 -4.078,0.13 m 37.278,-0.004 c 42.104,0.274 73.706,0.276 73.538,0.005 -0.102,-0.165 -20.29,-0.257 -44.862,-0.205 -24.572,0.053 -37.476,0.143 -28.676,0.2 m 123.667,-0.028 c -0.147,0.146 -0.264,0.461 -0.261,0.7 0.004,0.258 0.134,0.232 0.323,-0.065 0.248,-0.392 9.842,-0.521 44.894,-0.602 l 44.577,-0.104 -44.633,-0.098 c -24.549,-0.054 -44.754,0.022 -44.9,0.169 m 102.655,0.032 c 2.377,0.071 6.157,0.07 8.4,-10e-4 2.243,-0.071 0.298,-0.129 -4.322,-0.129 -4.62,0.001 -6.455,0.059 -4.078,0.13 M 176,279.325 c 0,0.069 0.585,0.654 1.3,1.3 l 1.3,1.175 -1.175,-1.3 C 176.33,279.288 176,279.016 176,279.325 m 46.575,1.175 -1.175,1.3 1.3,-1.175 c 0.715,-0.646 1.3,-1.231 1.3,-1.3 0,-0.309 -0.33,-0.037 -1.425,1.175"
stroke="none"
fill="#a4a4a4"
fill-rule="evenodd" />
<path
id="path2"
d="m 323.396,196 c 0,43.89 0.047,61.845 0.104,39.9 0.057,-21.945 0.057,-57.855 0,-79.8 -0.057,-21.945 -0.104,-3.99 -0.104,39.9 m -246.8,0.6 c 0,43.78 0.047,61.749 0.104,39.932 0.057,-21.818 0.057,-57.638 0,-79.6 -0.057,-21.963 -0.104,-4.112 -0.104,39.668 m 107.399,7.282 c -0.107,1.585 -0.051,2.737 0.126,2.559 0.176,-0.177 0.264,-1.474 0.195,-2.882 l -0.125,-2.559 -0.196,2.882 m -23.672,6.417 c 2.708,0.069 7.028,0.069 9.6,0 2.572,-0.07 0.357,-0.127 -4.923,-0.126 -5.28,0 -7.385,0.057 -4.677,0.126 m 28,0 c 2.708,0.069 7.028,0.069 9.6,0 2.572,-0.07 0.357,-0.127 -4.923,-0.126 -5.28,0 -7.385,0.057 -4.677,0.126 m 23.177,0 c 2.695,0.069 7.105,0.069 9.8,0 2.695,-0.069 0.49,-0.126 -4.9,-0.126 -5.39,0 -7.595,0.057 -4.9,0.126 m 28,0 c 2.695,0.069 7.105,0.069 9.8,0 2.695,-0.069 0.49,-0.126 -4.9,-0.126 -5.39,0 -7.595,0.057 -4.9,0.126 m -74.177,16 c 2.597,0.07 6.737,0.069 9.2,-0.001 2.462,-0.07 0.337,-0.127 -4.723,-0.126 -5.06,0 -7.075,0.057 -4.477,0.127 m 22.45,5.701 0.027,2.6 7.4,0.014 7.4,0.015 -7.282,-0.124 -7.282,-0.123 -0.145,-2.491 -0.146,-2.491 0.028,2.6 m -27.45,2.699 c 2.708,0.069 7.028,0.069 9.6,0 2.572,-0.07 0.357,-0.127 -4.923,-0.126 -5.28,0 -7.385,0.057 -4.677,0.126 m 7.006,3.601 c 6.56,0.062 17.18,0.061 23.6,0 6.419,-0.062 1.051,-0.113 -11.929,-0.112 -12.98,0 -18.232,0.05 -11.671,0.112 m 48.438,0.242 c -0.115,0.298 -0.144,1.693 -0.065,3.1 l 0.144,2.558 0.077,-2.893 0.077,-2.893 9.7,-0.114 9.7,-0.115 -9.713,-0.092 c -7.867,-0.075 -9.752,0.01 -9.92,0.449 M 164.929,253.5 c 7.882,0.061 20.662,0.061 28.4,0 7.739,-0.061 1.291,-0.111 -14.329,-0.11 -15.62,0 -21.952,0.049 -14.071,0.11 m 65.394,-0.001 c 2.708,0.069 7.028,0.069 9.6,0 2.572,-0.07 0.357,-0.127 -4.923,-0.126 -5.28,0 -7.385,0.057 -4.677,0.126"
stroke="none"
fill="#7c7c7c"
fill-rule="evenodd" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

53
icons/netbsd.svg Normal file
View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="netbsd.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<path
d="m 355.51203,15.595757 c -89.16366,0 -150.01165,35.55859 -187.82537,35.55859 -8.68204,0 -38.41765,-6.26598 -38.41765,-6.26598 -1.53448,-0.39471 -3.08189,-0.73731 -4.63957,-1.02721 -13.38008,-7.51182 -28.393252,-10.81726 -43.125702,-9.7585 h -0.0517 c -9.35868,0.68017 -18.96134,2.82419 -29.63466,8.45737 -13.59997,7.17762 -32.5832,24.02576 -39.15382,47.95359 -6.5706196,23.927843 0.29476,44.222563 5.8551,55.161183 L 176.46931,459.89838 c 0.057,0.1029 0.11386,0.20564 0.17119,0.30819 17.12331,33.63392 51.10031,50.33932 86.14868,45.93341 13.76808,-1.73061 35.84091,-9.87167 50.57299,-26.15962 21.21083,-23.4509 18.26417,-33.20253 19.65395,-44.03307 3.03925,-55.34237 -46.90458,-119.56391 -74.06185,-169.59239 25.03424,-9.47396 46.01451,-22.20856 63.25902,-32.57969 30.32431,-18.23751 39.22431,-24.84138 47.08048,-24.84138 26.18927,0 37.30483,4.51975 37.30483,4.51975 53.06428,19.28846 106.00557,-28.83729 91.84972,-83.49509 7.24073,-28.05267 -3.51384,-57.670253 -27.06699,-74.541223 0,0 -44.95636,-39.82151 -115.8693,-39.82151 z"
style="opacity:0.2;stroke-width:8.76553"
id="path2" />
<path
d="m 355.51203,6.834437 c -89.16366,0 -150.01165,35.55859 -187.82537,35.55859 -8.68204,0 -38.41765,-6.26598 -38.41765,-6.26598 -1.53448,-0.39472 -3.08189,-0.73732 -4.63957,-1.02721 -13.38008,-7.51182 -28.393252,-10.81727 -43.125702,-9.7585 h -0.0517 c -9.35868,0.68016 -18.96134,2.82419 -29.63466,8.45736 -13.59997,7.17763 -32.5832,24.02576 -39.15382,47.95359 -6.5706196,23.927843 0.29476,44.222563 5.8551,55.161193 L 176.46931,451.13705 c 0.057,0.10291 0.11386,0.20564 0.17119,0.3082 17.12331,33.63392 51.10031,50.33931 86.14868,45.9334 13.76808,-1.73061 35.84091,-9.87167 50.57299,-26.15961 21.21083,-23.45091 18.26417,-33.20254 19.65395,-44.03307 3.03925,-55.34238 -46.90458,-119.56391 -74.06185,-169.5924 25.03424,-9.47396 46.01451,-22.20856 63.25902,-32.57968 30.32431,-18.23752 39.22431,-24.84139 47.08048,-24.84139 26.18927,0 37.30483,4.51975 37.30483,4.51975 53.06428,19.28846 106.00557,-28.83729 91.84972,-83.49509 7.24073,-28.052673 -3.51384,-57.670253 -27.06699,-74.541213 0,0 -44.95636,-39.82151 -115.8693,-39.82151 z"
style="fill:#f16813;stroke-width:8.76553"
id="path4" />
<path
d="m 355.51937,85.723437 c -62.61091,0 -123.98186,35.561743 -187.83271,35.561743 -25.04436,0 -56.97592,-8.76553 -56.97592,-8.76553 l 48.2104,87.65526 c 0,0 22.53992,8.76553 35.0621,8.76553 63.57739,0 123.96959,-70.50113 174.05831,-70.50113 37.56654,0 62.6109,9.14244 62.6109,9.14244 0,0 -25.04436,-26.04237 -62.6109,-26.04237 -62.6109,0 -86.40305,17.27685 -86.40305,17.27685 0,0 48.83651,-35.31631 86.40305,-35.31631 25.04436,0 62.6109,9.01973 62.6109,9.01973 0,0 -37.56654,-26.796213 -75.13308,-26.796213 z M 86.532818,104.05019 c -0.72368,0.0526 -1.41105,0.23728 -1.98105,0.53811 -5.11569,2.6999 -5.11138,6.19129 -3.52186,9.31828 L 239.12384,428.40634 c 3.15964,6.20622 9.64146,8.8322 14.91901,8.16877 2.63877,-0.33169 5.21322,-1.29843 7.31275,-3.6197 2.09955,-2.32128 2.9848,-9.29956 1.61233,-12.48529 C 204.55707,313.47225 151.08685,214.19491 92.549328,107.25411 c -1.27728,-2.35665 -3.84569,-3.35993 -6.01651,-3.20392 z"
style="opacity:0.2;stroke-width:8.76553"
id="path6" />
<path
d="m 355.51937,76.955497 c -62.61091,0 -123.98186,35.561743 -187.83271,35.561743 -25.04436,0 -56.97592,-8.76553 -56.97592,-8.76553 l 48.2104,87.65526 c 0,0 22.53992,8.76553 35.0621,8.76553 63.57739,0 123.96959,-70.50113 174.05831,-70.50113 37.56654,0 62.6109,9.14245 62.6109,9.14245 0,0 -25.04436,-26.04238 -62.6109,-26.04238 -62.6109,0 -86.40305,17.27685 -86.40305,17.27685 0,0 48.83651,-35.316303 86.40305,-35.316303 25.04436,0 62.6109,9.019723 62.6109,9.019723 0,0 -37.56654,-26.796213 -75.13308,-26.796213 z M 86.532818,95.282247 c -0.72368,0.0526 -1.41105,0.23728 -1.98105,0.53812 -5.11569,2.69989 -5.11138,6.191283 -3.52186,9.318273 L 239.12384,419.6384 c 3.15964,6.20622 9.64146,8.83221 14.91901,8.16877 2.63877,-0.33169 5.21322,-1.29843 7.31275,-3.6197 2.09955,-2.32127 2.9848,-9.29955 1.61233,-12.48529 C 204.55707,304.70431 151.08685,205.42698 92.549328,98.486167 c -1.27728,-2.35665 -3.84569,-3.35993 -6.01651,-3.20392 z"
style="fill:#ffffff;stroke-width:8.76553"
id="path8" />
<path
d="m 355.51203,6.834437 c -89.16366,0 -150.01165,35.55859 -187.82537,35.55859 -8.68204,0 -38.41765,-6.26598 -38.41765,-6.26598 -1.53448,-0.39472 -3.08189,-0.73732 -4.63957,-1.02721 -13.38008,-7.51182 -28.393252,-10.81727 -43.125702,-9.7585 h -0.0514 c -9.35868,0.68016 -18.96169,2.82419 -29.63501,8.45736 -13.59997,7.17763 -32.5832,24.02576 -39.15382,47.95359 -2.40886,8.7722 -2.9931496,17.03673 -2.51667,24.550333 0.27132,-5.03653 1.00972,-10.297023 2.51667,-15.784803 6.57062,-23.92784 25.55385,-40.77597 39.15382,-47.95359 10.67332,-5.63317 20.27633,-7.7772 29.63501,-8.45736 h 0.0514 c 14.73245,-1.05877 29.745622,2.24668 43.125702,9.75849 1.55768,0.2899 3.10509,0.6325 4.63957,1.02721 0,0 29.73561,6.26599 38.41765,6.26599 37.81372,0 98.66171,-35.55859 187.82537,-35.55859 70.91294,0 115.8693,39.82151 115.8693,39.82151 17.2661,12.36758 27.57261,31.59874 29.0358,52.028193 1.27351,-23.596313 -9.31582,-46.668433 -29.0358,-60.793723 0,0 -44.95636,-39.82151 -115.8693,-39.82151 z M 499.25297,125.49433 c -0.28307,1.49043 -0.42167,2.98457 -0.80465,4.46836 1.21633,4.69642 1.76923,9.30599 2.0373,13.86734 0.40571,-5.94639 -0.005,-12.07961 -1.23265,-18.3357 z M 262.99464,264.64706 c -1.37737,0.55034 -2.63759,1.18115 -4.04036,1.71201 25.79275,47.5148 72.03906,107.81547 74.02761,161.16927 0.0137,-0.11371 0.0196,-0.22847 0.0342,-0.3424 2.90105,-52.82514 -42.27045,-113.59908 -70.02145,-162.53888 z"
style="opacity:0.2;fill:#ffffff;stroke-width:8.76553"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

186
icons/netrunner.svg Normal file
View File

@ -0,0 +1,186 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg76"
sodipodi:docname="netrunner.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs80" />
<sodipodi:namedview
id="namedview78"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg76" />
<circle
style="opacity:0.2;stroke-width:8.77193"
cx="255.4088"
cy="262.15079"
r="245.61403"
id="circle2" />
<ellipse
style="fill:#2d4a5e;stroke-width:8.77193"
cx="254.96141"
cy="253.37886"
rx="239.90352"
ry="239.47368"
id="ellipse4" />
<path
style="fill:#bcdced;stroke-width:8.77193"
d="m 312.584,227.83092 c 0,135.64888 61.88098,28.70807 -74.01342,28.70807 -135.8944,0 -213.337198,128.4142 -213.337198,-7.23468 0,-8.67919 -15.8767105,-13.1787 -14.99685,-21.62553 C 21.307322,121.39745 100.27596,35.25716 203.08734,13.23345 c 16.72457,-3.5826504 34.0801,7.56994 51.87691,7.56994 135.8944,0 57.61975,71.37864 57.61975,207.02753 z"
id="path6" />
<path
style="fill:#65a3cf;stroke-width:8.77193"
d="m 254.96425,7.7648196 c -14.82209,0.10825 -29.60405,1.55337 -44.1656,4.3174404 l 71.46272,123.79043 119.1606,-79.20093 C 359.12584,25.10287 307.77648,7.9556696 254.96425,7.7648196 Z"
id="path8" />
<path
style="fill:#6d8da4;stroke-width:8.77193"
d="m 302.49393,364.91257 -49.33186,133.98439 -1.46579,-0.0719 v 0.0246 a 246.05858,245.61404 0 0 0 3.26797,0.1433 246.05858,245.61404 0 0 0 177.47936,-75.91489 z"
id="path10" />
<path
style="fill:#426f8e;stroke-width:8.77193"
d="m 214.73944,419.0484 -52.11924,61.78728 a 246.05858,245.61404 0 0 0 76.36466,17.43763 v -0.0719 l -1.8983,-0.0965 z"
id="path12" />
<path
style="opacity:0.7;fill:#ff0000;stroke-width:8.77193"
d="m 432.44361,423.078 h 0.0246 a 246.05858,245.61404 0 0 0 4.58957,-4.91707 246.05858,245.61404 0 0 1 -4.61359,4.91707 z"
id="path14" />
<path
style="opacity:0.7;fill:#ff0000;stroke-width:8.77193"
d="m 148.99567,474.69533 a 246.05858,245.61404 0 0 0 13.192,5.97244 246.05858,245.61404 0 0 1 -13.192,-5.97244 z"
id="path16" />
<path
style="opacity:0.7;fill:#1b5e99;stroke-width:8.77193"
d="M 401.61419,56.52784 16.426802,312.62364 a 246.05858,245.61404 0 0 0 4.2051,14.77523 L 483.14514,344.8365 A 246.05858,245.61404 0 0 0 501.02283,253.37885 246.05858,245.61404 0 0 0 401.61419,56.52784 Z"
id="path18" />
<path
style="fill:#81bde3;stroke-width:8.77193"
d="m 125.49514,44.70287 c -4.52655,2.861 -8.95829,5.86882 -13.28812,9.01864 l 58.58309,208.4841 17.73352,-167.13268 z"
id="path20" />
<path
style="fill:#316f9f;fill-opacity:0;stroke-width:8.77193"
d="m 400.65304,55.80827 -118.22346,80.35224 63.67726,110.28647 66.77704,-181.38021 c -3.97949,-3.21239 -8.05842,-6.30006 -12.23084,-9.2585 z"
id="path22" />
<path
style="fill:#4f96cb;stroke-width:8.77193"
d="m 210.67851,11.89037 a 246.05858,245.61404 0 0 0 -13.6726,3.07017 l -8.48228,80.11239 70.91004,56.70229 22.99591,-15.61471 z"
id="path24" />
<path
style="fill:#5687a5;stroke-width:8.77193"
d="m 346.10684,246.44698 -43.61291,118.46559 129.9737,58.16543 a 246.05858,245.61404 0 0 0 9.6357,-10.33786 z"
id="path26" />
<path
style="opacity:0.7;fill:#3885c0;stroke-width:8.77193"
d="m 170.79011,262.20561 -22.49129,212.17791 a 246.05858,245.61404 0 0 0 14.29736,6.47616 l 52.23938,-61.93121 z"
id="path28" />
<path
style="fill:#224c6d;stroke-width:8.77193"
d="m 464.04197,124.16764 -79.17609,16.95793 v 0.0246 l -58.1746,158.01809 144.94388,-161.75987 c -2.39311,-4.49078 -4.92541,-8.9063 -7.59319,-13.24013 z"
id="path30" />
<path
style="fill:#29628f;stroke-width:8.77193"
d="M 165.71997,302.98136 146.30441,473.4001 c 5.64826,2.8266 11.4035,5.43498 17.25293,7.81935 l 52.26342,-58.33333 -31.62237,-111.91749 z"
id="path32" />
<path
style="fill:#438ec5;stroke-width:8.77193"
d="m 188.52363,95.07293 -9.56359,90.1864 42.84398,-9.18653 37.14907,-24.68135 z"
id="path34" />
<path
style="fill:#2f6c9f;stroke-width:8.77193"
d="m 282.42958,136.16051 -22.99591,15.61471 -0.48053,-0.38368 -37.14909,24.68135 74.46637,-15.95053 z"
id="path36" />
<path
style="fill:#316e9e;stroke-width:8.77193"
d="m 296.27037,160.12228 89.79696,-19.23657 27.58548,-74.95546 c -3.97949,-3.21238 -8.05842,-6.30005 -12.23084,-9.25849 l -118.41569,80.47216 z"
id="path38" />
<path
style="fill:#4c7da1;stroke-width:8.77193"
d="m 412.57149,65.45054 -27.87382,75.72299 78.98384,-16.93393 C 449.88375,102.05596 432.63047,82.21044 412.57149,65.45054 Z"
id="path40" />
<path
style="opacity:0.7;fill:#ff00ff;stroke-width:8.77193"
d="m 471.4189,137.11994 c 0,0 0.17017,0.33842 0,0 z"
id="path42" />
<path
style="fill:#4c7798;stroke-width:8.77193"
d="m 10.707862,235.91722 c -0.51366,5.9437 -0.8102305,11.90413 -0.8890905,17.86939 0.11018,19.66916 2.5868705,39.25389 7.3769505,58.33333 l 66.87316,-44.46958 -70.11708,-30.34196 z"
id="path44" />
<path
style="fill:#71848e;stroke-width:8.77193"
d="m 401.10958,341.74233 40.99375,70.99781 a 246.05858,245.61404 0 0 0 41.04181,-67.90364 z"
id="path46" />
<path
style="fill:#35576f;stroke-width:8.77193"
d="M 471.56309,137.43177 326.451,299.35954 l -14.36944,39.02479 171.06358,6.45217 c 11.75112,-29.06786 17.81954,-60.11233 17.87769,-91.45765 -0.0972,-40.48184 -10.21743,-80.31201 -29.45974,-115.94708 z"
id="path48" />
<path
style="fill:#285477;stroke-width:8.77193"
d="m 84.309172,267.48249 -67.88237,45.14115 c 1.24705,4.96764 2.64943,9.89513 4.2051,14.77523 l 141.651888,5.34883 3.46019,-30.31799 z"
id="path50" />
<path
style="fill:#265679;stroke-width:8.77193"
d="m 356.99205,265.29977 -30.25272,33.72396 -14.48957,39.3606 88.85982,3.358 z"
id="path52" />
<path
style="fill:#4f82a6;stroke-width:8.77193"
d="m 17.964672,318.04442 c -0.10684,0.0754 -0.18142,0.14035 -0.28835,0.21596 18.69875,67.70665 65.55797,124.09932 128.628078,155.06786 l 16.0755,-140.9643 h -0.0474 l -0.0474,0.38386 -141.652028,-5.34884 c -0.98628,-3.09019 -1.80685,-6.22828 -2.66846,-9.35454 z m 129.421038,155.8354 c 0.31018,0.15088 0.6022,0.33053 0.91313,0.47965 0.001,-0.0175 -0.001,-0.0316 0,-0.0474 -0.30237,-0.14737 -0.61123,-0.28246 -0.91313,-0.43175 z"
id="path54" />
<path
style="fill:#20476a;stroke-width:8.77193"
d="m 165.71997,302.98136 -3.34007,29.23864 28.11412,1.05543 -6.29563,-22.30673 z"
id="path56" />
<path
style="fill:#1d4568;stroke-width:8.77193"
d="m 346.10684,246.44698 -19.41556,52.72066 30.30077,-33.81991 z"
id="path58" />
<path
style="fill:#204a6c;stroke-width:8.77193"
d="m 353.24351,227.06649 -26.55223,72.10115 48.70711,-54.3517 z"
id="path60" />
<path
style="fill:#2c5774;stroke-width:8.77193"
d="m 375.35033,244.79196 -18.35828,20.50781 44.11753,76.44256 21.24179,0.7914 60.38526,2.27865 c 0.79912,-1.81347 1.57597,-3.63652 2.33083,-5.46875 0.65473,-1.73737 1.21158,-3.50265 1.82621,-5.25288 z"
id="path62" />
<path
style="fill:#2e639c;stroke-width:8.77193"
d="m 258.83295,151.46342 -37.02893,24.60938 53.44084,-11.44119 z"
id="path64" />
<path
style="fill:#1d4568;stroke-width:8.77193"
d="m 346.10684,246.44698 -19.41556,52.69666 30.32481,-33.81989 z"
id="path66" />
<path
style="fill:#343f4b;stroke-width:8.77193"
d="m 384.86588,141.12557 -371.827188,79.70462 -1.75413,0.38377 c -0.63619,4.74965 -1.13302,9.51686 -1.4898105,14.29551 l 174.4036385,75.45916 52.88817,187.13679 16.07551,0.7914 z"
id="path68" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="M 212.77346,295.29742 97.964392,240.20291 335.88275,191.45399 249.33234,420.49289 Z"
id="path70" />
<path
style="fill:#ffffff;stroke-width:8.77193"
d="M 212.77346,286.52942 97.964392,231.43492 335.88275,182.68599 249.33234,411.72489 Z"
id="path72" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.77193"
d="M 255.40879,7.7648196 A 245.61404,245.61404 0 0 0 9.7947515,253.37885 a 245.61404,245.61404 0 0 0 0.1542,4.31744 A 245.61404,245.61404 0 0 1 255.40879,16.53675 245.61404,245.61404 0 0 1 500.8001,257.69629 245.61404,245.61404 0 0 0 501.02283,253.37885 245.61404,245.61404 0 0 0 255.40879,7.7648196 Z"
id="path74" />
</svg>

After

Width:  |  Height:  |  Size: 8.9 KiB

20
icons/nixos.svg Normal file
View File

@ -0,0 +1,20 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="a" x1="125.937" y1="267.578" x2="211.587" y2="415.677" gradientUnits="userSpaceOnUse">
<stop stop-color="#699AD7"/>
<stop offset=".243" stop-color="#7EB1DD"/>
<stop offset="1" stop-color="#7EBAE4"/>
</linearGradient>
<linearGradient id="b" x1="134.786" y1="262.539" x2="218.917" y2="411.215" gradientUnits="userSpaceOnUse">
<stop stop-color="#415E9A"/>
<stop offset=".232" stop-color="#4A6BAF"/>
<stop offset="1" stop-color="#5277C3"/>
</linearGradient>
</defs>
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="m162.443 261.346 116.911 202.567-53.728.504-31.212-54.422-31.435 54.131-26.696-.01-13.672-23.627 44.785-77.027-31.792-55.338 26.839-46.778Z" fill="#5277C3"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M204.641 177.906 87.711 380.462l-27.3-46.289 31.513-54.248-62.586-.165L16 256.631l13.62-23.658 89.084.282 32.017-55.209 53.92-.14Zm8.97 161.92 233.842.012-26.428 46.793-62.726-.174 31.151 54.296-13.357 23.119-27.294.03-44.298-77.308-63.808-.129-27.082-46.639Zm136.104-88.755L232.805 48.504 286.532 48l31.213 54.422 31.435-54.131 26.695.01 13.673 23.628-44.786 77.027 31.792 55.337-26.839 46.778Z" fill="#7EBAE4"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="m162.443 261.346 116.911 202.567-53.728.504-31.212-54.422-31.435 54.131-26.696-.01-13.672-23.627 44.785-77.027-31.792-55.338 26.839-46.778Zm135.793-89.267-233.841-.011 26.427-46.793 62.726.173-31.15-54.295 13.357-23.12 27.293-.03 44.299 77.309 63.808.129 27.081 46.638Zm9.123 162.389 116.93-202.556 27.301 46.289-31.514 54.248 62.586.165L496 255.743l-13.62 23.658-89.084-.281-32.016 55.208-53.921.14Z" fill="#5277C3"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="m162.582 261.216 116.911 202.567-53.728.504-31.212-54.422-31.435 54.131-26.696-.01-13.672-23.628 44.785-77.027-31.792-55.337 26.839-46.778Z" fill="url(#a)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="m162.582 261.216 116.911 202.567-53.728.504-31.212-54.422-31.435 54.131-26.696-.01-13.672-23.628 44.785-77.027-31.792-55.337 26.839-46.778Z" fill="url(#b)"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

742
icons/openbsd.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 71 KiB

15
icons/openindiana.svg Normal file
View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg enable-background="new 0 0 120.071 150.431" height="150.43" viewBox="0,0,120.071,150.431" width="120.07" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<path id="a" d="m107.664 58.121c1.723 9.34-19.725 26.273-48.256 37.254-28.534 10.978-53.349 11.851-55.074 2.507-1.025-5.558 5.18-12.888 17.259-20.834.031.195.166.349.202.546-9.778 6.829-15.64 13.435-14.759 18.202 1.591 8.619 27.552 5.041 53.883-5.089 26.328-10.132 45.143-24.381 43.553-33.002-1.32-7.146-11.287-8.418-31.656-2.56-.023-.089-.076-.248-.102-.332 22.617-6.686 33.495-4.572 34.95 3.308"/>
<clipPath id="b">
<use xlink:href="#a"/>
</clipPath>
</defs>
<use fill="#656668" xlink:href="#a"/>
<g clip-path="url(#b)">
<path d="m0 84.886 26.12 65.545 93.951-81.173-26.121-65.547z" fill="none"/>
</g>
<path d="m44.074 39.358c6.31 0 11.538 2.284 15.687 6.852 3.771 4.166 5.657 9.097 5.657 14.793 0 5.722-1.993 10.722-5.977 15-3.985 4.279-9.107 6.418-15.366 6.418-6.285 0-11.42-2.139-15.404-6.418-3.985-4.278-5.977-9.278-5.977-15 0-5.671 1.885-10.59 5.656-14.756 4.148-4.592 9.389-6.889 15.724-6.889zm-.019 5.158c-4.382 0-8.147 1.619-11.295 4.855-3.147 3.237-4.722 7.152-4.722 11.745 0 2.961.718 5.722 2.153 8.281 1.435 2.56 3.374 4.535 5.817 5.928 2.443 1.394 5.125 2.09 8.046 2.09s5.603-.696 8.046-2.09c2.443-1.393 4.382-3.368 5.817-5.928s2.153-5.32 2.153-8.281c0-4.593-1.58-8.508-4.741-11.745-3.159-3.236-6.917-4.855-11.274-4.855z" fill="#4667a9"/>
<path d="m74.679 23.549c1.199 0 2.224.428 3.073 1.28.85.854 1.274 1.882 1.274 3.087 0 1.18-.425 2.196-1.274 3.049-.85.854-1.874 1.279-3.073 1.279-1.174 0-2.187-.426-3.036-1.279s-1.273-1.869-1.273-3.049c0-1.205.425-2.233 1.273-3.087.85-.852 1.862-1.28 3.036-1.28zm-2.616 16.864h5.271v40.954h-5.271z" fill="#59595b"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

57
icons/openmandriva.svg Normal file
View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="openmandriva.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<circle
style="opacity:0.2;stroke-width:8.77193"
cx="258.2742"
cy="260.81091"
r="245.61403"
id="circle2" />
<circle
style="fill:#248afd;stroke-width:8.77193"
cx="258.2742"
cy="252.03897"
r="245.61403"
id="circle4" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.77193"
d="M 258.2742,6.4249356 A 245.61404,245.61404 0 0 0 12.660158,252.03897 a 245.61404,245.61404 0 0 0 0.1886,5.14035 A 245.61404,245.61404 0 0 1 258.2742,15.196866 245.61404,245.61404 0 0 1 503.70402,255.67055 245.61404,245.61404 0 0 0 503.88824,252.03897 245.61404,245.61404 0 0 0 258.2742,6.4249356 Z"
id="path6" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="M 258.2742,50.284586 A 210.52632,210.52632 0 0 0 47.747878,260.8109 210.52632,210.52632 0 0 0 258.2742,471.33722 210.52632,210.52632 0 0 0 463.45841,307.24072 157.89474,157.89474 0 0 1 328.44964,383.61792 157.89474,157.89474 0 0 1 170.5549,225.72318 157.89474,157.89474 0 0 1 328.44964,67.828446 a 157.89474,157.89474 0 0 1 15.31579,0.75438 210.52632,210.52632 0 0 0 -85.49123,-18.29824 z m 70.17544,35.08772 A 140.35088,140.35088 0 0 0 188.09876,225.72318 140.35088,140.35088 0 0 0 328.44964,366.07406 140.35088,140.35088 0 0 0 468.80052,225.72318 140.35088,140.35088 0 0 0 328.44964,85.372306 Z m 0,35.087724 A 105.26316,105.26316 0 0 1 433.7128,225.72318 105.26316,105.26316 0 0 1 328.44964,330.98634 105.26316,105.26316 0 0 1 223.18648,225.72318 105.26316,105.26316 0 0 1 328.44964,120.46003 Z"
id="path8" />
<path
style="fill:#ffffff;stroke-width:8.77193"
d="M 258.2742,41.512656 A 210.52632,210.52632 0 0 0 47.747878,252.03897 210.52632,210.52632 0 0 0 258.2742,462.56529 210.52632,210.52632 0 0 0 463.45841,298.4688 157.89474,157.89474 0 0 1 328.44964,374.84599 157.89474,157.89474 0 0 1 170.5549,216.95125 157.89474,157.89474 0 0 1 328.44964,59.056516 a 157.89474,157.89474 0 0 1 15.31579,0.75438 210.52632,210.52632 0 0 0 -85.49123,-18.29824 z m 70.17544,35.08772 A 140.35088,140.35088 0 0 0 188.09876,216.95125 140.35088,140.35088 0 0 0 328.44964,357.30213 140.35088,140.35088 0 0 0 468.80052,216.95125 140.35088,140.35088 0 0 0 328.44964,76.600376 Z m 0,35.087724 A 105.26316,105.26316 0 0 1 433.7128,216.95125 105.26316,105.26316 0 0 1 328.44964,322.21441 105.26316,105.26316 0 0 1 223.18648,216.95125 105.26316,105.26316 0 0 1 328.44964,111.6881 Z"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

5
icons/opensuse.svg Normal file
View File

@ -0,0 +1,5 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M281.904 192.046c9.201-8.613 21.235-13.091 33.928-12.636l.015.004c26.149.919 46.617 22.855 45.735 48.957-.402 12.585-5.716 24.26-14.951 32.914-9.254 8.612-21.349 13.091-34.035 12.708-26.103-.957-46.578-22.924-45.697-49.033.384-12.635 5.808-24.302 15.005-32.914Zm20.671 25.105c0 7.694 9.385 13.972 21.004 13.972 11.613 0 21.024-6.278 21.032-13.972 0-7.766-9.412-14.009-21.032-14.009-11.619 0-21.004 6.243-21.004 14.009Z" fill="#73BA25"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M430.46 289.715c-.829.566-1.768 1.206-2.798 1.886l.043-.004h.003l-.03.021c-15.62 10.913-52.061 36.374-98.839 32.216-42.055-3.713-96.952-27.789-163.159-71.349 2.952 6.894 16.757 39.464 19.015 44.976l.924 1.068c9.584 4.976 101.553 51.754 147.211 50.832 36.764-.766 76.113-18.676 91.854-28.134l4.961-.919c1.422 1.114 1.192 3.216.801 5.202-.966 4.513-3.175 12.743-4.673 16.651l-1.262 3.181c-1.805 4.819-3.531 9.297-6.866 12.057-9.281 8.417-24.079 15.116-47.268 25.183-35.845 15.655-94.001 25.607-147.978 25.266-19.353-.428-38.03-2.572-54.438-4.486l-.12-.013c-43.921-4.951-77.2-8.702-89.886 20.952C36.45 380.409 11 321.177 11 256c0-55.306 18.325-106.331 49.235-147.336 39.845 9.785 68.796 19.174 76.252 21.675.092-3.671.705-36.513.705-36.513l.476-1.148 1.265-.348c7.437 1.072 166.149 24.574 233.084 63.501 6.826 3.988 10.799 8.182 14.847 12.455.852.899 1.707 1.802 2.593 2.707 18.478 19.1 42.932 98.525 45.543 114.908l-1.031 1.604c-.636.25-1.854 1.081-3.509 2.21ZM267.662 177.611c-13.256 12.325-20.851 29.129-21.522 47.234h.039c-1.265 37.359 28.104 68.826 65.478 70.201 18.233.612 35.499-5.78 48.764-18.22 13.226-12.287 20.816-29.091 21.522-47.196 1.265-37.324-28.135-68.865-65.555-70.2-18.153-.575-35.461 5.814-48.726 18.181Z" fill="#73BA25"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

30
icons/oracle.svg Normal file
View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 231 78"
preserveAspectRatio="xMinYMid"
version="1.1"
id="svg4"
xml:space="preserve"
width="231"
height="78"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs8"><rect
x="-138.24641"
y="81.567238"
width="382.3674"
height="240.21156"
id="rect495" /><rect
x="-17.612623"
y="104.35898"
width="171.05238"
height="197.31444"
id="rect291" /></defs><g
id="g1407"
transform="translate(0.34772714,0.1182557)"><path
d="m 99.59,19.52 h 15.24 L 106.78,6.52 91.98,30 h -6.73 l 18,-28.17 a 4.29,4.29 0 0 1 7,-0.05 L 128.3,30 h -6.73 l -3.17,-5.25 h -15.42 l -3.36,-5.23 m 69.93,5.23 V 0.28 h -5.72 v 26.88 a 2.76,2.76 0 0 0 0.85,2 2.89,2.89 0 0 0 2.08,0.87 h 26 l 3.39,-5.25 h -26.63 m -94.54,-4.4 a 10.05,10.05 0 0 0 0,-20.1 h -25 V 30 h 5.71 V 5.54 h 18.94 a 4.81,4.81 0 0 1 0,9.62 H 58.52 L 75.58,30 h 8.29 L 72.41,20.38 h 2.57 M 14.86,30 h 17.27 a 14.86,14.86 0 0 0 0,-29.71 H 14.86 a 14.86,14.86 0 1 0 0,29.71 m 16.88,-5.23 h -16.5 a 9.62,9.62 0 0 1 0,-19.23 h 16.5 a 9.62,9.62 0 1 1 0,19.23 M 140.23,30 h 17.63 l 3.34,-5.23 h -20.58 a 9.62,9.62 0 1 1 0,-19.23 h 16.75 l 3.38,-5.25 h -20.52 a 14.86,14.86 0 1 0 0,29.71 m 69.87,-5.23 a 9.62,9.62 0 0 1 -9.26,-7 h 24.42 l 3.36,-5.24 h -27.78 a 9.61,9.61 0 0 1 9.26,-7 h 16.76 l 3.35,-5.25 h -20.5 a 14.86,14.86 0 0 0 0,29.71 h 17.63 l 3.35,-5.23 h -20.6"
style="fill:#c74634"
id="path2" /><path
id="rect749"
style="fill:#c74634;fill-opacity:1;stroke-width:5.2519;stroke-linecap:square;paint-order:stroke fill markers"
d="m 25.391517,47.930871 h 4.980863 v 3.830025 h -4.980863 z m 61.5008,18.557061 -7.24,-10.240002 h 4.96 l 4.64,7.080002 h 0.24 l 4.76,-7.080002 h 4.72 l -7.28,10.160002 7.64,10.88 h -4.96 l -5.08,-7.72 h -0.24 l -5.12,7.72 h -4.72 z m -21.599998,11.28 q -6.68,0 -6.68,-7.24 V 56.24793 h 4.12 v 13.760002 q 0,2.36 1.04,3.32 1.08,0.92 3.12,0.92 1.4,0 2.6,-0.68 1.2,-0.72 1.88,-2 0.72,-1.28 0.72,-2.96 V 56.24793 h 4.12 v 21.040002 h -3.32 l -0.4,-2.8 h -0.28 q -1.16,1.6 -2.92,2.44 -1.76,0.84 -4,0.84 z M 35.81232,56.24793 h 3.320001 l 0.4,2.800002 h 0.28 q 1.12,-1.600002 2.88,-2.440002 1.8,-0.84 4.04,-0.84 6.68,0 6.68,7.240002 v 14.28 h -4.12 v -13.76 q 0,-2.36 -1.08,-3.28 -1.04,-0.96 -3.08,-0.96 -1.4,0 -2.6,0.72 -1.2,0.68 -1.92,1.96 -0.68,1.28 -0.68,2.96 v 12.36 H 35.81232 Z M 3.61239,47.930871 h 4.44 v 25.517061 h 14.28 v 3.84 h -18.72 z M 26.256768,59.46395 V 77.287932 H 30.37238 V 56.275464 h -6.387612 v 1.825681 z" /></g></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

57
icons/parrot.svg Normal file
View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="parrot.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<circle
style="opacity:0.2;stroke-width:8.77193"
cx="256.72116"
cy="262.18988"
r="245.61403"
id="circle2" />
<circle
style="fill:#55ddff;stroke-width:8.77193"
cx="256.72116"
cy="253.41794"
r="245.61403"
id="circle4" />
<path
style="opacity:0.1;stroke-width:8.77193"
d="m 195.31764,77.979349 -70.17544,30.701751 35.08772,74.5614 v -43.85964 h 35.08772 l 61.40351,122.80701 h 61.40351 v 210.52632 l 30.70175,-149.12281 30.70176,87.7193 V 262.18987 l 61.40351,61.40351 -35.08772,-61.40351 -87.7193,-149.1228 h -61.40351 z"
id="path6" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.77193"
d="M 256.72115,7.8039089 A 245.61404,245.61404 0 0 0 11.107108,253.41794 a 245.61404,245.61404 0 0 0 0.1886,5.14035 A 245.61404,245.61404 0 0 1 256.72115,16.575839 245.61404,245.61404 0 0 1 502.15097,257.04952 245.61404,245.61404 0 0 0 502.33519,253.41794 245.61404,245.61404 0 0 0 256.72115,7.8039089 Z"
id="path8" />
<path
style="fill:#3f3f3f;stroke-width:8.77193"
d="m 195.31764,69.207419 -70.17544,30.70175 35.08772,74.561411 v -43.85965 h 35.08772 l 61.40351,122.80701 h 61.40351 v 210.52632 l 30.70175,-149.12281 30.70176,87.7193 V 253.41794 l 61.40351,61.40351 -35.08772,-61.40351 -87.7193,-149.1228 h -61.40351 z"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

69
icons/pclinuxos.svg Normal file
View File

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg16"
sodipodi:docname="pclinuxos.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs20" />
<sodipodi:namedview
id="namedview18"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg16" />
<circle
cx="257.02591"
cy="260.75079"
r="245.61403"
style="opacity:0.2;stroke-width:8.77193"
id="circle2" />
<circle
cx="257.02591"
cy="251.97888"
r="245.61403"
style="fill:#238adb;stroke-width:8.77193"
id="circle4" />
<circle
cx="257.02591"
cy="260.75079"
r="192.98245"
style="opacity:0.1;stroke-width:8.77193"
id="circle6" />
<circle
cx="257.02591"
cy="251.97888"
r="192.98245"
style="fill:#3f3f3f;stroke-width:8.77193"
id="circle8" />
<path
d="m 390.50659,165.03794 c 0,-0.26587 -1.44667,0.65018 -3.1781,2.03878 -4.40057,3.52924 -8.93438,4.94599 -21.88698,6.83594 -12.06563,1.76055 -17.87957,3.76188 -19.42844,6.65605 -0.53395,0.99756 -2.4306,3.08092 -4.19752,4.67722 -1.76695,1.59629 -3.42619,3.87522 -3.71781,5.03701 -0.72921,2.90542 1.80379,8.19983 6.59608,13.73184 5.35721,6.18434 8.03522,11.68324 8.03524,16.55016 0,3.4736 -0.38684,4.30365 -3.23807,7.01583 -4.88952,4.65128 -11.02044,6.317 -22.78647,6.23631 -17.15396,-0.11789 -33.22,-4.58108 -64.94142,-18.10924 -25.99525,-11.08612 -37.33276,-13.85727 -48.81099,-11.75302 -6.16022,1.12933 -15.5417,5.68009 -20.38788,9.83416 -7.68158,6.58454 -21.94383,27.46579 -30.94162,45.39303 l -5.93647,11.93292 -4.61726,-4.79717 c -7.54095,-7.83764 -9.89411,-10.95289 -9.89411,-13.13219 0,-1.35186 -0.48685,-2.09878 -1.37918,-2.09878 -1.13461,0 -1.29662,0.68843 -0.95949,4.19752 0.44307,4.61126 3.74042,10.16469 10.61369,17.80941 l 3.7178,4.13753 -3.05818,9.77419 c -1.68258,5.39381 -3.52176,12.42129 -4.07758,15.59077 -0.97362,5.55149 -1.20474,6.03187 -7.31565,12.41262 -7.31034,7.63322 -8.31119,7.89897 -17.02988,4.61725 -7.2685,-2.73585 -19.15407,-5.57669 -23.326134,-5.57669 -3.88637,0 -8.39502,1.95705 -8.39502,3.65783 0,0.81201 1.29927,1.12614 4.79715,1.07922 3.93623,-0.0517 7.258664,0.85869 17.869374,4.85713 16.81832,6.33758 18.34901,6.72768 22.24679,5.99644 2.43946,-0.45781 4.63726,-1.96344 8.81475,-5.99644 l 5.5767,-5.39678 1.61903,1.73894 c 2.12149,2.34906 9.74482,6.17125 15.95053,7.97524 l 4.97703,1.43905 -3.83772,0.95937 c -5.23218,1.32853 -8.55833,3.93613 -10.43379,8.09519 -1.54848,3.43393 -1.55892,3.53734 0,4.67723 2.07153,1.5147 16.77754,1.55228 19.72827,0.0614 1.73239,-0.87658 5.066,-5.53549 6.11637,-8.51495 0.14763,-0.41948 2.07784,-0.0518 4.25747,0.77956 4.84571,1.8507 14.08573,1.34621 20.62775,-1.1394 2.33493,-0.88741 4.25746,-1.31625 4.25746,-0.95937 0,0.3564 -1.69999,2.29968 -3.77775,4.37743 -2.50189,2.50187 -3.77776,4.51885 -3.77776,5.93644 0,4.73872 0.1464,4.79716 11.87295,4.79716 7.92703,0 10.94848,-0.25175 11.21333,-1.0193 v -0.0614 c 0.19921,-0.57718 0.46728,-7.66804 0.59965,-15.83058 0.21886,-13.50099 0.38921,-15.05488 1.97882,-17.20978 4.86291,-6.59206 28.06197,-15.91149 42.99446,-17.26973 l 4.37739,-0.41974 v 2.57843 c 0,1.42284 -1.76572,7.59185 -3.95763,13.67188 l -4.01764,11.03348 -4.43735,1.0193 c -5.00071,1.11901 -9.47908,4.4976 -11.09341,8.39498 -1.93151,4.66301 -1.11705,5.03703 10.07401,5.03703 11.82116,0 10.93012,0.50992 17.20981,-10.55374 3.43629,-6.05412 6.38616,-9.54773 16.25034,-19.36839 l 12.05284,-11.99288 3.65781,0.95936 c 7.4437,1.99095 36.44599,26.07093 40.23611,33.40015 1.35284,2.61579 1.04656,4.27402 -1.37912,7.43559 -1.95902,2.55346 -2.04523,5.69164 -0.12036,6.17634 3.31655,0.83438 17.8587,0.69166 19.48842,-0.18176 0.95028,-0.50842 1.74066,-1.73551 1.73894,-2.75824 -0.002,-1.02274 -3.03546,-7.14777 -6.71599,-13.61193 -7.97971,-14.01486 -9.07487,-16.61577 -18.16947,-43.41307 -5.93937,-17.50044 -7.01579,-21.60239 -7.01579,-26.14446 0,-9.44919 3.9803,-16.87116 13.13217,-24.4055 2.63269,-2.16745 4.88116,-4.5574 4.97702,-5.33683 0.0958,-0.77947 0.57106,-3.21005 1.0193,-5.39679 0.87979,-4.2944 0.2886,-9.06962 -1.49923,-12.41262 -0.61614,-1.1534 -3.13185,-4.53686 -5.63601,-7.49466 -5.68271,-6.71232 -6.66093,-8.96773 -4.73718,-11.09341 0.81053,-0.89563 2.55439,-1.55906 4.07756,-1.55906 4.45191,0 11.19004,-2.43035 18.76887,-6.77597 3.9675,-2.27495 7.76801,-4.13755 8.51492,-4.13755 1.95386,0 4.44549,-3.0103 7.4356,-8.99465 1.43537,-2.87262 2.63851,-5.43082 2.63851,-5.69661 z"
style="opacity:0.2;stroke-width:8.77193"
id="path10" />
<path
d="m 390.50659,156.26601 c 0,-0.26587 -1.44667,0.65018 -3.1781,2.03878 -4.40057,3.52924 -8.93438,4.94599 -21.88698,6.83594 -12.06563,1.76055 -17.87957,3.76188 -19.42844,6.65605 -0.53395,0.99756 -2.4306,3.08092 -4.19752,4.67722 -1.76695,1.59629 -3.42619,3.87522 -3.71781,5.03701 -0.72921,2.90542 1.80379,8.19983 6.59608,13.73184 5.35721,6.18434 8.03522,11.68324 8.03524,16.55016 0,3.4736 -0.38684,4.30365 -3.23807,7.01583 -4.88952,4.65128 -11.02044,6.317 -22.78647,6.23631 -17.15396,-0.11789 -33.22,-4.58108 -64.94142,-18.10924 -25.99525,-11.08612 -37.33276,-13.85727 -48.81099,-11.75302 -6.16022,1.12933 -15.5417,5.68009 -20.38788,9.83416 -7.68158,6.58454 -21.94383,27.46579 -30.94162,45.39303 l -5.93647,11.93292 -4.61726,-4.79717 c -7.54095,-7.83764 -9.89411,-10.95289 -9.89411,-13.13219 0,-1.35186 -0.48685,-2.09878 -1.37918,-2.09878 -1.13461,0 -1.29662,0.68843 -0.95949,4.19752 0.44307,4.61126 3.74042,10.1647 10.61369,17.80941 l 3.7178,4.13753 -3.05818,9.77419 c -1.68258,5.39381 -3.52176,12.42129 -4.07758,15.59077 -0.97362,5.55149 -1.20474,6.03187 -7.31565,12.41262 -7.31034,7.63322 -8.31119,7.89897 -17.02988,4.61725 -7.2685,-2.73585 -19.15407,-5.57669 -23.326134,-5.57669 -3.88637,0 -8.39502,1.95705 -8.39502,3.65783 0,0.81201 1.29927,1.12614 4.79715,1.07922 3.93623,-0.0517 7.258664,0.85869 17.869374,4.85713 16.81832,6.33758 18.34901,6.72768 22.24679,5.99644 2.43946,-0.45781 4.63726,-1.96344 8.81475,-5.99644 l 5.5767,-5.39678 1.61903,1.73894 c 2.12149,2.34906 9.74482,6.17125 15.95053,7.97524 l 4.97703,1.43905 -3.83772,0.95937 c -5.23218,1.32853 -8.55833,3.93613 -10.43379,8.09519 -1.54848,3.43393 -1.55892,3.53734 0,4.67723 2.07153,1.5147 16.77754,1.55228 19.72827,0.0614 1.73239,-0.87658 5.066,-5.53549 6.11637,-8.51495 0.14763,-0.41947 2.07784,-0.0518 4.25747,0.77956 4.84571,1.8507 14.08573,1.34621 20.62775,-1.1394 2.33493,-0.88741 4.25746,-1.31625 4.25746,-0.95937 0,0.3564 -1.69999,2.29968 -3.77775,4.37743 -2.50189,2.50187 -3.77776,4.51885 -3.77776,5.93644 0,4.73872 0.1464,4.79716 11.87295,4.79716 7.92703,0 10.94848,-0.25175 11.21333,-1.01929 v -0.0614 c 0.19921,-0.57719 0.46728,-7.66805 0.59965,-15.83059 0.21886,-13.50099 0.38921,-15.05488 1.97882,-17.20978 4.86291,-6.59206 28.06197,-15.91149 42.99446,-17.26973 l 4.37739,-0.41974 v 2.57843 c 0,1.42284 -1.76572,7.59185 -3.95763,13.67188 l -4.01764,11.03348 -4.43735,1.0193 c -5.00071,1.11901 -9.47908,4.4976 -11.09341,8.39498 -1.93151,4.66301 -1.11705,5.03703 10.07401,5.03703 11.82116,0 10.93012,0.50992 17.20981,-10.55374 3.43629,-6.05412 6.38616,-9.54773 16.25034,-19.36839 l 12.05284,-11.99288 3.65781,0.95937 c 7.4437,1.99094 36.44599,26.07092 40.23611,33.40014 1.35284,2.61579 1.04656,4.27402 -1.37912,7.43559 -1.95902,2.55346 -2.04523,5.69164 -0.12036,6.17634 3.31655,0.83438 17.8587,0.69166 19.48842,-0.18176 0.95028,-0.50842 1.74066,-1.73551 1.73894,-2.75824 -0.002,-1.02274 -3.03546,-7.14777 -6.71599,-13.61193 -7.97971,-14.01486 -9.07487,-16.61577 -18.16947,-43.41307 -5.93937,-17.50044 -7.01579,-21.60239 -7.01579,-26.14446 0,-9.44919 3.9803,-16.87116 13.13217,-24.4055 2.63269,-2.16745 4.88116,-4.5574 4.97702,-5.33683 0.0958,-0.77947 0.57106,-3.21005 1.0193,-5.39678 0.87979,-4.29441 0.2886,-9.06963 -1.49923,-12.41263 -0.61614,-1.1534 -3.13185,-4.53686 -5.63601,-7.49466 -5.68271,-6.71232 -6.66093,-8.96773 -4.73718,-11.09341 0.81053,-0.89563 2.55439,-1.55906 4.07756,-1.55906 4.45191,0 11.19004,-2.43035 18.76887,-6.77597 3.9675,-2.27495 7.76801,-4.13755 8.51492,-4.13755 1.95386,0 4.44549,-3.0103 7.4356,-8.99465 1.43537,-2.87262 2.63851,-5.43082 2.63851,-5.69661 z"
style="fill:#fcfcfd;stroke-width:8.77193"
id="path12" />
<path
d="M 257.02592,6.3648339 A 245.61404,245.61404 0 0 0 11.411876,251.97886 245.61404,245.61404 0 0 0 11.600336,257.11867 245.61404,245.61404 0 0 1 257.02592,15.136764 245.61404,245.61404 0 0 1 502.4515,255.61099 245.61404,245.61404 0 0 0 502.63996,251.97886 245.61404,245.61404 0 0 0 257.02592,6.3648339 Z"
style="opacity:0.2;fill:#ffffff;stroke-width:8.77193"
id="path14" />
</svg>

After

Width:  |  Height:  |  Size: 9.0 KiB

121
icons/pisilinux.svg Normal file
View File

@ -0,0 +1,121 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg46"
sodipodi:docname="pisilinux.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs50" />
<sodipodi:namedview
id="namedview48"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg46" />
<path
style="opacity:0.2;stroke-width:12.1951"
d="m 488.28012,27.247786 c -0.90781,-2.70794 -0.82889,-6.11975 -2.53597,-8.35844 -23.33702,3.36292 -46.4372,9.12096 -68.03749,18.63297 -22.88309,9.82484 -47.748,26.31865 -65.23349,43.96426 28.49253,29.657204 50.56226,65.835804 76.40181,93.961694 12.03854,17.43053 24.1655,44.47554 34.44759,62.9521 2.27943,-4.12545 16.04706,-21.77272 17.95151,-26.10347 15.04819,-30.98002 18.22558,-66.05615 17.4263,-99.9885 -0.34536,-28.624014 -4.59833,-57.052494 -10.42026,-85.060614 z"
id="path2" />
<path
style="opacity:0.2;stroke-width:12.1951"
d="m 21.545289,27.247786 c 0.90782,-2.70794 0.82888,-6.11975 2.53599,-8.35844 23.33701,3.36292 46.43719,9.12096 68.03748,18.63297 22.883091,9.82484 47.748001,26.31865 65.233491,43.96426 -28.49253,29.657204 -50.56225,65.835804 -76.401811,93.961694 -12.03854,17.43053 -24.1655,44.47554 -34.4476,62.9521 -2.27942,-4.12545 -16.04706,-21.77272 -17.95151,-26.10347 -15.04818,-30.98002 -18.22557,-66.05615 -17.42629,-99.9885 0.34537,-28.624014 4.59833,-57.052494 10.42025,-85.060614 z"
id="path4" />
<path
style="opacity:0.2;stroke-width:12.1951"
d="m 170.12574,71.250266 c -4.70964,3.13306 -9.28675,6.44604 -13.75492,9.89809 -10.53554,7.90957 -20.16396,17.01652 -29.54548,26.245474 -3.56758,3.67717 -7.05717,7.42218 -10.4805,11.22422 -1.5682,1.72793 -3.12545,3.465 -4.66302,5.21747 -1.17365,1.36216 -2.3395,2.73077 -3.49689,4.10606 -0.007,0.009 -0.0146,0.0171 -0.022,0.0256 -0.0219,0.0268 -0.0451,0.0537 -0.0671,0.0793 -32.288171,38.04938 -57.915121,81.5627 -78.426381,126.94861 -2.13759,4.87864 -4.20572,9.78702 -6.21444,14.71947 -0.44334,1.0656 -0.89002,2.13008 -1.32751,3.19778 -0.15085,0.41549 -0.3093,0.82866 -0.46237,1.24344 -2.27408,5.71787 -4.45821,11.47174 -6.54159,17.26144 -0.24689,0.68036 -0.48718,1.36312 -0.72701,2.04578 -1.00181,2.81957 -1.9881,5.64395 -2.94154,8.48053 -0.3671,0.81646 -0.47895,1.63554 -0.43476,2.45204 -0.003,0.0116 -0.006,0.0232 -0.009,0.0354 0.006,0.0171 0.0119,0.0342 0.0174,0.0524 0.1189,1.75915 0.94092,3.5043 1.47727,5.17684 3.52927,9.97999 7.65295,19.75671 12.33291,29.25901 0.0117,0.0232 0.0233,0.0476 0.0349,0.0707 0.74689,1.51534 1.50838,3.02325 2.28425,4.52393 0.0639,0.12341 0.12788,0.2467 0.19192,0.36999 8.30509,16.00136 18.24386,31.15086 29.79412,45.01442 7.59746,9.33958 15.93874,18.03188 24.82286,26.1381 0.79494,0.72963 1.60242,1.44512 2.40638,2.16475 0.27037,0.24086 0.5372,0.48561 0.80842,0.72549 3.20814,2.84754 6.48506,5.61637 9.83056,8.30064 20.510571,16.68353 44.552841,30.30331 69.174581,39.49953 0.83328,0.30951 1.66507,0.62134 2.50235,0.91987 6.89437,2.54354 13.89562,4.7861 20.98573,6.7119 1.74195,0.47316 3.48853,0.93243 5.24024,1.36821 17.15891,4.30266 34.76889,6.76299 52.4505,7.40832 0.0719,0.003 0.14439,0.008 0.21671,0.0102 1.54272,0.0549 3.08606,0.089 4.62957,0.11585 0.52244,0.01 1.04487,0.0256 1.56742,0.0317 1.04438,0.0121 2.0889,0.008 3.13339,0.007 1.04401,5.2e-4 2.08797,0.005 3.13193,-0.007 0.52305,-0.007 1.04597,-0.022 1.56888,-0.0317 1.54231,-0.0268 3.08371,-0.061 4.62521,-0.11585 0.0768,-0.003 0.15415,-0.007 0.23122,-0.0102 17.67777,-0.64609 35.28513,-3.10649 52.44032,-7.40832 1.72881,-0.43012 3.45116,-0.88427 5.17046,-1.3508 0.0244,-0.007 0.0488,-0.0122 0.0732,-0.0183 7.09558,-1.92746 14.10367,-4.17153 21.00317,-6.7177 0.81999,-0.29244 1.63529,-0.59792 2.45146,-0.90097 0.0118,-0.004 0.0232,-0.0101 0.0354,-0.0146 24.90766,-9.19871 48.72665,-23.01482 69.1993,-39.52276 3.34615,-2.68567 6.62478,-5.45596 9.83347,-8.30499 1.06683,-0.94719 2.13172,-1.89647 3.18283,-2.86119 8.88352,-8.10581 17.22438,-16.79761 24.8214,-26.13664 11.53978,-13.85099 21.4703,-28.98562 29.77084,-44.97089 0.0817,-0.15609 0.16208,-0.31231 0.24281,-0.46865 0.76585,-1.4821 1.51761,-2.97094 2.25517,-4.46736 0.0121,-0.0244 0.0244,-0.0488 0.0366,-0.0744 4.67961,-9.50175 8.80241,-19.27817 12.33146,-29.25756 0.53634,-1.67253 1.35987,-3.41769 1.47873,-5.17684 0.005,-0.0171 0.0119,-0.0341 0.0171,-0.0524 -0.003,-0.0116 -0.006,-0.0232 -0.009,-0.0354 0.0439,-0.81646 -0.0671,-1.63557 -0.43475,-2.45203 -0.94987,-2.82585 -1.93353,-5.63964 -2.93129,-8.44864 -0.2478,-0.70561 -0.4978,-1.4107 -0.75317,-2.11397 -2.08454,-5.79159 -4.26772,-11.54754 -6.54305,-17.26724 -0.1478,-0.40061 -0.30073,-0.80012 -0.44634,-1.20134 -0.42695,-1.04195 -0.86158,-2.08099 -1.29406,-3.1209 -2.01849,-4.95845 -4.09769,-9.89227 -6.24642,-14.79636 -20.51083,-45.38494 -46.13773,-88.89691 -78.42493,-126.94571 -0.0159,-0.0183 -0.0293,-0.0366 -0.0451,-0.0549 -0.0106,-0.0122 -0.022,-0.0256 -0.0317,-0.0378 -0.004,-0.005 -0.009,-0.0107 -0.0134,-0.0159 -1.15782,-1.37426 -2.32362,-2.74287 -3.49731,-4.10504 -1.46812,-1.6733 -2.95473,-3.33287 -4.45073,-4.98386 -3.49079,-3.88283 -7.05181,-7.70497 -10.69279,-11.45783 -9.37688,-9.224264 -19.0004,-18.327124 -29.52964,-26.233874 -4.47311,-3.45643 -9.05579,-6.77299 -13.77091,-9.9097 -28.88468,-18.97043 -53.01423,-27.08455 -85.775,-27.96968 -29.75097,0.17645 -62.82865,14.23897 -83.79885,27.96968 z"
id="path6" />
<path
style="fill:#db3d7f;stroke-width:12.1951"
d="m 488.28012,15.052726 c -0.90781,-2.70794 -0.82889,-6.11975 -2.53597,-8.35844 -23.33702,3.36293 -46.4372,9.12097 -68.03749,18.63297 -22.88309,9.82484 -47.748,26.31865 -65.23349,43.96426 28.49253,29.65721 50.56226,65.835804 76.40181,93.961694 12.03854,17.43053 24.1655,44.47554 34.44759,62.95211 2.27943,-4.12546 16.04706,-21.77273 17.95151,-26.10348 15.04819,-30.98001 18.22558,-66.05615 17.4263,-99.9885 -0.3454,-28.624004 -4.59833,-57.052494 -10.42026,-85.060614 z"
id="path8" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:12.1951"
d="m 485.73751,6.694286 c -23.33701,3.36293 -46.42527,9.11404 -68.02555,18.62604 -22.8831,9.82484 -47.7533,26.3233 -65.23879,43.9689 2.08801,2.17337 4.07449,4.45532 6.09753,6.69299 16.93485,-15.49668 38.68911,-29.68572 59.14126,-38.46683 21.60028,-9.51201 44.68854,-15.26312 68.02555,-18.62604 1.70709,2.23869 1.64077,5.65234 2.54858,8.36028 5.66671,27.26133 9.77604,54.9187 10.3134,82.769184 0.004,-3.30248 0.17267,-6.62268 0.0953,-9.90848 -0.3454,-28.624004 -4.58673,-57.047644 -10.40867,-85.055764 -0.90781,-2.70794 -0.84149,-6.12159 -2.54858,-8.36028 z"
id="path10" />
<path
style="fill:#db3d7f;stroke-width:12.1951"
d="m 21.545289,15.052726 c 0.90782,-2.70794 0.82888,-6.11975 2.53599,-8.35844 23.33701,3.36293 46.43719,9.12097 68.03748,18.63297 22.883091,9.82484 47.748001,26.31865 65.233491,43.96426 -28.49253,29.65721 -50.56225,65.835804 -76.401811,93.961694 -12.03854,17.43053 -24.1655,44.47554 -34.4476,62.95211 -2.27942,-4.12546 -16.04706,-21.77273 -17.95151,-26.10348 -15.04818,-30.98001 -18.22557,-66.05615 -17.42629,-99.9885 0.34537,-28.624004 4.59833,-57.052494 10.42025,-85.060614 z"
id="path12" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:12.1951"
d="m 24.087909,6.694286 c -1.70711,2.23869 -1.64076,5.65234 -2.54858,8.36028 -5.82192,28.00812 -10.0633,56.43176 -10.40867,85.055764 -0.0774,3.2858 0.0909,6.606 0.0953,9.90848 0.53737,-27.850484 4.64671,-55.507854 10.3134,-82.769184 0.90782,-2.70794 0.84147,-6.12159 2.54858,-8.36028 23.337,3.36292 46.42526,9.11403 68.02555,18.62604 20.452151,8.78111 42.206411,22.97015 59.141261,38.46683 2.02304,-2.23767 4.00952,-4.51962 6.09753,-6.69299 -17.48549,-17.6456 -42.35569,-34.14406 -65.238791,-43.9689 -21.60029,-9.512 -44.68855,-15.26311 -68.02555,-18.62604 z"
id="path14" />
<path
style="fill:#e4e4e4;stroke-width:12.1951"
d="m 170.12574,59.054086 c -4.70964,3.13306 -9.28675,6.44604 -13.75492,9.89809 -10.53554,7.90957 -20.16396,17.01652 -29.54548,26.24547 -3.56758,3.67717 -7.05717,7.422184 -10.4805,11.224224 -1.5682,1.72793 -3.12545,3.46501 -4.66302,5.21747 -1.17365,1.36217 -2.3395,2.73077 -3.49689,4.10607 -0.007,0.009 -0.0146,0.0171 -0.022,0.0256 -0.0219,0.0268 -0.0451,0.0536 -0.0671,0.0793 -32.288171,38.04938 -57.915121,81.5627 -78.426381,126.94861 -2.13759,4.87864 -4.20572,9.78702 -6.21444,14.71947 -0.44334,1.0656 -0.89002,2.13008 -1.32751,3.19778 -0.15085,0.41549 -0.3093,0.82866 -0.46237,1.24344 -2.27408,5.71787 -4.45821,11.47174 -6.54159,17.26144 -0.24689,0.68036 -0.48718,1.36312 -0.72701,2.04578 -1.00181,2.81957 -1.9881,5.64395 -2.94154,8.48053 -0.3671,0.81646 -0.47895,1.63554 -0.43476,2.45204 -0.003,0.0116 -0.006,0.0232 -0.009,0.0354 0.006,0.0171 0.0119,0.0341 0.0174,0.0524 0.1189,1.75915 0.94092,3.5043 1.47727,5.17684 3.52927,9.97999 7.65295,19.75671 12.33291,29.259 0.0117,0.0232 0.0233,0.0476 0.0349,0.0707 0.74689,1.51535 1.50838,3.02325 2.28425,4.52393 0.0639,0.12341 0.12788,0.2467 0.19192,0.36999 8.30509,16.00136 18.24386,31.15086 29.79412,45.01443 7.59746,9.33957 15.93874,18.03188 24.82286,26.13809 0.79494,0.72963 1.60242,1.44512 2.40638,2.16475 0.27037,0.24086 0.5372,0.48561 0.80842,0.72549 3.20814,2.84754 6.48506,5.61637 9.83056,8.30064 20.510571,16.68353 44.552841,30.30331 69.174581,39.49953 0.83328,0.30951 1.66507,0.62134 2.50235,0.91988 6.89437,2.54353 13.89562,4.78609 20.98573,6.71189 1.74195,0.47316 3.48853,0.93243 5.24024,1.36821 17.15891,4.30266 34.76889,6.76299 52.4505,7.40833 0.0719,0.003 0.14439,0.008 0.21671,0.0102 1.54272,0.0549 3.08606,0.089 4.62957,0.11585 0.52244,0.01 1.04487,0.0256 1.56742,0.0317 1.04438,0.0121 2.0889,0.008 3.13339,0.007 1.04401,5.1e-4 2.08797,0.005 3.13193,-0.007 0.52305,-0.007 1.04597,-0.022 1.56888,-0.0317 1.54231,-0.0268 3.08371,-0.061 4.62521,-0.11585 0.0768,-0.003 0.15415,-0.007 0.23122,-0.0102 17.67777,-0.6461 35.28513,-3.1065 52.44032,-7.40833 1.72881,-0.43012 3.45116,-0.88426 5.17046,-1.3508 0.0244,-0.007 0.0488,-0.0122 0.0732,-0.0183 7.09558,-1.92745 14.10367,-4.17153 21.00317,-6.7177 0.81999,-0.29243 1.63529,-0.59792 2.45146,-0.90097 0.0118,-0.004 0.0232,-0.0101 0.0354,-0.0146 24.90766,-9.19871 48.72665,-23.01482 69.1993,-39.52276 3.34615,-2.68566 6.62478,-5.45596 9.83347,-8.30499 1.06683,-0.94719 2.13172,-1.89646 3.18283,-2.86119 8.88352,-8.10581 17.22438,-16.79761 24.8214,-26.13664 11.53978,-13.85099 21.4703,-28.98562 29.77084,-44.97089 0.0817,-0.15609 0.16208,-0.31231 0.24281,-0.46865 0.76585,-1.4821 1.51761,-2.97094 2.25517,-4.46736 0.0121,-0.0244 0.0244,-0.0488 0.0366,-0.0744 4.67961,-9.50174 8.80241,-19.27816 12.33146,-29.25755 0.53634,-1.67253 1.35987,-3.41769 1.47873,-5.17684 0.005,-0.0171 0.0119,-0.0342 0.0171,-0.0524 -0.003,-0.0116 -0.006,-0.0232 -0.009,-0.0354 0.0439,-0.81646 -0.0671,-1.63557 -0.43475,-2.45203 -0.94987,-2.82585 -1.93353,-5.63964 -2.93129,-8.44864 -0.2478,-0.70561 -0.4978,-1.4107 -0.75317,-2.11397 -2.08454,-5.79159 -4.26772,-11.54754 -6.54305,-17.26725 -0.1478,-0.4006 -0.30073,-0.80011 -0.44634,-1.20133 -0.42695,-1.04195 -0.86158,-2.08099 -1.29406,-3.1209 -2.01849,-4.95845 -4.09769,-9.89228 -6.24642,-14.79636 -20.51083,-45.38494 -46.13773,-88.89691 -78.42493,-126.94571 -0.0159,-0.0183 -0.0293,-0.0366 -0.0451,-0.0549 -0.0106,-0.0122 -0.022,-0.0256 -0.0317,-0.0378 -0.004,-0.005 -0.009,-0.0107 -0.0134,-0.0159 -1.15782,-1.37426 -2.32362,-2.74287 -3.49731,-4.10504 -1.46812,-1.6733 -2.95473,-3.33287 -4.45073,-4.98386 -3.49079,-3.88283 -7.05181,-7.704974 -10.69279,-11.457834 -9.37688,-9.22426 -19.0004,-18.32711 -29.52964,-26.23387 -4.47311,-3.45642 -9.05579,-6.77298 -13.77091,-9.9097 -28.88468,-18.97042 -53.01423,-27.08454 -85.775,-27.96967 -29.75097,0.17644 -62.82865,14.23897 -83.79885,27.96967 z"
id="path16" />
<path
style="fill:#3f3f3f;stroke-width:12.1951"
d="m 141.85705,238.40039 c -10.41184,0.008 -20.83034,1.47089 -30.77144,4.4929 -2.8914,17.49762 -4.34275,35.88909 1.59549,52.96046 4.65318,15.07191 16.44725,27.86968 31.34984,33.81725 18.1567,7.52074 38.85202,7.79521 57.8585,3.47153 2.44577,-10.95125 4.48767,-22.09471 4.19749,-33.35042 0.47671,-13.8134 -2.75742,-28.19633 -11.15179,-39.51296 -9.66907,-13.35666 -26.42665,-20.18658 -42.68685,-21.40451 -3.45102,-0.31719 -6.92063,-0.47683 -10.39124,-0.47425 z m -0.21402,14.40198 c 5.57792,-0.10488 11.16547,0.33805 16.60625,1.44808 2.38359,0.9845 5.97984,0.44695 7.65871,2.41595 -7.61711,2.94334 -14.1369,9.09361 -16.25104,16.96958 -2.58049,8.25149 -0.0305,17.69142 6.13608,23.81154 8.88145,9.86526 26.48837,10.32173 35.73253,0.75073 -0.23829,7.58164 -0.48744,15.31482 -2.34239,22.63258 -7.68966,0.77133 -15.60625,1.08706 -23.27518,-0.13086 -14.01134,-1.5021 -28.47895,-8.29303 -35.52607,-20.76669 -8.01092,-13.67131 -8.08386,-30.00076 -6.11482,-45.16402 2.25923,-1.23825 4.90252,-0.96512 7.37939,-1.20877 3.30722,-0.4339 6.64978,-0.69488 9.99654,-0.75829 z"
id="path18" />
<path
style="fill:#3f3f3f;stroke-width:12.1951"
d="m 367.96837,238.40039 c 10.41184,0.008 20.83034,1.47089 30.77144,4.4929 2.8914,17.49762 4.34275,35.88909 -1.59549,52.96046 -4.65318,15.07191 -16.44725,27.86968 -31.34984,33.81725 -18.1567,7.52074 -38.85202,7.79521 -57.8585,3.47153 -2.44577,-10.95125 -4.48767,-22.09471 -4.19749,-33.35042 -0.47671,-13.8134 2.75742,-28.19633 11.15179,-39.51296 9.66907,-13.35666 26.42666,-20.18658 42.68685,-21.40451 3.45102,-0.31719 6.92063,-0.47683 10.39124,-0.47425 z m 0.21402,14.40198 c -5.57792,-0.10488 -11.16546,0.33805 -16.60625,1.44808 -2.38359,0.9845 -5.97984,0.44695 -7.65871,2.41595 7.61711,2.94334 14.1369,9.09361 16.25104,16.96958 2.58049,8.25149 0.0305,17.69142 -6.13608,23.81154 -8.88145,9.86526 -26.48837,10.32173 -35.73253,0.75073 0.23829,7.58164 0.48744,15.31482 2.34239,22.63258 7.68966,0.77133 15.60625,1.08706 23.27518,-0.13086 14.01134,-1.5021 28.47895,-8.29303 35.52607,-20.76669 8.01092,-13.67131 8.08386,-30.00076 6.11482,-45.16402 -2.25923,-1.23825 -4.90252,-0.96512 -7.37939,-1.20877 -3.30722,-0.4339 -6.64978,-0.69488 -9.99654,-0.75829 z"
id="path20" />
<path
style="fill:#3f3f3f;stroke-width:12.1951"
d="m 206.27403,366.28922 c -0.695,1.58609 1.35694,2.66307 2.14022,3.89669 11.41817,12.11111 22.69294,24.32991 34.3097,36.29415 2.34981,2.51622 5.85801,3.61276 9.25589,4.53308 0.022,7.13743 0.0768,14.28466 -0.022,21.43187 1.32381,1.45881 3.7509,1.24342 5.47189,0.47975 -0.12195,-7.21575 0.13281,-14.44129 -0.14341,-21.64724 3.49716,-1.24342 7.24807,-2.33018 9.82957,-4.96389 11.64985,-12.48315 23.48724,-24.8586 35.104,-37.37112 0.43024,-0.82231 1.93061,-1.55673 1.33492,-2.57496 -13.073,-3.65192 -26.69758,-5.18907 -40.3001,-5.86463 -19.20681,-0.66572 -38.55702,0.78329 -56.98057,5.78632 z"
id="path22" />
<path
style="fill:#3f3f3f;stroke-width:12.1951"
d="m 253.92463,31.084936 c -12.61692,0.0749 -25.82946,2.65127 -38.46582,6.63646 11.29851,40.95832 22.02925,82.070744 33.17904,123.065984 1.54847,-0.16841 3.09711,-0.31744 4.64558,-0.47585 3.04142,-42.92421 7.5057,-85.789234 10.3947,-128.723074 -3.17238,-0.24405 -6.41614,-0.4133 -9.7535,-0.50346 z m -43.81368,8.41817 c -15.13598,5.30732 -29.17184,12.47065 -39.98527,19.55098 -6.28626,4.56053 -18.8656,13.14024 -7.46779,5.39883 22.30381,35.657514 44.87662,71.155614 67.26977,106.763584 1.40949,-0.55463 2.81876,-1.11902 4.22826,-1.70336 -3.2359,-16.15483 -5.73806,-32.42856 -9.02358,-48.57348 -2.72967,-13.46072 -4.74396,-27.039684 -7.47362,-40.490484 -2.78988,-13.60925 -4.91596,-27.3232 -7.54777,-40.94607 z"
id="path24" />
<g
transform="matrix(12.195057,0,0,12.195057,-37.768661,-29.888234)"
id="g34">
<path
style="opacity:0.2;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="M 14.000263,36 5.0002634,43"
id="path26" />
<path
style="opacity:0.2;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="m 19.000263,36 -9,7"
id="path28" />
<path
style="opacity:0.2;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="m 29,36 9,7"
id="path30" />
<path
style="opacity:0.2;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="m 34,36 9,7"
id="path32" />
</g>
<g
id="g44"
transform="matrix(12.195057,0,0,12.195057,-37.768661,-42.085944)">
<path
style="fill:none;stroke:#db3d7f;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="M 14.000263,36 5.0002634,43"
id="path36" />
<path
style="fill:none;stroke:#db3d7f;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="m 19.000263,36 -9,7"
id="path38" />
<path
style="fill:none;stroke:#db3d7f;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="m 29,36 9,7"
id="path40" />
<path
style="fill:none;stroke:#db3d7f;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="m 34,36 9,7"
id="path42" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

78
icons/pop-os.svg Normal file
View File

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg20"
sodipodi:docname="pop-os.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs24" />
<sodipodi:namedview
id="namedview22"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg20" />
<circle
style="opacity:0.2;stroke-width:8.77193"
cx="256.68787"
cy="263.97125"
r="245.61403"
id="circle2" />
<circle
style="fill:#48b9c7;stroke-width:8.77193"
cx="256.68787"
cy="255.19933"
r="245.61403"
id="circle4" />
<path
style="opacity:0.2;stroke-width:8.77193"
d="m 205.97514,71.023054 c -22.20198,0.52588 -47.50167,12.62962 -60.40982,21.57005 -12.9081,8.940406 -39.23149,26.813116 -39.7478,44.168026 0,11.56994 6.19338,21.03354 11.87295,32.60348 5.67957,11.56995 82.09941,167.23692 104.8177,191.95449 11.87548,12.62176 28.38956,8.94864 32.00384,-2.62129 3.61426,-11.56997 -0.51,-24.19117 -5.15694,-36.28701 L 224.5641,256.67273 c 28.91417,-10.51816 49.55998,-32.08091 61.95175,-58.90214 v -1.06223 c 6.19591,-13.14767 7.75028,-31.55283 2.58703,-55.21861 -5.16325,-23.66579 -19.09951,-44.161126 -38.71985,-57.308796 -12.90812,-8.4145 -22.20593,-13.68381 -44.40789,-13.1579 z m -18.52042,47.971486 c 1.22816,0.13421 2.57601,0.4493 4.06044,0.9423 3.61428,1.05181 6.72141,3.68723 9.30304,5.79084 12.90811,10.51813 22.71397,26.28873 27.36089,42.59184 a 66.089589,67.316012 0 0 1 1.02796,25.23643 c 0,4.20724 -0.51938,7.37445 -3.10102,11.58169 -2.58163,4.20726 -8.775,7.36173 -11.87294,6.83594 -3.09798,-0.52588 -5.67634,-2.63019 -8.25795,-5.25974 -10.84282,-11.04403 -20.64559,-33.13593 -24.25987,-43.65405 -3.38837,-9.86075 -12.68299,-46.07784 5.73945,-44.06525 z m 172.95436,39.71355 c -7.33698,0.12158 -15.73175,2.07781 -19.0858,5.1912 -4.47208,4.15118 -8.44617,12.45228 -10.93065,29.05702 -8.44721,60.71104 -11.42836,110.52273 -2.48423,114.15502 7.45347,3.11338 12.93252,-2.08068 39.76493,-51.89488 l 13.91173,-27.49794 c 5.46588,-11.93466 12.42101,-28.53782 14.40858,-36.32128 1.98761,-7.78347 1.49111,-14.01183 -4.47162,-19.7197 a 44.720695,46.700796 0 0 0 -24.34554,-12.45546 c -1.98758,-0.38917 -4.32174,-0.55452 -6.7674,-0.51398 z m -30.59896,175.43859 c -1.66604,-0.0289 -3.46056,0.20264 -5.3968,0.73667 -7.47786,1.89888 -12.82343,8.07803 -14.42571,13.77468 -1.60242,5.69663 -0.53008,12.80879 5.3454,17.08127 5.87547,4.27247 16.02915,4.2753 20.30222,1.90173 4.27307,-2.37362 6.93253,-6.17846 8.00095,-10.45093 2.8042,-9.96909 -2.16379,-22.84222 -13.82606,-23.04342 z m -176.12391,52.63158 c -10.97339,0 -19.80537,7.82456 -19.80537,17.54386 0,9.7193 8.83198,17.54386 19.80537,17.54386 h 206.0033 c 10.97339,0 19.80537,-7.82456 19.80537,-17.54386 0,-9.7193 -8.83198,-17.54386 -19.80537,-17.54386 z"
id="path6" />
<g
id="g16"
transform="matrix(8.7719298,0,0,8.7719298,-24.013892,-25.502436)">
<rect
style="fill:#ffffff"
width="28"
height="4"
x="18"
y="46"
rx="2.2579999"
ry="2"
id="rect8" />
<path
style="fill:#ffffff"
d="m 35.401362,24.452868 c -1.412662,3.05762 -3.767106,5.515704 -7.063322,6.714774 l 2.825328,7.494164 c 0.52975,1.378926 1.000638,2.817804 0.588612,4.13678 C 31.339952,44.117558 29.4564,44.53723 28.102596,43.09835 25.51271,40.280546 16.801275,22.534362 16.153803,21.215388 15.506333,19.896414 14.8,18.817256 14.8,17.498283 c 0.05886,-1.97846 3.060775,-4.016872 4.532299,-5.036079 1.471529,-1.019208 4.355717,-2.398134 6.886743,-2.458088 2.531024,-0.059954 3.590524,0.53958 5.06205,1.498833 2.236718,1.498835 3.825966,3.837014 4.414576,6.534914 0.58861,2.697899 0.412028,4.796265 -0.294306,6.295099 m -6.651298,-3.23748 c -0.529748,-1.858554 -1.648108,-3.657153 -3.119632,-4.856219 -0.294306,-0.239812 -0.647472,-0.53958 -1.0595,-0.659486 -2.707608,-0.899301 -1.530386,3.717105 -1.11836,4.916171 0.412028,1.199066 1.530388,3.717106 2.76647,4.976126 0.294304,0.299768 0.588608,0.53958 0.941778,0.599534 0.353166,0.05994 1.059496,-0.299766 1.353802,-0.779394 0.294304,-0.479626 0.353168,-0.839346 0.353168,-1.318972 a 7.5342132,7.6740254 0 0 0 -0.11772,-2.87776 z"
id="path10" />
<path
style="fill:#ffffff"
d="m 41.912738,42.62764 c -0.1218,0.487062 -0.42624,0.920006 -0.91337,1.190598 -0.48713,0.270588 -1.644064,0.270588 -2.313868,-0.216474 -0.669804,-0.487062 -0.791588,-1.298832 -0.608912,-1.948248 0.18266,-0.649418 0.791588,-1.352952 1.644064,-1.569424 1.765846,-0.487064 2.557432,1.244714 2.192086,2.543548 z"
id="path12" />
<path
style="fill:#ffffff"
d="m 40.119882,36.917908 c -1.01963,-0.41408 -0.679752,-6.092897 0.28323,-13.013956 0.283231,-1.89294 0.736402,-2.839409 1.246218,-3.312643 0.509816,-0.473235 2.039264,-0.709852 2.945602,-0.532388 a 5.0981592,5.3238908 0 0 1 2.775667,1.419704 c 0.679751,0.650697 0.7364,1.360549 0.509813,2.247865 -0.226583,0.887314 -1.019629,2.780254 -1.642739,4.140804 l -1.586094,3.135177 c -3.058895,5.678819 -3.682001,6.270363 -4.531697,5.915437 z"
id="path14" />
</g>
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.77193"
d="M 256.68786,9.5852842 A 245.61404,245.61404 0 0 0 11.073818,255.19932 a 245.61404,245.61404 0 0 0 0.1542,4.31744 A 245.61404,245.61404 0 0 1 256.68786,18.357214 245.61404,245.61404 0 0 1 502.07917,259.51676 245.61404,245.61404 0 0 0 502.3019,255.19932 245.61404,245.61404 0 0 0 256.68786,9.5852842 Z"
id="path18" />
</svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

9
icons/popos.svg Normal file
View File

@ -0,0 +1,9 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M400.975 234.085c-.672 2.86-2.124 5.393-4.603 6.986-3.894 2.497-8.639 1.773-12.002-1.267-3.152-2.823-4.214-7.601-3.222-11.727 1.026-4.307 4.284-8.108 8.462-9.302 9.312-2.643 13.171 7.709 11.365 15.31Zm-5.7-29.39c-5.771-2.353-3.789-33.3 1.487-70.87 1.487-10.497 4.036-15.456 6.904-17.989 4.107-3.584 11.578-3.728 16.641-2.968 5.807.868 11.366 3.619 15.579 7.782 3.718 3.692 4.143 7.456 2.868 12.342-2.089 7.782-5.665 15.238-9.099 22.514-.815 1.773-7.931 15.563-8.887 17.265-17.173 30.91-20.607 33.914-25.493 31.924Z" fill="#6CC7D2"/>
<path d="M278.787 190.76c3.399 14.84 3.045 31.127.141 42.855-2.726 11.075-10.126 20.993-21.881 24.323-10.303 2.932-22.306.796-29.671-6.443-12.109-11.872-19.19-39.742-16.039-59.975 2.549-16.252 11.118-37.064 29.919-37.969a24.198 24.198 0 0 1 3.611.072c19.155 1.774 29.6 18.279 33.92 37.137Zm-34.628 33.77c1.062.181 2.124.181 3.187-.145 3.576-1.05 5.629-4.85 6.585-8.542 1.452-5.61 1.239-11.655-.637-17.157-.956-2.787-2.372-5.501-4.532-7.528-7.613-7.131-15.225.289-16.535 8.723-1.027 6.587.46 14.224 4.496 19.545 1.877 2.461 4.568 4.597 7.436 5.104Z" fill="#BBB5B3"/>
<path d="M320.248 222.213c-.035 27.4 2.656 48.357-9.135 50.854-9.56 1.991-9.241-6.587-9.984-13.79-2.833-27.906-5.418-74.272-6.515-102.324.779-12.053 8.674-19.436 16.889-21.246 12.675-2.787 26.201-1.991 37.425 5.103 22.2 14.044 23.97 39.815 10.515 60.844-7.364 11.474-29.635 19.799-39.195 19.075v1.484Zm2.833-61.423c-1.381.217-3.647.869-4.284 2.244-1.523 3.221-1.417 23.672 1.239 32.25.425 1.412 1.381 2.751 2.761 3.258 5.028 1.882 9.56-4.416 11.614-8.217 2.868-5.284 3.788-11.51 1.983-17.301-1.7-5.393-6.975-13.211-13.313-12.234Z" fill="#99918D"/>
<path d="M193.28 174.399c-8.321 17.989-22.13 32.286-41.249 39.344 5.488 14.66 11.082 29.138 16.535 43.76 3.045 7.891 5.948 16.542 3.293 24.324-2.762 7.962-13.526 10.17-21.351 1.701-15.048-16.361-65.927-120.023-69.68-127.805-3.187-6.696-7.967-13.863-7.825-21.609.248-11.655 17.88-23.454 26.343-29.499 11.825-8.433 25.492-14.188 40.115-14.224 11.401 0 21.138 3.185 29.777 8.831 13.243 8.687 22.448 22.55 25.847 38.222 2.975 13.79 2.337 27.907-1.805 36.955Zm-38.771-19.69c-2.974-11.039-9.701-21.21-18.163-28.341-1.842-1.556-3.824-3.004-6.126-3.8-15.862-5.321-8.993 21.789-6.408 28.63 3.576 9.592 8.993 21.717 16.251 28.956 1.594 1.593 3.47 3.005 5.63 3.439 3.293.688 6.338-1.665 8.002-4.416 1.381-2.28 1.912-4.995 2.231-7.637.601-5.61.07-11.329-1.417-16.831Z" fill="#48B9C7"/>
<path d="M382.966 312.184c-.071 15.89-9.56 31.779-30.485 31.779-20.926 0-30.663-15.636-30.663-31.598 0-19.907 13.561-32.214 31.087-32.214 20.324.181 30.238 15.6 30.061 32.033Zm-30.061-22.007c-13.135 0-20.5 9.339-20.571 22.079 0 11.076 6.055 21.464 20.324 21.464 14.268 0 19.721-11.257 19.721-21.572.177-10.714-5.382-21.717-19.474-21.971Zm38.842 45.642c0 2.353.07-11.184 0-13.247h9.63l.673 8.289c3.151 1.846 8.037 3.221 12.038 3.221 7.436 0 15.19-1.918 15.19-9.338-.248-6.733-8.887-8.108-15.863-8.832-11.861-1.231-21.421-4.199-21.421-17.808 0-12.125 13.42-18.17 23.404-18.17 8.038-.181 13.738 1.122 20.996 7.058 0 4.886-.07 7.782-.07 12.668h-9.312l-.602-8.035c-3.753-1.846-7.613-2.353-10.587-2.28-6.408.072-13.242 3.149-13.242 8.65 0 5.394 4.426 6.878 12.286 8.036 12.817 1.737 25.174 4.705 25.174 18.676-.071 15.275-14.092 19.292-26.13 19.292-9.17.037-14.906-1.701-22.164-8.18Z" fill="#554741"/>
<path d="M308.824 338.751c0 2.787-2.195 5.031-4.921 5.031h-56.899c-2.726 0-4.921-2.244-4.921-5.031v-.434c0-2.787 2.195-5.031 4.921-5.031h56.899c2.726 0 4.921 2.244 4.921 5.031v.434Z" fill="#FAA41A"/>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

81
icons/puppy-linux.svg Normal file
View File

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1"
id="svg22"
sodipodi:docname="puppy-linux.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs26" />
<sodipodi:namedview
id="namedview24"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg22" />
<circle
style="opacity:0.2;stroke-width:17.2414"
cx="256.47665"
cy="263.99765"
r="241.3793"
id="circle2" />
<circle
style="fill:#cccccc;stroke-width:17.2414"
cx="256.47665"
cy="246.75627"
r="241.3793"
id="circle4" />
<path
style="opacity:0.1;fill-rule:evenodd;stroke-width:17.2414"
d="m 403.02838,160.54938 c -23.79993,0 -43.10344,19.30343 -43.10344,43.10345 0,23.7995 19.30351,43.10345 43.10344,43.10345 23.79995,0 43.10345,-19.30395 43.10345,-43.10345 0,-23.79983 -19.3035,-43.10345 -43.10345,-43.10345 z M 135.787,177.79076 c -47.599339,0 -86.206889,38.60283 -86.206889,86.2069 0,47.6041 38.60755,86.2069 86.206889,86.2069 47.59935,0 86.2069,-38.6028 86.2069,-86.2069 0,-47.60407 -38.60755,-86.2069 -86.2069,-86.2069 z m 17.24138,51.72414 c 19.03513,1.9e-4 34.48276,15.44831 34.48276,34.48276 0,19.03464 -15.44763,34.48276 -34.48276,34.48276 -19.03513,0 -34.48275,-15.44812 -34.48275,-34.48276 0,-19.03445 15.44762,-34.48276 34.48275,-34.48276 z m 214.94478,34.48276 c -1.07276,0 -2.07572,0.20483 -3.03071,0.53879 l -121.59888,34.48276 c -0.23879,0.0586 -0.44275,0.12586 -0.67344,0.20207 h -0.0345 l -0.0672,0.0345 h -0.0345 c -3.50617,1.2081 -6.02774,4.45615 -6.02774,8.28395 0,3.6421 2.28241,6.78005 5.52262,8.11557 0.0207,0.009 0.0465,-0.009 0.0672,0 l 74.82488,41.08297 v 0.3031 c 0,12.63209 -5.75342,24.09359 -15.08621,32.42862 -9.50917,8.49288 -22.71436,13.73922 -37.34508,13.73922 -9.22816,0 -18.08771,-2.06112 -25.79473,-5.89305 -7.53033,-3.74426 -14.01533,-9.17448 -18.75674,-15.89439 -0.0638,-0.10173 -0.13276,-0.20466 -0.20207,-0.30311 -1.47362,-2.11746 -3.97852,-3.50215 -6.80227,-3.50215 -4.52073,0 -8.18292,3.54986 -8.18292,7.94719 0,1.76753 0.61379,3.39286 1.61638,4.71445 6.27869,8.94691 14.89873,16.16531 24.91917,21.14762 10.05119,4.99617 21.44902,7.74432 33.20476,7.74432 18.85052,0 35.95374,-6.87493 48.39035,-17.98222 9.0372,-8.07104 15.6242,-18.36031 18.62203,-29.90302 12.20469,9.83726 28.27424,15.75971 45.79741,15.75971 18.85049,0 35.98744,-6.84147 48.42404,-17.94855 12.61402,-11.26499 20.40679,-26.87749 20.40679,-44.14737 0,-0.73103 -0.0172,-1.62379 -0.0672,-2.59293 9.3e-4,-0.05 0,-0.0828 0,-0.13448 0,-4.39733 -3.66221,-7.98087 -8.18293,-7.98088 -4.52076,0 -8.18291,3.58355 -8.18291,7.98088 0,0.0707 -0.002,0.13276 0,0.20207 0.004,0.12413 0.0241,0.24758 0.0345,0.37034 0.0259,0.58345 0.0345,1.28362 0.0345,2.15517 0,12.63209 -5.78708,24.09361 -15.11988,32.42863 -9.50938,8.49291 -22.71417,13.73922 -37.3451,13.73922 -14.04309,0 -26.79564,-4.84872 -36.23383,-12.79634 -1.94653,-1.63914 -3.74414,-3.39876 -5.38793,-5.28692 l 40.10641,-75.83512 c 0.77587,-1.29759 1.24604,-2.80266 1.24604,-4.41136 -0.002,-4.85624 -4.06797,-8.78924 -9.06026,-8.78924 z"
id="path6" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:17.2414"
d="M 256.47666,5.3769688 A 241.37931,241.37931 0 0 0 15.097351,246.75628 a 241.37931,241.37931 0 0 0 0.37042,10.10238 241.37931,241.37931 0 0 1 241.008889,-234.240311 241.37931,241.37931 0 0 1 241.0089,231.276931 241.37931,241.37931 0 0 0 0.37041,-7.139 A 241.37931,241.37931 0 0 0 256.47666,5.3769688 Z"
id="path8" />
<path
style="opacity:0.2;fill-rule:evenodd;stroke-width:17.2414"
d="m 126.82957,39.862689 c -14.05411,-0.066 -26.918159,2.12171 -37.984909,5.25324 -21.98169,6.22013 -36.31356,15.68313 -38.79311,18.89143 -0.36426,0.47505 -0.82305,0.89402 -1.34698,1.24597 -7.49796,5.06359 -11.39815,21.59529 -13.16676,41.453381 -2.14334,24.06547 -4.38502,44.21464 -2.49192,64.3521 0.006,0.0638 0.0273,0.13793 0.0336,0.20207 0.0591,0.9169 0.16603,2.07943 0.23572,3.06438 9.89983,-10.99139 22.1321,-16.75139 32.05819,-24.64977 33.10322,-26.34081 58.434599,-20.36924 85.365079,-11.88715 17.28191,5.44282 32.37884,10.21947 43.13713,2.49192 6.13909,-4.41023 9.18459,-10.98551 9.7993,-18.68939 0.58586,-7.33961 -0.91759,-12.25721 -4.04095,-20.84456 -3.20564,-8.813181 -8.12421,-17.825221 -14.177,-26.299831 -14.65762,-20.52195 -28.90333,-32.58836 -48.7271,-34.17969 -3.3626,-0.26988 -6.65706,-0.38913 -9.90032,-0.4041 z m 264.88416,0 c -1.65241,-0.004 -3.29019,0.0229 -4.91648,0.0336 -12.1139,0.0798 -23.44331,0.57533 -32.93373,1.38066 h -0.10172 c -1.40845,0.19157 -2.917,0.44483 -4.37769,0.63981 46.14312,16.20328 52.89396,54.43721 71.7605,86.678341 12.2041,19.78934 12.58148,34.06273 27.71417,31.72144 6.85841,-1.06103 12.48248,-4.43569 16.97198,-9.29417 6.60202,-7.14445 10.84619,-17.52985 13.03207,-28.89279 2.2465,-11.67781 2.25895,-24.261721 0.37035,-35.492991 -2.06236,-12.27517 -6.29493,-22.68885 -12.29047,-27.94983 -11.35557,-7.68288 -27.12558,-15.5648 -55.22629,-17.54445 -11.82355,-0.83309 -8.43631,-1.25082 -20.00269,-1.27964 z"
id="path10" />
<path
style="fill:#e4e4e4;fill-rule:evenodd;stroke-width:17.2414"
d="m 391.70597,22.618939 c -1.65241,-0.004 -3.29141,0.0118 -4.91771,0.0226 -12.11389,0.0798 -23.42746,0.57371 -32.91789,1.37904 l -0.0948,0.0226 c -1.40845,0.19157 -2.91583,0.43811 -4.37652,0.63309 46.14312,16.20328 52.88969,54.42129 71.75623,86.662421 12.2041,19.78934 12.5567,34.05911 27.68939,31.71783 6.85842,-1.06098 12.49886,-4.41045 16.98836,-9.26894 6.60202,-7.14444 10.84952,-17.55162 13.0354,-28.91455 2.2465,-11.677811 2.26492,-24.261951 0.37638,-35.493231 -2.06312,-12.27523 -6.3096,-22.68151 -12.30514,-27.94248 -11.35557,-7.68288 -27.11222,-15.57269 -55.21293,-17.55234 -11.82355,-0.83309 -8.45436,-1.23718 -20.02074,-1.266 z"
id="path12" />
<path
id="path2488_4"
style="fill:#e4e4e4;fill-rule:evenodd;stroke-width:17.2414"
d="m 126.83087,22.619889 c -14.05411,-0.0661 -26.910679,2.10649 -37.977439,5.23802 -21.98168,6.22014 -36.32591,15.69805 -38.80546,18.90635 -0.36426,0.47504 -0.81881,0.88449 -1.34275,1.23644 -7.49795,5.0636 -11.39034,21.59649 -13.15894,41.45459 -2.14334,24.065461 -4.38857,44.218241 -2.49546,64.355701 0.006,0.0638 0.0161,0.13793 0.0224,0.20224 0.0591,0.91689 0.17646,2.09491 0.24615,3.07986 9.89983,-10.9914 22.13226,-16.77291 32.05834,-24.67129 33.10317,-26.34078 58.446489,-20.34473 85.376969,-11.86264 17.28192,5.44282 32.36635,10.20043 43.12464,2.47287 6.13909,-4.41023 9.18735,-10.97765 9.80205,-18.68153 0.58587,-7.339611 -0.92724,-12.258091 -4.0506,-20.845441 -3.20564,-8.81319 -8.11327,-17.82791 -14.16607,-26.30252 -14.65762,-20.52195 -28.89612,-32.58667 -48.71988,-34.178 -3.3626,-0.26988 -6.67071,-0.38969 -9.91396,-0.40465 z" />
<path
style="fill:#3f3f3f;fill-rule:evenodd;stroke-width:17.2414"
d="m 403.02895,143.308 c -23.79993,0 -43.10401,19.30349 -43.10401,43.1035 0,23.7995 19.30408,43.1034 43.10401,43.1034 23.79995,0 43.10383,-19.3039 43.10383,-43.1034 0,-23.79982 -19.30388,-43.1035 -43.10383,-43.1035 z"
id="path15" />
<path
style="fill:#3f3f3f;fill-rule:evenodd;stroke-width:17.2414"
d="m 135.787,160.54938 c -47.599339,0 -86.206889,38.60283 -86.206889,86.2069 0,47.6041 38.60755,86.2069 86.206889,86.2069 47.59935,0 86.2069,-38.6028 86.2069,-86.2069 0,-47.60407 -38.60755,-86.2069 -86.2069,-86.2069 z m 17.24138,51.72414 c 19.03513,1.9e-4 34.48276,15.44831 34.48276,34.48276 0,19.03464 -15.44763,34.48276 -34.48276,34.48276 -19.03513,0 -34.48275,-15.44812 -34.48275,-34.48276 0,-19.03445 15.44762,-34.48276 34.48275,-34.48276 z"
id="path17" />
<path
id="path2488_5"
style="fill:#3f3f3f;fill-rule:evenodd;stroke-width:17.2414"
d="m 367.98083,246.75664 c -1.07276,0 -2.09876,0.19707 -3.05374,0.53104 l -121.56798,34.48258 c -0.23879,0.0586 -0.46879,0.12242 -0.69948,0.19897 l -0.0345,0.0167 -0.069,0.0167 -0.0169,0.0167 c -3.50617,1.2081 -6.02217,4.45267 -6.02217,8.28046 0,3.64211 2.27014,6.76245 5.51034,8.09797 0.0207,0.009 0.0483,0.007 0.069,0.0167 l 74.82421,41.07041 v 0.31534 c 0,12.63209 -5.76514,24.10647 -15.09794,32.4415 -9.50917,8.49288 -22.71313,13.73993 -37.34386,13.73993 -9.22815,0 -18.07038,-2.09208 -25.77739,-5.92401 -7.53033,-3.74426 -14.02433,-9.16066 -18.76575,-15.88057 -0.0638,-0.10173 -0.1362,-0.20035 -0.20465,-0.2988 -1.47362,-2.11746 -3.96595,-3.51789 -6.78971,-3.51789 -4.52072,0 -8.18881,3.56777 -8.18881,7.9651 0,1.76754 0.60121,3.39111 1.6038,4.71269 6.27869,8.94692 14.90387,16.15867 24.92434,21.14098 10.04955,4.997 21.44217,7.7495 33.19791,7.7495 18.85052,0 35.97906,-6.88079 48.41566,-17.98808 9.03721,-8.07104 15.59734,-18.35985 18.59519,-29.90255 12.20467,9.83725 28.29931,15.78103 45.82248,15.78103 18.85048,0 35.97904,-6.86443 48.41564,-17.97152 12.61402,-11.26498 20.40396,-26.87048 20.40396,-44.14036 0,-0.73103 -0.019,-1.61948 -0.069,-2.58862 9.3e-4,-0.05 0,-0.0983 0,-0.15 0,-4.39733 -3.6681,-7.96512 -8.18883,-7.96512 -4.52076,0 -8.18862,3.56779 -8.18862,7.96512 0,0.0707 -0.002,0.14655 0,0.21552 0.004,0.12413 0.0241,0.24241 0.0345,0.36517 0.0259,0.58345 0.0345,1.28569 0.0345,2.15717 0,12.63209 -5.76509,24.10647 -15.09788,32.44149 -9.50938,8.49291 -22.71297,13.73993 -37.3439,13.73993 -14.04309,0 -26.81378,-4.84645 -36.25196,-12.79407 -1.94654,-1.63914 -3.74719,-3.4054 -5.39099,-5.29356 L 375.794,259.96523 c 0.77587,-1.29759 1.22828,-2.8054 1.22828,-4.41411 0,-4.85607 -4.04934,-8.79488 -9.04164,-8.79488 v 0 z" />
<path
style="opacity:0.2;fill:#ffffff;fill-rule:evenodd;stroke-width:17.2414"
d="m 126.82957,22.618349 c -14.05411,-0.0661 -26.918159,2.1217 -37.984909,5.25323 -21.98169,6.22014 -36.31356,15.68313 -38.79311,18.89143 -0.36426,0.47505 -0.82304,0.89402 -1.34698,1.24596 -7.49796,5.0636 -11.39815,21.5953 -13.16676,41.4534 -1.83732,20.629441 -3.58066,38.364361 -2.89601,55.697741 0.4883,-12.03536 1.65849,-24.56143 2.89601,-38.45636 1.76861,-19.858101 5.6688,-36.389801 13.16676,-41.453401 0.52393,-0.35195 0.98272,-0.7709 1.34698,-1.24596 2.47955,-3.2083 16.81142,-12.67129 38.79311,-18.89143 11.06675,-3.13153 23.930799,-5.31927 37.984909,-5.25323 3.24325,0.015 6.53772,0.13421 9.90032,0.40409 19.82377,1.59133 34.06948,13.65775 48.7271,34.17969 6.05279,8.47461 10.97136,17.48665 14.177,26.299841 1.3632,3.74798 2.25634,6.63989 2.96336,9.49623 0.52302,-1.87574 0.91352,-3.83679 1.07759,-5.89305 0.58586,-7.339611 -0.91759,-12.257211 -4.04095,-20.844561 -3.20564,-8.81319 -8.12421,-17.82523 -14.177,-26.29984 -14.65762,-20.52194 -28.90333,-32.58836 -48.7271,-34.17969 -3.3626,-0.26988 -6.65707,-0.38913 -9.90032,-0.40409 z m 264.88416,0 c -1.65241,-0.004 -3.29019,0.0229 -4.91648,0.0337 -12.1139,0.0798 -23.44333,0.57533 -32.93373,1.38066 h -0.10103 c -1.40845,0.19157 -2.917,0.44483 -4.37769,0.63982 11.38048,3.99629 20.31962,9.36894 27.6805,15.625 3.41539,-0.0935 6.15233,-0.38051 9.73195,-0.4041 1.62629,-0.0107 3.26407,-0.0376 4.91648,-0.0337 11.56638,0.0288 8.17914,0.44655 20.00269,1.27963 28.10071,1.97965 43.87072,9.86158 55.22629,17.54445 5.99554,5.26098 10.22886,15.67472 12.29123,27.94989 0.43058,2.56065 0.41081,5.34006 0.63981,8.01455 0.7121,-8.57912 0.70908,-17.23388 -0.63981,-25.25592 -2.06312,-12.27524 -6.29569,-22.68892 -12.29123,-27.9499 -11.35557,-7.68287 -27.12558,-15.5648 -55.22629,-17.54445 -11.82355,-0.83309 -8.43631,-1.25081 -20.00269,-1.27963 z"
id="path20" />
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

57
icons/pureos.svg Normal file
View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="pureos.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<circle
cx="257.10623"
cy="261.84424"
r="245.61403"
style="opacity:0.2;stroke-width:8.77193"
id="circle2" />
<circle
cx="257.10623"
cy="253.07231"
r="245.61403"
style="fill:#4f4f4f;stroke-width:8.77193"
id="circle4" />
<path
d="M 257.10624,7.4582796 A 245.61404,245.61404 0 0 0 11.492203,253.07231 a 245.61404,245.61404 0 0 0 0.1886,5.14036 A 245.61404,245.61404 0 0 1 257.10624,16.23021 245.61404,245.61404 0 0 1 502.53606,256.70389 245.61404,245.61404 0 0 0 502.72028,253.07231 245.61404,245.61404 0 0 0 257.10624,7.4582796 Z"
style="opacity:0.1;fill:#ffffff;stroke-width:8.77193"
id="path6" />
<path
d="M 107.98343,165.35302 V 358.33547 H 406.22905 V 165.35302 Z m 26.31579,26.31579 H 379.91326 V 332.01968 H 134.29922 Z"
style="opacity:0.2;stroke-width:8.77193"
id="path8" />
<path
d="M 107.98343,156.58109 V 349.56354 H 406.22905 V 156.58109 Z m 26.31579,26.31579 H 379.91326 V 323.24775 H 134.29922 Z"
style="fill:#ffffff;stroke-width:8.77193"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

112
icons/raspbian.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

273
icons/reactos.svg Normal file
View File

@ -0,0 +1,273 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="331" width="600" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs>
<linearGradient id="linearGradient7995">
<stop stop-color="#FFF" stop-opacity="0" offset="0"/>
<stop stop-color="#FFF" stop-opacity="0" offset="0.851163"/>
<stop stop-color="#FFF" offset="0.851163"/>
<stop stop-color="#FFF" stop-opacity="0" offset="0.962791"/>
<stop stop-color="#FFF" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4583">
<stop stop-color="#e5f4ff" offset="0"/>
<stop stop-color="#e5f4ff" offset="0.232558"/>
<stop stop-color="#254863" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient3800">
<stop stop-color="#466886" offset="0"/>
<stop stop-color="#617689" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4522">
<stop stop-color="#FFF" offset="0"/>
<stop stop-color="#FFF" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient17671">
<stop stop-color="#FFF" stop-opacity="0.41618496" offset="0"/>
<stop stop-color="#FFF" stop-opacity="0" offset="1"/>
</linearGradient>
<filter id="filter6606" height="1.1988666" width="1.3008075" y="-0.099433325" x="-0.15040377">
<feGaussianBlur stdDeviation="7.2083506"/>
</filter>
<filter id="filter6610" height="1.1917433" width="1.332386" y="-0.095871665" x="-0.16619301">
<feGaussianBlur stdDeviation="7.2083506"/>
</filter>
<filter id="filter6614">
<feGaussianBlur stdDeviation="7.2083506"/>
</filter>
<filter id="filter6618" height="1.1975313" width="1.4702693" y="-0.098765641" x="-0.23513465">
<feGaussianBlur stdDeviation="7.2083506"/>
</filter>
<filter id="filter6626" height="1.2431766" width="1.2472316" y="-0.12158829" x="-0.12361581">
<feGaussianBlur stdDeviation="7.2083506"/>
</filter>
<filter id="filter4518" height="1.3981317" width="1.4018859" y="-0.19906585" x="-0.20094295">
<feGaussianBlur stdDeviation="10.125173"/>
</filter>
<filter id="filter4546">
<feGaussianBlur stdDeviation="0.58082045"/>
</filter>
<filter id="filter4666">
<feGaussianBlur stdDeviation="6.3816907"/>
</filter>
<filter id="filter5237" height="1.3687129" width="1.4370892" y="-0.18435644" x="-0.21854459">
<feGaussianBlur stdDeviation="2.2711229"/>
</filter>
<filter id="filter7267" height="1.5740881" width="1.6214931" y="-0.28704402" x="-0.31074658">
<feGaussianBlur stdDeviation="3.3946442"/>
</filter>
<filter id="filter3477" height="1.6959413" width="1.9205891" y="-0.34797066" x="-0.46029457">
<feGaussianBlur stdDeviation="49.010201"/>
</filter>
<filter id="filter3541" height="1.213006" width="1.1931673" y="-0.10650298" x="-0.096583642">
<feGaussianBlur stdDeviation="4.5608848"/>
</filter>
<filter id="filter3545" height="1.213006" width="1.1931673" y="-0.10650298" x="-0.096583642">
<feGaussianBlur stdDeviation="4.5608848"/>
</filter>
<filter id="filter3549" height="1.213006" width="1.1931673" y="-0.10650298" x="-0.096583642">
<feGaussianBlur stdDeviation="4.5608848"/>
</filter>
<filter id="filter3553" height="1.213006" width="1.1931673" y="-0.10650298" x="-0.096583642">
<feGaussianBlur stdDeviation="4.5608848"/>
</filter>
<filter id="filter3557" height="1.213006" width="1.1931673" y="-0.10650298" x="-0.096583642">
<feGaussianBlur stdDeviation="4.5608848"/>
</filter>
<filter id="filter3561" height="1.213006" width="1.1931673" y="-0.10650298" x="-0.096583642">
<feGaussianBlur stdDeviation="4.5608848"/>
</filter>
<filter id="filter3597" height="1.4965283" width="1.3348944" y="-0.24826413" x="-0.16744719">
<feGaussianBlur stdDeviation="4.5116686"/>
</filter>
<radialGradient id="radialGradient2677" gradientUnits="userSpaceOnUse" cy="775.884" cx="385.866" gradientTransform="matrix(1,0,0,1.098684,0,-76.56746)" r="161.426">
<stop stop-color="#000" offset="0"/>
<stop stop-color="#000" stop-opacity="0" offset="1"/>
</radialGradient>
<radialGradient id="radialGradient2679" gradientUnits="userSpaceOnUse" cy="835.16" cx="292.942" gradientTransform="matrix(-1.2414154,0.7906519,0.7046472,1.1063777,17.23768,-980.81675)" r="49.3057">
<stop stop-color="#FFF" offset="0"/>
<stop stop-color="#FFF" stop-opacity="0" offset="1"/>
</radialGradient>
<linearGradient id="linearGradient2681" y2="352.732" gradientUnits="userSpaceOnUse" x2="491.327" gradientTransform="matrix(0.7446541,0,0,0.7446541,-3.2041063,0.7509507)" y1="205.392" x1="582.236">
<stop stop-color="#FFF" offset="0"/>
<stop stop-color="#FFF" stop-opacity="0" offset="1"/>
</linearGradient>
<radialGradient id="radialGradient2683" xlink:href="#linearGradient17671" spreadMethod="reflect" gradientUnits="userSpaceOnUse" cy="55.0655" cx="567.65" gradientTransform="matrix(1,0,0,1.108068,0,-5.950834)" r="38.5858"/>
<radialGradient id="radialGradient2691" xlink:href="#linearGradient4522" gradientUnits="userSpaceOnUse" cy="249.494" cx="393.616" gradientTransform="matrix(1,0,0,0.905759,0,23.51251)" r="129.846"/>
<radialGradient id="radialGradient2693" xlink:href="#linearGradient4522" gradientUnits="userSpaceOnUse" cy="268.326" cx="401.1" gradientTransform="matrix(0.6391732,-0.3071802,0.1899467,0.3952362,-37.856811,255.82041)" r="212.482"/>
<radialGradient id="radialGradient2695" xlink:href="#linearGradient3800" gradientUnits="userSpaceOnUse" cy="118.281" cx="389.167" r="11.6067"/>
<radialGradient id="radialGradient2703" xlink:href="#linearGradient4522" gradientUnits="userSpaceOnUse" cy="120.328" cx="541.817" gradientTransform="matrix(1,0,0,1.220183,0,-26.49428)" r="74.1004"/>
<radialGradient id="radialGradient2747" xlink:href="#linearGradient4522" spreadMethod="reflect" gradientUnits="userSpaceOnUse" cy="55.0655" cx="567.65" gradientTransform="matrix(1,0,0,1.108068,0,-5.950834)" r="38.5858"/>
<radialGradient id="radialGradient2759" gradientUnits="userSpaceOnUse" cy="1147.53" cx="346.733" gradientTransform="matrix(0.4652465,0,0,0.4650091,129.83888,-355.9606)" r="254.041">
<stop stop-color="#FFF" stop-opacity="0" offset="0"/>
<stop stop-color="#FFF" stop-opacity="0" offset="0.95"/>
<stop stop-color="#FFF" offset="0.97"/>
<stop stop-color="#FFF" stop-opacity="0" offset="0.991163"/>
<stop stop-color="#FFF" stop-opacity="0" offset="1"/>
</radialGradient>
<radialGradient id="radialGradient2765" gradientUnits="userSpaceOnUse" cy="118.281" cx="389.167" r="11.6067">
<stop stop-color="#000" offset="0"/>
<stop stop-color="#000" stop-opacity="0" offset="1"/>
</radialGradient>
<radialGradient id="radialGradient2767" xlink:href="#linearGradient4522" gradientUnits="userSpaceOnUse" cy="130.496" cx="439.417" gradientTransform="matrix(1,0,0,1.0094295,2.4158933,11.986507)" r="50.3883"/>
<radialGradient id="radialGradient2769" xlink:href="#linearGradient17671" gradientUnits="userSpaceOnUse" cy="249.494" cx="393.616" gradientTransform="matrix(1,0,0,0.905759,0,23.51251)" r="129.846"/>
<radialGradient id="radialGradient3569" gradientUnits="userSpaceOnUse" cy="1040.22" cx="392.074" gradientTransform="matrix(1.0896219,1.2704115,-1.9939809,2.0570205,1844.3831,-1657.6391)" r="161.426">
<stop stop-color="#FFF" stop-opacity="0" offset="0"/>
<stop stop-color="#FFF" stop-opacity="0" offset="0.930233"/>
<stop stop-color="#FFF" offset="1"/>
<stop stop-color="#FFF" stop-opacity="0" offset="1"/>
</radialGradient>
<filter id="filter4553">
<feGaussianBlur stdDeviation="5.1794966"/>
</filter>
<filter id="filter4557">
<feGaussianBlur stdDeviation="4.9633802"/>
</filter>
<filter id="filter4561">
<feGaussianBlur stdDeviation="4.9841362"/>
</filter>
<filter id="filter4565">
<feGaussianBlur stdDeviation="4.9805913"/>
</filter>
<radialGradient id="radialGradient4589" spreadMethod="reflect" gradientUnits="userSpaceOnUse" cy="258.4" cx="397.698" gradientTransform="matrix(0.9752836,-0.1739102,0.1452743,1.218352,-31.791146,3.8357559)" r="123.491">
<stop stop-color="#e5f4ff" offset="0"/>
<stop stop-color="#e5f4ff" stop-opacity="0" offset="1"/>
</radialGradient>
<radialGradient id="radialGradient4591" xlink:href="#linearGradient4583" spreadMethod="reflect" gradientUnits="userSpaceOnUse" cy="249.494" cx="393.616" gradientTransform="matrix(1,0,0,0.9523714,0,11.88305)" r="123.491"/>
<filter id="filter4771" height="1.3357642" width="1.3744004" y="-0.1678821" x="-0.18720019">
<feGaussianBlur stdDeviation="21.617094"/>
</filter>
<filter id="filter4775" height="1.2794765" width="1.2952752" y="-0.13973826" x="-0.14763759">
<feGaussianBlur stdDeviation="17.444351"/>
</filter>
<filter id="filter4779" height="1.194832" width="1.2056784" y="-0.097415979" x="-0.1028392">
<feGaussianBlur stdDeviation="12.155829"/>
</filter>
<radialGradient id="radialGradient4602" xlink:href="#linearGradient3800" gradientUnits="userSpaceOnUse" cy="119.385" cx="383.152" r="11.6067"/>
<filter id="filter4636">
<feGaussianBlur stdDeviation="0.20104886"/>
</filter>
<filter id="filter4640">
<feGaussianBlur stdDeviation="0.11651621"/>
</filter>
<filter id="filter10578" height="1.3723973" width="1.672163" y="-0.18619863" x="-0.33608148">
<feGaussianBlur stdDeviation="2.7377865"/>
</filter>
<radialGradient id="radialGradient2632" xlink:href="#linearGradient7995" gradientUnits="userSpaceOnUse" cy="176.998" cx="291.291" gradientTransform="matrix(0.9676712,1.0349742e-2,-1.0369284e-2,0.9694982,11.252454,2.3839761)" r="136.812"/>
<radialGradient id="radialGradient2636" xlink:href="#linearGradient7995" gradientUnits="userSpaceOnUse" cy="176.998" cx="291.291" gradientTransform="matrix(0.9676712,1.0349742e-2,-1.0369284e-2,0.9694982,11.252454,2.3839759)" r="136.812"/>
<filter id="filter3602" height="1.2213632" width="1.2267212" y="-0.11068162" x="-0.1133606">
<feGaussianBlur stdDeviation="6.9717137"/>
</filter>
<filter id="filter3606" height="1.2229963" width="1.2375122" y="-0.11149816" x="-0.1187561">
<feGaussianBlur stdDeviation="7.0139312"/>
</filter>
</defs>
<metadata>
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g transform="translate(-2.4158933,-9.2170219)">
<path opacity="0.3" d="m547.292,775.884c0,97.9514-72.2731,177.357-161.426,177.357-89.1534,0-161.426-79.4053-161.426-177.357,0-97.9514,72.2731-177.357,161.426-177.357,89.1534,0,161.426,79.4053,161.426,177.357z" fill-rule="evenodd" transform="matrix(0.7004643,0,0,0.638694,5.6980997,-302.73769)" fill="url(#radialGradient2677)"/>
<path d="m547.292,775.884c0,97.9514-72.2731,177.357-161.426,177.357-89.1534,0-161.426-79.4053-161.426-177.357,0-97.9514,72.2731-177.357,161.426-177.357,89.1534,0,161.426,79.4053,161.426,177.357z" fill-rule="evenodd" transform="matrix(0.7004643,0,0,0.638694,20.99835,-318.54803)" fill="#244762"/>
<path d="M179.848,157.779c-2.648,15.347-2.047,30.515,1.257,44.795,0.632,2.734,1.358,5.434,2.187,8.098,0.003,0.007-0.002,0.017,0,0.024,0.275,0.882,0.565,1.755,0.861,2.629,0.583,1.72,1.199,3.411,1.862,5.096,0.013,0.033,0.034,0.061,0.047,0.093,0.009,0.023,0.014,0.047,0.023,0.07,0.647,1.639,1.326,3.283,2.048,4.887,0.021,0.047,0.048,0.093,0.069,0.14,0.353,0.78,0.701,1.555,1.071,2.327,0.027,0.056,0.066,0.106,0.093,0.163,0.374,0.777,0.749,1.558,1.14,2.327,0.191,0.374,0.387,0.744,0.582,1.117,0.249,0.475,0.489,0.947,0.745,1.419,0.034,0.064,0.081,0.122,0.116,0.186,0.365,0.672,0.739,1.338,1.117,2.002,0.045,0.078,0.095,0.154,0.14,0.232,0.433,0.756,0.875,1.512,1.326,2.258,0.047,0.077,0.092,0.155,0.14,0.232,1.387,2.283,2.855,4.524,4.398,6.702,0.466,0.658,0.94,1.307,1.419,1.955,0.06,0.08,0.127,0.153,0.186,0.233,16.703,22.429,41.66,38.742,71.348,43.864,5.315-25.965-14.767-42.512-29.554-56.663-2.392-4.189-10.443-7.435-13.799-11.985-11.027-17.094-27.558-32.763-48.822-62.201z" fill-rule="evenodd" fill="url(#radialGradient2679)"/>
<path d="M404.357,177.004c0.273,21.378-6.183,42.928-18.113,61.405-5.965,9.239-13.299,17.709-21.844,25.005-21.015-0.527-35.043-9.597-36.802-14.473,27.237-25.009,47.426-57.083,40.464-67.826,4.648-12.087,12.152-24.235,18.157-33.398l9.536-14.552c5.954,13.673,8.652,29.467,8.602,43.839z" fill-rule="evenodd" fill="url(#linearGradient2681)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3787858,1.7393842e-3,0.1147366,0.3332128,150.30256,121.88421)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3787858,1.7393842e-3,0.1147366,0.3332128,144.58737,120.45541)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3787858,1.7393842e-3,0.1147366,0.3332128,153.87452,117.59782)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3368278,-0.1594348,0.1622978,0.3146981,170.78667,237.2548)" fill="url(#radialGradient2683)"/>
<path d="m523.462,249.494c0,64.9536-58.1339,117.609-129.846,117.609-71.7118,0-129.846-52.6553-129.846-117.609,0-64.9536,58.1339-117.609,129.846-117.609,71.7118,0,129.846,52.6553,129.846,117.609z" fill-rule="nonzero" transform="matrix(0.5942012,0,0,0.6742485,32.02093,18.720124)" fill="url(#radialGradient2691)"/>
<path d="M288.029,133.21c-34.911,0.444-71.534,8.966-90.647,27.066-28.154,17.044-22.137,53.377,8.32,90.792,24.531,28.479,60.278,41.31,89.816,39.023,35.291-0.61,64.172-19.448,78.914-36.353,28.279-28.418,34.913-66.031,1.746-93.022-20.566-17.153-53.638-28.31-88.149-27.506z" fill-rule="evenodd" fill="url(#radialGradient2693)"/>
<path opacity="0.54000005" d="m400.774,118.281c0,6.41022-5.19651,11.6067-11.6067,11.6067-6.41022,0-11.6067-5.19651-11.6067-11.6067,0-6.41022,5.19651-11.6067,11.6067-11.6067,4.77724,0,9.06654,2.9271,10.808,7.37561" fill-rule="nonzero" transform="matrix(0.9084705,0,0,0.8208641,-10.735304,148.21976)" filter="url(#filter4546)" fill="url(#radialGradient2695)"/>
<path opacity="0.54" d="m400.774,118.281c0,6.41022-5.19651,11.6067-11.6067,11.6067-6.41022,0-11.6067-5.19651-11.6067-11.6067,0-6.41022,5.19651-11.6067,11.6067-11.6067,4.77724,0,9.06654,2.9271,10.808,7.37561" fill-rule="nonzero" transform="matrix(1.6462774,0,0,1.3808083,-290.79096,77.012587)" filter="url(#filter4640)" fill="url(#radialGradient2695)"/>
<path opacity="0.44086022" d="m400.774,118.281c0,6.41022-5.19651,11.6067-11.6067,11.6067-6.41022,0-11.6067-5.19651-11.6067-11.6067,0-6.41022,5.19651-11.6067,11.6067-11.6067,4.77724,0,9.06654,2.9271,10.808,7.37561" fill-rule="nonzero" transform="matrix(0.6707658,0,0,0.7085892,47.376128,185.40466)" filter="url(#filter4546)" fill="url(#radialGradient2695)"/>
<path d="M195.605,79.0657c-12.513,12.2709-22.692,26.9313-29.793,43.2523-3.55,8.161-6.331,16.737-8.25,25.636-0.479,2.225-0.905,4.471-1.276,6.735l23.406,3.871c0.306-1.871,0.658-3.727,1.055-5.566,1.586-7.355,3.886-14.443,6.821-21.187,5.871-13.489,14.286-25.606,24.631-35.7482" fill-rule="evenodd" fill="url(#radialGradient2636)"/>
<path d="m523.462,249.494c0,64.9536-58.1339,117.609-129.846,117.609-71.7118,0-129.846-52.6553-129.846-117.609,0-64.9536,58.1339-117.609,129.846-117.609,71.7118,0,129.846,52.6553,129.846,117.609z" fill-rule="nonzero" transform="matrix(0.5942012,0,0,0.6742485,40.59367,33.008064)" fill="url(#radialGradient2691)"/>
<path d="M386.977,274.931c-25.027,24.542-59.392,39.526-97.152,39.122s-71.797-16.12-96.293-41.191l16.954-16.635c20.251,20.722,48.387,33.712,79.593,34.046,31.207,0.334,59.607-12.051,80.288-32.335" fill-rule="evenodd" fill="url(#radialGradient2632)"/>
<path d="m523.462,249.494c0,64.9536-58.1339,117.609-129.846,117.609-71.7118,0-129.846-52.6553-129.846-117.609,0-64.9536,58.1339-117.609,129.846-117.609,71.7118,0,129.846,52.6553,129.846,117.609z" fill-rule="nonzero" transform="matrix(0.4814128,0,0,0.5163165,69.98664,79.197897)" fill="url(#radialGradient2691)"/>
<path d="M206.094,151.844c-4.551-0.115-9.198-0.093-14.094,0.031-25.13,0.358-45.045,7.174-59.562,22.781-14.184,15.249-20.164,36.308-19.313,60.375,0.851,24.06,8.372,51.394,21.531,80.657,26.319,58.525,75.331,124.869,141.188,186.437,65.848,61.56,133.996,105.077,193.094,126.75,29.548,10.836,56.842,16.236,80.687,15.437,23.849-0.798,44.435-7.93,59.25-22.374,19.085-18.609,24.481-47.922,18.875-81.938-5.58-33.861-19.179-66.817-42.594-108-4.512,11.409-6.162,17.849-7.964,23.22,20.559,39.129,28.814,55.555,34.308,85.186,5.491,29.618,1.35,52.649-12.812,67.875-11.081,11.913-27.499,18.137-48.844,18.813-21.337,0.676-47.343-4.411-75.875-14.938-57.071-21.055-124.375-63.71-187.594-122.812-63.222-59.105-110.524-123.516-135.75-179.063-12.613-27.772-19.678-53.322-20.687-74.593-1.01-21.28,3.862-37.973,14.656-49.594,13.555-14.594,34.97-19.343,63.906-17.532,28.975,1.814,41.316,5.516,80.864,23.847,5.125-4.955,13.001-4.594,19.252-6.543-38.521-18.853-84.639-32.727-102.522-34.022z" fill-rule="evenodd" transform="matrix(0.5254279,0,0,0.5254279,96.59687,-29.519969)" filter="url(#filter4557)" fill="#fefefe"/>
<path d="m615.917,120.328c0,49.9354-33.1759,90.4161-74.1004,90.4161-40.9246,0-74.1004-40.4807-74.1004-90.4161s33.1759-90.4161,74.1004-90.4161,74.1004,40.4807,74.1004,90.4161z" fill-rule="nonzero" transform="matrix(0.2829792,-0.3386568,0.2769578,0.1743554,178.91716,354.09491)" fill="url(#radialGradient2703)"/>
<path d="m615.917,120.328c0,49.9354-33.1759,90.4161-74.1004,90.4161-40.9246,0-74.1004-40.4807-74.1004-90.4161s33.1759-90.4161,74.1004-90.4161,74.1004,40.4807,74.1004,90.4161z" fill-rule="nonzero" transform="matrix(0.2682217,-0.350461,0.2841682,0.1623384,188.54593,350.86358)" fill="url(#radialGradient2703)"/>
<path d="m615.917,120.328c0,49.9354-33.1759,90.4161-74.1004,90.4161-40.9246,0-74.1004-40.4807-74.1004-90.4161s33.1759-90.4161,74.1004-90.4161,74.1004,40.4807,74.1004,90.4161z" fill-rule="nonzero" transform="matrix(0.4405956,-2.5326039e-2,6.2332572e-2,0.3212787,113.2713,164.86197)" fill="url(#radialGradient2703)"/>
<path d="m615.917,120.328c0,49.9354-33.1759,90.4161-74.1004,90.4161-40.9246,0-74.1004-40.4807-74.1004-90.4161s33.1759-90.4161,74.1004-90.4161,74.1004,40.4807,74.1004,90.4161z" fill-rule="nonzero" transform="matrix(0.4240849,-0.160985,0.2527898,0.159015,87.5118,245.0304)" fill="url(#radialGradient2703)"/>
<path d="m523.462,249.494c0,64.9536-58.1339,117.609-129.846,117.609-71.7118,0-129.846-52.6553-129.846-117.609,0-64.9536,58.1339-117.609,129.846-117.609,71.7118,0,129.846,52.6553,129.846,117.609z" fill-rule="nonzero" transform="matrix(0.2725526,-5.8961952e-2,5.3787539e-2,0.2969835,242.36494,103.90633)" fill="url(#radialGradient2691)"/>
<path d="M507.358,749.978c0,97.901-32.385,203.263-121.492,203.263-89.108,0-161.427-79.456-161.427-177.357s72.319-177.357,161.427-177.357c89.107,0,121.492,53.55,121.492,151.451z" fill-rule="evenodd" transform="matrix(0.5610641,0.4193534,-0.3823728,0.5115869,371.46501,-381.74178)" fill="url(#radialGradient3569)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3368278,-0.1594348,0.1622978,0.3146981,160.78515,227.9677)" fill="url(#radialGradient2683)"/>
<path opacity="0.24372762" d="m517.107,249.494c0,64.9536-55.2886,117.609-123.491,117.609-68.202,0-123.491-52.6553-123.491-117.609,0-64.9536,55.2886-117.609,123.491-117.609,68.202,0,123.491,52.6553,123.491,117.609z" fill-rule="nonzero" transform="matrix(0.103755,-0.1361663,0.1102656,8.3227988e-2,145.04868,156.48754)" filter="url(#filter3477)" fill="#FFF"/>
<path d="M389.05,81.1347c12.247,12.5358,22.11,27.4103,28.86,43.8803,3.375,8.234,5.972,16.867,7.7,25.806,0.432,2.235,0.81,4.489,1.132,6.76l-23.514,3.37c-0.266-1.877-0.578-3.74-0.935-5.587-1.428-7.388-3.574-14.523-6.363-21.329-5.578-13.611-13.728-25.905-23.85-36.2661" fill-rule="evenodd" fill="url(#radialGradient2636)"/>
<path d="M549.219,152.562c-45.924-0.368-76.818,14.551-116.813,32.25,6.99,2.161,9.936,4.095,14.865,7.143,37.78-15.319,58.387-22.339,88.01-24.986,29.69-2.653,54.059,1.909,66.563,17.5,20.711,25.825,18.925,69.324-5.438,123.625-24.362,54.3-70.909,118.596-136.718,184.344-10.032,10.022-20.968,19.001-31.75,27.968-1.089,0.887-1.769,2.197-1.844,3.594s0.421,2.784,1.437,3.812c0.761,0.775,1.444,1.445,2,2.094,1.759,2.076,4.901,2.356,7,0.625h0.031c10.758-8.971,21.901-18.201,32.407-28.625,65.642-65.131,113.896-130.21,139.812-187.062,25.917-56.853,29.82-106.408,3.969-138.625-14.054-17.514-37.487-23.448-63.531-23.657zm-389.479,284.771c-21.382,39.746-35.683,70.984-41.24,103.105-5.569,32.191-0.834,60.337,17.094,79.562,19.614,21.034,50.421,27.52,87.281,21.812,36.855-5.706,80.306-23.467,127.219-51.781,1.482-0.901,2.383-2.505,2.406-4.219,0.023-1.713-0.859-3.343-2.312-4.281-0.061-0.038-0.646-0.827-2.282-2.031-1.616-1.195-3.8-1.304-5.531-0.281-44.27,26.244-85.821,43.139-120.094,48.812-34.278,5.675-60.664,0.243-76.656-16.906-14.444-15.489-19.031-37.991-14.25-66.656,4.794-28.748,15.368-49.346,32.308-89.174-2.991-4.835-3.585-7.981-3.943-17.962z" fill-rule="evenodd" transform="matrix(0.5254279,0,0,0.5254279,96.59687,-29.519969)" filter="url(#filter4565)" fill="#FFF"/>
<path d="M180.572,200.217c-0.067-0.085-0.172-0.132-0.281-0.125-0.087,0.011-0.165,0.056-0.219,0.125-0.011,0.01-0.021,0.02-0.031,0.031-12.93,20.669-21.381,40.553-24.344,57.719-2.962,17.166-0.436,31.651,8.719,41.469,10.058,10.786,27.201,13.749,48.156,10.187,20.955-3.561,45.756-13.644,71.25-29.031,0.086-0.048,0.138-0.122,0.156-0.219,0.018-0.096,0.001-0.205-0.062-0.281-0.018-0.024-0.039-0.045-0.063-0.062-0.547-0.347-0.788-0.765-1.406-1.219-0.105-0.064-0.238-0.064-0.344,0-24.407,14.469-48.622,24.335-69.093,28.031s-37.156,1.217-46.625-8.937c-8.532-9.149-11.128-22.386-8.438-38.532s10.669-35.164,23.219-55.781c0.043-0.076,0.054-0.166,0.031-0.25m205.5-155.656c-23.601,0.4025-44.978,9.8682-65.906,19.9687,1.315,0.3555,2.611,0.6924,3.906,1.0938,20.637-10.2998,40.105-16.5351,56.5-18,16.607-1.4839,30.89,0.9722,38.531,10.5,12.197,15.2073,10.85,40.0107-2.656,70.1247-13.506,30.115-39.14,65.487-75.312,101.625-5.599,5.594-11.699,10.566-17.594,15.469-0.011,0.01-0.022,0.02-0.031,0.031-0.111,0.125-0.111,0.313,0,0.438,0.417,0.424,0.842,0.872,1.218,1.312,0.01,0.011,0.021,0.022,0.032,0.032,0.093,0.084,0.226,0.108,0.343,0.062,0.035-0.015,0.067-0.036,0.094-0.062,5.893-4.915,11.914-9.896,17.563-15.5,35.776-35.498,62.029-70.966,76.031-101.688s15.78-56.7854,2.469-73.375c-7.033-8.7646-18.977-11.9198-32.875-12.0312-0.767-0.0062-1.55-0.013-2.313,0z" fill-rule="evenodd" fill="#5f5f5f"/>
<path d="M522.062,122.875c-62.128-0.544-104.066,27.998-155.325,53.966,11.806-1.283,15.132-1.338,21.042,1.561,48.559-23.414,69.324-32.201,104.783-38.027,35.121-5.771,64.809,1.252,77.813,15.344,11.105,12.034,16.205,29.149,15.375,50.75-0.83,21.594-7.739,47.393-20.219,75.375-24.959,55.964-72.127,120.624-135.531,179.75-11.863,11.062-23.852,21.526-35.906,31.406-1.313,1.062-2.136,2.659-2.219,4.406s0.575,3.414,1.813,4.625c0.744,0.734,1.406,1.401,1.968,2.031,2.135,2.408,5.883,2.693,8.375,0.657,12.222-10.052,24.373-20.654,36.407-31.875,66.005-61.551,114.417-127.817,140.156-186.282,12.869-29.232,20.064-56.53,20.781-80.562,0.718-24.038-5.197-45.014-19-60.344-10.797-11.991-30.701-22.525-60.313-22.781zm-367.906,250.25c-35.325,47.682-52.638,84.886-62.906,123.437-10.325,38.767-7.0331,72.197,13.969,94.719,19.013,20.39,48.884,27.422,84.312,23.157,35.422-4.265,76.987-19.663,121.531-45.063,1.929-1.086,3.12-3.112,3.094-5.344-0.025-2.231-1.331-4.227-3.25-5.25-1.241-0.661-2.354-1.263-3.344-1.875-1.848-1.154-4.179-1.229-6.093-0.187h-0.031c-41.563,23.155-80.775,37.473-113.063,41.625-32.294,4.153-57.021-1.727-71.875-17.656-16.368-17.553-19.3928-45.205-9.875-80.657,9.487-35.336,34.906-80.182,49.316-104.437-2.601-5.474-2.083-11.082-1.785-22.469z" fill-rule="evenodd" transform="matrix(0.5254279,0,0,0.5254279,96.59687,-29.519969)" filter="url(#filter4561)" fill="#FFF"/>
<path d="M374.791,32.592c-33.123-0.2902-61.637,15.1597-89.125,30.9688-0.11,0.0704-0.152,0.1874-0.156,0.3125,1.69-0.0855,3.384-0.1461,5.093-0.1563,24.512-14.6947,47.928-24.1436,67.594-27.375,19.836-3.2592,36.988,0.3617,45.219,9.2813,6.716,7.2781,9.662,17.5267,9.187,29.875-0.474,12.3483-4.374,26.7847-11.312,42.3437-13.876,31.118-39.925,66.752-74.875,99.344-6.539,6.097-13.136,11.865-19.781,17.312-0.091,0.07-0.151,0.167-0.157,0.282-0.006,0.114,0.042,0.233,0.125,0.312,0.425,0.419,0.873,0.827,1.25,1.25,0.133,0.158,0.366,0.185,0.532,0.063,6.646-5.466,13.243-11.278,19.781-17.375,35.881-33.46,62.125-69.464,76-100.969,6.938-15.753,10.777-30.3701,11.156-43.0002,0.379-12.6302-2.708-23.284-9.656-31-5.282-5.8659-15.347-11.3343-30.875-11.4688zm-196.313,136.813c0.121-1.82,0.295-3.612,0.5-5.407-18.802,26.071-31.631,50.302-37.125,70.907-5.51,20.668-3.648,37.739,6.969,49.125,9.611,10.306,26.53,13.794,47.406,10.812,20.877-2.982,45.763-12.442,71.407-28.25,0.123-0.074,0.194-0.2,0.187-0.344-0.006-0.144-0.089-0.281-0.219-0.343-0.682-0.364-1.321-0.569-1.968-0.969-25.759,15.392-44.999,22.371-69.875,27.344-20.1,2.914-36.09-0.472-45.063-10.094-9.879-10.594-11.416-26.952-6.062-46.875,5.21-19.392,16.974-42.095,33.843-65.906z" fill-rule="evenodd" fill="#5f5f5f"/>
<path d="M179.692,158.56c-0.306,1.871-0.567,3.758-0.78,5.659-0.427,3.802-0.667,7.662-0.708,11.57-0.335,31.262,12.031,59.717,32.282,80.438l-16.954,16.635c-24.496-25.072-39.45-59.499-39.046-97.327,0.051-4.728,0.34-9.399,0.857-13.999,0.258-2.3,0.573-4.583,0.943-6.847" fill-rule="evenodd" fill="url(#radialGradient2636)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.2470079,-0.1209477,0.1190189,0.2387309,184.50724,198.8734)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3368278,-0.1594348,0.1622978,0.3146981,134.35257,219.39499)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3368278,-0.1594348,0.1622978,0.3146981,135.78136,220.1094)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3368278,-0.1594348,0.1622978,0.3146981,140.78212,221.53821)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3368278,-0.1594348,0.1622978,0.3146981,141.49654,221.53821)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3368278,-0.1594348,0.1622978,0.3146981,142.21092,222.25257)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3368278,-0.1594348,0.1622978,0.3146981,150.06926,222.25257)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3368278,-0.1594348,0.1622978,0.3146981,150.06926,222.25257)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3368278,-0.1594348,0.1622978,0.3146981,155.06997,217.25181)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3368278,-0.1594348,0.1622978,0.3146981,137.92458,232.96847)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.3368278,-0.1594348,0.1622978,0.3146981,150.06926,237.96922)" fill="url(#radialGradient2683)"/>
<path d="M197.572,48.1858c-1.318-0.0187-2.626-0.0021-3.937,0.0312-13.205,0.1852-23.462,3.6045-30.719,11.4063-7.04,7.5688-9.631,18.0981-9.188,30.6562,0.444,12.5585,4.393,27.1375,11.469,42.8755,14.153,31.474,40.758,67.525,76.531,100.968,35.773,33.444,72.766,57.04,104.532,68.688,15.883,5.824,30.479,8.667,42.937,8.25,12.458-0.418,23.289-4.099,30.688-11.313,9.412-9.176,11.842-23.929,8.875-41.906s-11.825-39.18-25.969-61.375c-0.016-0.025-0.037-0.047-0.063-0.062-0.009-0.012-0.019-0.023-0.031-0.032-0.199,1.159-0.391,2.292-0.625,3.438,12.835,20.835,21.279,40.425,24.375,57.125,3.12,16.824,0.833,30.703-7.844,40.031-6.796,7.307-16.804,10.986-29.093,11.375-12.29,0.39-26.877-2.508-42.782-8.375-31.809-11.735-68.933-35.298-103.812-67.906s-60.983-68.144-75.031-99.094c-7.025-15.475-11.046-29.813-11.625-42.0625-0.58-12.2491,2.25-22.3967,8.906-29.5625,8.365-9.0066,21.346-11.677,37.656-10.6562,16.026,1.003,35.188,7.0718,56.313,17.6875,1.033-0.3068,2.079-0.566,3.125-0.8438-24.656-12.9597-45.098-19.0655-64.688-19.3437z" fill-rule="evenodd" fill="#5f5f5f"/>
<path d="M215,111.75c-26.659,0.124-47.616,7.22-62.875,23.625-14.689,15.792-20.986,37.703-20.187,62.813,0.798,25.1,8.491,53.677,22.062,84.281,27.143,61.208,77.97,130.624,146.562,194.75,68.581,64.115,140.561,109.966,202.75,132.719,31.095,11.376,59.749,17.005,84.563,16,24.824-1.006,46.047-8.852,60.719-24.626,22.216-23.884,26.001-60.305,15-102.312-5.5-21-14.66-43.613-27.282-67.281-6.312-11.838-13.501-23.892-21.5-36.188-3.998-6.147-8.211-12.352-12.624-18.593-2.126-3.007-2.504-3.751-3.157-4.907-0.653-1.155-1.518-2.571-3.969-5.781-1.171-1.514-3.248-1.991-4.964-1.141-1.715,0.85-2.593,2.792-2.098,4.641,1.211,4.456,1.386,6.38,1.312,8s-0.537,3.478-0.781,7c-0.074,0.918,0.168,1.833,0.688,2.594,3.572,5.122,7.057,10.263,10.406,15.5,6.702,10.479,12.952,21.206,18.75,32.156,11.567,21.846,21.32,44.643,29.125,68.375,0.021,0.063,0.042,0.125,0.062,0.187,10.16,37.772,6.828,67.319-10.374,85.813-11.587,12.456-28.625,18.952-50.688,19.625-22.054,0.673-48.856-4.689-78.344-15.688-58.976-21.996-128.656-66.451-194.594-128-68.033-63.505-117.949-131.205-144.156-189.25-13.103-29.021-20.223-55.601-21-77.781-0.776-22.186,4.638-39.695,16.313-52.062,15.222-16.125,43.246-21.36,79.937-14.938,36.94,6.466,53.359,13.068,102.285,37.656,9.123-2.611,13.097-2.068,28.385,0.144-65.103-41.004-113.048-57.551-160.326-57.331z" fill-rule="evenodd" transform="matrix(0.5044108,0,0,0.5044108,105.01928,-21.766722)" filter="url(#filter4553)" fill="#FFF"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.2559465,6.9275158e-4,7.7527956e-2,0.13271,194.21984,124.23198)" fill="url(#radialGradient2683)"/>
<path d="M209.572,32.3733c-13.468,0.0627-23.865,3.5001-31.219,11.4062-7.028,7.5564-10.121,18.1054-9.718,30.7188,0.402,12.6133,4.798,27.2767,11.812,43.0937,14.029,31.634,40.507,67.867,76.281,101.313,35.775,33.444,73.318,57.308,105.438,69.062,16.06,5.877,30.765,8.723,43.219,8.219,12.453-0.504,23.659-4.382,30.687-11.938,10.696-11.498,11.748-29.279,6.125-50.75s-18.933-46.644-39-72.937c-0.009-0.011-0.02-0.021-0.031-0.031,0.239,1.64,0.426,3.306,0.594,4.968,18.177,24.668,30.653,48.372,36.125,68.625,5.529,20.468,3.909,37.397-6.157,48.219-6.778,7.287-16.698,10.942-28.875,11.313-12.177,0.37-26.607-2.556-42.375-8.438-31.534-11.763-68.909-35.357-103.812-67.937-36.004-33.608-61.957-69.411-75.969-100.438-7.006-15.514-10.883-29.8218-11.312-42.0625-0.429-12.2406,2.605-22.4192,9.437-29.6562,9.08-9.6188,25.035-12.2807,44.875-8.8125,19.612,3.4283,42.999,12.8801,67.188,27.4375,1.632,0.0227,3.259,0.0647,4.875,0.1562-33.628-21.0882-64.144-31.6431-88.188-31.5312z" fill-rule="evenodd" fill="#5f5f5f"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.2559465,6.9275158e-4,7.7527956e-2,0.13271,189.93349,120.66)" fill="url(#radialGradient2683)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.2559465,6.9275158e-4,7.7527956e-2,0.13271,197.79178,129.23275)" fill="url(#radialGradient2683)"/>
<g fill-rule="nonzero" transform="matrix(0.7446541,0,0,0.7446541,-3.2041063,0.7509507)" filter="url(#filter3597)" fill="url(#radialGradient2747)">
<path opacity="0.5" d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" transform="matrix(0.3437119,9.3029973e-4,0.1041127,0.1782169,261.76396,156.22963)" filter="url(#filter3553)"/>
<path opacity="0.5" d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" transform="matrix(0.3437119,9.3029973e-4,0.1041127,0.1782169,259.36548,160.06718)" filter="url(#filter3561)"/>
<path opacity="0.5" d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" transform="matrix(0.3437119,9.3029973e-4,0.1041127,0.1782169,248.81246,154.31096)" filter="url(#filter3541)"/>
<path opacity="0.5" d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" transform="matrix(0.3437119,9.3029973e-4,0.1041127,0.1782169,242.09691,146.63608)" filter="url(#filter3557)"/>
<path opacity="0.5" d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" transform="matrix(0.3437119,9.3029973e-4,0.1041127,0.1782169,251.6906,151.43289)" filter="url(#filter3549)"/>
<path opacity="0.5" d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" transform="matrix(0.3437119,9.3029973e-4,0.1041127,0.1782169,267.9997,167.74206)" filter="url(#filter3545)"/>
</g>
<path fill-rule="evenodd" fill="url(#radialGradient2759)" d="M339.462,127.957c-0.107-0.11-0.213-0.225-0.32-0.334l0.32,0.334z"/>
<path style="enable-background:accumulate;marker-end:none;color:#000000;marker-start:none;marker-mid:none;" fill-rule="evenodd" fill="url(#radialGradient2632)" d="M426.728,157.592l-22.468,3.188c-0.295,0.467-0.576,0.937-0.875,1.406,0.191,1.47,0.365,2.95,0.5,4.437,0.345,3.811,0.51,7.686,0.468,11.594-0.334,31.263-13.318,59.435-34,79.719l16.625,17c25.027-24.542,40.721-58.641,41.125-96.469,0.051-4.728-0.144-9.421-0.562-14.031-0.209-2.306-0.491-4.573-0.813-6.844z"/>
<g fill-rule="nonzero" transform="matrix(0.996297,0,0,1,-99.53402,-71.8889)">
<g transform="matrix(0.7424504,0,0,0.7446541,98.39156,63.707562)" fill="#FFF">
<path style="text-align:start;" d="M42.8125,160.062c-1.5267-0.004-3.0241,0.587-4.125,1.688s-1.7231,2.6-1.7187,4.156v136.469c-0.0044,1.556,0.6324,3.039,1.7187,4.125s2.5692,1.723,4.125,1.719h12.6563c1.5559,0.004,3.0553-0.618,4.1562-1.719,1.1008-1.101,1.6918-2.598,1.6875-4.125v-117.25h16.5c4.2032,0,7.8414,0.186,10.6875,0.5s4.9461,0.77,5.8438,1.156c4.2453,1.828,6.0982,1.995,9.1562,5.125,3.848,3.939,4.477,4.546,6.594,11.344,0.737,2.652,0.323,9.258-1.594,13.844-0.011,0.02-0.021,0.041-0.031,0.062-0.4,1-1.627,3.009-3.25,4.938-1.624,1.928-3.667,3.857-5.6878,5.062-3.9177,2.336-8.0716,2.178-16.75,2.375-8.5152,0.194-9.4062,0.188-9.4062,0.188-2.0929-0.017-4.0501,1.1-5.0938,2.937-1.0436,1.838-1.0032,4.1,0.0938,5.906l39.937,66.813c1.047,1.749,2.932,2.838,4.969,2.844h16.875c2.127,0.011,4.065-1.163,5.094-3s0.983-4.117-0.125-5.907l-29-47.374c4.559-1.606,8.373-3.613,10.375-5.063,0.056-0.048,0.108-0.101,0.156-0.156,0.029-0.028,0.066-0.065,0.094-0.094,6.252-4.733,10.655-7.974,14.625-15.406v-0.063c0.062-0.126,0.135-0.244,0.187-0.375,3.182-7.132,4.189-14.616,4.407-21.75,0.011-0.02,0.021-0.041,0.031-0.062v-0.031c0.236-12.22-4.514-25.928-14.25-35.313-9.125-8.796-16.148-10.494-22.25-12-7.6803-1.896-17.4127-1.562-31.4375-1.563h-25.25z" filter="url(#filter6606)"/>
<path style="text-align:start;" d="M191.25,188.281c-18.342,0.445-34.081,8.297-45.219,22.594-9.029,11.556-13.687,25.143-13.687,39.875,0,15.735,5.515,30.311,16.062,42.656,0.021,0.011,0.042,0.021,0.063,0.032,0.113,0.136,0.239,0.261,0.375,0.374,10.968,12.514,26.587,18.844,44.937,18.844,8.198,0,15.814-1.207,22.75-3.781,0.009-0.003,0.022,0.003,0.031,0,0.16-0.029,0.317-0.07,0.469-0.125,6.678-2.61,13.333-6.306,18.907-12,6.628-6.772,11.362-16.235,15.062-23.531,1.19-2.371,1.116-5.234-0.312-7.531-0.856-1.377-2.158-2.272-3.594-2.876,2.079-0.003,4.033-0.836,5.468-2.281,1.436-1.444,2.229-3.419,2.219-5.437v-0.032c-0.14-15.63-4.46-32.289-13.531-43.781-11.825-15.079-28.633-23-48.219-23-0.387,0-1.012-0.018-1.781,0zm1.781,28.125h0.188c5.032,0,9.687,1.057,14.312,3.219,4.673,2.185,8.087,4.875,10.625,8.094,0.04,0.053,0.082,0.105,0.125,0.156l0.063,0.063c1.158,1.491,2.599,4.514,3.937,8.031l-58.25,0.375c2.024-5.375,5.251-9.432,8.188-12.063,5.942-5.339,12.417-7.832,20.812-7.875zm-30.531,46.156l64.219,0.188c-1.547,0.621-2.906,1.682-3.781,3.156-4.012,6.729-5.048,8.361-7.813,10.782-3.051,2.671-5.84,4.619-9.687,6.062-0.019,0.007-0.044-0.007-0.063,0-0.032,0.02-0.063,0.041-0.094,0.062h-0.031c-4.107,1.533-8.228,2.282-12.594,2.282-9.126,0-15.81-2.799-21.937-9.156-4.71-4.928-7.034-8.364-8.219-13.376z" filter="url(#filter6626)"/>
<path opacity="0.8" style="text-align:start;" d="M307.844,187.844c-15.894,0.414-30.271,6.834-41.563,18.468-11.707,12.063-17.812,27.37-17.812,44.25,0,17.138,6.012,32.599,17.593,44.75,0.219,0.232,0.46,0.441,0.719,0.626,11.543,11.641,26.195,17.875,42.407,17.874,9.304,0,18.162-2.015,26.187-6.062,2.027-1.013,3.93-2.215,5.813-3.469,0.131,0.491,0.313,0.885,0.5,1.344,0.38,0.937,0.715,1.804,1.843,2.937,2.088,2.096,5.775,2.601,6.375,2.594h12.719c0.595,0.007,4.222-0.526,6.281-2.594,1.158-1.163,1.467-2.028,1.844-2.968s0.737-1.722,0.719-3.344v-102.938c0.008-0.712-0.529-4.207-2.563-6.25-2.088-2.096-5.775-2.6-6.375-2.593h-12.719c-0.593-0.007-4.222,0.526-6.281,2.593-1.347,1.354-1.908,3.087-2.219,4.5-1.666-1.168-3.324-2.354-5.124-3.312-8.057-4.328-17.083-6.406-26.657-6.406-0.314,0-0.906-0.021-1.687,0zm1.75,30.468h0.968c9.247,0.001,15.857,2.81,22.094,9.313,0.021,0.011,0.042,0.021,0.063,0.031,0.031,0.032,0.062,0.063,0.093,0.094,6.197,6.452,9,13.627,9,23.656,0,6.473-1.347,11.848-4,16.688v0.031c-0.043,0.062-0.084,0.124-0.124,0.187-2.658,4.87-6.232,8.507-11.344,11.438-5.16,2.958-10.218,4.281-15.875,4.281-5.589,0-10.426-1.296-15.375-4.219-4.804-2.914-8.458-6.795-11.469-12.25-3.014-5.461-4.375-10.747-4.375-16.531,0-5.886,1.372-11.226,4.312-16.593,2.925-5.249,6.442-8.906,11.063-11.688,0.007-0.004,0.024,0.004,0.031,0,0.021-0.021,0.042-0.041,0.063-0.062,0.042-0.021,0.083-0.042,0.125-0.063,0.16-0.095-0.077,0.065,0.031,0,0.042-0.031,0.084-0.062,0.125-0.094,4.588-2.736,9.196-4.068,14.594-4.219z" filter="url(#filter3602)"/>
<path opacity="0.8" style="text-align:start;" d="M431.25,187.938c-11.26,0-21.826,2.808-31.156,8.437-9.308,5.616-16.752,13.622-22,23.469-5.184,9.775-7.813,20.54-7.813,31.844,0,16.769,5.766,31.856,16.938,43.75,11.257,11.985,26.245,18.312,43.093,18.312,10.858,0,20.925-2.35,29.782-7.125,0.277-0.151,0.539-0.329,0.781-0.531,0.01-0.011,0.021-0.021,0.031-0.032,8.592-4.824,20.323-14.107,27-32.781,0.915-2.558,0.563-5.397-1-7.656s-4.111-3.611-6.812-3.656h-0.032s-3.531-0.047-7.093-0.094c-1.764-0.023-3.549-0.056-4.969-0.063-0.682-0.003-1.276-0.006-1.781,0-0.478,0.006-0.764,0.032-0.75,0.032,0.764-0.034,0.104-0.045-0.625,0.031,0.036-0.004-0.477,0.042-0.875,0.125-0.162,0.034-0.718,0.172-1.188,0.344-0.564,0.207-0.929,0.424-1.281,0.625-1.208,0.691-1.087,0.784-1.375,1.031-0.144,0.123-0.281,0.229-0.375,0.312-0.047,0.042-0.065,0.069-0.094,0.094-0.014,0.013-0.022,0.023-0.031,0.032-0.005,0.004-0.027-0.004-0.031,0-0.206,0.191-0.394,0.4-0.563,0.624-0.468,0.61-0.869,1.288-1.156,2-5.364,12.616-15.987,17.063-27.031,17.063-6.095,0-11.139-1.378-15.844-4.219-4.659-2.84-8.19-6.633-11.031-12.031-2.81-5.426-4.094-10.908-4.094-17.125,0-9.708,2.766-16.913,8.875-23.5,6.098-6.526,12.623-9.312,22-9.312,6.011,0,10.528,1.01,14.688,3.531,4.159,2.521,8.158,6.74,12.406,13.812,0.01,0.011,0.021,0.021,0.031,0.031,0.184,0.316,0.405,0.61,0.656,0.876,0.027,0.026,0.039,0.039,0.063,0.062l0.125-0.125c0.871,0.859,2.156,2.156,2.156,2.156s0.454,0.234,0.625,0.313,0.139,0.095,0.75,0.312c0.44,0.157,0.939,0.294,1.188,0.344,0.652,0.13,1.825,0.206,0.781,0.094,0.036,0.004,0.076,0.037,0.531,0.062-0.155-0.008,0.047,0.018,0.531,0.032,0.586,0.016,0.901-0.006,1.25,0,0.911,0.013,2.27,0.052,3.844,0.062,3.047,0.019,6.786,0.012,9.594,0,2.632-0.024,5.09-1.256,6.687-3.344,1.598-2.087,2.081-4.787,1.438-7.25-3.696-14.302-14.077-23.777-18.719-27.656-4.899-4.093-10.717-7.309-17.313-9.688-6.685-2.434-13.667-3.624-20.812-3.624z" filter="url(#filter3606)"/>
<path style="text-align:start;" d="M508.094,154.125c-2.744-0.008-5.453,1.046-7.469,3.063-1.985,1.984-3.102,4.688-3.094,7.5v24.062h-9.031c-2.744-0.008-5.453,1.046-7.469,3.062-1.985,1.985-3.101,4.689-3.093,7.5v13.657c-0.009,2.921,1.182,5.571,3.124,7.5,1.97,1.955,4.67,3.091,7.532,3.062l9.156-0.093,9.027,78.218c4.71,0.082,8.807,1.457,14.44,0l11.033-78.344h9.062c2.812,0.008,5.516-1.108,7.5-3.093,2.017-2.016,3.071-4.725,3.063-7.469v-13.688c0.008-2.775-1.056-5.523-3.125-7.562-2.06-2.03-4.844-3.049-7.625-3l-8.875,0.094v-23.906c0.008-2.713-1.014-5.452-3.062-7.5-2.049-2.049-4.788-3.071-7.5-3.063h-13.126-0.468z" transform="translate(2,-2)" filter="url(#filter6618)"/>
<path style="text-align:start;" d="M615.062,156.188c-13.036,0.159-25.347,3.669-36.562,10.437-11.505,6.875-20.705,16.528-27.344,28.625-6.579,12.106-9.875,25.41-9.875,39.5,0,21.11,7.408,39.783,21.875,54.719,14.495,14.964,32.939,22.625,53.938,22.625,20.793,0,39.083-7.796,53.5-22.813,14.473-15.009,21.843-33.791,21.844-55.187-0.001-21.57-7.378-40.443-21.876-55.344-14.516-14.92-33.177-22.562-54.562-22.562-0.231,0-0.553-0.005-0.938,0zm0.813,25.937c0.165-0.003,0.382,0,0.75,0,8.796,0,16.936,2.272,24.875,7,7.942,4.73,13.881,10.858,18.188,18.687,0.01,0.011,0.02,0.022,0.031,0.032,0.019,0.032,0.04,0.063,0.062,0.094,4.314,7.732,6.5,16.321,6.5,26.156,0,9.942-2.221,18.692-6.593,26.656-4.32,7.962-10.191,14.071-17.969,18.656-0.011,0.01-0.021,0.021-0.031,0.032-0.043,0.018-0.085,0.039-0.126,0.062-7.676,4.529-15.833,6.75-24.937,6.75-13.756,0-24.818-4.723-34.656-14.812-9.755-10.116-14.438-21.876-14.438-36.688,0-10.009,2.224-18.792,6.594-26.75,4.384-7.983,10.312-14.158,18.125-18.875,7.577-4.574,15.339-6.859,23.625-7z" filter="url(#filter6614)"/>
<path style="text-align:start;" d="M737.5,156.281c-7.452,0-14.598,1.704-21.094,5.031-6.452,3.273-11.752,7.967-15.468,13.938-4.407,7.079-6.563,17.181-6.563,24.875,0,7.495,0.76,15.666,6.75,23.437,0.015,0.031,0.046,0.061,0.063,0.094,0.024,0.032,0.037,0.063,0.062,0.094,0.055,0.108,0.118,0.213,0.188,0.312,0.02,0.022,0.041,0.043,0.062,0.063,6.869,8.374,14.943,13.062,28.438,17.313,5.84,1.839,11.084,4.478,15.093,7.156s6.782,5.576,7.531,6.968c3.438,6.382,1.52,16.202-0.624,20.376-1.08,2.099-3.182,4.173-6.188,5.687-3.234,1.583-6.421,2.313-10.188,2.313-3.841,0-8.029-1.387-11.281-4.532-3.278-3.169-5.94-8.157-6.219-16.906-0.125-3.949-3.424-7.137-7.374-7.156l-13.344-0.125c-2.017-0.019-3.993,0.802-5.406,2.281-1.414,1.479-2.175,3.472-2.063,5.531,0.525,9.498,3.016,18.111,6.437,25.157,3.309,6.813,7.442,12.286,12.626,15.656,0.024,0.016,0.038,0.047,0.062,0.062,0.107,0.103,0.222,0.197,0.344,0.282,0.007,0.004,0.024-0.005,0.031,0l0.031,0.031c8.004,4.877,16.952,7.812,27.032,7.812,13.397,0,24.657-5.868,33.468-13.906h0.032c0.118-0.111,0.233-0.226,0.343-0.344,6.109-6.416,9.854-16.777,11.219-27.562,0.969-7.659,0.497-16.015-1.531-24.688-2.654-11.346-14.136-22.504-32.125-27.406-0.197-0.071-0.154-0.045-0.219-0.063-0.057-0.015-0.233-0.078-0.187-0.062-5.394-1.928-10.026-3.342-17.594-7.031-0.041-0.022-0.083-0.043-0.125-0.063-0.04-0.019-0.054-0.043-0.094-0.062h-0.031l-0.063-0.063c-4.944-2.349-6.129-5.653-6.875-7.906-0.918-2.774-1.486-9.87,4.719-15.813,2.433-2.155,5.816-3.593,9.594-3.593,2.968,0,6.482,0.961,9.093,2.406,0.039,0.021,0.088,0.041,0.126,0.063l0.031,0.031c-0.471-0.262,0.41,0.299,1.062,1.031s1.402,1.755,2.031,2.938c1.31,2.458,2.335,5.771,2.376,9.343,0.047,4.005,3.37,7.292,7.374,7.313l12.126,0.094c3.969,0.034,7.316-3.159,7.468-7.126,0.376-9.861-2.293-18.221-6-24.562-3.683-6.301-8.227-10.736-12.844-13.156-6.904-3.732-14.421-5.563-22.312-5.563z" filter="url(#filter6610)"/>
</g>
<g transform="matrix(0.7446541,0,0,0.7446541,124.05379,843.43751)">
<path style="text-align:start;" d="M8.86337-880.714v136.468h12.6412v-123.105h22.2705c8.6536,0,15.0692,0.555,18.7943,2.163,3.725,1.608,7.038,2.376,10.9488,6.392,3.9977,4.104,5.7201,6.487,7.9589,13.698,1.3055,4.708,0.7077,11.908-1.7415,17.785-1.5235,3.824-5.875,9.52-11.3665,12.803-5.4915,3.284-11.006,3.065-19.5091,3.258-8.5031,0.194-9.5343,0.188-9.5343,0.188l39.8101,66.818h16.8311l-33.043-54.111c6.9102-0.767,14.0089-4.673,15.983-6.107,6.4181-4.876,9.5751-6.991,13.1361-13.677,2.7391-6.158,3.7181-12.963,3.9214-19.646,0.2033-10.562-4.1326-23.003-12.4189-31.014-8.4066-8.128-13.27-8.994-19.5166-10.54-6.2467-1.547-15.9304-1.373-29.971-1.373h-25.1945z" fill="#4c5457"/>
<path style="text-align:start;" d="M157.053-850.649c-16.305,0.396-29.389,6.935-39.236,19.613-8.018,10.292-12.012,22.022-12.012,35.172,0,13.977,4.722,26.523,14.192,37.641,9.47,11.055,22.612,16.579,39.406,16.579,7.576,0,14.37-1.133,20.368-3.42,5.998-2.351,11.609-5.509,16.179-10.192,5.276-5.406,9.986-14.387,13.648-21.629l-14.514,0.085c-4.04,6.798-5.9,9.581-9.373,12.63-3.472,3.05-7.225,5.736-12.213,7.578-4.924,1.842-9.994,2.763-15.234,2.763-10.859,0-19.981-3.863-27.368-11.55-7.387-7.751-11.203-14.286-11.456-26.357l93.094,0.24c-0.126-14.167-4.387-29.598-11.837-39.064-10.48-13.405-24.494-20.089-42.045-20.089-0.533,0-1.073-0.013-1.599,0zm1.55,12.751c0.079-0.001,0.139,0,0.218,0,6.124,0,11.979,1.313,17.535,3.918s9.999,6.026,13.345,10.282c3.409,4.257,6.724,11.88,8.253,20.674l-77.899,0.48c0.802-12.408,7.427-20.76,12.73-25.525,7.204-6.492,15.818-9.779,25.818-9.829z" fill="#4c5457"/>
<path style="text-align:start;" d="M273.324-850.175c-13.753,0.36-25.62,5.646-35.498,15.854-10.239,10.581-15.342,23.371-15.342,38.257,0,15.2,5.052,28.164,15.166,38.808,10.177,10.581,22.475,15.854,36.812,15.854,8.069,0,15.042-0.601,22.112-3.722,6.817-3.009,12.489-8.124,18.135-14.211v15.045c0,0.064,0.021,0.13,0.066,0.176s0.111,0.067,0.175,0.066h12.803c0.064,0.001,0.13-0.02,0.175-0.066,0.046-0.046,0.067-0.112,0.066-0.176v-103.018c0.001-0.065-0.02-0.131-0.066-0.176-0.045-0.046-0.111-0.067-0.175-0.067h-12.803c-0.064,0-0.13,0.021-0.175,0.067-0.045,0.045-0.066,0.111-0.066,0.176v16.235c-4.989-6.918-10.195-10.756-16.771-14.283-6.719-3.604-14.809-4.818-23.126-4.819-0.5,0-0.981-0.013-1.488,0zm1.313,13.275c0.383-0.011,0.804,0,1.204,0,11.193,0,20.586,3.978,28.21,11.951,7.685,7.972,11.512,17.869,11.512,29.745,0,7.79-1.702,14.781-5.143,20.992-0.007-0.001-0.015-0.001-0.022,0-3.379,6.209-8.222,11.133-14.554,14.773-6.333,3.642-13.045,5.447-20.113,5.447-7.006,0-13.549-1.806-19.697-5.447-6.083-3.701-10.925-8.863-14.554-15.457s-5.449-13.487-5.449-20.705c0-7.281,1.795-14.196,5.362-20.727,3.628-6.53,8.449-11.55,14.532-15.126h0.022c5.752-3.44,11.95-5.258,18.69-5.446z" fill="#4c5457"/>
<path style="text-align:start;" d="M396.169-850.219c-9.854,0.001-18.786,2.41-26.756,7.233-7.969,4.822-14.235,11.552-18.819,20.176-4.526,8.56-6.793,17.856-6.793,27.871,0,14.893,4.88,27.57,14.62,37.97,9.742,10.402,22.025,15.611,36.802,15.611,9.619,0,18.208-2.044,25.722-6.108,7.569-4.125,17.643-11.598,23.745-28.716,0,0-14.1-0.264-14.197-0.142-6.713,15.834-21.14,22.288-34.742,22.287-7.424,0-14.116-1.812-20.116-5.446-5.943-3.633-10.657-8.738-14.114-15.325-3.402-6.588-5.101-13.613-5.101-21.079,0-11.488,3.7-21.21,11.125-29.239,7.478-8.026,16.838-12.039,28.118-12.039,14.118,0,24.853,5.781,34.252,21.475,0.04,0.065,9.221,0.133,14.753,0.108-2.916-11.315-11.875-19.933-15.896-23.303-4.021-3.369-8.945-6.11-14.73-8.203-5.733-2.093-11.684-3.13-17.873-3.131z" fill="#4c5457"/>
<path style="text-align:start;" d="M473.249-881.947h13.078v34.636l19.562-0.24v13.664h-19.562v89.409h-13.317v-89.409l-19.767,0.24v-13.664h19.528v-34.636" fill="#4c5457"/>
<path style="text-align:start;" fill="#608194" d="M579.509-884.154c-11.924,0.146-23.028,3.349-33.308,9.57-10.526,6.309-18.833,15.044-24.958,26.24-6.066,11.195-9.103,23.358-9.103,36.47,0,19.67,6.672,36.441,20.053,50.296,13.381,13.856,29.809,20.772,49.256,20.771,19.208,0,35.477-6.964,48.799-20.881,13.38-13.917,20.053-30.868,20.053-50.847,0-20.165-6.673-37.142-20.053-50.936-13.381-13.793-30.009-20.682-49.872-20.683-0.287,0-0.58-0.003-0.867,0zm0.594,13.363c0.302-0.005,0.586,0,0.889,0,9.872,0,19.214,2.636,28.016,7.894,8.801,5.257,15.624,12.274,20.441,21.057,4.877,8.722,7.301,18.48,7.301,29.305,0,10.886-2.424,20.794-7.301,29.701-4.817,8.907-11.576,15.924-20.259,21.058-8.623,5.134-18.028,7.695-28.198,7.695-15.224,0-28.234-5.558-39.057-16.691-10.764-11.196-16.153-24.896-16.152-41.102-0.001-10.948,2.446-20.882,7.323-29.789,4.876-8.907,11.644-15.977,20.327-21.234,8.411-5.093,17.309-7.735,26.67-7.894z"/>
<path style="text-align:start;" d="M674.739-783.874c0.651,20.51,13.628,28.607,24.824,28.607,4.789,0,9.287-1.032,13.493-3.097,4.207-2.125,7.477-5.253,9.371-8.949,3.157-6.16,5.748-17.699,0.599-27.286-3.521-6.557-13.902-13.564-26.853-17.656-12.885-4.07-18.84-7.586-24.86-14.948-5.048-6.314-5.42-11.945-5.42-19.292,0-5.828,2.445-16.178,5.422-20.974,2.977-4.797,7.151-8.561,12.522-11.293,5.436-2.793,11.325-4.189,17.668-4.19,6.73,0.001,13.007,1.579,18.832,4.736,5.889,3.097,15.449,14.111,14.812,30.884l-12.127-0.107c-0.111-9.796-5.423-17.556-9.241-19.681-3.754-2.125-8.341-3.427-12.807-3.428-5.759,0.001-10.962,2.359-14.651,5.638-8.406,8.075-8.376,18.09-6.603,23.461,0.948,2.871,3.417,8.825,10.673,12.282,8.334,4.099,13.525,5.683,18.922,7.632,16.187,4.244,25.621,14.742,27.346,22.14,1.843,7.901,2.236,15.36,1.393,22.046-1.196,9.474-5.144,19.113-9.213,23.399-7.83,7.164-17.137,11.946-28.397,11.946-8.672,0-16.057-2.395-23.111-6.706-7.053-4.372-14.992-18.373-15.924-35.289" fill="#608194"/>
</g>
</g>
<path d="m517.107,249.494c0,64.9536-55.2886,117.609-123.491,117.609-68.202,0-123.491-52.6553-123.491-117.609,0-64.9536,55.2886-117.609,123.491-117.609,68.202,0,123.491,52.6553,123.491,117.609z" fill-rule="nonzero" transform="matrix(0.2659517,-0.135874,0.1166617,0.2234081,114.12269,97.998262)" filter="url(#filter4779)" fill="url(#radialGradient4591)"/>
<path d="m517.107,249.494c0,64.9536-55.2886,117.609-123.491,117.609-68.202,0-123.491-52.6553-123.491-117.609,0-64.9536,55.2886-117.609,123.491-117.609,68.202,0,123.491,52.6553,123.491,117.609z" fill-rule="nonzero" transform="matrix(0.1851454,-9.4773037e-2,8.121552e-2,0.155829,148.89172,92.525691)" filter="url(#filter4775)" fill="url(#radialGradient4591)"/>
<path d="m517.107,249.494c0,64.9536-55.2886,117.609-123.491,117.609-68.202,0-123.491-52.6553-123.491-117.609,0-64.9536,55.2886-117.609,123.491-117.609,68.202,0,123.491,52.6553,123.491,117.609z" fill-rule="nonzero" transform="matrix(0.1179718,-0.1725887,0.1434543,6.711177e-2,160.36562,144.13895)" filter="url(#filter4771)" fill="url(#radialGradient4589)"/>
<path opacity="0.2" d="m400.774,118.281c0,6.41022-5.19651,11.6067-11.6067,11.6067-6.41022,0-11.6067-5.19651-11.6067-11.6067,0-6.41022,5.19651-11.6067,11.6067-11.6067,4.77724,0,9.06654,2.9271,10.808,7.37561" fill-rule="nonzero" transform="matrix(1.1169813,0,0,1.0293749,-152.65758,-28.85876)" filter="url(#filter4546)" fill="url(#radialGradient2765)"/>
<path opacity="0.1" d="m299.727,293.747c0,7.54143-3.82096,13.655-8.53436,13.655-4.71339,0-8.53436-6.11354-8.53436-13.655,0-7.54143,3.82097-13.655,8.53436-13.655,3.51268,0,6.66658,3.44365,7.94709,8.67719" fill-rule="nonzero" transform="matrix(0.618684,-0.4144155,0.4144155,0.618684,-95.083142,162.75035)" filter="url(#filter5237)" fill="#FFF"/>
<path d="m299.727,293.747c0,7.54143-3.82096,13.655-8.53436,13.655-4.71339,0-8.53436-6.11354-8.53436-13.655,0-7.54143,3.82097-13.655,8.53436-13.655,3.51268,0,6.66658,3.44365,7.94709,8.67719" fill-rule="nonzero" transform="matrix(0.5373899,-0.3110615,0.3599617,0.464386,3.5378497,218.88062)" filter="url(#filter7267)" fill="#d9dfe4"/>
<path d="m299.962,293.747c0,7.54143-3.92637,13.655-8.76979,13.655s-8.76979-6.11354-8.76979-13.655c0-7.54143,3.92637-13.655,8.76979-13.655,3.60958,0,6.85048,3.44365,8.16632,8.67719" fill-rule="nonzero" transform="matrix(-0.4164211,0.3397726,-0.2799645,-0.3389628,486.19936,277.81172)" filter="url(#filter10578)" fill="#a3b1be"/>
<path d="m299.727,293.747c0,7.54143-3.82096,13.655-8.53436,13.655-4.71339,0-8.53436-6.11354-8.53436-13.655,0-7.54143,3.82097-13.655,8.53436-13.655,3.51268,0,6.66658,3.44365,7.94709,8.67719" fill-rule="nonzero" transform="matrix(0.3951251,-0.2077075,0.2646681,0.3100882,114.18081,204.75074)" filter="url(#filter7267)" fill="#e1e6ea"/>
<path d="m299.727,293.747c0,7.54143-3.82096,13.655-8.53436,13.655-4.71339,0-8.53436-6.11354-8.53436-13.655,0-7.54143,3.82097-13.655,8.53436-13.655,3.51268,0,6.66658,3.44365,7.94709,8.67719" fill-rule="nonzero" transform="matrix(0.3857728,-0.1685415,0.2584035,0.2516172,135.61611,224.80627)" filter="url(#filter7267)" fill="#a2b1be"/>
<path opacity="0.36089603" d="M413.041,92.8733c-11.659,0.38-20.677,5.4231-21.531,12.8747-0.732,6.383,4.742,12.87,13.343,17-7.268,9.529-10.746,21.619-8.687,34,4.122,24.793,28.842,41.439,55.187,37.157,26.345-4.283,44.404-27.895,40.282-52.688-3.771-22.677-24.783-38.516-48.5-37.781-4.656-4.8142-12.477-8.6761-21.657-10.0627-2.903-0.4386-5.747-0.5877-8.437-0.5z" fill-rule="nonzero" transform="matrix(0.7446541,0,0,0.7446541,-0.2254903,0.7509507)" filter="url(#filter4518)" fill="url(#radialGradient2767)"/>
<path d="m523.462,249.494c0,64.9536-58.1339,117.609-129.846,117.609-71.7118,0-129.846-52.6553-129.846-117.609,0-64.9536,58.1339-117.609,129.846-117.609,71.7118,0,129.846,52.6553,129.846,117.609z" fill-rule="nonzero" transform="matrix(0.2183368,0.1682831,-0.1130197,0.1827096,293.29874,8.7998507)" filter="url(#filter4666)" fill="url(#radialGradient2769)"/>
<path d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.2439121,9.0456251e-2,1.0444686e-2,0.2004205,202.13732,46.396385)" fill="url(#radialGradient2683)"/>
<path opacity="0.2" d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.2589117,2.5300899e-2,6.1182536e-2,0.1911392,183.04008,77.362837)" fill="url(#radialGradient2747)"/>
<path opacity="0.44086022" d="m400.774,118.281c0,6.41022-5.19651,11.6067-11.6067,11.6067-6.41022,0-11.6067-5.19651-11.6067-11.6067,0-6.41022,5.19651-11.6067,11.6067-11.6067,4.77724,0,9.06654,2.9271,10.808,7.37561" fill-rule="nonzero" transform="matrix(0.6707658,0,0,0.7085892,118.85152,147.94297)" filter="url(#filter4546)" fill="url(#radialGradient2695)"/>
<path opacity="0.2" d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.2589117,2.5300899e-2,6.1182536e-2,0.1911392,182.07558,84.329794)" fill="url(#radialGradient2747)"/>
<path opacity="0.54" d="m400.774,118.281c0,6.41022-5.19651,11.6067-11.6067,11.6067-6.41022,0-11.6067-5.19651-11.6067-11.6067,0-6.41022,5.19651-11.6067,11.6067-11.6067,4.77724,0,9.06654,2.9271,10.808,7.37561" fill-rule="nonzero" transform="matrix(0.902831,-0.73413,0.3898079,0.5286978,-45.046635,458.37787)" filter="url(#filter4636)" fill="url(#radialGradient4602)"/>
<path d="M389.05,81.1347c-24.496-25.0716-58.533-40.7872-96.293-41.1911s-72.125,14.5802-97.152,39.1221l16.594,16.9931c20.689-20.2841,49.097-32.6691,80.303-32.3353,31.207,0.3338,59.335,13.3235,79.578,34.0454" fill-rule="evenodd" fill="url(#radialGradient2632)"/>
<path opacity="0.2" d="m606.236,55.0655c0,23.6133-17.2754,42.7557-38.5858,42.7557-21.3103,0-38.5858-19.1424-38.5858-42.7557s17.2754-42.7557,38.5858-42.7557c21.3103,0,38.5858,19.1424,38.5858,42.7557z" fill-rule="nonzero" transform="matrix(0.2589117,2.5300899e-2,6.1182536e-2,0.1911392,208.07558,102.32979)" fill="url(#radialGradient2747)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 58 KiB

1
icons/rebornos.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 151.043 151.043"><path d="M113.28 140.924H37.76L.001 75.52l37.76-65.4h75.52l37.76 65.402z" fill="#00222b" stroke="#aef" stroke-opacity="0"/><path d="M40.688 15.2L24.914 42.5l15.588 9L51.08 33.188h21.147v-18zm38.127 0v18h21.147l10.578 18.3 15.588-9-15.774-27.32zm50.608 33.027l-15.588 9 10.57 18.305-10.578 18.322 15.588 9 15.774-27.32zm-107.804 0L5.855 75.522l15.774 27.32 15.587-9L26.638 75.52l10.57-18.305zM40.5 99.55l-15.588 9 15.765 27.305h31.538v-18H51.08zm70.02 0l-10.57 18.305H78.816v18h31.54l15.764-27.305z" fill="#006680"/><path d="M54.256 38.688l-9 15.57 13.457 7.77 4.505-7.802h9v-15.54zm24.56 0v15.54h9l4.505 7.802 13.457-7.77-9-15.57zM41.97 59.966L33 75.52l9 15.57 13.457-7.77-4.505-7.802 4.495-7.785zm67.1 0l-13.457 7.77 4.495 7.785-4.505 7.802 13.457 7.77 9-15.57zM58.732 89.03L45.275 96.8l8.98 15.556h17.97v-15.54h-9zm33.578 0l-4.495 7.785h-9v15.54h17.97l8.98-15.556z" fill="#08a"/><path d="M84.45 90.986H66.592l-8.93-15.465 8.93-15.465H84.45l8.93 15.465z" fill="#00aad4"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

4
icons/regolith.svg Normal file
View File

@ -0,0 +1,4 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M271.466 65A191.387 191.387 0 0 0 80.081 256.385c.12 12.004 1.37 23.97 3.732 35.741l-1.289-5.251c-70.546 49.084-76.455 98.024 31.602 78.473l.045-.018a1483.809 1483.809 0 0 0 25.999-7.942c3.633-1.145 7.254-2.309 10.87-3.487a1334.676 1334.676 0 0 0 24.652-8.271l.748-.254a1193.623 1193.623 0 0 0 58.988-22.201c.377-.15.76-.287 1.137-.44.018 0 .03 0 .051-.006l-.024-.03c32.466-13.268 63.306-27.655 93.069-43.411a41.867 41.867 0 0 0 23.953 7.539 41.868 41.868 0 0 0 41.866-41.866c0-1.234-.055-2.467-.165-3.696 28.618-18.044 56.593-37.652 84.509-59.096 3.827-7.248-1.534-24.608-18.316-20.29-24.952 20.251-50.777 38.334-77.179 54.638a41.874 41.874 0 0 0-30.715-13.421 41.866 41.866 0 0 0-41.865 41.865c.009 3.667.5 7.317 1.459 10.855-31.889 15.784-64.212 29.599-96.505 42.045a142.038 142.038 0 0 1-23.31-77.11A142.045 142.045 0 0 1 335.436 78.708c2.553 0 5.106.07 7.655.21A191.38 191.38 0 0 0 271.466 65Zm188.487 223.926a142.044 142.044 0 0 1-124.514 73.871 142.04 142.04 0 0 1-81.769-25.944l-.018.036c-36.946 15.098-75.51 30.212-126.314 45.415a191.389 191.389 0 0 0 144.128 65.468 191.381 191.381 0 0 0 188.487-158.849v.003ZM88.66 311.79a191.376 191.376 0 0 0 10.377 26.845l-.329.105c-54.951 13.301-23.998-7.273-8.744-21.651l-1.304-5.299Z" fill="#DC322F"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

53
icons/rhel.svg Normal file
View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg12"
sodipodi:docname="rhel.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<path
style="opacity:0.2;stroke-width:8.33333"
d="m 260.55262,71.271227 c -15.12673,0 -19.62197,19.456517 -38.01935,19.456517 -17.57971,0 -30.67713,-14.592384 -47.03035,-14.592384 -15.94441,0 -26.14555,10.5273 -33.91336,32.42019 0,0 -22.08492,61.62151 -24.94674,70.54084 -0.40883,1.6217 -10.21876,22.30275 -9.81001,23.92445 -43.744904,2.02712 -100.9854427,10.13117 -100.9854427,59.99824 0,81.89553 195.8295227,183.25214 351.1852027,183.25214 118.96972,0 148.8148,-53.49905 148.8148,-95.25766 0,-33.65013 -29.03507,-70.94723 -81.36542,-93.65095 l -5.7262,-24.34265 -19.62003,-84.31887 C 394.63857,130.05163 390.96907,121.53706 357.85375,105.32011 332.50629,92.346593 276.90587,71.271227 260.55262,71.271227 Z"
id="path2" />
<path
style="fill:#e73232;stroke-width:8.33333"
d="m 260.55262,62.937894 c -15.12673,0 -19.62197,19.456516 -38.01935,19.456516 -17.57971,0 -30.67713,-14.592383 -47.03035,-14.592383 -15.94441,0 -26.14555,10.5273 -33.91336,32.420183 0,0 -22.08492,61.62152 -24.94674,70.54085 -0.40883,1.6217 -10.21876,22.30275 -9.81001,23.92445 -43.744904,2.02712 -100.9854427,10.13117 -100.9854427,59.99823 0,81.89554 195.8295227,183.25215 351.1852027,183.25215 118.96972,0 148.8148,-53.49905 148.8148,-95.25766 0,-33.65014 -29.03507,-70.94724 -81.36542,-93.65095 l -5.7262,-24.34265 -19.62003,-84.31887 C 394.63857,121.7183 390.96907,113.20373 357.85375,96.986777 332.50629,84.01326 276.90587,62.937894 260.55262,62.937894 Z"
id="path4" />
<path
style="opacity:0.2;fill:#ffffff;stroke-width:8.33333"
d="m 260.55114,62.937894 c -15.12674,0 -19.62345,19.449866 -38.02083,19.449866 -17.57972,0 -30.66827,-14.583333 -47.02149,-14.583333 -15.94441,0 -26.15145,10.529 -33.91926,32.421883 0,0 -22.08935,61.62102 -24.95117,70.54037 -0.40883,1.6217 -10.20693,22.30408 -9.79818,23.92578 -43.744904,2.02712 -100.9928427,10.12642 -100.9928427,59.99348 0,1.37399 0.2001167,2.76602 0.30925,4.15039 3.21509,-46.03814 58.2280057,-53.84317 100.6835927,-55.81054 -0.40875,-1.6217 9.38935,-22.30408 9.79818,-23.92578 2.86182,-8.91935 24.95117,-70.54036 24.95117,-70.54036 7.76781,-21.89289 17.97485,-32.42189 33.91926,-32.42189 16.35322,0 29.44177,14.583334 47.02149,14.583334 18.39738,0 22.89409,-19.449867 38.02083,-19.449867 16.35325,0 71.95071,21.075966 97.29818,34.049483 33.11532,16.21694 36.79517,24.72618 41.29232,43.37565 l 19.61263,84.32617 5.72917,24.33268 c 50.37615,21.85587 79.07248,57.2288 81.15233,89.86003 0.0787,-1.5161 0.2116,-3.05181 0.2116,-4.54101 0,-33.65014 -29.03358,-70.94864 -81.36393,-93.65235 l -5.72917,-24.33269 -19.61263,-84.32616 c -4.49715,-18.64947 -8.177,-27.15872 -41.29232,-43.375653 C 332.50185,84.01386 276.90439,62.937894 260.55114,62.937894 Z"
id="path6" />
<path
style="opacity:0.1;stroke-width:8.33333"
d="m 424.98574,262.46093 c 4.51996,21.66803 4.51996,23.71216 4.51996,26.574 0,36.79476 -42.02035,57.2363 -96.67096,57.2363 -123.27207,0 -232.895701,-71.95422 -232.895701,-119.37857 0,-6.5413 1.232721,-13.0826 4.109081,-19.21505 l 9.86174,-23.7122 c -0.41092,1.63535 -0.82175,3.27065 -0.41092,4.90598 0,24.12102 96.88555,103.43419 225.49938,103.43419 32.87255,0 81.46743,-6.95014 81.46743,-45.78905 0,-2.86182 0,-6.13247 -0.82183,-8.99429 z"
id="path8" />
<path
style="fill:#3f3f3f;stroke-width:8.33333"
d="m 424.98574,254.12759 c 4.51996,21.66804 4.51996,23.71217 4.51996,26.574 0,36.79477 -42.02035,57.2363 -96.67096,57.2363 -123.27207,0 -232.895701,-71.95421 -232.895701,-119.37856 0,-6.5413 1.232721,-13.0826 4.109081,-19.21505 l 9.86174,-23.7122 c -0.41092,1.63535 -0.82175,3.27065 -0.41092,4.90598 0,24.12102 96.88555,103.43418 225.49938,103.43418 32.87255,0 81.46743,-6.95013 81.46743,-45.78905 0,-2.86181 0,-6.13246 -0.82183,-8.99428 z"
id="path10" />
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

6
icons/rocky.svg Normal file
View File

@ -0,0 +1,6 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M333.223 175.889 73.998 435.115a255.999 255.999 0 0 0 75.451 52.77L333.223 304.11l117.062 117.065a255.997 255.997 0 0 0 46.951-81.274L333.223 175.889Z" fill="#fff"/>
<path d="M497.755 340.42C506.985 313.988 512 285.58 512 256 512 114.615 397.385 0 256 0 114.616 0 0 114.615 0 256c0 69.958 28.061 133.362 73.542 179.57l259.68-259.681L497.755 340.42Z" fill="#10B981"/>
<path d="m450.285 421.176-117.77-117.77-184.428 184.428c32.611 15.058 68.928 23.46 107.206 23.46 78.102 0 148.036-34.976 194.992-90.118Z" fill="#10B981"/>
</svg>

After

Width:  |  Height:  |  Size: 664 B

71
icons/rosa.svg Normal file
View File

@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg20"
sodipodi:docname="rosa.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs24" />
<sodipodi:namedview
id="namedview22"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg20" />
<circle
style="opacity:0.2;stroke-width:8.77193"
cx="256.54446"
cy="261.84048"
r="245.61403"
id="circle2" />
<circle
style="fill:#3757a1;stroke-width:8.77193"
cx="256.54446"
cy="253.06856"
r="245.61403"
id="circle4" />
<path
style="opacity:0.1;fill:#ffffff;stroke-width:8.77193"
d="M 256.54446,7.454521 A 245.61404,245.61404 0 0 0 10.930419,253.06856 a 245.61404,245.61404 0 0 0 0.1886,5.14035 A 245.61404,245.61404 0 0 1 256.54446,16.226451 245.61404,245.61404 0 0 1 501.97428,256.70014 245.61404,245.61404 0 0 0 502.1585,253.06856 245.61404,245.61404 0 0 0 256.54446,7.454521 Z"
id="path6" />
<g
style="opacity:0.2;fill:none;stroke:#000000;stroke-width:3;stroke-linejoin:round"
id="g12"
transform="matrix(8.7719298,0,0,8.7719298,-24.157291,-27.633199)">
<path
d="m 48.5,33 c 0,9.113 -7.387,16.5 -16.5,16.5 -9.113,0 -16.5,-7.387 -16.5,-16.5 0,-9.113 7.387,-16.5 16.5,-16.5 4.556,0 16.5,0 16.5,0 0,0 0,11.944 0,16.5 z"
id="path8" />
<path
d="m 48.5,16.5 c 0,0 -1.5,9.5 -9.5,16 C 31,39 20,45 20,45 v 0 0"
id="path10" />
</g>
<g
style="fill:none;stroke:#ffffff;stroke-width:3;stroke-linejoin:round"
id="g18"
transform="matrix(8.7719298,0,0,8.7719298,-24.157291,-27.633199)">
<path
d="m 48.5,15.5 c 0,0 -1.5,9.5 -9.5,16 C 31,38 20,44 20,44 v 0 0"
id="path14" />
<path
d="m 48.5,32 c 0,9.113 -7.387,16.5 -16.5,16.5 -9.113,0 -16.5,-7.387 -16.5,-16.5 0,-9.113 7.387,-16.5 16.5,-16.5 4.556,0 16.5,0 16.5,0 0,0 0,11.944 0,16.5 z"
id="path16" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

61
icons/salentos.svg Normal file
View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="512"
version="1.1"
id="svg16"
sodipodi:docname="salentos.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs20" />
<sodipodi:namedview
id="namedview18"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.7050781"
inkscape:cx="251.30813"
inkscape:cy="256"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg16" />
<path
d="m 257.29942,7.5541787 c -10.61609,-0.24841 -21.09817,2.32932 -30.29764,7.4507303 L 56.789435,109.8872 c -17.89778,9.97666 -28.92347,28.41412 -28.92398,48.36744 v 189.76811 c 5.1e-4,19.95333 11.0262,38.39078 28.92398,48.36745 l 170.217605,94.88405 c 9.21333,5.13573 19.52718,7.62779 29.80855,7.47617 9.6917,-0.14289 7.62256,-10.75711 16.30746,-15.59828 l 169.31517,-93.07915 c 17.90542,-9.9785 32.54396,-19.39977 32.53906,-39.36041 V 161.84693 c -5.3e-4,-6.78508 7.74864,-17.00463 5.3617,-23.16593 -4.63284,-11.95859 -13.45302,-22.22789 -25.26636,-28.81134 L 284.86553,14.987359 C 276.47,10.314119 266.993,7.7521287 257.30468,7.5366387 Z"
style="fill:#53d953;stroke-width:8.77189"
id="path2" />
<path
d="m 32.456985,136.61598 a 57.847956,55.851505 0 0 0 -4.59154,21.63846 v 189.76061 a 57.847956,55.851505 0 0 0 28.91982,48.38245 l 170.229455,94.8803 a 57.847956,55.851505 0 0 0 28.91982,7.43555 v -243.3685 z"
style="fill:#ef2b2f;stroke-width:8.77189"
id="path4" />
<path
d="M 479.46349,136.58171 255.93454,255.34485 v 243.3685 a 57.847956,55.851505 0 0 0 28.91982,-7.43555 l 170.21231,-94.8803 a 57.847956,55.851505 0 0 0 28.93695,-48.39958 V 158.23731 a 57.847956,55.851505 0 0 0 -4.54013,-21.6556 z"
style="fill:#ffbb1f;stroke-width:8.77189"
id="path6" />
<path
d="M 257.30515,7.5561487 A 57.848624,55.893886 0 0 0 227.01472,15.025959 L 56.785265,109.97479 a 57.848624,55.893886 0 0 0 -28.91982,48.41671 v 8.78902 a 57.848624,55.893886 0 0 1 28.91982,-48.43385 L 227.01472,23.797849 a 57.848624,55.893886 0 0 1 30.29043,-7.46982 57.848624,55.893886 0 0 1 27.54921,7.46982 L 455.0838,118.74667 a 57.848624,55.893886 0 0 1 28.91982,48.43385 V 158.3915 A 57.848624,55.893886 0 0 0 455.0838,109.97479 L 284.85436,15.025959 A 57.848624,55.893886 0 0 0 257.30515,7.5561487 Z"
style="opacity:0.2;fill:#ffffff;stroke-width:8.77189"
id="path8" />
<path
d="m 27.865445,339.12392 a 57.847956,55.895554 0 0 0 0.0171,0.65105 v -0.65105 z m 0.0171,8.77189 v 8.77188 a 57.847956,55.895554 0 0 0 28.91982,48.39958 l 170.229475,94.9831 a 57.847956,55.895554 0 0 0 57.83964,0 l 170.21231,-94.9831 a 57.847956,55.895554 0 0 0 28.91982,-48.39958 v -8.77188 a 57.847956,55.895554 0 0 1 -28.91982,48.39957 l -170.21231,94.9831 a 57.847956,55.895554 0 0 1 -57.83964,0 L 56.802395,396.29538 a 57.847956,55.895554 0 0 1 -28.91982,-48.39957 z"
style="opacity:0.2;stroke-width:8.77189"
id="path10" />
<path
d="m 32.456985,136.61598 a 57.847956,55.851505 0 0 0 -4.59154,21.63846 v 8.77189 a 57.847956,55.851505 0 0 1 4.59154,-21.63847 L 255.93453,264.11674 v -8.77189 z"
style="opacity:0.2;fill:#ffffff;stroke-width:8.77189"
id="path12" />
<path
d="M 479.46349,136.58171 255.93454,255.34485 v 8.77189 L 479.46349,145.3536 a 57.847956,55.851505 0 0 1 4.54013,21.6556 v -8.77189 a 57.847956,55.851505 0 0 0 -4.54013,-21.6556 z"
style="opacity:0.2;fill:#ffffff;stroke-width:8.77189"
id="path14" />
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

193
icons/siduction.svg Normal file
View File

@ -0,0 +1,193 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="512"
height="512"
viewBox="0 0 499.86182 507.64948"
version="1.1"
id="svg1777"
sodipodi:docname="siduction.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
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="namedview27"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.097214331"
inkscape:cx="10759.73"
inkscape:cy="3451.1373"
inkscape:window-width="3440"
inkscape:window-height="1417"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg1777" />
<defs
id="defs1774">
<radialGradient
r="57.480274"
fy="477.45059"
fx="1027.8583"
cy="477.45059"
cx="1027.8583"
spreadMethod="pad"
gradientTransform="matrix(0.17486936,0.17030391,-0.17487068,0.1703052,-1.0644131,-182.57212)"
gradientUnits="userSpaceOnUse"
id="radialGradient4422-1-9"
xlink:href="#linearGradient6147-1-1-4-4-7-0-8" />
<linearGradient
id="linearGradient6147-1-1-4-4-7-0-8">
<stop
id="stop6149-6-3-9-3-3-6-8"
offset="0"
style="stop-color:#5f8dd3;stop-opacity:1;" />
<stop
id="stop6151-5-0-9-5-1-1-4"
offset="1"
style="stop-color:#162d50;stop-opacity:1;" />
</linearGradient>
<radialGradient
r="57.480274"
fy="477.45059"
fx="1027.8583"
cy="477.45059"
cx="1027.8583"
spreadMethod="pad"
gradientTransform="matrix(0.19429928,0.18922656,-0.19430076,0.189228,15.091927,-185.55103)"
gradientUnits="userSpaceOnUse"
id="radialGradient4418-7-2"
xlink:href="#linearGradient6147-1-1-4-4-7-0-8" />
<radialGradient
r="57.480274"
fy="477.45059"
fx="1027.8583"
cy="477.45059"
cx="1027.8583"
spreadMethod="pad"
gradientTransform="matrix(0.21588809,0.21025173,-0.21588973,0.21025333,30.498057,-191.33985)"
gradientUnits="userSpaceOnUse"
id="radialGradient4414-6-37"
xlink:href="#linearGradient6147-1-1-4-4-7-0-8" />
<radialGradient
r="57.480274"
fy="477.45059"
fx="1027.8583"
cy="477.45059"
cx="1027.8583"
spreadMethod="pad"
gradientTransform="matrix(0.19429928,0.18922656,-0.19430076,0.189228,14.467057,-132.0762)"
gradientUnits="userSpaceOnUse"
id="radialGradient4416-0-2"
xlink:href="#linearGradient6147-1-1-4-4-7-0-8" />
<radialGradient
r="57.480274"
fy="477.45059"
fx="1027.8583"
cy="477.45059"
cx="1027.8583"
spreadMethod="pad"
gradientTransform="matrix(0.17486936,0.17030391,-0.17487068,0.1703052,-2.1126431,-129.5096)"
gradientUnits="userSpaceOnUse"
id="radialGradient4420-0-8"
xlink:href="#linearGradient6147-1-1-4-4-7-0-8" />
<radialGradient
r="57.480274"
fy="477.45059"
fx="1027.8583"
cy="477.45059"
cx="1027.8583"
spreadMethod="pad"
gradientTransform="matrix(0.15738242,0.15327352,-0.15738361,0.15327468,-19.325173,-129.43065)"
gradientUnits="userSpaceOnUse"
id="radialGradient4428-3-6"
xlink:href="#linearGradient6147-1-1-4-4-7-0-8" />
<radialGradient
r="57.480274"
fy="477.45059"
fx="1027.8583"
cy="477.45059"
cx="1027.8583"
spreadMethod="pad"
gradientTransform="matrix(0.14164418,0.13794616,-0.14164526,0.13794721,-36.504413,-80.878241)"
gradientUnits="userSpaceOnUse"
id="radialGradient4430-7-1"
xlink:href="#linearGradient6147-1-1-4-4-7-0-8" />
<radialGradient
r="57.480274"
fy="477.45059"
fx="1027.8583"
cy="477.45059"
cx="1027.8583"
spreadMethod="pad"
gradientTransform="matrix(0.15738242,0.15327352,-0.15738361,0.15327468,-18.341283,-78.347211)"
gradientUnits="userSpaceOnUse"
id="radialGradient4426-1-3"
xlink:href="#linearGradient6147-1-1-4-4-7-0-8" />
<radialGradient
r="57.480274"
fy="477.45059"
fx="1027.8583"
cy="477.45059"
cx="1027.8583"
spreadMethod="pad"
gradientTransform="matrix(0.17486936,0.17030391,-0.17487068,0.1703052,-0.70536308,-78.013831)"
gradientUnits="userSpaceOnUse"
id="radialGradient4424-0-7"
xlink:href="#linearGradient6147-1-1-4-4-7-0-8" />
</defs>
<g
id="layer1"
transform="matrix(2.3681579,0,0,2.8638092,0.57216476,-184.94966)">
<path
id="path4680-7-52-4-93"
d="m 165.40363,130.8795 c 0,-9.43934 -7.85699,-17.09118 -17.54936,-17.09118 -9.69255,2e-4 -17.54951,7.65205 -17.54953,17.09136 0,9.43931 7.85698,17.09115 17.54935,17.09117 9.69237,-1e-5 17.54958,-7.65209 17.54954,-17.09135 z"
style="display:inline;fill:url(#radialGradient4414-6-37);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.202756" />
<path
id="path4680-8-3-6-6-1"
d="m 135.88207,157.9212 c 0,-8.4954 -7.07129,-15.38205 -15.79442,-15.38206 -8.72329,1.6e-4 -15.79457,6.88683 -15.79457,15.38222 1e-5,8.49539 7.07127,15.38204 15.79441,15.38205 8.72313,0 15.79462,-6.88687 15.79458,-15.38221 z"
style="display:inline;fill:url(#radialGradient4416-0-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.202756" />
<path
id="path4680-87-9-5-7-9"
d="m 136.50692,104.44637 c 2e-5,-8.495389 -7.07126,-15.38205 -15.7944,-15.382054 -8.7233,1.65e-4 -15.79458,6.886825 -15.79458,15.382214 1e-5,8.49539 7.07129,15.38205 15.79441,15.38205 8.7231,-3e-5 15.79459,-6.8869 15.79457,-15.38221 z"
style="display:inline;fill:url(#radialGradient4418-7-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.202756" />
<path
id="path4680-8-4-0-87-6-4"
d="m 107.16086,131.48806 c -1e-5,-7.64586 -6.36415,-13.84385 -14.214973,-13.84385 -7.85097,1.4e-4 -14.21512,6.19814 -14.21512,13.84399 1e-5,7.64585 6.36415,13.84384 14.21497,13.84385 7.850813,-1e-5 14.215153,-6.19819 14.215123,-13.84399 z"
style="display:inline;fill:url(#radialGradient4420-0-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.202756" />
<path
id="path4680-87-5-7-9-0-7"
d="m 108.20909,78.425545 c 0,-7.645856 -6.36414,-13.843847 -14.214973,-13.843847 -7.85097,1.44e-4 -14.21512,6.198141 -14.21512,13.843993 10e-6,7.645851 6.36415,13.843843 14.21497,13.843847 7.850813,-1.2e-5 14.215153,-6.198192 14.215123,-13.843993 z"
style="display:inline;fill:url(#radialGradient4422-1-9);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.202756" />
<path
id="path4680-87-6-2-6-9-8"
d="m 108.56813,182.98383 c -1e-5,-7.64586 -6.36415,-13.84385 -14.214973,-13.84385 -7.85097,1.4e-4 -14.21512,6.19814 -14.21512,13.84399 1e-5,7.64586 6.36415,13.84384 14.21497,13.84385 7.850813,-1e-5 14.215153,-6.19819 14.215123,-13.84399 z"
style="display:inline;fill:url(#radialGradient4424-0-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.202756" />
<path
id="path4680-8-4-2-7-0-7-4"
d="m 80.004857,156.55068 c 0,-6.88127 -5.72773,-12.45946 -12.79347,-12.45946 -7.06587,1.3e-4 -12.7936,5.57833 -12.7936,12.45959 0,6.88127 5.72773,12.45946 12.79347,12.45947 7.06572,-1e-5 12.79363,-5.57838 12.7936,-12.4596 z"
style="display:inline;fill:url(#radialGradient4426-1-3);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.202756" />
<path
id="path4680-87-5-9-2-4-5-5"
d="m 79.020967,105.46724 c 0,-6.881272 -5.72773,-12.459462 -12.79347,-12.459464 -7.06587,1.32e-4 -12.79361,5.578326 -12.7936,12.459594 0,6.88127 5.72773,12.45946 12.79347,12.45946 7.06572,-10e-6 12.79363,-5.57837 12.7936,-12.45959 z"
style="display:inline;fill:url(#radialGradient4428-3-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.202756" />
<path
id="path4680-8-4-2-6-9-1-9-0"
d="m 52.007127,130.52987 c 0,-6.19315 -5.15496,-11.21352 -11.51413,-11.21352 -6.35928,1.2e-4 -11.51424,5.02049 -11.51424,11.21363 0,6.19315 5.15496,11.21352 11.51412,11.21352 6.35916,-1e-5 11.51427,-5.02053 11.51425,-11.21363 z"
style="display:inline;fill:url(#radialGradient4430-7-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.202756" />
<path
style="fill:none;stroke:#ff6600;stroke-width:9.29785;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -0.17381664,195.72876 52.33753364,0.76327 43.68845,38.91867 97.109623,-100.08852 17.77518,-0.37343"
id="path3876-1-0-6" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.0 KiB

Some files were not shown because too many files have changed in this diff Show More