Compare commits

..

No commits in common. "main" and "ver-0.1.4" have entirely different histories.

482 changed files with 14540 additions and 37335 deletions

1
.envrc
View file

@ -1 +0,0 @@
use flake

35
.github/workflows/lint-build.yml vendored Normal file
View file

@ -0,0 +1,35 @@
name: "Lint & Build"
on:
push:
pull_request:
jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
container:
image: valalang/lint
steps:
- uses: actions/checkout@v1
- name: Lint
run: io.elementary.vala-lint -d .
build:
name: "Build"
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-45
options: --privileged
steps:
- uses: actions/checkout@v4
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: cassette.flatpak
manifest-path: io.github.Rirusha.Cassette.Devel.json
run-tests: true
cache-key: flatpak-builder-${{ github.sha }}

20
.gitignore vendored
View file

@ -1,20 +1,22 @@
# build dir # build dir
_build builddir*
# nix # Workspaces
result
.direnv
# Codium
*.code-workspace *.code-workspace
.vscode/settings.json
# Po # Visuel Studio Code
.vscode
# Personal scripts
my.*
# Poedit db
*.mo *.mo
po/cassette.pot
# flatpak # flatpak
.flatpak-builder .flatpak-builder
build-dir build-dir
repo repo
.flatpak .flatpak
_build

View file

@ -1,201 +0,0 @@
include:
- project: 'gnome/citemplates'
file: 'flatpak/flatpak_ci_initiative.yml'
- project: 'Rirusha/citemplates'
file: 'lints.yml'
- project: 'Rirusha/citemplates'
file: 'vala-checkers.yml'
variables:
APP_ID: 'space.rirusha.Cassette.Devel'
MANIFEST_PATH: $CI_PROJECT_DIR/build-aux/flatpak/${APP_ID}.yml
BUNDLE: "${APP_ID}.flatpak"
RUNTIME_REPO: "https://nightly.gnome.org/gnome-nightly.flatpakrepo"
FLATPAK_MODULE: "cassette"
stages:
- lint-vala
- lint-blp
- lint-checkers
- test-mr
- build-aarch64
- build-x86_64
- deploy
- deploy-sithyfus
- update-repo
# lint-vala:
# stage: 'lint-vala'
# extends: '.lint-vala'
# lint-blp:
# stage: 'lint-blp'
# extends: '.lint-blp'
# lint-checkers:
# stage: 'lint-checkers'
# extends: '.lint-checkers'
test-mr:
variables:
RUN_TESTS: "0"
stage: 'test-mr'
extends: '.flatpak'
rules:
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
.setup-gpg:
image: 'quay.io/gnome_infrastructure/gnome-runtime-images:gnome-master'
stage: 'setup-gpg'
tags:
- flatpak
before_script:
- mkdir -p ${GNUPGHOME}
- gpg --list-keys --with-keygrip
- touch ${GNUPGHOME}/gpg.conf
- touch ${GNUPGHOME}/gpg-agent.conf
- echo "allow-preset-passphrase" >> ${GNUPGHOME}/gpg-agent.conf
- echo "pinentry-mode loopback" >> ${GNUPGHOME}/gpg.conf
- echo "batch" >> ${GNUPGHOME}/gpg.conf
- echo "yes" >> ${GNUPGHOME}/gpg.conf
- echo "passphrase-file ${GPG_PASSPHRASE}" >> ${GNUPGHOME}/gpg.conf
- gpg-connect-agent reloadagent /bye
- cat ${GPG_PASSPHRASE} | /usr/libexec/gpg-preset-passphrase --preset ${GPG_KEY_GREP}
- base64 -d ${GPG_PRIVATE_KEY} | gpg --import
rules:
- if: $CI_COMMIT_BRANCH == "main" && $CI_PIPELINE_SOURCE == 'push'
.build:
extends: '.setup-gpg'
stage: 'build'
interruptible: true
variables:
GNUPGHOME: /build/.gnupg
LANG: "C.UTF-8"
RUN_TESTS: "0"
ARCH: x86_64
script:
- cat /etc/os-release
- flatpak --version
# Report the installed versions of the runtime
- flatpak info org.gnome.Platform
- flatpak info org.gnome.Sdk
# Print the date, since appstream depends on local timezone
- date && date -u
- |
export REWRITE_RUN_TESTS="--run-tests"
if [[ $RUN_TESTS != "1" ]]; then
export REWRITE_RUN_TESTS="--no-run-tests"
fi
rewrite-flatpak-manifest ${REWRITE_RUN_TESTS} ${MANIFEST_PATH} ${FLATPAK_MODULE} -- ${CONFIG_OPTS}
- |
if [ ${ARCH} = "x86_64" ]; then
tar xf repo.tar
rm -rf repo.tar
fi
- >-
xvfb-run -a -s "-screen 0 1024x768x24" --
dbus-run-session
flatpak-builder ${CI_FB_ARGS} --keep-build-dirs --arch=${ARCH} --user --gpg-sign=${GPG_KEY_ID} --gpg-homedir=${GNUPGHOME} --disable-rofiles-fuse flatpak_app --repo=repo ${BRANCH:+--default-branch=$BRANCH} ${MANIFEST_PATH}
# Generate a Flatpak bundle
- flatpak build-bundle --runtime-repo=${RUNTIME_REPO} --gpg-sign=${GPG_KEY_ID} --gpg-homedir=${GNUPGHOME} repo ${BUNDLE} ${APP_ID} ${BRANCH}
- echo "[Flatpak Repo]" > repo/index.flatpakrepo
- echo "Title=Cassette Nightly Repo" >> repo/index.flatpakrepo
- echo "Url=https://cassette-rirusha-7b5d032b879376545602ad6add1827529edccbba8e6c57.pages.gitlab.gnome.org/" >> repo/index.flatpakrepo
- echo "Homepage=https://https://gitlab.gnome.org/Rirusha/Cassette/" >> repo/index.flatpakrepo
- echo "Comment=Repository with development version of Cassette" >> repo/index.flatpakrepo
- echo "Description=Repository with development version of Cassette" >> repo/index.flatpakrepo
- echo "Icon=https://dl.flathub.org/repo/logo.svg" >> repo/index.flatpakrepo
- echo "GPGKey=$(gpg --export ${GPG_KEY_ID} | base64 --wrap=0)" >> repo/index.flatpakrepo
- flatpak build-update-repo --gpg-sign=${GPG_KEY_ID} --gpg-homedir=${GNUPGHOME} --generate-static-deltas --prune repo
- tar cf repo.tar repo/
- rm -rf .flatpak-builder
artifacts:
name: 'Flatpak artifacts'
when: 'always'
paths:
- $BUNDLE
- 'repo.tar'
- '.flatpak-builder/build/${FLATPAK_MODULE}/_flatpak_build/meson-logs/meson-log.txt'
- '.flatpak-builder/build/${FLATPAK_MODULE}/_flatpak_build/meson-logs/testlog.txt'
reports:
junit: '.flatpak-builder/build/${FLATPAK_MODULE}/_flatpak_build/meson-logs/testlog.junit.xml'
expire_in: 14 days
rules:
- if: $CI_COMMIT_BRANCH == "main" && $CI_PIPELINE_SOURCE == 'push'
build-x86_64:
extends: '.build'
variables:
ARCH: x86_64
dependencies:
- "build-aarch64"
tags:
- flatpak
stage: "build-x86_64"
rules:
- if: $CI_COMMIT_BRANCH == "main" && $CI_PIPELINE_SOURCE == 'push'
# Need to fix `Error: module cassette: Error removing file /builds/Rirusha/cassette-test-ci/.flatpak-builder/build/cassette: Directory not empty`
build-aarch64:
extends: '.build'
variables:
ARCH: aarch64
tags:
- flatpak-aarch64
stage: "build-aarch64"
rules:
- if: $CI_COMMIT_BRANCH == "main" && $CI_PIPELINE_SOURCE == 'push'
pages:
variables:
BUILD_OUTPUT_PATH: $CI_PROJECT_DIR/repo
stage: deploy
image: alpine:latest
dependencies:
- "build-x86_64"
script:
- apk add rsync
- tar xf repo.tar
- find $BUILD_OUTPUT_PATH \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i -e "s#href=\"\/#href=\"$CI_PAGES_URL/#g" -e "s#src=\"\/#src=\"$CI_PAGES_URL/#g"
- mkdir public || true
- rsync -av --exclude='public' --exclude='.git' $BUILD_OUTPUT_PATH/ public
rules:
- if: $CI_COMMIT_BRANCH == "main" && $CI_PIPELINE_SOURCE == 'push'
artifacts:
paths:
- public
expire_in: 14 days
update-repo:
stage: update-repo
image: alpine:latest
dependencies:
- "build-x86_64"
script:
- tar xf repo.tar
- apk add git
- git clone https://Rirusha:${GITHUB_TOKEN}@github.com/Rirusha/rirusha.space.git
- rm -f rirusha.space/repos/cassette-nightly.flatpakrepo && cp repo/index.flatpakrepo rirusha.space/repos/cassette-nightly.flatpakrepo
- cd rirusha.space
- git add .
- echo $(git status --porcelain)
- git config --global user.email "not-a@mail.com"
- git config --global user.name "Updater Bot"
- git commit -m "Update cassette-nightly repo" || true
- git push
- cd ..
rules:
- if: $CI_COMMIT_BRANCH == "main" && $CI_PIPELINE_SOURCE == 'push'

3
.gitmodules vendored
View file

@ -1,3 +0,0 @@
[submodule "vala-checkers"]
path = vala-checkers
url = https://gitlab.gnome.org/Rirusha/vala-checkers.git

View file

@ -1,8 +0,0 @@
{
"recommendations": [
"prince781.vala",
"colinkiama.linter-vala",
"bilelmoussaoui.flatpak-vscode",
"bodil.blueprint-gtk"
]
}

53
.vscode/tasks.json vendored
View file

@ -1,53 +0,0 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Lint check",
"type": "shell",
"command": "io.elementary.vala-lint -d . -c vala-lint.conf",
"problemMatcher": []
},
{
"label": "Empty lines check",
"type": "shell",
"command": "python3 ${workspaceFolder}/vala-checkers/empty_lines_checker.py .",
"problemMatcher": []
},
{
"label": "Indentation check",
"type": "shell",
"command": "python3 ${workspaceFolder}/vala-checkers/indentation_checker.py .",
"problemMatcher": []
},
{
"label": "Full check",
"type": "shell",
"command": "echo 'Linter:' && io.elementary.vala-lint -d . -c vala-lint.conf && echo 'Empty lines:' && python3 ${workspaceFolder}/vala-checkers/empty_lines_checker.py . && echo 'Indentation:' && python3 ${workspaceFolder}/vala-checkers/indentation_checker.py .",
"problemMatcher": []
},
{
"label": "Lint .blp check",
"type": "shell",
"command": "blueprint-compiler format -s 2 data/ui/*.blp",
"problemMatcher": []
},
{
"label": "Fix all .blp",
"type": "shell",
"command": "blueprint-compiler format -f -s 2 data/ui/*.blp",
"problemMatcher": []
},
{
"label": "Run tests",
"type": "shell",
"command": "flatpak build --share=network --filesystem=${workspaceFolder} --filesystem=${workspaceFolder}/.flatpak/repo --env=PATH=/home/rirusha/bin:/bin:/usr/bin:/usr/local/bin:/usr/games:/app/bin:/usr/bin:/usr/lib/sdk/vala/bin --env=LD_LIBRARY_PATH=/usr/lib/sdk/vala/lib:/app/lib --env=PKG_CONFIG_PATH=/app/lib/pkgconfig:/app/share/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig --filesystem=${workspaceFolder}/_build ${workspaceFolder}/.flatpak/repo ninja -C _build test",
"group": {
"kind": "test",
"isDefault": true
},
"problemMatcher": []
}
]
}

View file

@ -1,61 +0,0 @@
## How to contribute
If you don't know what to do, then:
* All scheduled tasks are in the issue section and have the "enhancement" label.
* All known problems are in the same place and have a "bug" label.
Choose tasks from the nearest versions. You can find a list of them [here](https://github.com/Rirusha/Cassette/milestones). This will both speed up the release of the next version and facilitate the review, so you will not need to switch from one global problem to another.
Also, if you decide to fix some bug described in the issue, first make sure that it can still be reproduced in the `main` branch.
Also, if you think that the application is missing something or you have found a bug, then do not hesitate to create an issue.
## Naming commits
The message header should look like:
```
feat: add a play button to the `Widget name`
The button was missing, so it had to be added
```
This is an example. The rules are described in more detail [here](https://github.com/conventional-changelog/commitlint/tree/master/%40commitlint/config-conventional). Also, the message body is optional if the information in the header is exhaustive. Also here is a list of all types of commits with descriptions:
* `build`: Used for changes related to the system build or external dependencies.
* `chore`: Usually includes changes that are not directly related to the code or tests, for example, updating documentation, configuring the development environment, upgrading the version, etc.
* `ci`: Refers to changes related to configuring or improving CI.
* `docs`: Used for changes related only to documentation, such as correcting typos, updating the README, or adding comments to the code.
* `feat`: Indicates the addition of new functionality or features to the project.
* `fix`: Refers to fixing errors in the code or fixing problems in the project.
* `perf`: Used when changes are made to improve performance.
* `refactor`: Refers to changes that do not add new functionality, but only change the structure or organization of existing code.
* `revert`: Used to undo previous commits in the project history.
* `style`: Refers to changes in the formatting of the code, for example, edits of spaces, indents, line breaks, etc.
* `test`: Used to add or modify test code, for example, testing new functionality or correcting existing tests.
* `po`: Used to add or change a translation.
## Creating Pull Requests
All Pull Requests must be made in the `master` branch. If you close an issue, then link to it with the keyword "close" in the commit body, for example:
```
fix: fix incorrect behavior
close #123
```
## Formatting the code
If you are using Visual Studio Code, then there is a task to run the linter. Otherwise, use the configuration in the root of the repository in the linter: vala-lint.conf, CI uses it exactly.
## Development
Check the build using flatpak, as this is the only officially supported version.
## Testing
Writing or supplementing existing tests for the client is highly welcome.

View file

@ -1,7 +1,7 @@
GNU GENERAL PUBLIC LICENSE GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007 Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed. of this license document, but changing it is not allowed.
@ -645,7 +645,7 @@ the "copyright" line and a pointer to where the full notice is found.
GNU General Public License for more details. GNU General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail. Also add information on how to contact you by electronic and paper mail.
@ -664,11 +664,12 @@ might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school, You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary. if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>. <http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>. <http://www.gnu.org/philosophy/why-not-lgpl.html>.

254
README.md
View file

@ -1,194 +1,108 @@
README language: \ <h1 align="center">
[![En](https://img.shields.io/badge/en-green)](README.md) <img src="data/icons/hicolor/scalable/apps/io.github.Rirusha.Cassette.svg" alt="Cassette"/>
[![Ru](https://img.shields.io/badge/ru-gray)](docs/README-ru.md) <br/>
<div align="center">
<h1>
<img
src="data/icons/hicolor/scalable/apps/space.rirusha.Cassette.svg"
height="64"
/>
Cassette Cassette
</h1> </h1>
<p align="center">
GTK4/Adwaita приложение, которое позволит вам использовать Я.Музыку на Linux.
</p>
<br/>
<p align="center">
<a href="https://stopthemingmy.app"> <a href="https://stopthemingmy.app">
<img src="https://stopthemingmy.app/badge.svg"/> <img src="https://stopthemingmy.app/badge.svg"/>
</a> </a>
</p>
<a href="https://t.me/CassetteGNOME_Devlog"> <p align="center">
<img alt="Static Badge" src="https://img.shields.io/badge/Channel-blue?style=flat&logo=telegram"> <a href="https://flathub.org/apps/details/io.github.Rirusha.Cassette">
<img width="200" src="https://flathub.org/assets/badges/flathub-badge-en.png" alt="Download on Flathub">
</a> </a>
</p>
<a href="https://t.me/CassetteGNOME_Devlog"> <p align="center">
<img alt="Static Badge" src="https://img.shields.io/badge/Chat-blue?style=flat&logo=telegram"> <img src="data/images/first.png" alt="Screenshot"/>
</a> </p>
</div>
<div align="center"><h4>GTK4/Adwaita application that allows you to use Yandex Music service on Linux operating systems.</h4></div> ## Последний релиз: 0.1.1
* Добавлена новая авторизация через WebView;
* Исправлена ошибка при некорректном выводе кода ошибки при попытке открыть, например, закрытый или несуществующий плейлист;
* Исправлено появление предупреждение в терминал о невозможности прочитать файл страниц при условии, что страницы ещё не были созданы;
* Исправлена ошибка с некорректной записью в логи ошибки апи;
* Исправлена невозможность добавлять любимые треки других пользователей как страницу (всё же такой же плейлист, нет плейлистному расизму);
* Исправлена ошибка с появлением подкастов и книг в любимых треках;
* Исправлена некорректная работа переключения трека в очереди при различных состояниях повтора;
* Исправлена ошибка https://t.me/CassetteGNOME_Discussion/42.
<div align="center"> ## План основных версий
<img src="data/images/1-liked-view.png" alt="Preview"/> * [ ] 0.2: Моя волна
</div> * [ ] 0.3: Альбомы и исполнители
* [ ] 0.4: Поиск по сервису
* [ ] 0.5: Подкасты и книги
## Install Все запланированные фичи можете [посмотреть в бэклоге](https://github.com/users/Rirusha/projects/2)
**Flathub:** ## Установка
### Через репозиторий...
<a href="https://flathub.org/apps/details/space.rirusha.Cassette"> Приложение Cassette доступно здесь:
<img width='240' alt='Download on Flathub' src='https://flathub.org/assets/badges/flathub-badge-en.svg'/>
</a>
```shell
flatpak install space.rirusha.Cassette
```
**Distribution repositories:**
[![Packaging status](https://repology.org/badge/vertical-allrepos/cassette.svg)](https://repology.org/project/cassette/versions) [![Packaging status](https://repology.org/badge/vertical-allrepos/cassette.svg)](https://repology.org/project/cassette/versions)
### ALT Sisyphus
### ALT Linux ```
```shell
su -
apt-get install cassette apt-get install cassette
``` ```
### ... или используя flatpak
### Arch Linux Вы можете скачать по [ссылке](https://flathub.org/apps/details/io.github.Rirusha.Cassette) или используя терминал
```
> Most AUR Helpers support Pacman-style flags, for example, yay. flatpak install flathub io.github.Rirusha.Cassette
#### yay
```shell
yay -S cassette
``` ```
#### pamac ### Сборка из исходного кода
```shell
pamac install cassette Зависимости:
* ```gtk4```, version >= 4.5
* ```libadwaita-1```, version >= 1.4
* ```libsoup-3.0```
* ```gdk-pixbuf-2.0```
* ```json-glib-1.0```
* ```sqlite3```
* ```gee-0.8```
* ```libxml-2.0```
* ```gstreamer-1.0```
* ```webkitgtk-6.0```
* ```gio-2.0```
Утилиты для сборки:
* ```meson```
* ```ninja```
* ```cmake```
* ```gcc```
* ```valac```
* ```pkg```
* ```appstream-utils```
Сборка:
```
meson setup builddir
ninja -C builddir test
ninja -C builddir install
``` ```
### NixOS Unstable ## Полезные ссылки
```shell * Телеграм-канал с девлогами: https://t.me/CassetteGNOME_Devlog
nix-shell -p cassette * Чат в телеграме с обсуждением: https://t.me/CassetteGNOME_Discussion
``` * Сообщить об ошибке: https://github.com/Rirusha/Cassette/issues
## Building ## Поддержка
Вы можете поддержать несколькими способами:
* Создать ишью с проблемой или предложением по улучшению;
* Сделать pul request с фиксом или добавлением функционала;
* [Поддержать рублём](https://www.tinkoff.ru/cf/21GCxLuFuE9) (Просьба указывать в "Сообщении получателю" свой никнейм, иначе я не смогу добавить вас в соответствующий блок окна About. Тинькофф не пишет имя отправителя (это обман, не верьте этому));
* Похвалить автора в телеграм-чате :3.
#### Dependencies: ## Благодарность
Спасибо [MarshalX](https://github.com/MarshalX). Библиотека [yandex-music-api](https://github.com/MarshalX/yandex-music-api) была использована в качестве документации к api.
* `gtk4`, version: `>= 4.14` #### Cassette - неофициальный клиент, не связан с компанией Яндекс и не одобрен ей
* `libadwaita-1`, version: `>= 1.5`
* `libsoup-3.0`
* `gdk-pixbuf-2.0`
* `json-glib-1.0`
* `sqlite3`
* `gee-0.8`
* `libxml-2.0`
* `gstreamer-1.0`
* `webkitgtk-6.0`
* `gio-2.0`, version: `>= 2.72`
* `git`, only for `devel`
#### Building utilities:
* `meson`
* `ninja`
* `cmake`
* `blueprint-compiler`
* `gcc`
* `valac`
* `pkg`
* `appstream-utils`
### PreRelease
> Unstable features under development will not be available in this version.
```shell
meson setup _build
```
### `is_devel` flag
> In this version, all devel functions will be available.
```shell
meson setup _build -Dis_devel=true
```
#### Install
```shell
sudo ninja install -C _build
```
#### Testing
```shell
ninja -C _build test
```
#### Uninstal
```shell
sudo ninja uninstall -C _build
```
## Devel version
> This version is built and updated with every commit, so it may be unstable.
You need to add `cassette-nightly` and `gnome-nightly` repositories:
```shell
flatpak remote-add --if-not-exists gnome-nightly https://nightly.gnome.org/gnome-nightly.flatpakrepo
flatpak remote-add --if-not-exists cassette-nightly https://rirusha.space/repos/cassette-nightly.flatpakrepo
```
Install application:
```shell
flatpak install cassette-nightly space.rirusha.Cassette.Devel
```
## For developers
> The repository has recommended extensions for developing with Visual Studio Code.
### Dependencies
#### repository [gnome-nightly](https://wiki.gnome.org/Apps/Nightly):
```shell
flatpak remote-add --if-not-exists gnome-nightly https://nightly.gnome.org/gnome-nightly.flatpakrepo
```
#### To run
`org.gnome.Platform//master`
```shell
flatpak install org.gnome.Platform//master
```
#### To build
`org.gnome.Sdk//master` \
`org.freedesktop.Sdk.Extension.vala//23.08beta`
```shell
flatpak install org.gnome.Sdk//master org.freedesktop.Sdk.Extension.vala//23.08beta
```
## Support
You can support in several ways:
- Create an issue with a problem or a suggestion for improvement
- Submit a merge request with a fix or new functionality
- Support financially (Please include your nickname in the "Message to the recipient" when sending via T-Bank)
<br>
<div align="center">
<a href="https://www.tbank.ru/cf/21GCxLuFuE9" style="margin-right: 100px;">
<img height="200" src="assets/tbank.png" alt="Tinkoff">
</a>
<a href="https://boosty.to/rirusha/donate">
<img height="200" src="assets/boosty.png" alt="boosty.to">
</a>
</div>
## Gratitude
Thank you [MarshalX](https://github.com/MarshalX ). The [yandex-music-api](https://github.com/MarshalX/yandex-music-api) library was used as api documentation.
> Attention!
> Cassette is an unofficial client, not affiliated with Yandex and not approved by it.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 258 KiB

View file

@ -1,49 +0,0 @@
id: space.rirusha.Cassette.Devel
runtime: org.gnome.Platform
runtime-version: 'master'
sdk: org.gnome.Sdk
sdk-extensions:
- org.freedesktop.Sdk.Extension.vala
command: cassette
finish-args:
- --share=network
- --share=ipc
- --socket=fallback-x11
- --device=dri
- --socket=pulseaudio
- --socket=wayland
- --filesystem=xdg-music:ro
- --filesystem=xdg-download:ro
- --own-name=org.mpris.MediaPlayer2.space.rirusha.Cassette.Devel
build-options:
append-path: /usr/lib/sdk/vala/bin
prepend-ld-library-path: /usr/lib/sdk/vala/lib
cleanup:
- /include
- /lib/pkgconfig
- /man
- /share/doc
- /share/gtk-doc
- /share/man
- /share/pkgconfig
- /share/vala
- '*.la'
- '*.a'
modules:
- name: blueprint-compiler
buildsystem: meson
cleanup:
- '*'
sources:
- type: git
url: https://gitlab.gnome.org/jwestman/blueprint-compiler
commit: 04ef0944db56ab01307a29aaa7303df6067cb3c0
tag: v0.16.0
- name: cassette
buildsystem: meson
builddir: true
config-opts:
- -Dis_devel=true
sources:
- type: dir
path: ../../

View file

@ -1,47 +0,0 @@
id: space.rirusha.Cassette
runtime: org.gnome.Platform
runtime-version: '47'
sdk: org.gnome.Sdk
sdk-extensions:
- org.freedesktop.Sdk.Extension.vala
command: cassette
finish-args:
- --share=network
- --share=ipc
- --socket=fallback-x11
- --device=dri
- --socket=pulseaudio
- --socket=wayland
- --filesystem=xdg-music:ro
- --filesystem=xdg-download:ro
- --own-name=org.mpris.MediaPlayer2.space.rirusha.Cassette
build-options:
append-path: /usr/lib/sdk/vala/bin
prepend-ld-library-path: /usr/lib/sdk/vala/lib
cleanup:
- /include
- /lib/pkgconfig
- /man
- /share/doc
- /share/gtk-doc
- /share/man
- /share/pkgconfig
- /share/vala
- '*.la'
- '*.a'
modules:
- name: blueprint-compiler
buildsystem: meson
cleanup:
- '*'
sources:
- type: git
url: https://gitlab.gnome.org/jwestman/blueprint-compiler
commit: 8e10fcf8692108b9d4ab78f41086c5d7773ef864
tag: v0.14.0
- name: cassette
buildsystem: meson
builddir: true
sources:
- type: dir
path: ../../

View file

@ -1,80 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Project xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:gnome="http://api.gnome.org/doap-extensions#"
xmlns="http://usefulinc.com/ns/doap#">
<name xml:lang="es">Casete</name>
<name xml:lang="fr">Cassette</name>
<name xml:lang="de">Kassette</name>
<name xml:lang="it">Cassetta</name>
<name xml:lang="pt">Cassete</name>
<name xml:lang="ru">Кассета</name>
<name xml:lang="ja">カセット</name>
<name xml:lang="zh">磁带</name>
<name xml:lang="ar">كاسيت</name>
<name xml:lang="hi">कैसेट</name>
<name xml:lang="ko">카세트</name>
<name xml:lang="tr">Kaset</name>
<name xml:lang="he">קסטה</name>
<name xml:lang="el">Κασέτα</name>
<name xml:lang="nl">Cassette</name>
<name xml:lang="sv">Kassett</name>
<name xml:lang="pl">Kaseta</name>
<name xml:lang="cs">Kazeta</name>
<name xml:lang="da">Kassette</name>
<name xml:lang="fi">Kasetti</name>
<name xml:lang="hu">Kazetta</name>
<name xml:lang="th">เทปคาสเซ็ท</name>
<name xml:lang="en">Cassette</name>
<shortdesc xml:lang="es">Cliente no oficial de Yandex Music</shortdesc>
<shortdesc xml:lang="fr">Client non officiel de Yandex Music</shortdesc>
<shortdesc xml:lang="de">Inoffizieller Yandex Music-Client</shortdesc>
<shortdesc xml:lang="it">Client non ufficiale di Yandex Music</shortdesc>
<shortdesc xml:lang="pt">Cliente não oficial do Yandex Music</shortdesc>
<shortdesc xml:lang="ru">Неофициальный клиент Яндекс.Музыки</shortdesc>
<shortdesc xml:lang="ja">非公式のYandex Musicクライアント</shortdesc>
<shortdesc xml:lang="zh">非官方的Yandex Music客户端</shortdesc>
<shortdesc xml:lang="ar">عميل غير رسمي لـ Yandex Music</shortdesc>
<shortdesc xml:lang="hi">अनौपचारिक Yandex Music क्लाइंट</shortdesc>
<shortdesc xml:lang="ko">비공식 Yandex Music 클라이언트</shortdesc>
<shortdesc xml:lang="tr">Resmi olmayan Yandex Music istemcisi</shortdesc>
<shortdesc xml:lang="he">לקוח לא רשמי של Yandex Music</shortdesc>
<shortdesc xml:lang="el">Ανεπίσημος πελάτης του Yandex Music</shortdesc>
<shortdesc xml:lang="nl">Onofficiële Yandex Music-client</shortdesc>
<shortdesc xml:lang="sv">Inofficiell Yandex Music-klient</shortdesc>
<shortdesc xml:lang="pl">Nieoficjalny klient Yandex Music</shortdesc>
<shortdesc xml:lang="cs">Neoficiální klient Yandex Music</shortdesc>
<shortdesc xml:lang="da">Uofficiel Yandex Music-klient</shortdesc>
<shortdesc xml:lang="fi">Epävirallinen Yandex Music-asiakas</shortdesc>
<shortdesc xml:lang="hu">Nem hivatalos Yandex Music kliens</shortdesc>
<shortdesc xml:lang="th">ไคลเอนต์ Yandex Music อย่างไม่เป็นทางการ</shortdesc>
<shortdesc xml:lang="en">Unofficial Yandex Music client</shortdesc>
<description>
GTK/Adwaita application that allows you to use Yandex Music service on Linux operating systems
</description>
<homepage rdf:resource="https://gitlab.gnome.org/Rirusha/Cassette" />
<download-page rdf:resource="https://gitlab.gnome.org/Rirusha/Cassette/-/tags" />
<bug-database rdf:resource="https://gitlab.gnome.org/Rirusha/Cassette/-/issues" />
<programming-language>Vala</programming-language>
<platform>GTK 4</platform>
<platform>Libadwaita</platform>
<maintainer>
<foaf:Person>
<foaf:name>Vladimir Vaskov</foaf:name>
<foaf:mbox rdf:resource="mailto:rirusha@altlinux.org" />
<foaf:account>
<foaf:OnlineAccount>
<foaf:accountServiceHomepage rdf:resource="https://gitlab.gnome.org"/>
<foaf:accountName>Rirusha</foaf:accountName>
</foaf:OnlineAccount>
</foaf:account>
</foaf:Person>
</maintainer>
</Project>

View file

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg height="16px" viewBox="0 0 16 16" width="16px" xmlns="http://www.w3.org/2000/svg">
<path d="m 4 2 c 0 -0.265625 0.105469 -0.519531 0.292969 -0.707031 c 0.390625 -0.390625 1.023437 -0.390625 1.414062 0 l 6 6 c 0.1875 0.1875 0.292969 0.441406 0.292969 0.707031 s -0.105469 0.519531 -0.292969 0.707031 l -6 6 c -0.390625 0.390625 -1.023437 0.390625 -1.414062 0 c -0.1875 -0.1875 -0.292969 -0.441406 -0.292969 -0.707031 s 0.105469 -0.519531 0.292969 -0.707031 l 5.292969 -5.292969 l -5.292969 -5.292969 c -0.1875 -0.1875 -0.292969 -0.441406 -0.292969 -0.707031 z m 0 0" fill="#2e3436"/>
</svg>

Before

Width:  |  Height:  |  Size: 638 B

View file

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg height="16px" viewBox="0 0 16 16" width="16px" xmlns="http://www.w3.org/2000/svg">
<path d="m 11.847656 1 c -1.109375 -0.027344 -2.1875 0.371094 -3.003906 1.121094 l -0.863281 0.769531 l -0.859375 -0.769531 c -1.136719 -1.019532 -2.734375 -1.355469 -4.1875 -0.875 c -1.453125 0.476562 -2.539063 1.695312 -2.8476565 3.195312 c -0.3085935 1.496094 0.2109375 3.046875 1.3554685 4.058594 l 6.539063 5.828125 l 6.542969 -5.828125 c 1.332031 -1.152344 1.820312 -3.003906 1.226562 -4.664062 c -0.589844 -1.660157 -2.140625 -2.785157 -3.902344 -2.835938 z m 0 0" fill="#2e3436" fill-rule="evenodd"/>
</svg>

Before

Width:  |  Height:  |  Size: 647 B

View file

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg height="16px" viewBox="0 0 16 16" width="16px" xmlns="http://www.w3.org/2000/svg">
<path d="m 8 1 v 2 h -4 c -2.199219 0 -4 1.800781 -4 4 v 2 c 0 1.019531 0.386719 1.964844 1.019531 2.671875 c 0.367188 0.410156 1 0.445313 1.410157 0.078125 c 0.414062 -0.367188 0.449218 -1 0.078124 -1.414062 c -0.316406 -0.351563 -0.507812 -0.8125 -0.507812 -1.335938 v -2 c 0 -1.125 0.875 -2 2 -2 h 4 v 2 h 1 v -0.007812 c 0.265625 0.003906 0.519531 -0.101563 0.707031 -0.285157 l 2 -2 c 0.390625 -0.390625 0.390625 -1.023437 0 -1.414062 l -2 -2 c -0.1875 -0.183594 -0.441406 -0.289063 -0.707031 -0.285157 v -0.007812 z m 6.289062 3 c -0.265624 -0.011719 -0.523437 0.078125 -0.71875 0.257812 c -0.414062 0.367188 -0.449218 1 -0.078124 1.410157 c 0.316406 0.355469 0.507812 0.816406 0.507812 1.339843 v 2 c 0 1.125 -0.875 2 -2 2 h -4 v -2.007812 h -1 v 0.007812 c -0.265625 -0.003906 -0.519531 0.101563 -0.707031 0.285157 l -2 2 c -0.390625 0.390625 -0.390625 1.023437 0 1.414062 l 2 2 c 0.1875 0.183594 0.441406 0.289063 0.707031 0.285157 v 0.007812 h 1 v -1.992188 h 4 c 2.199219 0 4 -1.804687 4 -4 v -2 c 0 -1.023437 -0.386719 -1.96875 -1.019531 -2.675781 c -0.175781 -0.199219 -0.425781 -0.316406 -0.691407 -0.332031 z m 0 0" fill="#2e3436"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg height="16px" viewBox="0 0 16 16" width="16px" xmlns="http://www.w3.org/2000/svg">
<path d="m 12 1 c -0.265625 0 -0.519531 0.105469 -0.707031 0.292969 c -0.390625 0.390625 -0.390625 1.023437 0 1.414062 l 1.292969 1.292969 h -7.585938 c -0.550781 0 -1 0.449219 -1 1 s 0.449219 1 1 1 h 7.585938 l -1.03125 1.03125 c 0.148437 -0.015625 0.296874 -0.027344 0.445312 -0.03125 c 0.6875 0 1.367188 0.144531 1.996094 0.417969 l 1.710937 -1.710938 c 0.390625 -0.390625 0.390625 -1.023437 0 -1.414062 l -3 -3 c -0.1875 -0.1875 -0.441406 -0.292969 -0.707031 -0.292969 z m -8 6 c -0.257812 0 -0.511719 0.097656 -0.707031 0.292969 l -3 3 c -0.3906252 0.390625 -0.3906252 1.023437 0 1.414062 l 3 3 c 0.1875 0.1875 0.441406 0.292969 0.707031 0.292969 s 0.519531 -0.105469 0.707031 -0.292969 c 0.390625 -0.390625 0.390625 -1.023437 0 -1.414062 l -1.292969 -1.292969 h 3.585938 c 0.003906 -0.6875 0.144531 -1.371094 0.425781 -2 h -4.011719 l 1.292969 -1.292969 c 0.390625 -0.390625 0.390625 -1.023437 0 -1.414062 c -0.195312 -0.195313 -0.449219 -0.292969 -0.707031 -0.292969 z m 0 0" fill="#2e3436" fill-opacity="0.35"/>
<path class="error" d="m 12 8 c -2.210938 0 -4 1.789062 -4 4 s 1.789062 4 4 4 s 4 -1.789062 4 -4 s -1.789062 -4 -4 -4 z m -2 3 h 4 c 0.554688 0 1 0.445312 1 1 s -0.445312 1 -1 1 h -4 c -0.554688 0 -1 -0.445312 -1 -1 s 0.445312 -1 1 -1 z m 0 0" fill="#e01b24"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="16px" viewBox="0 0 16 16" width="16px"><filter id="a" height="100%" width="100%" x="0%" y="0%"><feColorMatrix color-interpolation-filters="sRGB" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/></filter><mask id="b"><g filter="url(#a)"><path d="m -1.6 -1.6 h 19.2 v 19.2 h -19.2 z" fill-opacity="0.5"/></g></mask><clipPath id="c"><path d="m 0 0 h 1600 v 1200 h -1600 z"/></clipPath><mask id="d"><g filter="url(#a)"><path d="m -1.6 -1.6 h 19.2 v 19.2 h -19.2 z" fill-opacity="0.7"/></g></mask><clipPath id="e"><path d="m 0 0 h 1600 v 1200 h -1600 z"/></clipPath><mask id="f"><g filter="url(#a)"><path d="m -1.6 -1.6 h 19.2 v 19.2 h -19.2 z" fill-opacity="0.35"/></g></mask><clipPath id="g"><path d="m 0 0 h 1600 v 1200 h -1600 z"/></clipPath><g mask="url(#b)"><g clip-path="url(#c)" transform="matrix(1 0 0 1 -40 -60)"><path d="m 550 182 c -0.351562 0.003906 -0.695312 0.101562 -1 0.28125 v 3.4375 c 0.304688 0.179688 0.648438 0.277344 1 0.28125 c 1.105469 0 2 -0.894531 2 -2 s -0.894531 -2 -2 -2 z m 0 5 c -0.339844 0 -0.679688 0.058594 -1 0.175781 v 6.824219 h 4 v -4 c 0 -1.65625 -1.34375 -3 -3 -3 z m 0 0"/></g></g><g mask="url(#d)"><g clip-path="url(#e)" transform="matrix(1 0 0 1 -40 -60)"><path d="m 569 182 v 4 c 1.105469 0 2 -0.894531 2 -2 s -0.894531 -2 -2 -2 z m 0 5 v 7 h 3 v -4 c 0 -1.65625 -1.34375 -3 -3 -3 z m 0 0"/></g></g><g mask="url(#f)"><g clip-path="url(#g)" transform="matrix(1 0 0 1 -40 -60)"><path d="m 573 182.269531 v 3.449219 c 0.613281 -0.355469 0.996094 -1.007812 1 -1.71875 c 0 -0.714844 -0.382812 -1.375 -1 -1.730469 z m 0 4.90625 v 6.824219 h 2 v -4 c 0 -1.269531 -0.800781 -2.402344 -2 -2.824219 z m 0 0"/></g></g><path d="m 5.5 4 c -0.277344 0 -0.5 0.222656 -0.5 0.5 v 8 c 0 0.277344 0.222656 0.5 0.5 0.5 s 0.5 -0.222656 0.5 -0.5 v -8 c 0 -0.277344 -0.222656 -0.5 -0.5 -0.5 z m 4 1 c -0.277344 0 -0.5 0.222656 -0.5 0.5 v 6 c 0 0.277344 0.222656 0.5 0.5 0.5 s 0.5 -0.222656 0.5 -0.5 v -6 c 0 -0.277344 -0.222656 -0.5 -0.5 -0.5 z m -2 1 c -0.277344 0 -0.5 0.222656 -0.5 0.5 v 4 c 0 0.277344 0.222656 0.5 0.5 0.5 s 0.5 -0.222656 0.5 -0.5 v -4 c 0 -0.277344 -0.222656 -0.5 -0.5 -0.5 z m 4 0 c -0.277344 0 -0.5 0.222656 -0.5 0.5 v 4 c 0 0.277344 0.222656 0.5 0.5 0.5 s 0.5 -0.222656 0.5 -0.5 v -4 c 0 -0.277344 -0.222656 -0.5 -0.5 -0.5 z m -8 1 c -0.277344 0 -0.5 0.222656 -0.5 0.5 v 3 c 0 0.277344 0.222656 0.5 0.5 0.5 s 0.5 -0.222656 0.5 -0.5 v -3 c 0 -0.277344 -0.222656 -0.5 -0.5 -0.5 z m -2.027344 1 c -0.261718 0.011719 -0.472656 0.230469 -0.472656 0.5 v 1 c 0 0.277344 0.222656 0.5 0.5 0.5 s 0.5 -0.222656 0.5 -0.5 v -1 c 0 -0.277344 -0.222656 -0.5 -0.5 -0.5 c -0.007812 0 -0.015625 0 -0.027344 0 z m 12 0 c -0.261718 0.011719 -0.472656 0.230469 -0.472656 0.5 v 1 c 0 0.277344 0.222656 0.5 0.5 0.5 s 0.5 -0.222656 0.5 -0.5 v -1 c 0 -0.277344 -0.222656 -0.5 -0.5 -0.5 c -0.007812 0 -0.015625 0 -0.027344 0 z m 0 0" fill="#222222"/></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-classes-concentration.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="14.738757"
inkscape:cx="-6.5473635"
inkscape:cy="13.128651"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1608"
style="fill:#2e3436;stroke-width:0.506874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;paint-order:stroke fill markers"
d="M 7.9335938 0 C 7.4092834 0 6.9863281 0.42294513 6.9863281 0.94726562 L 6.9863281 1.0214844 C 3.9055636 1.4682265 1.4382425 3.9144396 0.96289062 6.9863281 L 0.94726562 6.9863281 C 0.42294513 6.9863281 -7.4014794e-17 7.4092834 0 7.9335938 L 0 8.0664062 C 0 8.5900623 0.42190169 9.0126201 0.9453125 9.0136719 C 1.368841 12.148725 3.8620057 14.660821 6.9882812 15.113281 C 7.0192559 15.609216 7.4295941 16 7.9335938 16 L 8.0664062 16 C 8.5704059 16 8.9807441 15.609216 9.0117188 15.113281 C 12.138019 14.660816 14.631193 12.148767 15.054688 9.0136719 C 15.578098 9.0126201 16 8.5900623 16 8.0664062 L 16 7.9335938 C 16 7.4092834 15.577055 6.9863281 15.052734 6.9863281 L 15.037109 6.9863281 C 14.561756 3.9144396 12.094431 1.4682265 9.0136719 1.0214844 L 9.0136719 0.94726562 C 9.0136719 0.42294513 8.5907166 7.4014794e-17 8.0664062 0 L 7.9335938 0 z M 6.9863281 3.0878906 L 6.9863281 3.4296875 C 6.9863281 3.954008 7.4092834 4.3769531 7.9335938 4.3769531 L 8.0664062 4.3769531 C 8.5907166 4.3769531 9.0136719 3.954008 9.0136719 3.4296875 L 9.0136719 3.0878906 A 5.0925724 5.0925724 0 0 1 12.962891 6.9863281 L 12.570312 6.9863281 C 12.045992 6.9863281 11.623047 7.4092834 11.623047 7.9335938 L 11.623047 8.0664062 C 11.623047 8.5907166 12.045992 9.0136719 12.570312 9.0136719 L 12.998047 9.0136719 A 5.0925724 5.0925724 0 0 1 9.0136719 13.046875 L 9.0136719 12.570312 C 9.0136719 12.045992 8.5907166 11.623047 8.0664062 11.623047 L 7.9335938 11.623047 C 7.4092834 11.623047 6.9863281 12.045992 6.9863281 12.570312 L 6.9863281 13.046875 A 5.0925724 5.0925724 0 0 1 3.0019531 9.0136719 L 3.4296875 9.0136719 C 3.9540081 9.0136719 4.3769531 8.5907166 4.3769531 8.0664062 L 4.3769531 7.9335938 C 4.3769531 7.4092834 3.9540081 6.9863281 3.4296875 6.9863281 L 3.0371094 6.9863281 A 5.0925724 5.0925724 0 0 1 6.9863281 3.0878906 z M 8 5.2617188 A 2.8055809 2.8055809 0 0 0 5.1953125 8.0683594 A 2.8055809 2.8055809 0 0 0 8 10.873047 A 2.8055809 2.8055809 0 0 0 10.804688 8.0683594 A 2.8055809 2.8055809 0 0 0 8 5.2617188 z " />
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-classes-driving.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="14.738757"
inkscape:cx="5.4617903"
inkscape:cy="21.67754"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1633"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.22411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 7.9999999,6.25e-8 C 3.6116059,6.25e-8 1.25e-7,3.6116058 1.25e-7,7.9999999 1.25e-7,12.388395 3.6116059,16 8,16 12.388395,16 16,12.388395 16,7.9999999 16,3.6116059 12.388395,6.25e-8 7.9999999,6.25e-8 Z m 0,2.4486579375 c 1.8157663,0 3.4387291,0.8895013 4.4540761,2.253632 L 9.9344987,6.1561191 C 9.4430503,5.6534425 8.7583723,5.34227 7.9999999,5.3425264 7.2411426,5.3422699 6.554999,5.6528766 6.0635312,6.1561191 L 3.5459247,4.70229 C 4.5612722,3.3381592 6.1842337,2.448658 7.9999999,2.448658 Z M 2.6535337,6.5146515 5.2932776,8.039399 v 0.00197 c -3.672e-4,1.1380505 0.7031419,2.109907 1.6981038,2.509725 v 2.905687 C 4.4199111,12.976898 2.4486581,10.702182 2.4486581,7.9999998 c 0,-0.5139043 0.071721,-1.0116746 0.2048756,-1.4853483 z m 10.6929323,0.00197 C 13.479254,6.9896873 13.551342,7.4868323 13.551342,8 c 0,2.702182 -1.971253,4.976898 -4.5427234,5.456784 v -2.90569 C 10.003581,10.151276 10.70709,9.1794195 10.706723,8.0413658 c -1e-6,-6.561e-4 2e-6,-0.00131 0,-0.00197 z" />
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-classes-for_lovers.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="14.738757"
inkscape:cx="-0.84810408"
inkscape:cy="14.621314"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1539"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.00003;stroke-linejoin:round;-inkscape-stroke:none"
d="M 9.4292211,0.00231947 C 9.1750126,0.01031974 8.9236804,0.03975875 8.6772422,0.08826041 8.0550616,0.2107546 7.6158016,0.57518708 7.1498462,0.90078822 6.7057714,0.59711783 6.2872824,0.25606116 5.7162034,0.12927682 c -0.013,-0.004 -0.025964,-0.006765 -0.039064,-0.009765 C 5.2654355,0.04560895 4.9490145,-0.00407775 4.6087432,0.00427254 3.6166103,0.02837336 2.636798,0.36025072 1.8293512,0.98868123 0.75912568,1.8221888 0.10004447,3.0794768 0.02460196,4.4341122 v 0.00391 c -0.07500248,1.3549755 0.35081266,2.5939639 1.00003414,3.6153579 0.6039947,0.9504755 1.638232,2.1349199 2.9551793,3.1504989 0.087917,0.171743 0.1814181,0.339861 0.2832129,0.500017 0.8237973,1.296283 2.5549489,3.116379 4.724771,4.070452 l 0.3437618,0.152348 a 0.85649494,0.85649494 0 0 0 0.6933839,0 l 0.341808,-0.152348 c 2.170473,-0.953913 3.902728,-2.774159 4.726725,-4.070452 0.573689,-0.90278 0.949415,-1.9982424 0.882842,-3.1954223 -0.0661,-1.195419 -0.647789,-2.3039119 -1.59185,-3.0391661 -0.04628,-0.036005 -0.09501,-0.067699 -0.142584,-0.1015655 0.0342,-0.3013953 0.04486,-0.6123999 0.02734,-0.9297198 C 14.194224,3.0825269 13.535054,1.8224428 12.464478,0.98868523 11.595468,0.31263309 10.520701,-0.0318977 9.4331231,0.00232347 h -0.00195 z M 4.6810117,2.967265 h 0.00195 c 0.120984,-0.003 0.2394733,0.006 0.3593873,0.029298 0.4933463,0.097203 0.9819114,0.4729612 1.2109789,0.9277657 0.3692623,0.7345842 1.4179083,0.7345842 1.7871706,0 C 8.2704763,3.4679741 8.756868,3.0935463 9.2495244,2.996563 h 0.00195 c 0.4665155,-0.092003 1.0140106,0.039802 1.3906736,0.3320423 0.376533,0.2932401 0.639698,0.7951323 0.666039,1.2715276 6.27e-4,0.01128 -4.96e-4,0.021982 0,0.033204 -0.08846,0.01142 -0.175925,0.023692 -0.263681,0.041017 C 10.491127,4.7832881 10.096041,5.1092323 9.6811766,5.4009423 9.2867635,5.128863 8.911596,4.8248086 8.4037892,4.7114657 h -0.00195 C 7.9359367,4.6056721 7.6064991,4.5956327 7.4232931,4.6001329 6.548254,4.6214336 5.6840109,4.9151857 4.9720372,5.4693036 4.4682165,5.8616981 4.0682766,6.3612022 3.7942626,6.9224784 3.6883982,6.7403731 3.5971354,6.5774326 3.5247221,6.4634787 3.1271789,5.8380572 2.9469467,5.2641456 2.983688,4.6001329 3.0102889,4.1231375 3.2733439,3.6217354 3.6497264,3.3286053 3.9313557,3.1094078 4.3104994,2.9762653 4.6810117,2.967265 Z M 7.483842,7.1685808 c 0.1157239,-0.003 0.226186,0.00704 0.3300894,0.027344 0.448815,0.088403 0.8914101,0.4264296 1.0996471,0.8398728 a 0.85649494,0.85649494 0 0 0 1.5293495,0.00195 c 0.209007,-0.4147433 0.649469,-0.7536029 1.097694,-0.8418259 a 0.85649494,0.85649494 0 0 0 0.002,0 c 0.0804,-0.0159 0.162315,-0.024844 0.244148,-0.027344 0.359772,-0.0106 0.738774,0.1118188 1.017613,0.3281362 0.342341,0.2666181 0.581549,0.7211917 0.605489,1.1543365 0.0333,0.5984095 -0.128879,1.1144462 -0.484391,1.6738846 -0.390672,0.61459 -1.917221,2.126139 -3.2462053,2.853613 C 8.3498555,12.451387 6.8216646,10.939558 6.4310716,10.324938 6.0750698,9.7648397 5.9116557,9.248643 5.9447268,8.6510535 5.9689277,8.2173687 6.208015,7.7632451 6.5502163,7.496717 6.8060748,7.2975902 7.1458808,7.1767911 7.483842,7.1685808 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-classes-party.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="14.738757"
inkscape:cx="-2.7478572"
inkscape:cy="15.299798"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1527"
style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.00130661"
d="M 7.9316406,0 C 7.3930112,0 6.9589844,0.434017 6.9589844,0.972656 V 1.945312 C 6.0429373,2.104298 5.195371,2.469731 4.4628906,2.990234 L 3.7675781,2.294922 c -0.380884,-0.380874 -0.9941265,-0.380864 -1.375,0 l -0.097656,0.097656 c -0.3808632,0.380874 -0.3808736,0.994117 0,1.375 L 2.9902344,4.462891 C 2.4697309,5.195371 2.1042981,6.042937 1.9453125,6.958984 H 0.97265625 C 0.43402614,6.958984 0,7.393011 0,7.931641 v 0.136718 c 0,0.53863 0.43402614,0.972657 0.97265625,0.972657 H 1.9453125 c 0.159096,0.915588 0.524646,1.763933 1.0449219,2.496093 l -0.6953125,0.695313 c -0.3808632,0.380873 -0.3808632,0.994126 0,1.375 l 0.097656,0.09766 c 0.3808735,0.380864 0.9941265,0.380864 1.375,0 l 0.6953125,-0.695312 c 0.7324804,0.520503 1.5800467,0.885936 2.4960938,1.044922 v 0.972656 C 6.9589844,15.565973 7.3930112,16 7.9316406,16 h 0.1367188 c 0.5386294,0 0.9726562,-0.434027 0.9726562,-0.972656 v -0.972656 c 0.9160471,-0.158986 1.7636134,-0.524419 2.4960934,-1.044922 l 0.695313,0.695312 c 0.380873,0.380864 0.994126,0.380864 1.375,0 l 0.09766,-0.09766 c 0.380863,-0.380874 0.380863,-0.994127 0,-1.375 l -0.695312,-0.695313 c 0.520275,-0.73216 0.885826,-1.580505 1.044922,-2.496093 h 0.972656 C 15.565984,9.041016 16,8.606989 16,8.068359 V 7.931641 C 16,7.393011 15.565984,6.958984 15.027344,6.958984 H 14.054688 C 13.895702,6.042937 13.530269,5.195371 13.009766,4.462891 l 0.695312,-0.695313 c 0.380874,-0.380883 0.380863,-0.994126 0,-1.375 l -0.09766,-0.097656 c -0.380874,-0.380864 -0.994116,-0.380874 -1.375,0 L 11.537109,2.990234 C 10.804629,2.469731 9.9570627,2.104298 9.0410156,1.945312 V 0.972656 C 9.0410156,0.434017 8.6069888,0 8.0683594,0 Z M 8,3.734375 c 2.340378,0 4.265625,1.925247 4.265625,4.265625 0,2.340378 -1.925247,4.265625 -4.265625,4.265625 C 5.6596223,12.265625 3.734375,10.340378 3.734375,8 3.734375,5.659622 5.6596223,3.734375 8,3.734375 Z m 0,0.876953 c -0.1633436,0 -0.3261463,0.085675 -0.4101562,0.25586 L 6.8183594,6.427734 5.0957031,6.679688 c -0.3755796,0.054609 -0.525726,0.51628 -0.2539062,0.78125 l 1.2460937,1.214843 -0.2949218,1.716797 c -0.06417,0.37416 0.3300159,0.659042 0.6660156,0.482422 L 8,10.064453 9.5410156,10.875 c 0.3359397,0.17667 0.7282624,-0.108212 0.6640624,-0.482422 L 9.9121094,8.675781 11.158203,7.460938 c 0.27191,-0.26497 0.121883,-0.726651 -0.253906,-0.78125 L 9.1816406,6.427734 8.4101562,4.867188 C 8.3262013,4.697003 8.1633436,4.611328 8,4.611328 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-classes-road.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="14.738757"
inkscape:cx="-2.7478572"
inkscape:cy="15.299798"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1495"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.22411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.0683594 1.6191406 C 3.679962 1.6191406 0.068359375 5.2287902 0.068359375 9.6171875 C 0.068359375 11.117437 0.4916299 12.527072 1.2226562 13.732422 A 1.2446283 1.2446283 0 0 0 1.4550781 14.091797 C 1.4808991 14.129717 1.504723 14.167682 1.53125 14.205078 L 1.53125 14.169922 A 1.2446283 1.2446283 0 0 0 2.3652344 14.490234 A 1.2446283 1.2446283 0 0 0 3.6113281 13.246094 A 1.2446283 1.2446283 0 0 0 3.5058594 12.771484 L 3.7675781 12.621094 C 3.9933605 12.490734 4.0699239 12.204204 3.9394531 11.978516 L 3.90625 11.919922 C 3.7757735 11.694227 3.4894441 11.617697 3.2636719 11.748047 L 3.0136719 11.892578 C 2.7636532 11.343246 2.6006589 10.747563 2.5429688 10.123047 L 2.8085938 10.123047 C 3.0693054 10.123047 3.2794438 9.9130309 3.2792969 9.6523438 L 3.2792969 9.5839844 C 3.27915 9.3232855 3.0692932 9.1132812 2.8085938 9.1132812 L 2.5410156 9.1132812 C 2.6012805 8.4561308 2.7785773 7.8305936 3.0507812 7.2578125 L 3.2597656 7.3789062 C 3.4855486 7.5092616 3.7721275 7.4328663 3.9023438 7.2070312 L 3.9355469 7.1484375 C 4.0657693 6.9225921 3.9894441 6.636209 3.7636719 6.5058594 L 3.5644531 6.390625 C 3.9298086 5.883746 4.3779286 5.4402994 4.8886719 5.0800781 L 4.9960938 5.2675781 C 5.1264576 5.4933675 5.4149366 5.569928 5.640625 5.4394531 L 5.6972656 5.40625 C 5.9229646 5.2757751 5.9994844 4.9894409 5.8691406 4.7636719 L 5.7597656 4.5761719 C 6.3187639 4.3173547 6.9265265 4.1483599 7.5644531 4.0898438 L 7.5644531 4.3125 C 7.5644531 4.5731975 7.7744585 4.7830619 8.0351562 4.7832031 L 8.1015625 4.7832031 C 8.3622499 4.7833443 8.5722656 4.5732076 8.5722656 4.3125 L 8.5722656 4.0898438 C 9.205076 4.1478911 9.8079842 4.315009 10.363281 4.5703125 L 7.9199219 8.7734375 C 7.4915222 8.8443218 7.1631328 9.2115884 7.1621094 9.6601562 C 7.1619481 10.160673 7.5678426 10.566577 8.0683594 10.566406 C 8.5688761 10.566577 8.9747708 10.160673 8.9746094 9.6601562 C 8.9742654 9.4897667 8.9239401 9.3329942 8.8417969 9.1972656 L 11.101562 5.3085938 C 11.110879 5.2956592 11.120759 5.28169 11.128906 5.2675781 L 11.240234 5.0742188 C 11.750447 5.4327318 12.198693 5.8741513 12.564453 6.3789062 L 12.353516 6.5 C 12.127744 6.6303497 12.051418 6.9167324 12.181641 7.1425781 L 12.214844 7.2011719 C 12.34506 7.4270067 12.631639 7.5034026 12.857422 7.3730469 L 13.080078 7.2441406 C 13.35591 7.8205454 13.534954 8.4510193 13.595703 9.1132812 L 13.304688 9.1132812 C 13.043989 9.1132812 12.836084 9.323285 12.835938 9.5839844 L 12.835938 9.6523438 C 12.835791 9.9130309 13.043977 10.123047 13.304688 10.123047 L 13.59375 10.123047 C 13.535365 10.75247 13.369046 11.351476 13.115234 11.904297 L 12.855469 11.753906 C 12.629697 11.623556 12.341414 11.700082 12.210938 11.925781 L 12.177734 11.984375 C 12.047265 12.210063 12.123826 12.496597 12.349609 12.626953 L 12.623047 12.785156 A 1.2446283 1.2446283 0 0 0 12.53125 13.246094 A 1.2446283 1.2446283 0 0 0 13.775391 14.490234 A 1.2446283 1.2446283 0 0 0 14.605469 14.173828 L 14.605469 14.201172 C 14.625939 14.172222 14.643993 14.142531 14.664062 14.113281 A 1.2446283 1.2446283 0 0 0 14.929688 13.703125 A 1.2446283 1.2446283 0 0 0 14.931641 13.701172 C 15.651482 12.502872 16.068359 11.104415 16.068359 9.6171875 C 16.068359 5.2287902 12.456726 1.6191406 8.0683594 1.6191406 z " />
</svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-classes-run.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.3693785"
inkscape:cx="9.1595241"
inkscape:cy="38.198608"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1681"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.98035;paint-order:stroke markers fill"
d="M 4.7636719,0.06836156 C 4.5026119,0.06914492 4.2407868,0.16966115 4.0371094,0.36718969 L 0.7421875,3.560549 c -0.005706,0.00545 -0.0119668,0.010014 -0.0175781,0.015625 l -0.0390625,0.039063 -0.0625,0.060547 -0.001953,0.00391 c -0.17634903,0.172388 -0.27552651,0.3936322 -0.296875,0.6210937 -1.9412e-4,0.00191 1.8339e-4,0.00395 0,0.00586 -0.002705,0.030736 -0.003997,0.06289 -0.003906,0.09375 -5e-6,0.00131 0,0.0026 0,0.00391 2.6834e-4,0.030862 8.5047e-4,0.06103 0.003906,0.091797 1.7653e-4,0.00195 -1.8778e-4,0.00391 0,0.00586 0.003234,0.030836 0.009596,0.06323 0.015625,0.09375 2.3975e-4,0.00126 -2.4452e-4,0.00265 0,0.00391 0.006266,0.031115 0.0142726,0.061238 0.0234375,0.091797 0.0280545,0.095737 0.0702709,0.1894183 0.12695313,0.2753906 0.0376166,0.056851 0.0807039,0.1119528 0.13085937,0.1621094 L 9.1757812,13.683596 H 1.0488281 C 0.46752559,13.683596 0,14.15113 0,14.732424 v 0.150391 c 0,0.581304 0.46752559,1.048828 1.0488281,1.048828 H 14.951172 C 15.532485,15.931643 16,15.464119 16,14.882815 v -0.150391 c 0,-0.290647 -0.118936,-0.554482 -0.308594,-0.74414 a 2.6096641,2.6096641 0 0 0 0.291016,-0.953125 C 15.993332,12.975029 16,12.912962 16,12.849612 v -0.07031 -0.07422 c 0,-0.0174 -0.0012,-0.03554 -0.002,-0.05274 v -0.002 c -0.0013,-0.02584 -0.0028,-0.05083 -0.0059,-0.07617 a 2.6096641,2.6096641 0 0 0 -2.601563,-2.404297 2.6096641,2.6096641 0 0 0 -0.08398,0.0059 L 10.353516,3.701174 C 10.19166,3.346215 9.8233287,3.168109 9.4492188,3.1835959 9.3713385,3.1868199 9.2931996,3.20058 9.2167969,3.2207053 v -0.00195 A 2.5233535,2.5233535 0 0 1 8.3535156,3.3750022 2.5233535,2.5233535 0 0 1 5.8828125,1.3222678 C 5.9190811,1.0202066 5.8202857,0.70309841 5.5878906,0.47070531 L 5.484375,0.36718969 C 5.2837537,0.16656841 5.0247329,0.06759854 4.7636719,0.06836156 Z M 4.1347656,3.3281272 a 4.9046442,4.9046442 0 0 0 4.21875,2.4277344 4.9046442,4.9046442 0 0 0 0.5195313,-0.035156 L 9.0507812,6.1093772 A 0.83426255,0.83426255 0 0 0 8.4609375,6.9082053 0.83426255,0.83426255 0 0 0 9.2949219,7.7421897 0.83426255,0.83426255 0 0 0 9.7363281,7.6152366 L 9.9570312,8.0976584 A 0.83426255,0.83426255 0 0 0 9.3496094,8.8984397 0.83426255,0.83426255 0 0 0 10.183594,9.7343772 0.83426255,0.83426255 0 0 0 10.640625,9.5957053 l 0.712891,1.5624997 a 2.6096641,2.6096641 0 0 0 -0.330078,0.521485 h -0.66211 c -0.02809,0 -0.05452,0.0017 -0.08203,0.0039 L 3.0117188,4.4160178 Z M 1.0234375,9.5410178 C 0.45599263,9.5410178 0,9.9989608 0,10.566409 v 0.144531 c 0,0.567437 0.45599263,1.02539 1.0234375,1.025391 h 2.265625 c 0.567455,0 1.0234375,-0.457954 1.0234375,-1.025391 v -0.144531 c 0,-0.5674482 -0.4559825,-1.0253912 -1.0234375,-1.0253912 z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-classes-sex.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="14.738757"
inkscape:cx="-6.5473635"
inkscape:cy="13.128651"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path234"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:0.93283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 7.9450159,-7.0245746e-6 C 6.7699131,-6.2984575e-5 5.6156403,0.24620149 4.5015631,0.63949137 4.3112287,0.60357747 4.1390286,0.50337813 3.9422297,0.50284642 h -0.00364 C 2.2032727,0.50098076 0.74093243,1.9613814 0.739272,3.6966946 v 0.00729 c 4.8507e-4,0.2183472 0.11276864,0.4076649 0.15668621,0.6176352 -0.80870644,2.3796739 -0.81318053,4.975197 -0.003644,7.3660742 -0.0430034,0.20691 -0.15214684,0.393499 -0.15304235,0.608525 v 0.0073 c -0.001866,1.737607 1.46170604,3.201058 3.19931394,3.199314 0.00373,9e-6 0.00748,9e-6 0.010931,0 0.1859314,-9.14e-4 0.3481101,-0.09497 0.5283606,-0.127536 2.284889,0.834108 4.7686587,0.831785 7.0508786,0 0.181324,0.03246 0.34501,0.127069 0.532005,0.127536 h 0.0073 c 1.7341,-0.0019 3.193596,-1.461952 3.193848,-3.19567 1.3e-4,-0.21859 -0.109628,-0.409104 -0.153042,-0.619457 0.807493,-2.3884238 0.804574,-4.985172 -0.0055,-7.3678961 0.04403,-0.2111831 0.156631,-0.4016912 0.156687,-0.621279 v -0.00182 C 15.258154,1.9636831 13.801046,0.50446718 12.068028,0.50286272 h -0.0036 C 11.858347,0.50290003 11.67856,0.60614914 11.479588,0.64497347 10.330847,0.24976197 9.1445749,4.2904543e-4 7.9468603,9.2754254e-6 Z m 0,2.5197330245746 c 0.9742369,1.959e-4 1.7890691,0.1498308 2.6490901,0.4135787 0.320157,0.104822 0.629205,0.2267034 0.921898,0.3716743 0.126939,-0.1763885 0.331081,-0.2808295 0.548402,-0.2805777 0.372179,3.079e-4 0.673807,0.3019352 0.674115,0.6741152 -3.17e-4,0.2245504 -0.112325,0.4342317 -0.298797,0.5593333 0.750983,1.6182804 1.217269,4.8684494 0.0073,7.4917872 0.18386,0.125979 0.293638,0.334631 0.293331,0.557512 -3.08e-4,0.37218 -0.301935,0.673807 -0.674115,0.674115 -0.212163,-9.3e-5 -0.411924,-0.09997 -0.539292,-0.269646 -1.7033825,0.86281 -4.7196666,1.180769 -7.05088,-0.0036 C 4.349847,12.879752 4.1498993,12.981749 3.9367759,12.98313 3.5631781,12.983829 3.2601393,12.68079 3.2608389,12.307193 3.2615385,12.08462 3.3719729,11.876707 3.555992,11.751503 3.3693303,11.34817 3.2665148,11.036957 3.1660864,10.683807 2.5798969,8.6270313 2.714136,6.0776212 3.5596239,4.2578498 3.3731514,4.1327482 3.2611348,3.9230669 3.2608269,3.6985165 3.2611348,3.3263365 3.562762,3.0247092 3.934942,3.0244013 4.1516194,3.0247371 4.3549557,3.1291128 4.4815218,3.304979 5.4669713,2.7819606 6.6969006,2.5213054 7.9450159,2.5215479 Z M 5.8680127,5.1396653 C 5.6803835,5.1443293 5.4951756,5.2083175 5.3469399,5.3236805 5.1492735,5.4776158 5.0219595,5.7202912 5.0080604,5.9704666 4.992109,6.2583561 5.0774578,6.5178291 5.2321581,6.7611854 5.4382759,7.0855392 6.0675157,7.7346912 6.671485,8.0000996 7.2754075,7.7346912 7.9028347,7.0855392 8.1089899,6.7611854 8.2636901,6.5178291 8.347217,6.2583561 8.3312657,5.9704666 8.3174598,5.7202912 8.1918652,5.4776158 7.9942081,5.3236805 7.7965417,5.1698197 7.5311833,5.1075555 7.2854763,5.1560627 7.0232302,5.207648 6.7915306,5.3879048 6.671485,5.6261213 6.5514952,5.3879048 6.3179364,5.2077413 6.0556717,5.1560627 5.9941983,5.1446821 5.9305122,5.1377996 5.8680127,5.1396653 Z M 8.5280344,8.0000996 C 8.3404146,8.0047638 8.1533755,8.0687612 8.0051397,8.1841148 7.8074733,8.3380409 7.6819813,8.5807163 7.6680821,8.8309009 7.6521308,9.1187998 7.7374889,9.3764322 7.8921799,9.6197978 8.0982977,9.9441332 8.7257063,10.595107 9.3296848,10.860534 9.9336068,10.595107 10.561016,9.9441332 10.76719,9.6197978 c 0.154682,-0.2433656 0.240049,-0.500998 0.224097,-0.7888969 -0.01381,-0.2501846 -0.1394,-0.49286 -0.337057,-0.6467861 -0.148255,-0.1154562 -0.335359,-0.179351 -0.522895,-0.1840152 -0.0625,-0.00187 -0.124457,0.00282 -0.1858365,0.014575 C 9.6832523,8.0662605 9.4497118,8.2483392 9.3296848,8.4865557 9.2096858,8.2483392 8.9779675,8.0663537 8.7156935,8.0146751 8.6542201,8.0027349 8.5906272,7.998234 8.5280344,8.0000996 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -1,39 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-classes-sleep.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="14.738757"
inkscape:cx="10.279021"
inkscape:cy="16.656764"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path224"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:0.932808;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 7.9448147,-1.3901453e-5 C 6.7704047,2.0609855e-4 5.6168547,0.2455961 4.5034047,0.6386561 c -0.19033,-0.0359 -0.36374,-0.13619 -0.56054,-0.13672 h -0.004 c -1.73528,-0.002 -3.19755995,1.46004 -3.19921995,3.19531 v 0.006 c 4.8e-4,0.21834 0.11233,0.40722 0.15625,0.61719 -0.80869,2.37963 -0.81323,4.97636 -0.004,7.3671899 -0.043,0.2069 -0.15144,0.3924 -0.15234,0.60742 v 0.008 c -0.002,1.73757 1.46164995,3.20097 3.19921995,3.19922 0.004,2e-5 0.006,2e-5 0.01,0 0.18593,-9.1e-4 0.34905,-0.0944 0.52929,-0.12695 2.28484,0.83409 4.76862,0.83177 7.0507803,0 0.18132,0.0325 0.34426,0.12649 0.53125,0.12695 h 0.008 c 1.73405,-0.002 3.1931,-1.46163 3.19336,-3.19531 1.3e-4,-0.21858 -0.10894,-0.40879 -0.15235,-0.61914 0.80748,-2.3883699 0.80444,-4.9864699 -0.006,-7.3691399 0.044,-0.21118 0.1562,-0.40152 0.15625,-0.6211 v -0.002 c -0.002,-1.73299 -1.45842,-3.19176 -3.1914,-3.19336 h -0.004 c -0.20608,4e-5 -0.38697,0.10376 -0.58594,0.14258 C 10.329865,0.2497761 9.1437947,9.5609855e-4 7.9467647,2.6609855e-4 Z M 7.9468147,2.5195161 c 0.97422,2e-4 1.78843,0.15032 2.6484403,0.41406 0.32015,0.10482 0.62919,0.22614 0.92187,0.3711 0.12694,-0.17638 0.33151,-0.2815 0.54883,-0.28125 0.37217,3.1e-4 0.67353,0.30361 0.67383,0.67578 -3.1e-4,0.22454 -0.11236,0.43349 -0.29883,0.55859 0.75096,1.61824 1.2174,4.86891 0.008,7.4921899 0.18385,0.12597 0.29327,0.33376 0.29296,0.55664 -3.1e-4,0.37217 -0.30165,0.67353 -0.67382,0.67383 -0.21216,-9e-5 -0.4117,-0.0999 -0.53907,-0.26953 -1.7033403,0.86278 -4.7196103,1.18066 -7.0507803,-0.004 -0.12621,0.17173 -0.32594,0.27401 -0.53906,0.27539 -0.37359,7e-4 -0.67648,-0.30219 -0.67578,-0.67578 6.6e-4,-0.2226 0.11091,-0.43144 0.29492,-0.55664 -0.18665,-0.40328 -0.29019,-0.71327 -0.39062,-1.06641 -0.58617,-2.0567399 -0.45094,-4.6060499 0.39453,-6.4257799 -0.18647,-0.1251 -0.29852,-0.336 -0.29883,-0.56055 3.1e-4,-0.37217 0.30166,-0.67351 0.67383,-0.67382 0.21668,3.4e-4 0.42031,0.10539 0.54687,0.28125 0.98543,-0.52301 2.2148,-0.78345 3.46289,-0.78321 z m -2.61328,1.75976 v 0.008 c -0.036941,-0.005 -0.074389,-0.005 -0.11133,0 -0.1121436,0.023236 -0.2096912,0.091801 -0.26953,0.18945 l -0.54883,0.88672 c -0.1352766,0.2155805 -0.046308,0.5010194 0.1875,0.60156 l 0.41993,0.17969 -1.03711,1.27734 c -0.1969043,0.2447513 -0.060885,0.6110503 0.24804,0.66797 l 1.7793,0.32227 c 0.1820801,0.033959 0.36461,-0.056908 0.44727,-0.22266 l 0.43554,-0.875 c 0.1218876,-0.2392722 -0.012229,-0.5295377 -0.27344,-0.5918 l -0.14648,-0.0352 0.57422,-0.76367 c 0.1387587,-0.1869937 0.096453,-0.451544 -0.0937,-0.58594 l -1.40234,-0.98242 c -0.061427,-0.043953 -0.1336884,-0.070301 -0.20899,-0.0762 z m 3.28711,1.81055 v 0.006 c -0.026581,-0.00356 -0.053519,-0.00356 -0.0801,0 -0.081841,0.016309 -0.153262,0.06581 -0.19726,0.13672 l -0.39844,0.64453 c -0.098498,0.1568686 -0.033573,0.3646293 0.13672,0.4375 l 0.30469,0.13086 -0.75391,0.92773 c -0.144198,0.1784202 -0.044214,0.446121 0.18164,0.48633 l 1.29297,0.23438 c 0.1321187,0.02422 0.264325,-0.041883 0.32422,-0.16211 l 0.31836,-0.63672 c 0.088199,-0.174579 -0.010614,-0.3856282 -0.20118,-0.42969 l -0.10546,-0.0254 0.41796,-0.55469 c 0.1007306,-0.1359722 0.06985,-0.3281992 -0.0684,-0.42578 l -1.01954,-0.71484 c -0.044845,-0.031779 -0.097523,-0.050694 -0.15234,-0.0547 z m 2.3906303,1.57031 v 0.004 c -0.01619,-0.00216 -0.03261,-0.00216 -0.0488,0 -0.05026,0.010014 -0.09411,0.040432 -0.1211,0.084 l -0.24414,0.39454 c -0.05975,0.096107 -0.01996,0.2228572 0.084,0.26757 l 0.1875,0.0801 -0.46289,0.57031 c -0.08901,0.1094657 -0.02761,0.2742774 0.11132,0.29883 l 0.79297,0.14258 c 0.08119,0.014986 0.162487,-0.025657 0.19922,-0.0996 l 0.19531,-0.38867 c 0.05416,-0.1069948 -0.0062,-0.2364493 -0.12304,-0.26367 l -0.0645,-0.0156 0.25586,-0.34179 c 0.06194,-0.08378 0.04249,-0.202162 -0.043,-0.26172 l -0.625,-0.4375 c -0.02762,-0.01941 -0.06002,-0.030891 -0.0937,-0.0332 z"
sodipodi:nodetypes="cccccccccccccccccccsscsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
</svg>

Before

Width:  |  Height:  |  Size: 5.1 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.4 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-classes-work.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="14.738757"
inkscape:cx="-2.7478572"
inkscape:cy="15.299798"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1481"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.22411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 8.0683593,0.0683595 c -4.388394,0 -7.9999998,3.6116058 -7.9999998,8.0000003 0,4.3883942 3.6116058,8.0000002 7.9999998,8.0000002 4.3883947,0 7.9999997,-3.611606 7.9999997,-8.0000002 0,-4.3883945 -3.611605,-8.0000003 -7.9999997,-8.0000003 z M 7.5640501,2.5406571 v 0.2226051 c 0,0.2606996 0.2101208,0.4706739 0.47082,0.4708201 h 0.066978 C 8.3625354,3.2342286 8.5726683,3.0239739 8.5726683,2.7632622 V 2.5406571 C 9.2058497,2.5988725 9.8097844,2.7656304 10.36533,3.0213263 L 10.255012,3.214383 c -0.130349,0.2257712 -0.05234,0.5117297 0.173356,0.6422056 l 0.05713,0.033489 c 0.225689,0.1304709 0.513821,0.054397 0.644177,-0.1713854 l 0.110318,-0.1930567 c 0.510232,0.3585336 0.958031,0.7993373 1.323811,1.3041125 l -0.208815,0.1201678 c -0.05865,0.033863 -0.108261,0.078866 -0.145778,0.130017 l -3.6877625,2.113765 0.01379,-2.6259535 C 8.5372555,4.3070467 8.3270554,4.0953064 8.0663883,4.0949544 H 7.99941 C 7.7387026,4.0946014 7.5301232,4.3031575 7.5285901,4.5638036 l -0.01576,2.8387096 C 7.3015113,7.5678863 7.1628373,7.8226008 7.1621778,8.1116981 7.1620164,8.6122149 7.5678422,9.0180508 8.0683585,9.0178793 8.5688749,9.0180508 8.9747007,8.6122149 8.9745393,8.1116981 c -8.2e-6,-0.00405 -0.00191,-0.00778 -0.00197,-0.011819 L 13.097665,5.7339595 c 0.265392,0.5658845 0.437084,1.1826305 0.496429,1.830091 h -0.287616 c -0.260699,0 -0.470673,0.2101204 -0.47082,0.4708201 v 0.066978 c -1.46e-4,0.2606866 0.210109,0.4708201 0.47082,0.4708201 h 0.287614 c -0.05786,0.6293437 -0.221689,1.2300527 -0.47476,1.7828113 l -0.263974,-0.151686 c -0.225771,-0.13035 -0.5137,-0.05235 -0.644177,0.173357 l -0.03349,0.05713 c -0.13047,0.225688 -0.05243,0.513821 0.173356,0.644176 l 0.265945,0.153657 c -0.365996,0.522794 -0.818739,0.980139 -1.337602,1.351392 L 11.117851,12.303771 C 10.9875,12.078003 10.70149,12.000193 10.475643,12.130415 l -0.05713,0.03349 c -0.22583,0.130216 -0.303711,0.416423 -0.173356,0.642207 l 0.165476,0.287613 c -0.5679485,0.267634 -1.1875633,0.440573 -1.8379704,0.500373 v -0.334893 c 0,-0.260712 -0.2101329,-0.470968 -0.4708199,-0.47082 h -0.066978 c -0.2606992,1.48e-4 -0.47082,0.210121 -0.47082,0.47082 v 0.334893 C 6.9099146,13.53414 6.2868873,13.359846 5.7162297,13.089783 L 5.879736,12.808079 C 6.0100916,12.582296 5.934184,12.296088 5.7083496,12.165872 l -0.057129,-0.03349 C 5.4253752,12.002161 5.137394,12.078001 5.0070445,12.303769 L 4.8494479,12.577593 C 4.3297739,12.204386 3.8755185,11.745621 3.5098763,11.220292 L 3.7679409,11.070576 C 3.9937236,10.94022 4.0717677,10.654057 3.9412972,10.428369 l -0.035459,-0.05713 C 3.7753614,10.145543 3.4894036,10.067535 3.2636316,10.197884 L 3.011477,10.343661 C 2.7614254,9.7941303 2.5981118,9.1975808 2.5406569,8.572669 h 0.2679144 c 0.2607114,0 0.4709668,-0.2101335 0.47082,-0.4708201 V 8.0348706 C 3.2792444,7.7741709 3.0692704,7.5640505 2.8085713,7.5640505 H 2.5406569 C 2.6009441,6.9063091 2.7763068,6.279604 3.0489061,5.7063799 L 3.2596916,5.8285175 C 3.4854743,5.9588724 3.7736517,5.8829698 3.903868,5.657131 L 3.937357,5.600002 C 4.0675796,5.374156 3.989773,5.0861753 3.7640008,4.9558254 L 3.5650352,4.8415681 C 3.9306335,4.3343601 4.377697,3.8899355 4.888847,3.5295763 L 4.9971947,3.7167224 C 5.1275504,3.9425037 5.4137129,4.0205486 5.639401,3.8900777 L 5.6985,3.8546187 C 5.9241985,3.7241418 6.0002357,3.4381843 5.8698861,3.2124131 L 5.7615384,3.025267 C 6.3199161,2.7671 6.9270177,2.599046 7.5640501,2.5406571 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-classes-workout.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="14.738757"
inkscape:cx="-1.3230424"
inkscape:cy="12.110926"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1617"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.76123;paint-order:stroke markers fill"
d="M 10.927734 0 C 10.676064 -0.0094677929 10.44337 0.068348786 10.273438 0.23828125 L 10.173828 0.33789062 C 9.9493462 0.5623705 9.8874966 0.89876972 9.9726562 1.2402344 C 9.6310337 1.1549038 9.2948932 1.2168256 9.0703125 1.4414062 L 8.9707031 1.5410156 C 8.7673726 1.7443461 8.6982001 2.0382333 8.75 2.3457031 C 8.4425303 2.2939031 8.1486433 2.3630755 7.9453125 2.5664062 L 7.8457031 2.6660156 C 7.4572867 3.0544319 7.5526883 3.7753444 8.0605469 4.2832031 L 9.0878906 5.3105469 L 5.3105469 9.0878906 L 4.2832031 8.0605469 C 3.7753445 7.5526883 3.0544327 7.457286 2.6660156 7.8457031 L 2.5664062 7.9453125 C 2.3419517 8.1697671 2.2801173 8.5042783 2.3652344 8.8457031 C 2.0238097 8.760586 1.6892987 8.8224201 1.4648438 9.046875 L 1.3632812 9.1464844 C 1.1596931 9.3500725 1.0923553 9.6452332 1.1445312 9.953125 C 0.83663951 9.900949 0.54147904 9.9702396 0.33789062 10.173828 L 0.23828125 10.273438 C -0.15013515 10.661854 -0.054733642 11.382767 0.453125 11.890625 L 1.4804688 12.917969 L 1.3847656 13.013672 C 0.99634389 13.402093 0.9963512 14.027602 1.3847656 14.416016 L 1.484375 14.515625 C 1.8727894 14.90404 2.498297 14.904047 2.8867188 14.515625 L 2.9824219 14.419922 L 4.109375 15.546875 C 4.6172337 16.054733 5.3381461 16.150135 5.7265625 15.761719 L 5.8261719 15.662109 C 6.0297603 15.458521 6.099051 15.16336 6.046875 14.855469 C 6.3547668 14.907645 6.6499276 14.840306 6.8535156 14.636719 L 6.953125 14.535156 C 7.17758 14.310699 7.239414 13.976191 7.1542969 13.634766 C 7.4957217 13.719883 7.830233 13.658048 8.0546875 13.433594 L 8.1542969 13.333984 C 8.5427141 12.945564 8.4473117 12.224655 7.9394531 11.716797 L 6.8125 10.589844 L 10.589844 6.8125 L 11.716797 7.9394531 C 12.224655 8.4473118 12.945569 8.5427132 13.333984 8.1542969 L 13.433594 8.0546875 C 13.636926 7.8513566 13.706096 7.5574698 13.654297 7.25 C 13.961767 7.3017999 14.255654 7.2326273 14.458984 7.0292969 L 14.558594 6.9296875 C 14.783176 6.7051068 14.845096 6.3689662 14.759766 6.0273438 C 15.10123 6.1125037 15.43763 6.0506517 15.662109 5.8261719 L 15.761719 5.7265625 C 16.150139 5.3381453 16.054733 4.6172336 15.546875 4.109375 L 14.419922 2.9824219 L 14.515625 2.8867188 C 14.90404 2.4983043 14.90404 1.8727887 14.515625 1.484375 L 14.416016 1.3847656 C 14.027602 0.99635124 13.402086 0.99635058 13.013672 1.3847656 L 12.917969 1.4804688 L 11.890625 0.453125 C 11.604955 0.16745451 11.25131 0.012172877 10.927734 0 z " />
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-collection.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="14.738757"
inkscape:cx="0.84810408"
inkscape:cy="19.506394"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path2-3"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:0.995184;-inkscape-stroke:none"
d="M 5.1074219 0.7265625 C 3.9934449 0.74803931 2.9163823 1.1290651 2.015625 1.8300781 C 0.81484176 2.7652782 0.094134511 4.1446281 0.009765625 5.6621094 L 0.009765625 5.6640625 C -0.073444512 7.1669173 0.40386403 8.5713829 1.1269531 9.7089844 C 2.2124708 11.41713 4.3429025 13.666624 7.1503906 14.900391 L 8 15.273438 L 8.8476562 14.900391 C 11.655005 13.666604 13.78748 11.4168 14.873047 9.7089844 C 15.595487 8.5721121 16.073354 7.1667597 15.990234 5.6640625 C 15.906324 4.1460418 15.185168 2.7652582 13.984375 1.8300781 L 13.982422 1.828125 C 12.781491 0.89376622 11.266979 0.53111051 9.7714844 0.82617188 C 9.1111374 0.95617149 8.541805 1.2742435 8 1.6230469 C 7.4582051 1.2742535 6.8886228 0.95626138 6.2285156 0.82617188 C 5.8546694 0.75235159 5.4787509 0.71937027 5.1074219 0.7265625 z M 10.912109 2.8886719 C 11.576162 2.9047229 12.234777 3.1325794 12.759766 3.5410156 C 13.45971 4.086137 13.908054 4.9441349 13.957031 5.8300781 C 14.013771 6.8495672 13.711711 7.767097 13.164062 8.6289062 C 12.433981 9.7774761 10.210866 12.079646 8.0722656 13.019531 C 5.9335453 12.079646 3.7084074 9.7774759 2.9785156 8.6289062 C 2.4307472 7.767097 2.1291377 6.8495672 2.1855469 5.8300781 C 2.2348935 4.9441349 2.6828884 4.086137 3.3828125 3.5410156 C 3.9077657 3.1324468 4.5679993 2.9067676 5.2324219 2.890625 C 5.4538927 2.884635 5.674993 2.9023595 5.8925781 2.9453125 C 6.5028408 3.0655823 7.0672201 3.3840004 7.5039062 3.8261719 L 6.7304688 5.390625 L 4.7871094 5.6738281 C 4.3635857 5.7354096 4.1954351 6.2558932 4.5019531 6.5546875 L 5.9082031 7.9257812 L 5.5761719 9.8613281 C 5.503811 10.28325 5.9472811 10.603463 6.3261719 10.404297 L 8.0644531 9.4921875 L 9.8027344 10.404297 C 10.181557 10.60352 10.623173 10.283306 10.550781 9.8613281 L 10.21875 7.9257812 L 11.625 6.5546875 C 11.93162 6.2558932 11.763604 5.7354011 11.339844 5.6738281 L 9.3964844 5.390625 L 8.6289062 3.8378906 C 9.0671686 3.3895044 9.6343766 3.0665102 10.25 2.9453125 C 10.467528 2.9023939 10.690759 2.8833215 10.912109 2.8886719 z " />
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-1950s.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="2.6074561"
inkscape:cy="17.545086"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path62"
style="color:#000000;-inkscape-font-specification:Nasalization;fill:#2e3436;fill-opacity:1;stroke-width:1.00153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 13.811722,0.140625 c -0.651744,0 -1.234542,0.24856416 -1.622956,0.75347912 C 11.805535,1.3922908 11.638697,2.0915226 11.63411,2.9040445 11.577654,2.7664255 11.60595,2.6076817 11.507163,2.4885375 11.229713,2.1539057 10.780616,2.015101 10.251375,1.9895315 H 11.2396 A 0.43859943,0.50328994 0 0 0 11.680983,1.4825733 V 0.70921346 A 0.43859943,0.50328994 0 0 0 11.2396,0.20623136 H 8.5698295 c -0.1781086,0 -0.3915739,0.0543543 -0.5507503,0.23459245 C 7.8599039,0.62101098 7.8101077,0.86781025 7.8101067,1.0710425 v 1.72167 c 0,0.2032424 0.049795,0.4480434 0.2089725,0.6282305 0.1591764,0.1801873 0.3726417,0.2345925 0.5507503,0.2345925 h 1.6112375 c 0.09169,0 0.13464,0.012755 0.154288,0.01988 8.42e-4,0.00916 0.002,0.023364 0.002,0.065606 0,0.081126 -0.01076,0.1119758 -0.01367,0.1192843 -0.01016,0.00305 -0.03528,0.00994 -0.08789,0.00994 H 8.2651591 a 0.43859943,0.50328994 0 0 0 -0.4355223,0.502978 v 0.775348 a 0.43859943,0.50328994 0 0 0 0.4355223,0.502982 h 1.9510619 c 0.527979,0 0.979466,-0.1901885 1.273365,-0.55666 0.279615,-0.3486585 0.370701,-0.8108468 0.380839,-1.2743538 0.08941,0.3963873 0.09781,0.8589254 0.316388,1.143141 0.387917,0.5044163 0.970759,0.7514911 1.624909,0.7514911 0.65415,0 1.238946,-0.2470748 1.626861,-0.7514911 0.387917,-0.504406 0.560515,-1.2067233 0.560515,-2.029821 0,-0.8267723 -0.176008,-1.5328584 -0.564421,-2.03777331 C 15.046263,0.39117724 14.463465,0.14261307 13.811722,0.14261307 Z M 1.3827346,0.16646993 A 1.3828633,1.5819087 0 0 0 0,1.7489749 V 3.9875435 A 1.3828633,1.5819087 0 0 0 1.3827346,5.5700484 H 2.1639405 V 14.55812 a 1.3828633,1.5819087 0 0 0 1.3807816,1.582505 H 5.8668568 A 1.3828633,1.5819087 0 0 0 7.2495914,14.55812 V 4.8026528 C 7.2495914,3.5107956 7.0424725,2.1858229 6.159809,1.2718377 5.2771466,0.35787283 4.1279392,0.16646993 2.7791403,0.16646993 Z M 13.811722,1.9219371 c 0.291593,0 0.396358,0.069923 0.478489,0.1868788 0.08214,0.1169455 0.162099,0.370942 0.162099,0.8151093 0,0.4489208 -0.07886,0.7084604 -0.160147,0.8250497 -0.08127,0.1165791 -0.185352,0.1848906 -0.480441,0.1848906 -0.295091,0 -0.401874,-0.069618 -0.484348,-0.1868787 -0.08248,-0.1173222 -0.160147,-0.3752198 -0.160147,-0.8230616 0,-0.4441673 0.07778,-0.6983063 0.160147,-0.8151093 0.08237,-0.1167929 0.189255,-0.1868788 0.484348,-0.1868788 z M 8.636232,5.8881399 A 0.82572977,0.94751942 0 0 0 7.8101067,6.838438 v 8.353876 A 0.82572977,0.94751942 0 0 0 8.636232,16.138637 H 9.9095977 A 0.82572977,0.94751942 0 0 0 10.73377,15.192314 v -2.532803 c 0.514638,0.01201 0.869962,0.05561 0.925729,0.0835 0.06326,0.03155 0.07259,0.01818 0.24608,0.405567 l 1.109312,2.477138 a 0.82572977,0.94751942 0 0 0 0.734334,0.51491 h 1.423748 a 0.82572977,0.94751942 0 0 0 0.734333,-1.383697 l -1.175714,-2.622266 c -0.232374,-0.51997 -0.457704,-0.957069 -0.779253,-1.326044 -0.03596,-0.04133 -0.09453,-0.0469 -0.132806,-0.08549 0.228435,-0.307249 0.570718,-0.49477 0.730428,-0.8608343 l 0.002,-0.00198 1.144467,-2.5964214 a 0.82572977,0.94751942 0 0 0 -0.74024,-1.3757436 h -1.369063 a 0.82572977,0.94751942 0 0 0 -0.734333,0.5188866 l -1.111266,2.4990059 c -0.183419,0.4091416 -0.22036,0.428886 -0.24608,0.44334 -0.02224,0.01252 -0.325372,0.055739 -0.761676,0.069583 V 6.838438 A 0.82572977,0.94751942 0 0 0 9.9095977,5.8881399 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-1960s.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="2.6074561"
inkscape:cy="17.545086"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path34"
style="color:#000000;-inkscape-font-specification:Nasalization;fill:#2e3436;fill-opacity:1;stroke-width:1.05298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 13.876953,0.29394464 c -0.63318,0 -1.200774,0.22126866 -1.578125,0.66506144 C 11.936259,1.3853963 11.766706,1.9741695 11.753906,2.6642399 11.723925,2.5382312 11.681472,2.4202618 11.589843,2.3317092 11.30077,2.0523901 10.903784,1.9545706 10.458984,1.9545706 H 9.7753906 c 0.053589,-0.00816 0.056351,-0.03447 0.1308594,-0.03447 h 1.443359 A 0.42610701,0.44236073 0 0 0 11.77539,1.4780785 V 0.79679597 A 0.42610701,0.44236073 0 0 0 11.349609,0.35274581 H 9.90625 c -0.6259325,0 -1.1883116,0.19643545 -1.5703125,0.62653654 C 7.9539367,1.4093834 7.7832031,2.0206824 7.7832032,2.7473725 c 0,0.7234482 0.1662771,1.3259061 0.5214843,1.7538968 0.3552073,0.4279807 0.8872513,0.6387023 1.453125,0.6387023 h 0.6406245 c 0.50648,0 0.941223,-0.1855812 1.216797,-0.5129894 0.266729,-0.3169075 0.358885,-0.7242925 0.365234,-1.1334432 0.08566,0.3634368 0.09674,0.7817631 0.316407,1.0401723 0.376867,0.4433443 0.944559,0.6630339 1.580078,0.6630339 0.635519,0 1.201258,-0.2196896 1.578125,-0.6630339 C 15.831946,4.0903672 16,3.4708207 16,2.7473725 16,2.0206824 15.830475,1.4027887 15.453125,0.95900608 15.075773,0.5152133 14.510133,0.29394464 13.876953,0.29394464 Z M 1.3769532,0.29597227 A 1.378081,1.5843877 0 0 0 1.3151008e-8,1.8815761 V 4.1241309 A 1.378081,1.5843877 0 0 0 1.3769532,5.707707 H 2.15625 v 9.002661 a 1.378081,1.5843877 0 0 0 1.3769532,1.583576 h 2.3125 A 1.378081,1.5843877 0 0 0 7.2246094,14.710368 V 4.9392366 C 7.2246094,3.645355 7.0182828,2.3184737 6.1386719,1.4030562 5.2590619,0.48765906 4.1136659,0.29597226 2.7695313,0.29597227 Z M 13.876953,1.8612998 c 0.283287,0 0.385051,0.061422 0.464843,0.1642378 0.07979,0.1027846 0.154297,0.3273876 0.154297,0.7177797 0,0.3945822 -0.07338,0.6214042 -0.152343,0.7238626 C 14.26478,3.5696489 14.163639,3.62939 13.876953,3.62939 13.590266,3.62939 13.486372,3.570311 13.40625,3.4671799 13.32613,3.3640589 13.25,3.1369514 13.25,2.7433173 c 0,-0.3903921 0.07428,-0.6151174 0.154296,-0.7177797 0.08003,-0.1026622 0.18597,-0.1642378 0.472657,-0.1642378 z m -2.066407,1.0645039 c 0.0072,0.01937 0.01213,0.03951 0.01367,0.062857 -0.0055,-0.020797 -0.009,-0.041651 -0.01367,-0.062857 z M 9.4316406,3.3881025 h 0.9609374 c 0.05345,0 0.08367,0.00535 0.09961,0.010143 5.69e-4,0.00713 0.002,0.01562 0.002,0.050691 0,0.086249 -0.01742,0.1032248 -0.01758,0.1034085 -1.7e-4,1.835e-4 -0.0057,0.020276 -0.107422,0.020276 H 9.8457032 c -0.238562,0 -0.3329473,-0.049062 -0.3964844,-0.1176024 -0.00795,-0.00816 -0.00946,-0.055493 -0.017578,-0.066911 z M 8.6054688,6.0260443 A 0.82287422,0.94900428 0 0 0 7.7832032,6.9770012 v 8.3680148 a 0.82287422,0.94900428 0 0 0 0.8222656,0.948928 H 9.875 a 0.82287422,0.94900428 0 0 0 0.822265,-0.948928 v -2.536562 c 0.512859,0.01203 0.866301,0.05722 0.921875,0.08516 0.06304,0.0316 0.07125,0.01754 0.244141,0.405527 l 1.105469,2.479786 a 0.82287422,0.94900428 0 0 0 0.732422,0.515017 h 1.417968 a 0.82287422,0.94900428 0 0 0 0.732422,-1.384868 L 14.68164,12.283298 c -0.23157,-0.520784 -0.456906,-0.958541 -0.777344,-1.328095 -0.03583,-0.04139 -0.09466,-0.04854 -0.132812,-0.08718 C 13.99913,10.560288 14.340841,10.372916 14.5,10.006278 l 0.002,-0.002 1.138672,-2.5994174 A 0.82287422,0.94900428 0 0 0 14.90625,6.0280719 h -1.367188 a 0.82287422,0.94900428 0 0 0 -0.730469,0.5190724 l -1.107421,2.5020909 c -0.182785,0.4097827 -0.21851,0.4295735 -0.244141,0.4440502 -0.02216,0.01254 -0.324971,0.055074 -0.759766,0.068939 V 6.9770012 A 0.82287422,0.94900428 0 0 0 9.875,6.0280719 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-1970s.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="2.6074561"
inkscape:cy="17.545086"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path47"
style="color:#000000;-inkscape-font-specification:Nasalization;fill:#2e3436;fill-opacity:1;stroke-width:1.05492;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 1.3828125,0.26757812 A 1.3829921,1.584612 0 0 0 0,1.8538372 v 2.2429907 a 1.3829921,1.584612 0 0 0 1.3828125,1.5822177 h 0.78125 V 14.68536 a 1.3829921,1.584612 0 0 0 1.3808594,1.582218 H 5.8671875 A 1.3829921,1.584612 0 0 0 7.25,14.68536 V 4.9131956 C 7.25,3.6191308 7.042902,2.2904757 6.1601562,1.3749284 5.2774116,0.4594017 4.1282215,0.26757812 2.7792969,0.26757812 Z m 12.2968755,0 c -0.635437,0 -1.205288,0.21893799 -1.583985,0.66279362 C 11.973535,1.0735585 11.997951,1.3308185 11.917969,1.5082955 11.907847,1.2480041 11.845415,0.95339528 11.628906,0.71819696 11.396542,0.46576688 11.034937,0.32415807 10.601562,0.32415806 H 8.2382812 A 0.42762552,0.44242336 0 0 0 7.8105469,0.76871476 V 1.4496948 a 0.42762552,0.44242336 0 0 0 0.4277343,0.442536 h 1.9648438 l -1.7949219,2.513766 a 0.42762552,0.44242336 0 0 0 0.34375,0.7052287 h 0.828125 A 0.42762552,0.44242336 0 0 0 9.921875,4.931382 l 1.621094,-2.2773426 a 0.42762552,0.44242336 0 0 0 0.002,-0.00404 c 0.0045,-0.00611 0.0076,-0.013681 0.01172,-0.020207 -0.0056,0.027937 -0.0098,0.058915 -0.0098,0.090932 0,0.7235507 0.168663,1.3429026 0.546875,1.7863097 0.378211,0.4434068 0.948154,0.6627936 1.585938,0.6627936 0.637783,0 1.205774,-0.2193868 1.583984,-0.6627936 0.378209,-0.4434071 0.546875,-1.062759 0.546875,-1.7863097 0,-0.7267828 -0.170134,-1.3465057 -0.548828,-1.79035106 C 14.88305,0.48651564 14.315138,0.26757972 13.679702,0.26757972 Z m 0,1.56605198 c 0.284297,0 0.386719,0.060848 0.466796,0.1636777 0.08007,0.1027993 0.154298,0.3289263 0.154297,0.7193736 0,0.394638 -0.0731,0.6209421 -0.152343,0.723415 -0.07925,0.1024827 -0.181042,0.161657 -0.46875,0.161657 -0.287708,0 -0.390294,-0.058521 -0.470704,-0.161657 -0.08041,-0.1031355 -0.158203,-0.3297252 -0.158203,-0.723415 0,-0.3904473 0.07595,-0.6166967 0.15625,-0.7193736 0.08031,-0.1026772 0.184949,-0.1636777 0.472657,-0.1636777 z M 11.693359,2.241814 c -0.0086,0.061076 -0.03019,0.1129613 -0.05273,0.1636777 0.01352,-0.054754 0.02796,-0.1097392 0.05273,-0.1636777 z M 8.6367188,6.0003389 A 0.82580669,0.94913867 0 0 0 7.8105469,6.9500736 v 8.3697904 a 0.82580669,0.94913867 0 0 0 0.8261719,0.947714 h 1.2734374 a 0.82580669,0.94913867 0 0 0 0.8242188,-0.947714 v -2.538015 c 0.514685,0.01203 0.870009,0.05693 0.925781,0.08487 0.06326,0.03161 0.07258,0.01811 0.246094,0.406164 l 1.109375,2.479413 A 0.82580669,0.94913867 0 0 0 13.75,16.267578 h 1.423828 a 0.82580669,0.94913867 0 0 0 0.734375,-1.384188 l -1.175781,-2.626926 c -0.232396,-0.520859 -0.457717,-0.958002 -0.779297,-1.327608 -0.03596,-0.04139 -0.09452,-0.04824 -0.132813,-0.08689 0.228458,-0.307775 0.570743,-0.496154 0.730469,-0.8628437 l 0.0039,-0.00202 1.142578,-2.6006567 a 0.82580669,0.94913867 0 0 0 -0.738282,-1.376105 h -1.371093 a 0.82580669,0.94913867 0 0 0 -0.734375,0.519323 l -1.111328,2.5036625 c -0.183436,0.4098408 -0.218418,0.430078 -0.244141,0.4445566 -0.02224,0.012541 -0.327328,0.052817 -0.763672,0.066684 V 6.9500736 A 0.82580669,0.94913867 0 0 0 9.9101562,6.0003389 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-1980s.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="2.6074561"
inkscape:cy="17.545086"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path51"
style="color:#000000;-inkscape-font-specification:Nasalization;fill:#2e3436;fill-opacity:1;stroke-width:1.05025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 1.3691409,0.33496098 A 1.3708504,1.584508 0 0 0 2.780655e-7,1.9208951 V 4.1632192 A 1.3708504,1.584508 0 0 0 1.3691409,5.7471149 h 0.7753906 v 9.0039481 a 1.3708504,1.584508 0 0 0 1.3691407,1.583896 H 5.8164065 A 1.3708504,1.584508 0 0 0 7.1875003,14.751063 V 4.9806479 C 7.1875003,3.686668 6.9804649,2.357341 6.1054691,1.4418536 5.2304743,0.52638699 4.0929417,0.33496098 2.7558597,0.33496098 Z m 12.5175781,0 c -0.629858,0 -1.192987,0.21867805 -1.56836,0.66250509 C 12.166693,1.1767862 12.04757,1.3849678 11.960938,1.6171628 11.910998,1.3090407 11.779449,1.0171638 11.546875,0.80177237 11.242751,0.52010704 10.817391,0.39203883 10.310547,0.39203883 H 9.4296883 c -0.506845,0 -0.932205,0.12806821 -1.236329,0.40973354 -0.304124,0.28166323 -0.439453,0.69515303 -0.439453,1.10281483 0,0.3896371 0.29618,0.6174246 0.539063,0.8704299 -0.250553,0.254788 -0.550781,0.4868734 -0.550781,0.8867367 0,0.4021782 0.132676,0.8158507 0.433593,1.1007776 0.300916,0.2849373 0.726817,0.4178869 1.236328,0.4178869 h 0.9140627 c 0.509511,0 0.938084,-0.1337345 1.240234,-0.4178869 0.222026,-0.2087963 0.352589,-0.4860437 0.40625,-0.7786981 0.08522,0.2205619 0.198434,0.4193001 0.34375,0.5911577 0.37489,0.4433783 0.938128,0.6625051 1.570313,0.6625051 0.632184,0 1.197375,-0.2191268 1.572265,-0.6625051 C 15.833873,4.1316128 16,3.5127897 16,2.7892856 16,2.0625502 15.832402,1.4412827 15.457031,0.99746607 15.08166,0.55363903 14.516576,0.33496098 13.886719,0.33496098 Z m 0,1.56758792 c 0.281799,0 0.383516,0.060256 0.46289,0.1630781 0.07937,0.102794 0.154297,0.3271216 0.154297,0.7175435 0,0.3946135 -0.07575,0.6211829 -0.154297,0.7236586 -0.07855,0.1024704 -0.177709,0.1630791 -0.46289,0.1630781 -0.285182,0 -0.389046,-0.061925 -0.46875,-0.1651164 -0.0797,-0.1031384 -0.154297,-0.3279555 -0.154297,-0.7216203 0,-0.3904219 0.0747,-0.6148737 0.154297,-0.7175435 0.07961,-0.1026583 0.183568,-0.1630781 0.46875,-0.1630781 z m -4.4746097,0.044847 h 0.9199217 c 0.119451,0 0.145682,0.023446 0.144531,0.022423 5.59e-4,0.00407 0.002,0.013644 0.002,0.04077 0,0.0071 -8.9e-5,0.00745 0,0.012231 -0.02479,0.0071 -0.07169,0.016307 -0.152344,0.016307 H 9.4180153 c -0.08267,0 -0.130639,-0.011218 -0.15625,-0.018346 1.32e-4,-0.00407 0,-0.00337 0,-0.010187 0,-0.026917 9.5e-5,-0.035267 0,-0.038732 -2.06e-4,1.535e-4 0.02931,-0.024461 0.15039,-0.024461 z m 2.3808597,0.458657 c -0.01129,0.1242545 -0.01953,0.2515368 -0.01953,0.383233 0,0.1165979 0.0068,0.2295377 0.01562,0.3404256 C 11.686208,3.0041113 11.561006,2.8914001 11.445309,2.7750171 11.561905,2.6535555 11.690253,2.5365265 11.792966,2.4060526 Z M 9.3964843,3.5149835 H 10.34375 c 0.109272,0 0.14668,0.017525 0.154297,0.020385 -5.49e-4,0.00407 -0.002,0.0026 -0.002,0.022424 0,0.029359 -0.0016,0.034253 -0.002,0.038731 -0.0015,1.837e-4 -0.03489,0.022423 -0.152344,0.022423 H 9.3963903 c -0.119571,0 -0.152897,-0.02538 -0.152343,-0.024461 -1.5e-4,-0.00407 0,-0.0091 0,-0.036692 0,-0.019068 -0.0012,-0.018353 -0.002,-0.022424 0.0081,-0.00303 0.04678,-0.020385 0.154296,-0.020385 z M 8.5605473,6.067156 a 0.81855671,0.94907637 0 0 0 -0.818359,0.9499295 v 8.3699825 a 0.81855671,0.94907637 0 0 0 0.818359,0.947891 h 1.261719 a 0.81855671,0.94907637 0 0 0 0.8183587,-0.947891 v -2.537903 c 0.510166,0.01203 0.862687,0.05565 0.917969,0.08358 0.06271,0.0316 0.07021,0.01967 0.242187,0.407696 l 1.09961,2.478787 a 0.81855671,0.94907637 0 0 0 0.728515,0.515734 h 1.41211 a 0.81855671,0.94907637 0 0 0 0.726562,-1.384125 L 14.603516,12.32324 c -0.230355,-0.520824 -0.454681,-0.957466 -0.773438,-1.327047 -0.03565,-0.04139 -0.0929,-0.04698 -0.130859,-0.08562 0.226452,-0.307755 0.566286,-0.495609 0.724609,-0.862274 l 0.002,-0.0041 1.132813,-2.5990567 A 0.81855671,0.94907637 0 0 0 14.828125,6.067156 H 13.46875 A 0.81855671,0.94907637 0 0 0 12.740234,6.5869664 L 11.638672,9.0902155 C 11.456846,9.5000294 11.42198,9.5201248 11.396484,9.534603 11.374434,9.547138 11.073139,9.588002 10.640625,9.601873 V 7.0191239 A 0.81855671,0.94907637 0 0 0 9.8222663,6.067156 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-1990s.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627417"
inkscape:cx="7.4909125"
inkscape:cy="12.750019"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path53"
style="color:#000000;-inkscape-font-specification:Nasalization;fill:#2e3436;fill-opacity:1;stroke-width:1.05232;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 1.3750002,0.3046874 A 1.3762663,1.5845101 0 0 0 2.2361623e-7,1.8904742 V 4.1341291 A 1.3762663,1.5845101 0 0 0 1.3750002,5.7178854 H 2.152344 v 9.0030456 a 1.3762663,1.5845101 0 0 0 1.3769531,1.583756 H 5.8378908 A 1.3762663,1.5845101 0 0 0 7.2148442,14.720931 V 4.9503727 c 0,-1.2940325 -0.207485,-2.6236185 -1.0859378,-3.5390863 C 5.2504547,0.49578784 4.1079897,0.3046874 2.7656252,0.3046874 Z m 12.5039058,0 c -0.632343,0 -1.199315,0.22014254 -1.576172,0.66395943 C 12.008909,1.3146873 11.936434,1.8363534 11.876953,2.3635707 11.825327,1.8097427 11.743561,1.2854341 11.458984,0.95240317 11.107811,0.54144681 10.59581,0.36357062 10.072266,0.36357062 H 9.4433592 c -0.539422,0 -0.991594,0.17477393 -1.28125,0.50355331 -0.289655,0.32878947 -0.388672,0.75820707 -0.388671,1.17969547 0,0.4308683 0.110785,0.8413492 0.398437,1.1208121 0.28765,0.2793611 0.683129,0.381726 1.125,0.381726 h 0.685547 c -0.05183,0.010199 -0.05691,0.032487 -0.128906,0.032487 H 8.6191412 A 0.42554587,0.4423949 0 0 0 8.1953122,4.024484 v 0.6802031 a 0.42554587,0.4423949 0 0 0 0.423829,0.4426395 h 1.234375 c 0.6258288,0 1.1914988,-0.1997533 1.5722648,-0.6395938 0.298435,-0.3447151 0.373156,-0.8786051 0.431641,-1.4213199 0.05133,0.5569887 0.136194,1.0959223 0.443359,1.4578681 0.376369,0.4433071 0.943439,0.661929 1.578125,0.661929 0.634688,0 1.199805,-0.2186219 1.576172,-0.661929 C 15.831446,4.1008726 16,3.4809631 16,2.7574793 16,2.030733 15.829981,1.4125044 15.453125,0.96864683 15.07627,0.52482994 14.511252,0.3046874 13.878906,0.3046874 Z m 0,1.5675127 c 0.282918,0 0.38516,0.059358 0.464844,0.1624366 0.07969,0.1027721 0.154297,0.3263596 0.154297,0.7167512 0,0.3946738 -0.07349,0.6224068 -0.152344,0.7248731 -0.07885,0.1024665 -0.180484,0.1644671 -0.466797,0.1644671 -0.286312,0 -0.388735,-0.063318 -0.46875,-0.1664975 -0.08002,-0.1030779 -0.15625,-0.3290865 -0.15625,-0.7228427 0,-0.3903916 0.07438,-0.614081 0.154297,-0.7167512 0.07991,-0.1026703 0.184391,-0.1624366 0.470703,-0.1624366 z m -4.4863278,0.056852 v 0.00203 h 0.521484 c 0.2425398,0 0.3371558,0.048232 0.4003908,0.1177665 0.0078,0.010199 0.01161,0.05579 0.01953,0.067005 H 9.3652332 c -0.05339,0 -0.08369,-0.010146 -0.09961,-0.012183 -5.68e-4,-0.010198 -0.002,-0.015076 -0.002,-0.050761 0,-0.083604 0.01801,-0.099484 0.01953,-0.1015226 0.0016,0 0.0078,-0.022335 0.109375,-0.022335 z M 8.5937502,6.0366672 A 0.82179059,0.9490776 0 0 0 7.7734382,6.986921 v 8.369543 a 0.82179059,0.9490776 0 0 0 0.820312,0.948223 h 1.267578 a 0.82179059,0.9490776 0 0 0 0.8222658,-0.948223 v -2.538072 c 0.512183,0.01224 0.864421,0.05775 0.919922,0.08528 0.06295,0.0316 0.07148,0.01825 0.24414,0.406092 l 1.105469,2.479187 a 0.82179059,0.9490776 0 0 0 0.730469,0.515736 h 1.416015 a 0.82179059,0.9490776 0 0 0 0.730469,-1.384771 l -1.167969,-2.627412 c -0.231265,-0.520794 -0.457328,-0.958326 -0.777343,-1.327919 -0.03579,-0.0418 -0.09276,-0.04653 -0.13086,-0.08528 0.227346,-0.307705 0.567614,-0.496307 0.726563,-0.862943 h 0.002 L 15.621094,7.4153474 A 0.82179059,0.9490776 0 0 0 14.884766,6.0386976 h -1.363282 a 0.82179059,0.9490776 0 0 0 -0.730468,0.519797 l -1.105469,2.5015229 c -0.182544,0.4097634 -0.218544,0.4301923 -0.244141,0.4446701 -0.02213,0.012235 -0.32359,0.054762 -0.757812,0.069035 V 6.9889515 A 0.82179059,0.9490776 0 0 0 9.8613282,6.0386976 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-2000s.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627417"
inkscape:cx="7.4467183"
inkscape:cy="12.705825"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path42"
style="color:#000000;-inkscape-font-specification:Nasalization;fill:#2e3436;fill-opacity:1;stroke-width:1.08289;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 1.1933558,1.1866804e-6 A 0.98568643,1.1311582 0 0 0 0.20595029,1.1313543 V 3.5332427 A 0.98568643,1.1311582 0 0 0 1.1933558,4.6626075 h 3.3818153 c 0.021434,0.084496 0.051969,0.1609745 0.051969,0.3976637 0,0.2104243 -0.024214,0.3000706 -0.030796,0.3240959 L 1.9805854,6.6867155 C 1.2304431,7.0560524 0.6402765,7.7898896 0.35415729,8.6571389 0.06803908,9.5244895 1.7518869e-7,10.494451 1.7518869e-7,11.673417 v 2.075805 c 0,0.473277 0.0266590048113,0.906148 0.24444540481131,1.373928 0.21778611,0.467778 0.79362902,0.876848 1.26649662,0.876848 h 5.0274912 a 0.98568643,1.1311582 0 0 0 0.985481,-1.129364 V 12.468745 A 0.98568643,1.1311582 0 0 0 6.5384334,11.335403 H 3.0854015 c 0.00828,-0.16787 0.017939,-0.31693 0.026947,-0.363861 L 5.6241693,9.7427599 a 0.98568643,1.1311582 0 0 0 0.0077,0 C 6.3396983,9.3893047 6.9257184,8.7282147 7.2525234,7.9055545 7.5793264,7.0829961 7.6913704,6.135594 7.6913704,5.0224932 7.6913704,3.6436897 7.5254914,2.500487 7.0715944,1.5767376 6.6176944,0.65288625 5.7388653,0.0039778 4.8099928,0.0039778 Z m 8.8038837,0 c -0.65177,0 -1.234149,0.2506240433196 -1.6225781,0.7555608833196 -0.388432,0.50493703 -0.563957,1.20920383 -0.563957,2.03603803 0,0.8232711 0.1721741,1.525645 0.560108,2.0300728 0.38793,0.5045297 0.97225,0.7555609 1.6264271,0.7555609 0.6541805,0 1.2384935,-0.2510312 1.6264285,-0.7555609 0.183217,-0.238216 0.2199,-0.601535 0.279091,-0.9464394 0.05918,0.3448027 0.09397,0.7082234 0.277166,0.9464394 0.387935,0.5045297 0.972247,0.7555609 1.626428,0.7555609 0.654177,0 1.238497,-0.2510312 1.626429,-0.7555609 0.387933,-0.5044278 0.560106,-1.2068017 0.560106,-2.0300728 0,-0.8268342 -0.175524,-1.531101 -0.563956,-2.03603803 C 15.040503,0.25062523 14.458123,1.1866804e-6 13.806353,1.1866804e-6 13.15458,1.1866804e-6 12.570283,0.24863688 12.18185,0.75357377 12.070608,0.89813237 11.978748,1.0602109 11.902759,1.2367352 11.82671,1.0599054 11.733143,0.89833597 11.621743,0.75357377 11.233311,0.24863688 10.649012,1.1866804e-6 9.9972395,1.1866804e-6 Z m 0,1.7815332133196 c 0.2951025,0 0.4026645,0.070237 0.4850415,0.1869019 0.08237,0.1167667 0.159756,0.3729358 0.159756,0.8171987 0,0.447928 -0.07728,0.7037981 -0.159756,0.8211755 -0.08248,0.1176829 -0.189937,0.186902 -0.4850415,0.186902 -0.2951024,0 -0.397984,-0.068248 -0.4792671,-0.1849136 C 9.4366924,3.4922358 9.3582175,3.234581 9.3582175,2.785635 c 0,-0.4442629 0.07954,-0.7003303 0.16168,-0.8171987 0.08214,-0.1176828 0.1857401,-0.1869019 0.477342,-0.1869019 z m 3.8091135,0 c 0.291602,0 0.395208,0.069219 0.477343,0.1869019 0.08214,0.1168684 0.161679,0.3729358 0.161679,0.8171987 0,0.448946 -0.07847,0.7066008 -0.159755,0.8231639 -0.08128,0.1166649 -0.184164,0.1849136 -0.479267,0.1849136 -0.295105,0 -0.402566,-0.069219 -0.485042,-0.186902 -0.08247,-0.1173774 -0.159755,-0.3732475 -0.159755,-0.8211755 0,-0.4442629 0.0774,-0.700432 0.159755,-0.8171987 0.08238,-0.1168684 0.189939,-0.1869019 0.485042,-0.1869019 z M 8.6364294,5.7482293 a 0.82576681,0.94763699 0 0 0 -0.825725,0.9484278 v 8.3569009 a 0.82576681,0.94763699 0 0 0 0.825725,0.94644 h 1.2722715 a 0.82576681,0.94763699 0 0 0 0.8257241,-0.94644 v -2.533117 c 0.514661,0.01222 0.870043,0.05602 0.925813,0.08351 0.06326,0.03156 0.07095,0.01837 0.244445,0.405618 l 1.11059,2.475456 a 0.82576681,0.94763699 0 0 0 0.733337,0.514974 h 1.424327 a 0.82576681,0.94763699 0 0 0 0.735261,-1.381881 l -1.176032,-2.62458 c -0.232384,-0.520004 -0.457967,-0.955189 -0.779531,-1.32422 -0.03596,-0.04173 -0.09452,-0.0488 -0.132808,-0.08749 0.228446,-0.307237 0.571694,-0.494862 0.731411,-0.8609411 h 0.0019 l 1.1433,-2.5967414 a 0.82576681,0.94763699 0 0 0 -0.73911,-1.3739279 h -1.370435 a 0.82576681,0.94763699 0 0 0 -0.733336,0.518951 l -1.11248,2.4993162 c -0.183426,0.4092434 -0.218722,0.4289389 -0.244444,0.443395 -0.02224,0.012221 -0.325885,0.053345 -0.762208,0.067601 V 6.6986454 A 0.82576681,0.94763699 0 0 0 9.9087009,5.7502176 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 5.1 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-2010s.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627417"
inkscape:cx="7.4467183"
inkscape:cy="16.241359"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path57"
style="color:#000000;-inkscape-font-specification:Nasalization;fill:#2e3436;fill-opacity:1;stroke-width:1.0828;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 1.1933303,8.5994444e-7 A 0.98565307,1.1310178 0 0 0 0.20595831,1.1312139 v 2.40159 a 0.98565307,1.1310178 0 0 0 0.98737199,1.131212 h 3.3817011 c 0.021384,0.08448 0.053891,0.158966 0.053891,0.395627 0,0.210398 -0.026216,0.300034 -0.03272,0.324056 L 1.9805327,6.6858849 C 1.2304208,7.0551759 0.64027413,7.7889219 0.35415965,8.6560629 0.06805502,9.5233069 1.4525e-5,10.493148 1.4525e-5,11.671968 v 2.075546 c 0,0.473218 0.028558495,0.908024 0.246361825,1.375746 0.21778364,0.467721 0.79167245,0.876739 1.26452915,0.876739 h 5.0292461 a 0.98565307,1.1310178 0 0 0 0.9854473,-1.131212 v -2.40159 A 0.98565307,1.1310178 0 0 0 6.5401516,11.333996 H 3.0872369 c 0.00788,-0.16785 0.016054,-0.316892 0.025021,-0.363817 L 5.6259184,9.7415509 a 0.98565307,1.1310178 0 0 0 0.0077,0 c 0.7078067,-0.353412 1.2918805,-1.01442 1.6186742,-1.836978 0.3267937,-0.822456 0.4407567,-1.767753 0.4407567,-2.880716 0,-1.378632 -0.1658771,-2.521693 -0.619754,-3.445328 C 6.6194086,0.65479286 5.7386883,0.00596486 4.809846,0.00596486 Z m 12.6183447,0 c -0.651755,0 -1.2341,0.24857400005556 -1.622524,0.75347900005556 -0.626231,0.81405904 -0.680385,3.18536704 -0.002,4.06759404 0.387911,0.504417 0.970279,0.755468 1.624449,0.755468 0.654158,0 1.240376,-0.251051 1.628298,-0.755468 0.38791,-0.504406 0.560087,-1.206723 0.560087,-2.029821 0,-0.826752 -0.173599,-1.532858 -0.562013,-2.03777304 C 15.049549,0.24857486 14.463344,8.5994444e-7 13.8116,8.5994444e-7 Z M 8.8113,0.06760086 c -0.2422129,-1.42e-4 -0.4386842,0.225047 -0.438832,0.502983 V 1.3459319 c 1.478e-4,0.277934 0.1966191,0.503124 0.438832,0.502981 h 0.1924702 v 1.880716 H 8.8113 c -0.2422129,-1.44e-4 -0.4386842,0.225044 -0.438832,0.50298 v 0.775348 c 1.478e-4,0.277936 0.1966191,0.503124 0.438832,0.502982 h 0.4080368 c 0.055994,0 0.1110188,-0.0024 0.1655243,-0.006 0.017938,0.0026 0.037266,0.0059 0.055817,0.006 h 0.6774949 c 0.02175,1.4e-5 0.04261,-0.0024 0.06351,-0.006 0.05444,0.0036 0.1096,0.006 0.165524,0.006 h 0.408036 c 0.242213,1.42e-4 0.438685,-0.225046 0.438833,-0.502982 v -0.775348 c -1.48e-4,-0.277936 -0.19662,-0.503124 -0.438833,-0.502982 h -0.19247 V 0.57058186 c -1.41e-4,-0.262769 -0.176247,-0.478493 -0.400338,-0.500995 -0.01218,-0.0014 -0.02411,-0.0017 -0.03657,-0.002 h -0.0077 -0.6774952 c -0.020525,9.1e-5 -0.041824,7.58e-4 -0.06159,0.004 -0.052553,-0.0033 -0.1058242,-0.004 -0.1597503,-0.004 z m 5.000375,1.71570604 c 0.291583,0 0.399038,0.06799 0.481175,0.184891 0.08209,0.116946 0.157825,0.372941 0.157825,0.817097 0,0.448931 -0.07647,0.706493 -0.157825,0.823062 -0.0812,0.116579 -0.186084,0.186879 -0.481175,0.186879 -0.295102,0 -0.398704,-0.06961 -0.481176,-0.186879 -0.08248,-0.117323 -0.161675,-0.37521 -0.161675,-0.823062 0,-0.444167 0.07736,-0.698316 0.15975,-0.815109 0.08238,-0.116803 0.187999,-0.186879 0.483101,-0.186879 z m -5.1755229,3.96421 a 0.82573886,0.94751932 0 0 0 -0.825697,0.950298 v 8.3538761 a 0.82573886,0.94751932 0 0 0 0.825697,0.94831 h 1.2741526 a 0.82573886,0.94751932 0 0 0 0.8256963,-0.94831 v -2.532803 c 0.514649,0.01221 0.870015,0.05602 0.925782,0.0835 0.06326,0.03156 0.07097,0.01836 0.244437,0.405567 l 1.108628,2.477137 a 0.82573886,0.94751932 0 0 0 0.735237,0.512922 h 1.422354 a 0.82573886,0.94751932 0 0 0 0.735236,-1.381709 L 14.733607,11.994038 C 14.501229,11.4741 14.27373,11.03698 13.952178,10.667995 c -0.03597,-0.04173 -0.09261,-0.04681 -0.13088,-0.08549 0.228436,-0.307199 0.569751,-0.4948 0.729462,-0.8608341 h 0.002 l 1.143273,-2.596421 a 0.82573886,0.94751932 0 0 0 -0.737161,-1.375746 h -1.370388 a 0.82573886,0.94751932 0 0 0 -0.735235,0.518887 l -1.110554,2.499005 c -0.18342,0.409193 -0.220641,0.428886 -0.246362,0.44334 -0.02227,0.01222 -0.325875,0.05533 -0.762181,0.06958 V 6.6998009 A 0.82573886,0.94751932 0 0 0 9.9103047,5.7495029 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 5 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-2020s.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627417"
inkscape:cx="7.4467183"
inkscape:cy="16.241359"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path59"
style="color:#000000;-inkscape-font-specification:Nasalization;fill:#2e3436;fill-opacity:1;stroke-width:1.07577;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 1.1777276,1.8776753e-5 A 0.97277816,1.1311549 0 0 0 0.203253,1.1313688 v 2.401881 a 0.97277816,1.1311549 0 0 0 0.9744746,1.129362 h 3.3375282 c 0.021105,0.0845 0.051288,0.160973 0.051288,0.397662 0,0.210424 -0.023974,0.30007 -0.030393,0.324095 L 1.9546479,6.6867128 C 1.2143343,7.0560498 0.6318963,7.7898838 0.3495192,8.6571308 0.0671517,9.5244798 0,10.494438 0,11.673401 v 2.075798 c 0,0.473276 0.026286,0.906146 0.2412442,1.373925 0.2149389,0.467777 0.783231,0.876845 1.2499109,0.876845 H 6.4528077 A 0.97277816,1.1311549 0 0 0 7.4253828,14.870608 V 12.468726 A 0.97277816,1.1311549 0 0 0 6.4528077,11.335389 H 3.0449958 c 0.00778,-0.167871 0.017743,-0.316931 0.026594,-0.363862 L 5.5505166,9.7427488 a 0.97277816,1.1311549 0 0 0 0.0076,0 c 0.698561,-0.353454 1.276905,-1.014542 1.5994301,-1.8372 0.322525,-0.822556 0.4330998,-1.769955 0.4330998,-2.883053 0,-1.378799 -0.1637103,-2.521999 -0.6116586,-3.445745 C 6.5310281,0.65290178 5.6637116,0.00399478 4.7470022,0.00399478 Z M 13.842099,0.00201878 c -0.643231,0 -1.219889,0.248594 -1.60323,0.753571 -0.173954,0.229144 -0.160214,0.62031102 -0.250741,0.92456502 -0.02782,-0.442429 -0.125159,-0.87203102 -0.387511,-1.15719802 -0.295166,-0.320817 -0.703516,-0.457312 -1.145435,-0.457312 H 8.2649887 a 0.43287506,0.50335092 0 0 0 -0.4312003,0.503043 V 1.3441298 a 0.43287506,0.50335092 0 0 0 0.4312003,0.505031 h 1.9698453 l -1.3524886,0.361873 c -0.3828436,0.101191 -0.7127508,0.294884 -0.9174874,0.626318 -0.2051937,0.33222 -0.2564407,0.725335 -0.2564407,1.137316 v 0.670013 c 0,0.203267 0.049991,0.450086 0.2070522,0.630295 0.1570901,0.180208 0.3674913,0.23661 0.5432743,0.236609 h 3.0411972 a 0.43287506,0.50335092 0 0 0 0.433099,-0.503043 v -0.767488 c 0.07674,0.216063 0.177071,0.412912 0.305829,0.582575 0.382854,0.504457 0.957616,0.753571 1.60323,0.753571 0.645614,0 1.222265,-0.249114 1.605128,-0.753571 C 15.830072,4.3191878 16,3.6147968 16,2.7916098 c 0,-0.826873 -0.171332,-1.531056 -0.554672,-2.03603202 -0.38334,-0.504976 -0.959998,-0.753571 -1.603229,-0.753571 z m 0,1.77954002 c 0.287795,0 0.390037,0.06993 0.471091,0.186901 0.08111,0.11695 0.159563,0.370997 0.159563,0.815208 0,0.448986 -0.07742,0.710535 -0.157663,0.827138 -0.08024,0.116594 -0.181744,0.182924 -0.472991,0.182924 -0.291238,0 -0.397295,-0.06759 -0.47869,-0.184912 -0.0814,-0.117357 -0.157663,-0.377253 -0.157663,-0.82515 0,-0.444211 0.07635,-0.69839 0.157663,-0.815208 0.08131,-0.116817 0.187452,-0.186901 0.47869,-0.186901 z m -2.12181,1.14328 c 0.01002,0.364541 0.04892,0.709268 0.125372,1.021992 a 0.43287506,0.50335092 0 0 0 -0.34572,-0.216727 H 9.953698 l 0.856702,-0.22269 a 0.43287506,0.50335092 0 0 0 0.0019,-0.002 c 0.363324,-0.09691 0.680061,-0.269353 0.90419,-0.570645 0.0017,-0.0025 0.0026,-0.0067 0.0038,-0.01 z m -3.1969601,2.823403 a 0.8149528,0.94763422 0 0 0 -0.8149116,0.948425 v 8.3568772 a 0.8149528,0.94763422 0 0 0 0.8149116,0.946437 H 9.778939 a 0.8149528,0.94763422 0 0 0 0.814911,-0.946437 v -2.53311 c 0.507927,0.01222 0.858651,0.05602 0.913689,0.08351 0.06244,0.03156 0.07004,0.01836 0.241244,0.405616 l 1.096046,2.47545 a 0.8149528,0.94763422 0 0 0 0.723733,0.514972 h 1.405675 a 0.8149528,0.94763422 0 0 0 0.725632,-1.381877 L 14.539238,11.993486 C 14.309895,11.473484 14.087267,11.0383 13.769915,10.66927 c -0.0355,-0.04174 -0.0933,-0.0488 -0.131069,-0.08749 0.225452,-0.307237 0.564208,-0.494861 0.721833,-0.8609402 h 0.0019 l 1.128339,-2.596735 A 0.8149528,0.94763422 0 0 0 14.761487,5.7502168 H 13.409 a 0.8149528,0.94763422 0 0 0 -0.723732,0.518949 l -1.097947,2.499309 c -0.181025,0.409242 -0.215859,0.428938 -0.241244,0.443393 -0.02198,0.01222 -0.321618,0.05335 -0.752226,0.06761 V 6.6986458 A 0.8149528,0.94763422 0 0 0 9.77894,5.7502208 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-children's_new_year_songs.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627417"
inkscape:cx="4.1321553"
inkscape:cy="13.987456"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path220"
style="stroke-width:0.516311;fill:#2e3436;fill-opacity:1"
d="M 8.0214844 0 C 5.9663164 0.007999992 3.9097209 0.79543718 2.3515625 2.3535156 C -0.76475441 5.4696725 -0.79247067 10.574877 2.3164062 13.683594 C 5.4252731 16.792301 10.532131 16.764604 13.648438 13.648438 C 16.106085 11.19092 16.641424 7.4947151 15.234375 4.5175781 C 15.352345 4.4665782 15.463877 4.3935449 15.560547 4.296875 L 15.666016 4.1933594 C 16.075145 3.7842398 16.075155 3.1239633 15.666016 2.7148438 L 15.1875 2.2363281 C 15.30815 1.8735385 15.225247 1.4576985 14.935547 1.1679688 L 14.830078 1.0625 C 14.540218 0.77266029 14.124638 0.689707 13.761719 0.81054688 L 13.283203 0.33398438 C 12.874064 -0.075135216 12.217733 -0.075125216 11.808594 0.33398438 L 11.703125 0.43945312 C 11.606325 0.53625303 11.533412 0.64752512 11.482422 0.765625 C 10.393113 0.25111551 9.2072232 -0.0047399953 8.0214844 0 z M 7.8886719 1.9550781 C 8.1097675 1.9491563 8.3320877 1.9540325 8.5546875 1.9726562 C 9.8572162 2.0882361 11.082969 2.6234377 12.048828 3.4980469 C 12.090928 3.5663468 12.141922 3.6321063 12.201172 3.6914062 L 12.304688 3.7949219 C 12.378487 3.8687218 12.463611 3.9293725 12.550781 3.9765625 C 14.655839 6.3619801 14.52719 9.9889751 12.257812 12.257812 C 9.8859947 14.62968 6.0568658 14.64591 3.7050781 12.294922 C 1.3520805 9.9435845 1.3674667 6.112722 3.7402344 3.7402344 C 4.851702 2.6292042 6.3410023 1.9965312 7.8886719 1.9550781 z M 8.6777344 3.1738281 C 8.4362921 3.1739856 8.1938504 3.2669021 8.0097656 3.4511719 C 7.7525359 3.7088016 7.6668626 4.0906541 7.7890625 4.4335938 C 7.6533626 4.5108937 7.5291286 4.6052639 7.4179688 4.7148438 C 7.130989 5.0049735 6.9514062 5.384976 6.9101562 5.7910156 L 5.1367188 5.3164062 C 4.8019191 5.2266063 4.4608037 5.424916 4.3710938 5.7597656 L 4.3476562 5.8457031 C 4.2579563 6.1805228 4.456106 6.5216682 4.7910156 6.6113281 L 5.4921875 6.7988281 C 5.4821875 6.8231281 5.4731437 6.8484469 5.4648438 6.8730469 C 4.6932045 7.1565366 3.8039466 7.8461404 3.4980469 8.25 C 3.2846571 8.5315697 3.2117677 8.9070291 3.3984375 9.2304688 L 3.4589844 9.3339844 C 3.6522495 9.6687091 4.0364678 9.8193258 4.3925781 9.7285156 C 4.3122601 10.410556 4.5333367 11.121227 5.0566406 11.644531 C 5.9374151 12.525305 7.3498791 12.551841 8.2617188 11.722656 C 8.2785127 11.707766 8.2943729 11.691301 8.3105469 11.675781 L 11.080078 8.90625 C 11.168318 9.2560429 11.149649 9.6358811 11.130859 10.003906 C 11.127359 10.072906 11.123894 10.141015 11.121094 10.208984 L 12.746094 10.162109 C 12.788188 8.9426845 12.49302 7.7530777 11.810547 6.7167969 L 9.2695312 9.2578125 L 8.8652344 7.7460938 C 9.271274 7.7048938 9.6511465 7.525121 9.9414062 7.2382812 C 10.051056 7.1271314 10.145436 7.0028774 10.222656 6.8671875 C 10.565586 6.9893874 10.947438 6.9036841 11.205078 6.6464844 C 11.573608 6.2783047 11.575191 5.6811396 11.207031 5.3125 C 10.951052 5.0566903 10.570235 4.9688407 10.228516 5.0878906 C 10.151616 4.9514208 10.057186 4.8263336 9.9472656 4.7148438 L 9.9414062 4.7070312 C 9.8306564 4.5962814 9.7028761 4.5026812 9.5664062 4.4257812 C 9.6854561 4.0840716 9.5995697 3.7051785 9.34375 3.4492188 C 9.1594252 3.2651289 8.9191766 3.1736706 8.6777344 3.1738281 z M 8.3496094 5.0332031 C 8.4103768 5.0328156 8.4717082 5.0552625 8.5175781 5.1015625 C 8.609578 5.1933624 8.6088249 5.3434501 8.515625 5.4375 C 8.4219251 5.5307999 8.2714874 5.531953 8.1796875 5.4394531 C 8.0876876 5.3476532 8.0884407 5.1975855 8.1816406 5.1035156 C 8.2285406 5.0567657 8.2888419 5.0335906 8.3496094 5.0332031 z M 8.2285156 5.8359375 C 8.3356779 5.821612 8.4853658 5.8876045 8.6113281 6.0136719 L 8.625 6.0253906 L 8.6308594 6.0332031 C 8.6348594 6.0362031 8.6400313 6.0404219 8.6445312 6.0449219 C 8.8126411 6.2128617 8.8728268 6.4252413 8.7792969 6.5195312 C 8.685697 6.6140312 8.4731573 6.5535055 8.3046875 6.3847656 L 8.2929688 6.3730469 L 8.2851562 6.3652344 C 8.2811563 6.3622344 8.2779375 6.3580156 8.2734375 6.3535156 C 8.1046677 6.1850558 8.044232 5.9724362 8.1386719 5.8789062 C 8.1621469 5.8556313 8.1927949 5.8407127 8.2285156 5.8359375 z M 9.3886719 6.0722656 C 9.4494381 6.0718781 9.5107757 6.094325 9.5566406 6.140625 C 9.6487405 6.2324249 9.6478874 6.3825126 9.5546875 6.4765625 C 9.4609876 6.5699624 9.3105599 6.5710155 9.21875 6.4785156 C 9.1267501 6.3867157 9.1275032 6.236638 9.2207031 6.1425781 C 9.2676031 6.0958282 9.3279057 6.0726531 9.3886719 6.0722656 z " />
</svg>

Before

Width:  |  Height:  |  Size: 5.3 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-circle_of_king&amp;fool.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="3.46875"
inkscape:cy="18.46875"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path258"
style="fill:#2e3436;fill-opacity:1;stroke-width:4.13876;paint-order:stroke markers fill"
d="M 1.0917969 0.47460938 C 0.48735011 0.47460938 1.4802959e-16 0.96196909 0 1.5664062 L 0 14.433594 C 0 15.038031 0.48735011 15.525391 1.0917969 15.525391 L 1.2460938 15.525391 C 1.8505308 15.525391 2.3378906 15.038031 2.3378906 14.433594 L 2.3378906 13.167969 L 3.3828125 14.978516 C 3.6276883 15.402647 4.1096275 15.59916 4.5625 15.498047 C 4.637435 15.514203 4.7150162 15.525391 4.7949219 15.525391 L 4.9511719 15.525391 C 5.5556187 15.525391 6.0410156 15.038031 6.0410156 14.433594 L 6.0410156 13.466797 L 6.3652344 13.279297 L 6.3652344 14.433594 C 6.3652344 15.038031 6.8506313 15.525391 7.4550781 15.525391 L 7.6113281 15.525391 C 7.9730401 15.525391 8.2899923 15.349566 8.4882812 15.080078 C 8.6865186 15.3501 9.007009 15.525391 9.3691406 15.525391 L 9.390625 15.525391 L 9.5234375 15.525391 L 14.908203 15.525391 C 15.51264 15.525391 16 15.038031 16 14.433594 L 16 14.277344 L 16 1.5664062 C 16 0.96196909 15.51264 0.47460938 14.908203 0.47460938 L 14.753906 0.47460938 C 14.14946 0.47460938 13.662109 0.96196909 13.662109 1.5664062 L 13.662109 13.1875 L 13.306641 13.1875 L 13.306641 5.3828125 C 13.306641 4.7783753 12.821234 4.2929687 12.216797 4.2929688 L 12.060547 4.2929688 C 11.4561 4.2929688 10.970703 4.7783753 10.970703 5.3828125 L 10.970703 13.1875 L 10.615234 13.1875 L 10.615234 1.5664062 C 10.615234 0.96196909 10.127875 0.47460938 9.5234375 0.47460938 L 9.3691406 0.47460938 C 8.7646938 0.47460938 8.2773438 0.96196909 8.2773438 1.5664062 L 8.2773438 8.8984375 C 8.092916 8.7556706 7.8636499 8.6679688 7.6113281 8.6679688 L 7.4550781 8.6679688 C 6.8506313 8.6679688 6.3652344 9.1553285 6.3652344 9.7597656 L 6.3652344 10.582031 L 6.0410156 10.769531 L 6.0410156 9.7597656 C 6.0410156 9.1553285 5.5556187 8.6679688 4.9511719 8.6679688 L 4.7949219 8.6679688 C 4.1904751 8.6679688 3.7050781 9.1553285 3.7050781 9.7597656 L 3.7050781 10.861328 L 2.6015625 8.9492188 C 2.649684 8.8948421 2.6946452 8.8349635 2.7324219 8.7695312 L 5.9667969 3.1660156 C 6.2690107 2.6425576 6.0918174 1.977995 5.5683594 1.6757812 L 5.4335938 1.5976562 C 4.9101358 1.2954329 4.2455828 1.4726358 3.9433594 1.9960938 L 2.3378906 4.7773438 L 2.3378906 1.5664062 C 2.3378906 0.96196909 1.8505308 0.47460938 1.2460938 0.47460938 L 1.0917969 0.47460938 z " />
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 15 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-for_exam.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="0.40625"
inkscape:cy="14.28125"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path293"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.11322;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 8.4996926,-1.375e-6 c -3.9908402,0 -7.2750238,3.284244475 -7.2750238,7.275024275 0,0.7606958 0.1199956,1.4971082 0.3408012,2.1886131 C 1.9310318,9.322431 2.2278375,9.206988 2.6371226,9.0499468 L 3.6477067,8.6618674 C 3.5614097,8.3632409 3.503939,8.0519473 3.4743512,7.734021 H 3.716655 c 0.2370932,0 0.4276127,-0.1904082 0.427479,-0.427479 V 7.2454735 C 4.1440005,7.0083906 3.9537371,6.8179945 3.716655,6.8179945 H 3.4723812 C 3.5270356,6.2197058 3.6874517,5.6510743 3.9353194,5.1297479 L 4.1264045,5.240064 c 0.2053288,0.1185465 0.4666552,0.047779 0.585075,-0.1575959 l 0.031519,-0.051219 C 4.8614241,4.8258635 4.7907215,4.5647161 4.5854027,4.4461747 L 4.4021975,4.3397972 C 4.7345137,3.87915 5.1433488,3.4772717 5.6078066,3.1499481 l 0.098497,0.169416 C 5.8248563,3.524616 6.0861363,3.5936022 6.291379,3.4749892 L 6.344568,3.4454412 C 6.5498104,3.3267269 6.618726,3.0657188 6.5001938,2.8603659 L 6.4016963,2.69095 C 6.9095116,2.4563262 7.4613794,2.3027324 8.0406944,2.2496813 v 0.2009351 c 0,0.2370233 0.1904045,0.4272772 0.427479,0.4274789 H 8.529242 C 8.7663064,2.8781962 8.958691,2.6877406 8.958691,2.4506164 V 2.2496813 c 0.5761928,0.052994 1.12562,0.2046256 1.631119,0.4373281 l -0.100469,0.1733565 c -0.118542,0.2053529 -0.04962,0.466361 0.155627,0.5850749 l 0.05318,0.031519 c 0.205243,0.1186131 0.466523,0.047656 0.585076,-0.1575959 l 0.100468,-0.1753254 c 0.464136,0.3258398 0.870874,0.7270424 1.203639,1.1859094 l -0.191085,0.1103172 c -0.05443,0.031433 -0.09759,0.072457 -0.131987,0.1201662 L 8.9114121,6.4831024 8.9252017,4.0915843 C 8.927219,3.85456 8.7347669,3.6624371 8.4977227,3.6621345 H 8.4366547 C 8.19956,3.6618319 8.0086077,3.8525901 8.0072058,4.0896145 l -0.01576,2.5806332 C 7.800194,6.8205927 7.6768535,7.0521443 7.6762537,7.3144213 c -1.412e-4,0.4551876 0.3682619,0.8256103 0.8234389,0.8254085 0.455177,2.018e-4 0.8255497,-0.3702209 0.8254085,-0.8254085 -8e-6,-0.00408 -0.00192,-0.00776 -0.00202,-0.01182 L 13.071898,5.1514169 c 0.242096,0.5154584 0.399186,1.0765151 0.453089,1.6665776 h -0.262004 c -0.237082,0 -0.427345,0.1903961 -0.427479,0.427479 v 0.061069 c -1.33e-4,0.2370708 0.190386,0.427479 0.427479,0.427479 h 0.267913 c -0.04188,0.5977794 -0.172684,1.138672 -0.405762,1.6429377 L 12.853281,9.2193627 C 12.647962,9.1008213 12.386862,9.1697359 12.268206,9.3749889 l -0.03152,0.053188 c -0.118651,0.2052429 -0.04774,0.4665285 0.157596,0.5850751 l 0.269883,0.155627 c 0.0885,0.05164 0.714895,0.420162 0.529917,1.073622 -0.07474,0.264055 -0.213101,0.422941 -0.303372,0.490517 -0.180482,0.13808 -0.224458,0.117962 -0.246244,0.128048 -0.479879,0.181852 -1.298444,0.444181 -2.013289,0.685542 l 0.02758,1.022404 c 0.0071,0.246303 0.005,0.455925 0,0.650083 2.950597,-0.928933 5.11596,-3.7036 5.11596,-6.9440723 0,-3.9907798 -3.284184,-7.275024275 -7.2750244,-7.275024075 z M 6.0195261,8.7524843 c -0.3193261,0 -0.6378496,0.044655 -0.8825375,0.1339571 L 0.59231486,10.543169 c -0.4893758,0.178603 -0.4893758,0.467541 0,0.646144 l 0.25806342,0.09456 -0.0157596,2.655492 c -0.002017,0.237125 0.20023862,0.496926 0.42747912,0.42945 h 0.061069 c 0.2370947,6.05e-4 0.4280673,-0.188485 0.4294491,-0.425509 l 0.01379,-2.326511 0.4353589,0.159565 v 2.35212 c 0,0 -0.00258,0.427729 0.1280467,0.614625 0.1307465,0.186795 0.5299164,0.291552 0.5299164,0.291552 l 2.2477126,0.819499 c 0.5327494,0.194461 1.3879614,0.194461 1.9207008,0 l 2.0132885,-0.734791 c 0,0 0.4862596,-0.214126 0.6658433,-0.470817 0.1795727,-0.256693 0.1772952,-0.817529 0.1772952,-0.817529 V 11.79212 l 1.6074787,-0.587045 c 0.489376,-0.178602 0.489376,-0.465571 0,-0.644173 L 6.9040335,8.8864414 C 6.6593455,8.7971397 6.3388521,8.7524843 6.0195261,8.7524843 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-forgotten.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627417"
inkscape:cx="7.8002717"
inkscape:cy="11.645165"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="rect102"
style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1.83029;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;paint-order:stroke fill markers"
d="M 10.160156 0.21289062 L 10.160156 7.7636719 C 9.4641513 7.2977871 8.6269902 7.0273437 7.7265625 7.0273438 C 7.1335866 7.0273438 6.5685285 7.1458477 6.0527344 7.359375 L 6.0527344 5.2617188 C 6.0527344 5.1622318 6.0336628 5.0648415 5.9980469 4.9785156 L 8.671875 4.9785156 C 9.0786627 4.9785156 9.4042969 4.6509283 9.4042969 4.2441406 L 9.4042969 1.2714844 C 9.4042969 0.86469674 9.0786627 0.53710938 8.671875 0.53710938 L 5.5351562 0.53710938 C 5.1283687 0.53710938 4.8046875 0.86469667 4.8046875 1.2714844 L 4.8046875 4.2441406 C 4.8046875 4.3436275 4.8218059 4.4390647 4.8574219 4.5253906 L 3.0507812 4.5253906 L 3.0507812 3.1699219 C 3.0507812 2.7631343 2.7251569 2.4355469 2.3183594 2.4355469 L 0.73632812 2.4355469 C 0.32954046 2.4355469 -1.4802959e-16 2.7631343 0 3.1699219 L 0 4.6464844 C 0 5.053272 0.32954046 5.3789062 0.73632812 5.3789062 L 2.21875 5.3789062 L 2.21875 7.4941406 C 2.21875 7.9009382 2.5424213 8.2285156 2.9492188 8.2285156 L 4.7128906 8.2285156 C 3.8715012 9.0266898 3.3457031 10.154952 3.3457031 11.40625 C 3.3457031 11.608698 3.3601308 11.808756 3.3867188 12.003906 L 3.0507812 12.003906 L 3.0507812 10.650391 C 3.0507812 10.243603 2.7251471 9.9140625 2.3183594 9.9140625 L 0.73632812 9.9140625 C 0.32953059 9.9140625 7.4014794e-17 10.243603 0 10.650391 L 0 12.123047 C 0 12.529844 0.32953059 12.857422 0.73632812 12.857422 L 2.21875 12.857422 L 2.21875 14.972656 L 2.21875 15.091797 C 2.21875 15.364706 2.4380291 15.582031 2.7109375 15.582031 L 5.5585938 15.582031 C 5.7116069 15.582031 5.8470957 15.512738 5.9375 15.404297 C 6.4840258 15.649338 7.0888324 15.787109 7.7265625 15.787109 C 10.074782 15.787109 11.99138 13.939999 12.101562 11.619141 C 12.104062 11.576901 12.106522 11.534427 12.107422 11.492188 L 12.107422 4.1074219 C 12.691335 4.456086 13.169211 4.9863203 13.634766 5.5019531 C 13.722076 5.598617 13.809564 5.6947739 13.896484 5.7890625 L 16 3.5605469 C 14.430569 1.8788883 12.451327 0.68453179 10.160156 0.21289062 z " />
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 34 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.8 KiB

View file

@ -1,40 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-new_year's_tales.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="1.09375"
inkscape:cy="6.53125"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path146"
style="fill:#2e3436;fill-opacity:1;stroke-width:1.97916;paint-order:stroke markers fill"
inkscape:transform-center-x="1.2143527"
inkscape:transform-center-y="4.5320768"
d="M 8.0214844 0 C 5.9663264 0.007999992 3.9097209 0.79543718 2.3515625 2.3535156 C -0.76474438 5.4696725 -0.79247064 10.574877 2.3164062 13.683594 C 5.4252731 16.792301 10.532131 16.764604 13.648438 13.648438 C 16.106085 11.19092 16.641414 7.4947251 15.234375 4.5175781 C 15.352375 4.4665782 15.463887 4.3935449 15.560547 4.296875 L 15.666016 4.1933594 C 16.075135 3.7842298 16.075165 3.1239633 15.666016 2.7148438 L 15.1875 2.2363281 C 15.30815 1.8735385 15.223303 1.4576985 14.933594 1.1679688 L 14.828125 1.0625 C 14.538255 0.77267029 14.124628 0.689707 13.761719 0.81054688 L 13.283203 0.33398438 C 12.874064 -0.075135216 12.217733 -0.075125216 11.808594 0.33398438 L 11.703125 0.43945312 C 11.606325 0.53625303 11.531499 0.64756512 11.480469 0.765625 C 10.39116 0.25111551 9.2072232 -0.0047299953 8.0214844 0 z M 7.8886719 1.9550781 C 8.1097675 1.9491563 8.3320877 1.9540325 8.5546875 1.9726562 C 9.8572162 2.0882361 11.082969 2.6234377 12.048828 3.4980469 C 12.090928 3.5663468 12.141902 3.6321263 12.201172 3.6914062 L 12.304688 3.7949219 C 12.378487 3.8687218 12.463581 3.9293925 12.550781 3.9765625 C 14.655839 6.3619801 14.52719 9.988975 12.257812 12.257812 C 9.885995 14.62968 6.0568758 14.64591 3.7050781 12.294922 C 1.3522105 9.9434644 1.3674767 6.1146751 3.7402344 3.7421875 C 4.851702 2.6311574 6.3410023 1.9965312 7.8886719 1.9550781 z M 9.4765625 3.9316406 C 9.3555333 3.9408899 9.2463474 4.0422103 9.2480469 4.1855469 L 9.2597656 5.1425781 L 8.5 5.6933594 C 8.3343642 5.813587 8.374488 6.0768507 8.5683594 6.1386719 L 9.4589844 6.4238281 L 9.734375 7.3359375 C 9.7945711 7.5349486 10.050664 7.576541 10.167969 7.40625 L 10.707031 6.6269531 L 11.636719 6.6386719 C 11.839859 6.6412541 11.958734 6.4040191 11.837891 6.2363281 L 11.279297 5.4707031 L 11.578125 4.5644531 C 11.643343 4.3671337 11.459823 4.1791838 11.267578 4.2460938 L 10.386719 4.5527344 L 9.640625 3.9804688 C 9.5897853 3.9415481 9.5315758 3.9274364 9.4765625 3.9316406 z M 8.6816406 6.546875 C 8.6007257 6.5508058 8.5202715 6.5759399 8.4453125 6.6210938 L 4.1582031 9.203125 C 4.1193491 9.2265306 4.0850926 9.2540312 4.0546875 9.2851562 L 3.8457031 9.0722656 C 3.6423345 8.8668658 3.3171909 8.8692347 3.1171875 9.078125 L 3.0664062 9.1308594 C 2.8661515 9.3394024 2.8705537 9.6718236 3.0722656 9.8789062 L 6.1230469 12.958984 C 6.3263764 13.164354 6.6503495 13.162543 6.8515625 12.955078 L 6.9023438 12.902344 C 7.1031195 12.694419 7.0981964 12.36138 6.8964844 12.154297 L 6.6914062 11.947266 C 6.7199287 11.916488 6.7461649 11.882457 6.7675781 11.84375 L 9.2226562 7.4082031 C 9.3492065 7.1794657 9.2904435 6.896228 9.0976562 6.7363281 C 9.0811773 6.7195881 9.0708715 6.6982556 9.0546875 6.6816406 L 9.0507812 6.6855469 C 8.9497252 6.5901478 8.8164989 6.5403237 8.6816406 6.546875 z M 7.2734375 8.6386719 L 6.5820312 9.8886719 A 0.66404148 0.6817221 0 0 0 6.0078125 10.082031 A 0.66404148 0.6817221 0 0 0 5.96875 10.994141 L 5.890625 11.136719 L 4.8574219 10.09375 L 5.6035156 9.6445312 A 0.66404148 0.6817221 0 0 0 6.4121094 9.5351562 A 0.66404148 0.6817221 0 0 0 6.6035156 9.0429688 L 7.2734375 8.6386719 z " />
</svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-popular.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627417"
inkscape:cx="7.8002717"
inkscape:cy="11.645165"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path121"
style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0031699"
d="m 8.0008426,0.33781395 c -0.3962736,0 -0.7932544,0.2056507 -0.9970756,0.61853807 L 5.1344943,4.7456294 0.95302078,5.3524601 C 0.04198919,5.4849508 -0.32298302,6.6042756 0.33643394,7.2470988 L 3.3627827,10.19735 2.6486346,14.361263 c -0.1556781,0.907675 0.7965761,1.599176 1.6117112,1.170733 l 3.7404968,-1.964882 3.7385464,1.964882 c 0.815005,0.428573 1.767619,-0.262909 1.611711,-1.170733 L 12.636952,10.19735 c -0.62579,1.420894 -2.05041,2.417567 -3.6936681,2.417567 -2.2156294,0 -4.0331804,-1.817541 -4.0331804,-4.0331809 0,-2.2156094 1.817541,-4.0331804 4.0331804,-4.0331804 0.2526635,0 0.4457859,0.163725 0.6868309,0.208781 V 2.2422087 L 8.995967,0.95635202 C 8.7922956,0.54346465 8.3971161,0.33781395 8.0008426,0.33781395 Z M 12.636952,10.19735 15.6633,7.2470988 C 16.322967,6.6042756 15.958394,5.4848909 15.046713,5.3524601 L 14.096467,5.2139232 13.206709,6.1563645 12.976465,6.4061212 V 8.642224 c 0,0.046755 -0.0029,0.093504 -0.0059,0.1404882 -0.02458,0.500402 -0.141246,0.9777237 -0.333658,1.4146378 z M 10.629141,0.82952245 V 6.0588032 C 10.147002,5.7360579 9.5670256,5.5475825 8.9432839,5.5475825 c -1.6757259,0 -3.0341537,1.3584377 -3.0341537,3.0341536 0,1.6757259 1.3584278,3.0341539 3.0341537,3.0341539 1.6266641,0 2.9539161,-1.278149 3.0302511,-2.8858608 0.002,-0.029172 0.0039,-0.058734 0.0039,-0.087805 V 3.5261143 c 0.404475,0.2415144 0.735048,0.6086742 1.057563,0.9658559 0.06044,0.066935 0.121243,0.1336087 0.181464,0.1990249 L 14.67403,3.1475767 C 13.58685,1.9826727 12.216274,1.1562538 10.629141,0.82952245 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-tales_for_sleeping.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="10.739184"
inkscape:cy="26.383922"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path224-9"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.07165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 11.761719 0.021484375 C 11.523395 0.006260841 11.291622 0.19308124 11.294922 0.46484375 L 11.316406 2.1269531 L 9.9589844 3.0859375 C 9.6634483 3.2948904 9.7361156 3.7519312 10.082031 3.859375 L 11.667969 4.3535156 L 12.162109 5.9394531 C 12.269514 6.2853299 12.726246 6.3584617 12.935547 6.0625 L 13.896484 4.7050781 L 15.556641 4.7265625 C 15.919069 4.7310503 16.127724 4.3207399 15.912109 4.0292969 L 14.917969 2.6972656 L 15.453125 1.1230469 C 15.569491 0.78011045 15.241451 0.45402469 14.898438 0.5703125 L 13.324219 1.1035156 L 11.992188 0.109375 C 11.919619 0.055260427 11.84116 0.026558886 11.761719 0.021484375 z M 1.1191406 0.033203125 C 1.0976037 0.032748053 1.0762453 0.034669445 1.0546875 0.037109375 L 1.0566406 0.044921875 L 0.93164062 0.068359375 C 0.81023776 0.1189187 0.71407163 0.21882438 0.66796875 0.34179688 L 0.24414062 1.4628906 C 0.13889711 1.7355981 0.30218084 2.0377272 0.58789062 2.0996094 L 1.1015625 2.2109375 L 0.21289062 3.8789062 C 0.044571603 4.1980574 0.27783295 4.5798534 0.63867188 4.5761719 L 2.7148438 4.5507812 C 2.9276243 4.549085 3.1149563 4.4057647 3.171875 4.2011719 L 3.4707031 3.1171875 C 3.5556494 2.820711 3.3394992 2.5246311 3.03125 2.5117188 L 2.859375 2.5039062 L 3.3398438 1.5175781 C 3.4552473 1.2762012 3.3493538 0.98678367 3.1054688 0.87695312 L 1.3066406 0.076171875 C 1.2474728 0.049089327 1.1837514 0.034568341 1.1191406 0.033203125 z M 5.1582031 1.3535156 L 5.1601562 1.3652344 L 5.0703125 1.3828125 C 4.9815474 1.4186315 4.9130634 1.4909745 4.8789062 1.5800781 L 4.5703125 2.3945312 C 4.4936766 2.593075 4.6122734 2.8125533 4.8203125 2.8574219 L 5.1933594 2.9375 L 4.546875 4.1503906 C 4.4234224 4.3832086 4.5939244 4.6624452 4.8574219 4.6582031 L 6.3671875 4.6386719 C 6.5214732 4.6368865 6.6560412 4.5330702 6.6972656 4.3847656 L 6.9160156 3.5976562 C 6.9771487 3.3813843 6.8203142 3.1639921 6.5957031 3.15625 L 6.4707031 3.1523438 L 6.8203125 2.4335938 C 6.9040604 2.2581194 6.8278104 2.0484466 6.6503906 1.96875 L 5.34375 1.3867188 C 5.2862708 1.3608309 5.2228209 1.3496367 5.1601562 1.3574219 L 5.1582031 1.3535156 z M 8.1992188 2.59375 L 8.1992188 2.5996094 L 8.1445312 2.609375 C 8.0899523 2.631485 8.0461628 2.6768217 8.0253906 2.7324219 L 7.8378906 3.2304688 C 7.7915007 3.3517923 7.8631314 3.4859764 7.9902344 3.5136719 L 8.2207031 3.5625 L 7.8242188 4.3066406 C 7.7478598 4.4495128 7.851606 4.6219109 8.0136719 4.6191406 L 8.9394531 4.6074219 C 9.0343381 4.6066057 9.1174817 4.5411487 9.1425781 4.4492188 L 9.2773438 3.96875 C 9.3150037 3.8361473 9.2180138 3.7043242 9.0800781 3.6992188 L 9.0039062 3.6953125 L 9.21875 3.2539062 C 9.2702223 3.1455369 9.2207769 3.0152317 9.1113281 2.9667969 L 8.3105469 2.6113281 C 8.2752751 2.5961242 8.2376761 2.5889118 8.1992188 2.59375 z M 10.283203 4.5683594 C 10.13883 4.575191 9.9950737 4.6168362 9.8613281 4.6953125 L 2.2128906 9.1835938 C 2.1438717 9.2240924 2.0833757 9.2723681 2.0292969 9.3261719 L 1.6542969 8.9570312 C 1.2914362 8.6000511 0.71232504 8.6037502 0.35546875 8.9667969 L 0.26367188 9.0605469 C -0.092581687 9.4230538 -0.086118404 9.9978664 0.2734375 10.357422 L 5.7167969 15.714844 C 6.0795879 16.071784 6.6585553 16.065648 7.0175781 15.705078 L 7.1074219 15.613281 C 7.4656432 15.251914 7.4575612 14.674358 7.0976562 14.314453 L 6.7324219 13.955078 C 6.783276 13.901611 6.8309568 13.842623 6.8691406 13.775391 L 11.248047 6.0644531 C 11.473844 5.6669127 11.369371 5.1763397 11.025391 4.8984375 C 10.995991 4.8693445 10.978099 4.8296582 10.949219 4.8007812 L 10.943359 4.8085938 C 10.76305 4.6427923 10.523824 4.5569733 10.283203 4.5683594 z M 7.7695312 8.2050781 L 6.5351562 10.376953 A 1.1848173 1.1848173 0 0 0 5.5117188 10.712891 A 1.1848173 1.1848173 0 0 0 5.4433594 12.298828 L 5.3027344 12.546875 L 3.4589844 10.734375 L 4.7929688 9.9511719 A 1.1848173 1.1848173 0 0 0 6.234375 9.7617188 A 1.1848173 1.1848173 0 0 0 6.5742188 8.90625 L 7.7695312 8.2050781 z " />
</svg>

Before

Width:  |  Height:  |  Size: 5.1 KiB

View file

@ -1,39 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-tales.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-0.40625"
inkscape:cy="5.53125"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path224-9"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.07165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 11.761719,0.02148438 C 11.523395,0.00626084 11.291622,0.19308124 11.294922,0.46484375 L 11.316406,2.1269531 9.9589844,3.0859375 C 9.6634483,3.2948904 9.7361156,3.7519312 10.082031,3.859375 l 1.585938,0.4941406 0.49414,1.5859375 c 0.107405,0.3458768 0.564137,0.4190086 0.773438,0.1230469 l 0.960937,-1.3574219 1.660157,0.021484 c 0.362428,0.00449 0.571083,-0.4058226 0.355468,-0.6972656 L 14.917969,2.6972656 15.453125,1.1230469 C 15.569491,0.78011045 15.241451,0.45402469 14.898438,0.5703125 L 13.324219,1.1035156 11.992188,0.109375 C 11.919619,0.05526043 11.84116,0.02655889 11.761719,0.02148438 Z M 10.283203,4.5683594 C 10.13883,4.575191 9.9950737,4.6168362 9.8613281,4.6953125 L 2.2128906,9.1835938 c -0.069019,0.040499 -0.1295149,0.088774 -0.1835937,0.1425781 l -0.375,-0.3691407 C 1.2914362,8.6000511 0.71232504,8.6037502 0.35546875,8.9667969 l -0.0917969,0.09375 c -0.35625357,0.3625069 -0.34979028,0.9373195 0.009766,1.2968751 l 5.4433594,5.357422 c 0.362791,0.35694 0.9417584,0.350804 1.3007812,-0.0098 l 0.089844,-0.0918 c 0.3582213,-0.361367 0.3501393,-0.938923 -0.00977,-1.298828 L 6.7324219,13.955078 c 0.050854,-0.05347 0.098535,-0.112455 0.1367187,-0.179687 L 11.248047,6.0644531 c 0.225797,-0.3975404 0.121324,-0.8881134 -0.222656,-1.1660156 -0.0294,-0.029093 -0.04729,-0.068779 -0.07617,-0.097656 l -0.0059,0.00781 C 10.76305,4.6427923 10.523824,4.5569733 10.283203,4.5683594 Z M 7.7695312,8.2050781 6.5351562,10.376953 c -0.3752712,-0.05853 -0.7558554,0.06639 -1.0234374,0.335938 -0.4259,0.432988 -0.4554224,1.117908 -0.068359,1.585937 l -0.140625,0.248047 -1.84375,-1.8125 1.3339844,-0.7832031 C 5.260272,10.224857 5.8536659,10.146863 6.234375,9.7617188 6.4583245,9.5340207 6.5808657,9.2255549 6.5742188,8.90625 Z"
sodipodi:nodetypes="scccccccccccccccsscccccccccccccccccscccccccccc" />
</svg>

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-unfamiliar.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627417"
inkscape:cx="6.607029"
inkscape:cy="11.512582"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path80"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.01752;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.0019531 0 C 3.5981606 0 0 3.6160375 0 8.0019531 C 0 12.387859 3.5981606 16 8.0019531 16 C 12.405725 16 16.00001 12.387859 16 8.0019531 C 16 3.6160375 12.405725 0 8.0019531 0 z M 8.0019531 1.9550781 A 6.0315491 6.0448405 0 0 1 14.03125 8.0019531 A 6.0315491 6.0448405 0 0 1 8.0019531 14.044922 A 6.0315491 6.0448405 0 0 1 1.96875 8.0019531 A 6.0315491 6.0448405 0 0 1 8.0019531 1.9550781 z M 8.0917969 3.6132812 C 7.7631922 3.6104488 7.4238729 3.6481813 7.1738281 3.7382812 C 7.0034283 3.7996812 6.7274467 3.930147 6.5605469 4.0292969 C 6.2679672 4.2031167 5.5923454 4.8090009 5.4160156 5.0566406 L 5.3300781 5.1777344 L 5.640625 5.4609375 C 5.8114448 5.6165473 6.0953746 5.8811683 6.2714844 6.0488281 L 6.5917969 6.3535156 L 6.7617188 6.1542969 C 7.1565084 5.6919973 7.4980803 5.46955 7.8125 5.46875 C 8.1629796 5.46812 8.518212 5.7243691 8.6074219 6.0429688 C 8.6538218 6.2086786 8.648753 6.245832 8.5644531 6.4199219 C 8.5049532 6.5427418 8.3521142 6.7182777 8.1464844 6.8984375 C 7.509005 7.4569169 7.130628 7.8622252 7.0175781 8.109375 C 6.9173482 8.3286148 6.9101562 8.3919143 6.9101562 8.9648438 L 6.9101562 9.5820312 L 7.9179688 9.5722656 L 8.9238281 9.5605469 L 8.9453125 9.1347656 C 8.9705125 8.6281761 8.9861967 8.5972652 9.4414062 8.1972656 C 10.504165 7.2633966 10.759671 6.7778691 10.644531 5.90625 C 10.499751 4.8103611 9.8971422 4.0419622 8.9394531 3.7265625 C 8.7366283 3.6596926 8.4204015 3.6161137 8.0917969 3.6132812 z M 7.8769531 10.029297 C 7.5693668 10.026586 7.2715341 10.152856 7.0332031 10.398438 C 6.8523833 10.584767 6.6972656 10.94665 6.6972656 11.1875 C 6.6972656 12.045359 7.6074608 12.636717 8.375 12.279297 C 8.8271595 12.068747 9.1139106 11.563461 9.0566406 11.076172 C 9.0084407 10.666062 8.8060571 10.374438 8.4296875 10.173828 C 8.2499952 10.078053 8.0615049 10.030924 7.8769531 10.029297 z " />
</svg>

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-era-white_noise.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="0.40625"
inkscape:cy="19.28125"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path284"
style="fill:#2e3436;fill-opacity:1;stroke-width:4.29263;paint-order:stroke markers fill"
d="M 4.5585938 0.1953125 C 3.9316744 0.1953125 3.4277344 0.70121563 3.4277344 1.328125 L 3.4277344 14.671875 C 3.4277344 15.298784 3.9316744 15.804688 4.5585938 15.804688 L 4.7207031 15.804688 C 5.3476125 15.804688 5.8515625 15.298784 5.8515625 14.671875 L 5.8515625 1.328125 C 5.8515625 0.70121563 5.3476125 0.1953125 4.7207031 0.1953125 L 4.5585938 0.1953125 z M 7.953125 1.4082031 C 7.3262156 1.4082031 6.8222656 1.9121531 6.8222656 2.5390625 L 6.8222656 13.460938 C 6.8222656 14.087847 7.3262156 14.591797 7.953125 14.591797 L 8.1152344 14.591797 C 8.7421437 14.591797 9.2460938 14.087847 9.2460938 13.460938 L 9.2460938 2.5390625 C 9.2460938 1.9121531 8.7421437 1.4082031 8.1152344 1.4082031 L 7.953125 1.4082031 z M 11.347656 3.8320312 C 10.720727 3.8320312 10.214844 4.3359813 10.214844 4.9628906 L 10.214844 11.037109 C 10.214844 11.664019 10.720727 12.167969 11.347656 12.167969 L 11.507812 12.167969 C 12.134722 12.167969 12.640625 11.664019 12.640625 11.037109 L 12.640625 4.9628906 C 12.640625 4.3359813 12.134722 3.8320313 11.507812 3.8320312 L 11.347656 3.8320312 z M 1.1660156 4.5644531 C 0.5390963 4.5644531 0.033203125 5.0751081 0.033203125 5.7109375 L 0.033203125 10.289062 C 0.033203125 10.924882 0.5390963 11.435547 1.1660156 11.435547 L 1.3261719 11.435547 C 1.9530712 11.435547 2.4589844 10.924882 2.4589844 10.289062 L 2.4589844 5.7109375 C 2.4589844 5.0751081 1.9530712 4.5644531 1.3261719 4.5644531 L 1.1660156 4.5644531 z M 14.742188 6.2558594 C 14.115268 6.2558594 13.609375 6.7617625 13.609375 7.3886719 L 13.609375 8.6113281 C 13.609375 9.2382375 14.115268 9.7441406 14.742188 9.7441406 L 14.902344 9.7441406 C 15.529253 9.7441406 16.033203 9.2382375 16.033203 8.6113281 L 16.033203 7.3886719 C 16.033203 6.7617625 15.529253 6.2558594 14.902344 6.2558594 L 14.742188 6.2558594 z " />
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-alternative.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-2.78125"
inkscape:cy="16.90625"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path81"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.65967;paint-order:stroke markers fill"
d="M 7.9303669,0.00157483 C 7.5190469,0.01744459 7.150655,0.29660533 7.0382615,0.71606674 L 6.9171606,1.1701929 C 3.6280899,1.6957516 1.082144,4.5723332 1.082144,8.0002509 c 0,0.3875878 0.034401,0.7674294 0.09688,1.138343 L 0.77333829,9.2718042 C 0.26526411,9.4376941 -0.01017033,9.9807967 0.1557269,10.488863 l 0.0423896,0.131192 c 0.1658962,0.508076 0.70898369,0.783512 1.2170589,0.617611 l 0.4137588,-0.135228 c 0.4436527,0.873236 1.0667689,1.644211 1.8205417,2.258521 l -0.3713743,1.388617 c -0.1383336,0.51627 0.1659396,1.042398 0.6821982,1.180728 l 0.1311919,0.03633 c 0.5162607,0.138329 1.0444136,-0.165928 1.1827472,-0.682198 l 0.226054,-0.841648 c 0.7770375,0.305065 1.618635,0.47431 2.4987024,0.47431 0.9160894,0 1.7924846,-0.183461 2.5955837,-0.512658 l 0.236146,0.879996 c 0.138334,0.51627 0.666486,0.820527 1.182747,0.682198 l 0.131191,-0.03633 c 0.516259,-0.13833 0.820532,-0.664458 0.682199,-1.180728 l -0.391558,-1.45926 c 1.512727,-1.272836 2.480539,-3.176744 2.480539,-5.2900651 0,-0.3883966 -0.03414,-0.768714 -0.09688,-1.1403613 L 15.226662,6.7266792 C 15.734743,6.5607894 16.010169,6.0197048 15.844273,5.5116394 L 15.801887,5.3804473 C 15.635991,4.8723716 15.092914,4.5969356 14.58483,4.7628357 L 14.17107,4.8980644 C 13.199751,2.9850805 11.366598,1.5746263 9.1938466,1.1903764 L 9.0666912,0.71606674 C 8.9434502,0.25612085 8.5112816,-0.03606927 8.0534859,0.00359314 8.0125121,-4.4391526e-5 7.9707321,1.7608474e-5 7.9303669,0.00157483 Z M 6.3035857,3.4610073 5.1268941,7.8508938 3.1913083,8.4826339 a 4.8504215,4.8504215 0 0 1 -0.04239,-0.482383 4.8504215,4.8504215 0 0 1 3.154663,-4.5392436 z m 3.5139282,0.056513 A 4.8504215,4.8504215 0 0 1 12.180988,5.5479689 L 10.507786,6.0949387 Z M 8.0514677,4.9162289 8.5399054,6.7367703 7.4701862,7.085943 Z m 4.7552053,2.6016385 a 4.8504215,4.8504215 0 0 1 0.04239,0.482383 4.8504215,4.8504215 0 0 1 -1.033389,2.9750316 L 11.042646,8.0930944 Z M 9.0767833,8.736944 10.051642,12.37399 A 4.8504215,4.8504215 0 0 1 7.9989902,12.850319 4.8504215,4.8504215 0 0 1 6.0432201,12.418394 L 6.8323907,9.4696009 Z M 4.4870814,10.234552 4.2610275,11.082255 A 4.8504215,4.8504215 0 0 1 3.8190117,10.452533 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-author's_song.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627417"
inkscape:cx="2.541165"
inkscape:cy="11.91033"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path88"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.02927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 6.8892758,0.81619775 c -3.7806464,0 -6.88928799,3.10864265 -6.88928798,6.88928855 0,3.7252747 3.01907258,6.7960747 6.72444368,6.8852677 0.00875,0.05016 0.018034,0.102433 0.018093,0.102526 6.18e-5,1.44e-4 0.1808445,0.237122 0.1809268,0.237215 1.03e-5,10e-6 0.023616,0.0096 0.028144,0.01206 l 0.010056,0.03016 c 7.2e-5,1.13e-4 0.2411225,0.180823 0.2412357,0.180927 1.234e-4,4e-5 0.1766797,0.03016 0.1769061,0.03016 2.058e-4,0 0.096288,-0.008 0.096494,-0.008 5.454e-4,-1.04e-4 0.071731,-0.02083 0.090464,-0.02814 0.1507779,-0.05846 0.1158157,-0.05667 0.1427311,-0.07437 0.021306,-0.0141 0.044471,-0.03117 0.06835,-0.04824 0.1458992,-0.05198 0.2704646,-0.102104 0.4583477,-0.190978 0.2503805,-0.118501 0.5668038,-0.268338 0.9287573,-0.428194 0.723876,-0.319722 1.6428978,-0.676755 2.6013238,-0.88051 l 0.004,-0.0021 h 0.0021 c 0.588094,-0.134515 1.175282,-0.437175 1.658495,-0.920716 l 0.02613,-0.02613 L 16.000012,9.1026317 15.676354,8.778974 13.718324,6.8209444 C 13.278354,3.4524395 10.370044,0.81619775 6.8892758,0.81619775 Z m 0,2.05854415 c 2.2977036,0.00412 4.2748562,1.6253349 4.7282182,3.8778639 L 9.3217353,8.437234 9.295601,8.4653784 C 8.8120494,8.9485805 8.5073901,9.5337588 8.3728747,10.121863 v 0.004 l -0.00201,0.0021 C 8.1896255,10.980524 7.8882208,11.793395 7.5989106,12.47398 7.3642265,12.51217 7.127027,12.53311 6.8892757,12.5363 4.2214183,12.536079 2.0587304,10.373391 2.0585349,7.7055316 2.0587304,5.0376707 4.2214183,2.8749828 6.8892786,2.8747872 Z M 7.1244806,3.9422104 V 7.5929097 C 6.787956,7.3676504 6.3818116,7.2350771 5.9464465,7.2350771 c -1.1696376,0 -2.1168427,0.9492194 -2.1168427,2.1188523 0,1.1696426 0.9472051,2.1168436 2.1168427,2.1168436 1.1353856,0 2.0635682,-0.892162 2.1168428,-2.0143177 0.00122,-0.020431 0.00159,-0.041899 0.00201,-0.062319 v -3.570288 c 0.2823274,0.1685824 0.5146896,0.4261464 0.7397893,0.6754598 0.042215,0.046739 0.082611,0.093126 0.1246383,0.1387099 L 9.9469382,5.5604998 C 9.1881031,4.7474016 8.232283,4.1702537 7.1244806,3.9422104 Z m 5.5645024,3.3029175 1.96205,1.9620499 -1.96205,2.6757052 c -0.337931,0.333566 -0.742207,0.545402 -1.143859,0.637265 -0.362057,0.07719 -0.689455,0.178279 -1.001129,0.289482 l 0.715667,-0.737779 a 1.2686987,1.2686987 0 0 0 0.703604,-0.34376 1.2686987,1.2686987 0 0 0 0,-1.7951958 1.2686987,1.2686987 0 0 0 -1.795196,0 1.2686987,1.2686987 0 0 0 -0.3377298,0.6533468 l -0.7478303,0.773964 c 0.1127567,-0.313814 0.2155362,-0.643839 0.2935034,-1.009169 v -0.0061 C 9.4685453,9.9451372 9.681461,9.5415572 10.013277,9.2050985 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-bandstand.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-4.65625"
inkscape:cy="16.15625"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path201"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.22415;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8 0 C 3.6114845 0 0 3.6114845 0 8 C 0 12.388516 3.6114845 16 8 16 C 12.388516 16 16 12.388516 16 8 C 16 3.6114845 12.388516 0 8 0 z M 8 2.4492188 C 11.046447 2.4492188 13.550781 4.9535527 13.550781 8 C 13.550781 11.046447 11.046447 13.550781 8 13.550781 C 4.9535527 13.550781 2.4492187 11.046447 2.4492188 8 C 2.4492188 4.9535527 4.9535527 2.4492187 8 2.4492188 z M 8.78125 4.2070312 C 8.4060138 4.1848909 8.1233984 4.3760702 8.0878906 4.7675781 C 8.0880742 5.0981711 8.3559079 5.2723473 8.6816406 5.3691406 C 9.8831894 5.6784334 10.724348 6.7593032 10.730469 8 C 10.726769 8.4554313 10.619663 8.9069665 10.390625 9.2988281 C 10.112756 9.7741646 10.396503 10.259485 10.855469 10.259766 C 11.092354 10.258666 11.314315 10.103532 11.398438 9.8847656 C 11.712015 9.3254652 11.892578 8.6819351 11.892578 8 C 11.892578 6.1906628 10.63092 4.6582099 8.9472656 4.2304688 C 8.8902847 4.2185639 8.8348552 4.2101942 8.78125 4.2070312 z M 8 7.1386719 C 7.5004014 7.1385005 7.0948884 7.5433701 7.09375 8.0429688 C 7.0935786 8.5434972 7.4994711 8.9493897 8 8.9492188 C 8.5005289 8.9493897 8.906421 8.5434972 8.90625 8.0429688 C 8.905111 7.5433701 8.4995986 7.1385005 8 7.1386719 z " />
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre- blues.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-0.65625"
inkscape:cy="16.84375"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path191"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.00728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.486257,-2.2465183e-8 C 7.2914516,3.5000853e-4 6.0974493,0.44934057 5.1991477,1.3476562 L 2.7792258,3.765625 c -1.79660323,1.7966081 -1.79661323,4.7795611 0,6.576172 l 1.4472656,1.445312 c 0.5319024,0.531903 1.1676152,0.906095 1.8457031,1.123047 v 1.074219 H 5.5624289 c -0.5209748,0 -0.9414062,0.420431 -0.9414062,0.941406 v 0.132813 C 4.6210227,15.579568 5.0414541,16 5.5624289,16 H 8.595632 c 0.5209749,0 0.9414063,-0.420432 0.9414063,-0.941406 v -0.132813 c 0,-0.520975 -0.4204314,-0.941406 -0.9414063,-0.941406 H 8.0858664 v -0.884766 c 0.9968873,-0.120774 1.9603326,-0.557987 2.7148436,-1.3125 l 2.419922,-2.4179684 c 1.796603,-1.7966082 1.796993,-4.7795678 0,-6.5761719 L 11.77532,1.3457031 C 10.877013,0.44739752 9.6810625,-3.5005347e-4 8.486257,-2.2465183e-8 Z M 8.5995383,2 C 9.235271,2.026642 9.8641595,2.2822041 10.351492,2.7695312 l 1.445312,1.4472656 c 0.649765,0.6497676 0.889503,1.549831 0.720703,2.3847656 L 11.968679,6.0527343 c -0.368393,-0.3683841 -0.961696,-0.3683841 -1.330078,0 l -0.09375,0.09375 c -0.368392,0.3683842 -0.368382,0.961693 0,1.3300781 L 11.404226,8.3359374 11.208913,8.53125 10.349538,7.671875 c -0.3683821,-0.3683852 -0.9616957,-0.3683852 -1.3300779,0 l -0.095703,0.09375 c -0.3683821,0.3683851 -0.3683821,0.9616929 0,1.3300781 L 9.7850851,9.9550782 9.5897727,10.15039 8.7303977,9.2910156 c -0.3683822,-0.3683852 -0.961696,-0.3683842 -1.3300782,0 l -0.095703,0.09375 c -0.3683821,0.368384 -0.3683922,0.9616924 0,1.3300784 l 0.4140624,0.414062 C 6.9787724,11.186603 6.2206903,10.931701 5.6522727,10.363281 L 4.205007,8.9160156 C 3.6365894,8.3475949 3.3816851,7.5895072 3.439382,6.8496093 l 0.4140625,0.4121094 c 0.3683923,0.3683851 0.9597429,0.3683841 1.328125,0 l 0.095703,-0.09375 c 0.3683821,-0.3683841 0.3683821,-0.961693 0,-1.3300781 l -0.859375,-0.859375 0.1933593,-0.1953125 0.8613281,0.859375 c 0.3683822,0.3683851 0.961696,0.3683841 1.3300782,0 l 0.09375,-0.09375 c 0.3683821,-0.3683842 0.368382,-0.961693 0,-1.3300781 l -0.859375,-0.859375 0.1953125,-0.1953126 0.859375,0.859375 c 0.368382,0.3683842 0.961686,0.3683842 1.3300781,0 l 0.09375,-0.09375 c 0.368382,-0.3683841 0.3683921,-0.9616929 0,-1.3300781 L 7.9667258,2.0507812 C 8.1754617,2.0085815 8.3876274,1.9911193 8.5995383,2 Z m 1.2910156,1.6425781 c -0.2403783,6e-7 -0.4818246,0.093154 -0.6660156,0.2773437 L 5.501882,7.640625 c -0.3683821,0.3683791 -0.3683821,0.9616939 0,1.3300781 l 0.095703,0.095703 c 0.3683922,0.3683851 0.961696,0.3683801 1.3300782,0 L 10.648366,5.34375 c 0.368382,-0.3683802 0.368382,-0.961693 0,-1.3300782 l -0.09375,-0.09375 C 10.370421,3.7357298 10.130932,3.6425775 9.8905539,3.6425781 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-chanson.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="1.84375"
inkscape:cy="7.09375"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path193"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.80567;stroke-dasharray:none;paint-order:stroke markers fill"
d="M 14.224609 0 C 13.968162 9.4999905e-07 13.712131 0.098416227 13.515625 0.29492188 L 13.414062 0.39648438 C 13.15929 0.65125758 13.068974 1.0063635 13.144531 1.3320312 L 13.132812 1.34375 C 12.856748 1.3272213 12.575116 1.4248838 12.363281 1.6367188 L 12.261719 1.7382812 C 12.049891 1.9501095 11.952226 2.2317503 11.96875 2.5078125 L 9.0683594 5.4082031 C 8.826936 5.0030675 8.4945427 4.7140647 8.2246094 4.5449219 C 7.7781945 4.2652981 7.3789056 4.1501682 6.9804688 4.1347656 C 6.7414143 4.1251001 6.5033557 4.1507543 6.2539062 4.1992188 C 5.5887102 4.3285862 4.8902136 4.7458644 4.4335938 5.3535156 C 3.9657582 5.9761059 3.7396063 6.5191116 3.5351562 6.9550781 C 2.9999433 7.0433064 2.31721 7.2245229 1.5742188 7.8769531 C 1.497472 7.9445814 1.4218036 8.0156964 1.34375 8.09375 C 1.0633815 8.3741336 0.82696662 8.6828631 0.63476562 9.0117188 C 0.55790498 9.1432898 0.48663881 9.2787379 0.42382812 9.4160156 C 0.39244559 9.4846317 0.36383225 9.5551605 0.3359375 9.625 C 0.28021639 9.7647625 0.23114707 9.9050836 0.18945312 10.048828 C -0.26914998 11.630091 0.12239282 13.417513 1.3535156 14.648438 C 2.024897 15.319986 2.8628759 15.741937 3.7421875 15.912109 L 3.7441406 15.914062 C 4.6962324 16.097942 5.695988 15.98792 6.5878906 15.580078 C 6.6565066 15.548698 6.7237293 15.515389 6.7910156 15.480469 C 7.1953869 15.270897 7.5732004 14.998959 7.9101562 14.662109 C 7.9882322 14.584029 8.0571363 14.504261 8.125 14.427734 C 8.7773922 13.684766 8.9586543 13.002002 9.046875 12.466797 C 9.4828416 12.262346 10.0278 12.040101 10.650391 11.572266 C 11.258057 11.115661 11.675336 10.417164 11.804688 9.7519531 C 11.853147 9.5025037 11.878811 9.262492 11.869141 9.0234375 C 11.853742 8.6250248 11.740561 8.2276648 11.460938 7.78125 C 11.290457 7.5091848 10.996434 7.1718434 10.585938 6.9296875 L 13.488281 4.0273438 C 13.764343 4.0438706 14.045984 3.9442584 14.257812 3.7324219 L 14.359375 3.6328125 C 14.571089 3.4210987 14.668733 3.1391937 14.652344 2.8632812 L 14.666016 2.8496094 C 14.99126 2.9245261 15.345241 2.8364096 15.599609 2.5820312 L 15.701172 2.4804688 C 16.094183 2.0874574 16.094198 1.4555113 15.701172 1.0625 L 15.367188 0.72851562 L 15.267578 0.62890625 L 14.933594 0.29492188 C 14.737092 0.098412427 14.481056 -9.4999905e-07 14.224609 0 z M 6.3867188 6.8515625 C 6.7377906 6.8709475 7.1238514 7.1011968 6.6347656 7.8417969 L 5.4824219 8.9941406 C 5.0894258 9.3871367 5.0894258 10.019099 5.4824219 10.412109 L 5.5820312 10.513672 C 5.9750502 10.906691 6.6089418 10.906683 7.0019531 10.513672 L 8.1191406 9.3964844 C 9.0059597 8.7856798 9.1891361 9.3941183 9.1484375 9.7675781 C 9.0935675 10.270907 7.4749441 10.58318 7.1972656 11.039062 C 7.1465827 11.082142 7.1116455 11.12295 7.1015625 11.160156 C 7.0358336 11.402386 6.9959732 11.652287 6.9472656 11.898438 C 6.8020625 12.395551 6.6507828 12.819615 6.4609375 13.0625 C 6.4384455 13.08803 6.415321 13.113972 6.390625 13.138672 C 6.2090926 13.320159 6.0073196 13.468933 5.7910156 13.582031 C 5.4305646 13.77057 5.0326629 13.864482 4.6347656 13.863281 C 4.5556637 13.863053 4.4772358 13.859252 4.3984375 13.851562 L 4.3964844 13.851562 C 4.3177625 13.843863 4.2380428 13.831666 4.1601562 13.816406 L 4.1582031 13.814453 C 4.0803172 13.799183 4.0041771 13.782516 3.9277344 13.759766 L 3.9257812 13.757812 C 3.8493383 13.735013 3.7736554 13.709897 3.6992188 13.679688 L 3.6972656 13.677734 C 3.6228747 13.647414 3.5502244 13.613993 3.4785156 13.576172 L 3.4765625 13.574219 C 3.4048306 13.536379 3.3341726 13.496466 3.265625 13.451172 L 3.2636719 13.449219 C 3.1952079 13.403859 3.1291635 13.355588 3.0644531 13.302734 L 3.0625 13.300781 C 2.9976071 13.248041 2.9353639 13.191223 2.875 13.130859 L 2.8730469 13.128906 C 2.8126219 13.068516 2.7561029 13.006086 2.703125 12.941406 L 2.7011719 12.939453 C 2.6484369 12.874563 2.6001656 12.80866 2.5546875 12.740234 L 2.5527344 12.738281 C 2.5073704 12.669821 2.4656517 12.599 2.4277344 12.527344 L 2.4257812 12.525391 C 2.3879403 12.453661 2.3566197 12.380858 2.3261719 12.306641 L 2.3242188 12.304688 C 2.2938238 12.230368 2.2689507 12.154476 2.2460938 12.078125 L 2.2441406 12.076172 C 2.2212686 11.999802 2.202811 11.921568 2.1875 11.84375 L 2.1855469 11.84375 C 2.1701979 11.76594 2.1621319 11.686092 2.1542969 11.607422 L 2.1523438 11.607422 C 2.1445938 11.528702 2.140944 11.448091 2.140625 11.369141 C 2.139185 10.892308 2.2738542 10.414494 2.5449219 10.001953 C 2.6355518 9.8643643 2.7422571 9.7343054 2.8632812 9.6132812 C 2.8834182 9.5931443 2.9037904 9.5739045 2.9277344 9.5546875 C 3.1676474 9.3606704 3.5958017 9.2040094 4.0996094 9.0566406 C 4.3475314 9.0074547 4.599726 8.968559 4.84375 8.9023438 C 4.879844 8.8925438 4.9194336 8.8588898 4.9609375 8.8105469 L 4.9609375 8.8085938 C 5.4188561 8.5375878 5.7335694 6.9104908 6.2382812 6.8554688 C 6.2849637 6.8503814 6.335576 6.8487386 6.3867188 6.8515625 z M 4.0703125 10.066406 L 3.3398438 10.796875 L 5.1113281 12.568359 L 5.8417969 11.837891 L 4.0703125 10.066406 z " />
</svg>

Before

Width:  |  Height:  |  Size: 6 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.6 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-children's_music.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-1.21875"
inkscape:cy="15.34375"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path209"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.05287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 14.917118,5.1091345e-8 C 14.665862,1.1010913e-6 14.414587,0.09536755 14.222061,0.28789359 L 13.835463,0.67449222 13.459145,0.29817483 c -0.385056,-0.38505727 -1.005056,-0.38505727 -1.390111,0 l -0.09871,0.0987062 c -0.0958,0.0957971 -0.169842,0.20520879 -0.217973,0.32285179 -0.813218,-0.1018753 -1.652789,0.0364944 -2.3956815,0.41744448 -0.00913,-0.00802 -0.017391,-0.017048 -0.026733,-0.024676 C 8.9431374,0.79663412 8.3748444,0.81937082 8.0138539,1.1803616 l -0.098706,0.098706 C 7.6439221,1.5503039 7.5636904,1.9383324 7.6745517,2.278467 6.3276793,2.197528 4.9523609,2.664594 3.9381117,3.6788618 L 1.4087659,6.2061506 c -1.87790357,1.8779179 -1.87792599,4.9944924 0,6.8724184 l 1.5114383,1.511439 c 0.9976402,0.997641 2.3453755,1.466861 3.6706359,1.404506 1.1693474,-0.05502 2.3215143,-0.524231 3.201782,-1.404506 l 2.5293459,-2.52729 c 1.014612,-1.01462 1.479768,-2.3911585 1.398337,-3.7384971 0.3403,0.1111921 0.727979,0.030793 0.999401,-0.2405967 l 0.09871,-0.098706 c 0.370298,-0.3702413 0.382936,-0.9558664 0.04113,-1.3428146 0.381086,-0.7432717 0.521694,-1.5818868 0.419502,-2.3956816 0.02899,-0.011856 0.05633,-0.026379 0.08431,-0.041127 0.08562,-0.045125 0.166342,-0.1025944 0.238539,-0.1747926 l 0.09871,-0.098706 c 0.385057,-0.3850572 0.385057,-1.0050552 0,-1.3901125 L 15.324281,2.1653671 15.71088,1.7787674 c 0.385051,-0.385052 0.385056,-1.00505628 0,-1.39011139 L 15.612174,0.28789359 C 15.419646,0.09536443 15.168374,-9.9890865e-7 14.917118,5.1091345e-8 Z M 7.491534,4.3595228 c 0.6645057,0.027848 1.3207854,0.2967187 1.830177,0.8061004 l 1.511438,1.5114385 c 0.679167,0.6791806 0.931135,1.619612 0.754691,2.4923304 -0.44901,0.8472089 -0.547853,1.1269869 -1.165967,1.8137279 l -0.203581,0.203581 -1.488818,1.488818 -0.2035816,0.203582 c -0.6943838,0.720887 -0.683118,0.959492 -1.955616,1.02202 -0.7733963,0.06031 -1.5671081,-0.205785 -2.161254,-0.799932 L 2.897584,11.589751 C 2.3034381,10.995605 2.0373417,10.201879 2.0976527,9.4284961 l 0.4318396,0.4318394 c 0.2406649,0.2406565 0.5726981,0.3316065 0.8821864,0.2714435 0.1856931,-0.0361 0.3635294,-0.127047 0.5079255,-0.2714435 l 0.098706,-0.09871 c 0.3850566,-0.3850565 0.3850417,-1.0050545 0,-1.3901118 L 3.1196729,7.4728798 3.3232544,7.2692988 4.2218919,8.1679356 C 4.4625476,8.4085923 4.794591,8.499542 5.1040783,8.4393781 5.2897708,8.4032795 5.4676105,8.3123298 5.6120039,8.1679356 l 0.098706,-0.098706 c 0.3850416,-0.3850562 0.3850491,-1.0050468 0,-1.3901115 L 4.8120726,5.7804801 5.0156541,5.576899 5.9142916,6.4755368 C 6.154952,6.7161967 6.4869864,6.8071422 6.796478,6.7469783 6.982173,6.7108808 7.1600046,6.61993 7.3044036,6.4755368 l 0.098706,-0.098706 c 0.3850561,-0.3850583 0.385064,-1.0050637 0,-1.3901125 L 6.8293801,4.4129884 C 7.0475652,4.3688796 7.2700321,4.3502397 7.491534,4.3595228 Z M 7.9603884,5.6283083 V 9.362692 C 7.9173585,9.3338898 7.8718571,9.3082199 7.8267238,9.2824931 7.51079,9.1024077 7.1450272,8.9987131 6.7553504,8.9987131 c -0.1495561,0 -0.2949274,0.014326 -0.4359523,0.043184 -0.035256,0.00721 -0.070266,0.015772 -0.1048749,0.024676 -0.553753,0.1424738 -1.0224838,0.498293 -1.3119696,0.9747239 -0.018092,0.02978 -0.034735,0.05978 -0.051409,0.09048 -0.1667491,0.306958 -0.2611601,0.66047 -0.2611601,1.034359 0,1.196454 0.9689178,2.165366 2.1653667,2.165366 1.1614119,0 2.110871,-0.914669 2.1653668,-2.062548 0.00125,-0.0209 0.00162,-0.0408 0.00205,-0.06169 V 7.555135 c 0.2887992,0.1724468 0.5244314,0.4338587 0.7546901,0.688887 0.04318,0.047811 0.08656,0.095261 0.129552,0.1418905 L 10.847544,7.2857498 C 10.071314,6.4540142 9.0935847,5.8615792 7.9603884,5.6283083 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.7 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-classic.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-3.65625"
inkscape:cy="20.15625"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path164"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.12357;stroke-linejoin:round;-inkscape-stroke:none"
d="M 4.2951221,5e-7 A 2.1267244,2.1267244 0 0 0 2.16867,2.1264525 2.1267244,2.1267244 0 0 0 3.1715478,3.9303161 V 14.189515 A 2.1267244,2.1267244 0 0 0 2.16867,15.98899 H 4.0844519 C 4.1292019,15.99469 4.1741379,16 4.2205098,16 h 0.1492247 c 0.046908,0 0.093007,-0.0051 0.1382522,-0.01101 H 6.4215742 A 2.1267244,2.1267244 0 0 0 6.3535452,15.45573 C 9.8532838,14.346612 13.151713,11.371178 13.722612,8.0318016 13.855677,7.2540635 13.870824,6.3158879 13.744556,5.5454542 13.477574,3.916149 12.596383,2.506288 11.249432,1.6283057 10.312709,1.0177554 9.2344842,0.7209577 8.1617977,0.7263733 c -0.00337,-0.00225 -0.00761,-0.00653 -0.010977,-0.00878 v 0.00219 c -0.00337,2.24e-5 -0.00648,-0.00219 -0.010977,-0.00219 -0.6765149,0.00595 -1.3482306,0.138012 -1.9859955,0.3862264 A 2.1267244,2.1267244 0 0 0 4.2951221,5e-7 Z M 7.9862392,3.719646 c 0.081106,5.853e-4 0.1805205,0.00593 0.3116163,0.010966 0.020357,7.809e-4 0.037376,0.00126 0.057056,0.00219 v 5.2118926 c 0,0.3042739 0.2443566,0.5486199 0.5486202,0.5486199 h 0.079001 c 0.3042637,0 0.5486201,-0.244346 0.5486201,-0.5486199 V 4.0773459 c 0.07934,0.051578 0.160534,0.1080149 0.250171,0.1755585 C 10.62106,4.8856678 11.043179,6.0140869 10.773229,7.5534039 10.661995,8.1876616 10.415189,8.7916693 9.9722438,9.4538245 8.9970047,10.91174 7.2304673,11.97411 5.5723093,12.561211 c -0.0539,0.0191 -0.1042733,0.04383 -0.1536137,0.07022 V 3.9303161 a 2.1267244,2.1267244 0 0 0 0.1250862,-0.087779 c 0.1740386,0.1817325 0.4057113,0.3036561 0.6561499,0.3401441 v 6.1291858 c 0,0.304275 0.2443566,0.548621 0.5486203,0.548621 h 0.079001 c 0.3042635,0 0.5486202,-0.244346 0.5486202,-0.548621 V 3.8337584 C 7.6630301,3.7424714 7.7429185,3.7178909 7.9862392,3.719646 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-country.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="1.84375"
inkscape:cy="7.09375"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path17"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.58835;stroke-dasharray:none;paint-order:stroke markers fill"
d="M 14.330078 0 C 14.088276 1.2662487e-06 13.84544 0.09206047 13.660156 0.27734375 L 13.566406 0.37304688 C 13.326698 0.61275474 13.24208 0.94737709 13.3125 1.2539062 L 13.298828 1.2675781 C 13.038994 1.2524218 12.775542 1.343599 12.576172 1.5429688 L 12.480469 1.6386719 C 12.281112 1.8380285 12.187978 2.103455 12.203125 2.3632812 L 8.859375 5.7070312 C 7.8983025 5.0453835 6.7723427 4.7128906 5.6445312 4.7128906 C 4.1928334 4.7128906 2.7405339 5.2614336 1.6445312 6.3574219 C -0.54745257 8.54942 -0.54745974 12.163464 1.6445312 14.355469 C 3.8365366 16.547475 7.4505657 16.547468 9.6425781 14.355469 C 11.590036 12.407985 11.805941 9.3387246 10.292969 7.140625 L 13.636719 3.796875 C 13.896545 3.8120235 14.161972 3.7188933 14.361328 3.5195312 L 14.457031 3.4238281 C 14.656895 3.2239641 14.750102 2.9596722 14.734375 2.6992188 L 14.746094 2.6875 C 15.052623 2.7579215 15.387245 2.6733082 15.626953 2.4335938 L 15.722656 2.3398438 C 16.093223 1.9692772 16.093244 1.3725299 15.722656 1.0019531 L 15.408203 0.6875 L 15.3125 0.59179688 L 14.998047 0.27734375 C 14.812764 0.092055405 14.571881 -1.2662487e-06 14.330078 0 z M 5.3847656 6.734375 A 3.6299472 3.6299472 0 0 1 7.3828125 7.1835938 L 6.0859375 8.4804688 C 5.7153811 8.8510151 5.7153811 9.4477827 6.0859375 9.8183594 L 6.1816406 9.9140625 C 6.5522174 10.284639 7.1489647 10.284639 7.5195312 9.9140625 L 8.8242188 8.609375 A 3.6299472 3.6299472 0 0 1 8.2109375 12.923828 A 3.6299472 3.6299472 0 0 1 3.0761719 12.923828 A 3.6299472 3.6299472 0 0 1 3.0761719 7.7890625 A 3.6299472 3.6299472 0 0 1 5.3847656 6.734375 z M 4.7558594 9.4921875 L 4.0683594 10.179688 L 5.7382812 11.849609 L 6.4257812 11.162109 L 4.7558594 9.4921875 z " />
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-dance_music.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="-11.092738"
inkscape:cy="25.234873"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path825"
style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0169095"
d="m 7.9999944,-5e-8 c -0.4433971,0 -0.8780321,0.036626 -1.3025974,0.1073829 0.2285501,0.1817678 0.442778,0.3795094 0.6419605,0.5929384 L 7.9112867,1.3166036 6.7464199,2.5491687 C 7.1569641,2.4492487 7.5774908,2.395963 7.9999944,2.3904293 11.097977,2.3906563 13.609341,4.9020227 13.609566,8.0000007 13.60934,11.097979 11.097977,13.609344 7.9999944,13.609571 4.9020114,13.609344 2.3906494,11.097979 2.3904223,8.0000007 2.3959203,7.7584483 2.4169441,7.5174972 2.4534579,7.2786699 1.483613,7.0077036 0.7228661,6.213182 0.5018961,5.224395 0.1776714,6.0903979 -8e-7,7.0263808 -8e-7,8.0000007 -8e-7,12.390171 3.6098315,16 8.0000005,16 12.390169,16 16.000001,12.390171 16.000001,8.0000006 16.000001,3.609843 12.390169,1.5e-7 8.0000005,1.5e-7 Z M 4.2135918,0.27545965 V 3.4689235 C 3.9192821,3.2719163 3.5648676,3.1561134 3.18412,3.1561134 c -1.0229363,0 -1.8511817,0.8306049 -1.8511817,1.8535162 0,1.0229352 0.8282454,1.8511819 1.8511817,1.8511819 0.9929699,0 1.8022461,-0.781061 1.8488475,-1.7624746 0.00108,-0.017809 0.00347,-0.035883 0.00466,-0.053691 v -3.123432 c 0.2469087,0.1474416 0.4474322,0.3725732 0.644296,0.590604 0.036932,0.040876 0.075358,0.081505 0.1120513,0.121389 L 6.6833831,1.6924423 C 6.0197366,0.98132625 5.1824434,0.47490485 4.2135918,0.27545965 Z m 4.484389,3.31485285 c -0.078107,0 -0.1389667,0.00961 -0.182084,0.028012 -0.1340971,0.057609 -1.7504204,2.0902286 -1.9819084,2.9810331 -0.078956,0.3041816 0.00502,0.7280952 0.095713,1.1765393 0.1055255,0.5252007 0.2155271,1.0685062 0.098044,1.5360372 -0.00645,0.02558 -0.015956,0.05008 -0.023343,0.0747 L 8.9757768,10.329733 C 9.1386328,10.014341 9.3200038,9.6777011 9.5010158,9.3469501 9.7832378,8.83069 10.075141,8.2980778 10.264366,7.8832791 10.613882,7.1164182 10.329566,4.3798143 10.030925,3.9964974 9.9560348,3.9005214 9.1628248,3.5903113 8.6979808,3.5903113 Z M 6.5199829,9.806829 c -0.080701,0.1390511 -0.1730025,0.269975 -0.2684571,0.403851 -0.2108538,0.295733 -0.4279251,0.601698 -0.5672596,1.062153 -0.2698794,0.892658 -0.03753,1.585463 0.6069443,1.806829 0.1718001,0.05892 0.3342549,0.08871 0.4832216,0.08871 0.8576573,0 1.3102133,-0.967669 1.9375547,-2.306392 l 0.02802,-0.06069 c 0.0091,-0.01936 0.02094,-0.04097 0.03035,-0.06069 z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-electronics.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="0.65625"
inkscape:cy="21.53125"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path99"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.19517;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8,-6e-8 C 3.6099645,-6e-8 -7e-8,3.609972 -6e-8,8 -6e-8,12.390028 3.6099645,16 8,16 12.390037,16 16,12.390028 16,8 16,3.609972 12.390037,-7e-8 8,-6e-8 Z M 9.5172057,2.6204398 A 5.6098,5.6098 0 0 1 12.917982,5.323674 c -0.01998,-0.00119 -0.03974,-0.00414 -0.06003,-0.00414 H 9.5172057 Z M 6.2633894,2.6804658 2.4838293,8.8051747 c -0.00744,0.00654 -0.015529,0.011871 -0.022768,0.018629 A 5.6098,5.6098 0 0 1 2.3906856,8 5.6098,5.6098 0 0 1 6.2633894,2.6804658 Z m 1.134282,2.196119 v 1.4323415 0.1407503 c 0,0.5481111 0.441281,0.989392 0.9893921,0.989392 H 8.5278138 10.875033 L 8.6023287,11.125485 V 9.5503231 c 0,-0.344836 -0.1748406,-0.6468252 -0.4408797,-0.823803 C 8.0842973,8.674483 7.9975526,8.6331563 7.9068565,8.6043985 h -0.00207 c -0.00143,-4.394e-4 -0.00271,-0.00164 -0.00414,-0.00207 C 7.8075931,8.5735066 7.7094979,8.5588617 7.606727,8.5588617 H 5.1249677 Z M 13.536869,7.1699871 A 5.6098,5.6098 0 0 1 13.609319,8 5.6098,5.6098 0 0 1 9.7366151,13.319534 L 13.524455,7.1803364 c 0.004,-0.00362 0.0085,-0.00667 0.01242,-0.010349 z M 3.0820181,10.674257 c 0.018624,10e-4 0.036995,0.0041 0.055886,0.0041 h 3.3448901 v 2.701164 A 5.6098,5.6098 0 0 1 3.0820181,10.674257 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-folk.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-3.65625"
inkscape:cy="20.15625"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path3"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.55688;stroke-dasharray:none;paint-order:stroke markers fill"
d="m 14.343499,-5.4828013e-4 c -0.239682,1e-6 -0.479381,0.0909725301 -0.663039,0.27463105013 L 13.5863,0.37020367 C 13.348378,0.60812714 13.264903,0.93896758 13.335209,1.2431401 l -0.01177,0.01177 c -0.257687,-0.015144 -0.52024,0.076905 -0.717965,0.2746311 l -0.09416,0.094159 C 12.313691,1.8213229 12.221652,2.0841014 12.236682,2.3416663 L 10.1946,4.3837479 C 9.9001536,4.272684 9.6919045,4.3177038 9.4962522,4.2935116 9.1559414,4.2514396 8.8477857,4.2490493 8.5115018,4.2601636 7.8389269,4.2823852 7.0758615,4.3712214 6.2673697,4.5230255 4.6503791,4.8265983 2.9449358,5.1235946 1.5280139,6.5415678 0.44161607,7.6279512 -0.08691956,9.124518 0.01165532,10.527648 c 0.09857459,1.403144 0.75271054,2.69671 1.75764188,3.70164 1.0049315,1.004932 2.3004656,1.661036 3.7036027,1.759604 1.4031372,0.09858 2.8977214,-0.429961 3.9841192,-1.516358 1.4168299,-1.416816 1.7180109,-3.128435 2.0205029,-4.7452402 0.151244,-0.8084149 0.241542,-1.5720049 0.262862,-2.2441322 0.01065,-0.3360711 0.0073,-0.6427555 -0.03531,-0.982789 -0.02442,-0.1950108 0.02035,-0.4031799 -0.09023,-0.6963867 l 2.040115,-2.0420817 c 0.258393,0.015796 0.521643,-0.074381 0.719927,-0.2726705 l 0.09416,-0.094159 c 0.198117,-0.1981188 0.290228,-0.461749 0.27463,-0.7199275 l 0.01177,-0.011769 c 0.304339,0.070561 0.636816,-0.013003 0.874898,-0.2510917 l 0.09416,-0.094159 c 0.367317,-0.367317 0.367337,-0.9587515 0,-1.32607855 L 15.4126,0.68014526 15.318441,0.58598587 15.006538,0.27408277 C 14.822879,0.09041923 14.583181,-5.4928013e-4 14.343499,-5.4828013e-4 Z M 8.2957199,6.2826289 6.1732103,8.4051383 c -0.3673066,0.3672969 -0.3673066,0.9587514 0,1.3260785 l 0.094159,0.094159 c 0.3673268,0.3673272 0.9587614,0.3673272 1.3260782,0 L 9.7159574,7.7028669 C 9.611756,9.3503017 9.032243,12.056845 8.0367816,13.052297 6.6316274,14.457464 4.5946888,14.214219 3.1895347,12.809051 1.7843664,11.403897 1.543083,9.3669591 2.9482513,7.9618047 3.9366702,6.972651 6.6464477,6.3890938 8.2957199,6.2826289 Z m -3.440741,3.1249146 -0.6826555,0.6826555 1.6556358,1.655635 0.6826557,-0.682655 z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-indie.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="32"
inkscape:cx="9.390625"
inkscape:cy="9.109375"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path19"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.86525;paint-order:stroke markers fill"
d="M 13.009766 0.0234375 C 10.918646 -0.029334667 9.4256702 0.91125877 7.7578125 1.8515625 C 6.2984289 2.6743155 5.0333099 3.4791353 4.0800781 4.3691406 L 4.0800781 4.3710938 C 3.9815272 4.4631197 3.8906178 4.5564629 3.7988281 4.6503906 C 3.7965181 4.6514306 3.7737016 4.6658874 3.6738281 4.7617188 C 1.8108988 6.5478049 1.5377687 9.4484894 2.9804688 11.519531 L 0.31445312 14.117188 C -0.089915741 14.511054 -0.10746297 15.151116 0.28320312 15.558594 L 0.3828125 15.662109 C 0.77347547 16.069585 1.4198511 16.087267 1.8242188 15.693359 L 4.5800781 13.007812 C 6.5502436 14.173834 9.1560448 13.915709 10.873047 12.269531 C 10.975461 12.171381 10.999769 12.141539 11.001953 12.138672 L 11.011719 12.128906 C 12.043229 11.194699 12.984064 9.8728646 13.951172 8.3144531 C 14.956485 6.6945109 15.948982 5.2430265 15.996094 3.1699219 C 15.995365 3.1891189 15.995117 3.2030521 15.996094 3.1582031 C 15.996348 3.1527431 15.997847 3.1367664 15.998047 3.1464844 L 16 3.1347656 L 16 3.1308594 L 16 3.1289062 L 16 3.1269531 L 16 3.125 L 16 3.1230469 L 16 3.1191406 C 16.0034 2.9312973 15.989652 2.7730975 15.976562 2.6542969 C 15.971763 2.6116229 15.973403 2.6211981 15.970703 2.5957031 C 15.906703 2.0974438 15.703187 1.4573762 15.199219 0.9296875 C 15.203019 0.9341325 15.189281 0.92262609 15.181641 0.9140625 L 15.171875 0.90234375 C 14.994964 0.72240582 14.896913 0.65533207 14.958984 0.70703125 C 14.218915 0.090657576 13.220115 0.029457414 13.056641 0.0234375 L 13.041016 0.0234375 C 13.030366 0.02313503 13.020436 0.02358386 13.009766 0.0234375 z M 12.955078 2.2070312 C 12.959378 2.2075135 12.963407 2.207353 12.966797 2.2070312 C 12.968497 2.2069149 12.972909 2.2071586 12.974609 2.2070312 C 13.007209 2.2076743 13.039313 2.2100606 13.070312 2.2128906 L 13.074219 2.2128906 C 13.108749 2.2158206 13.139455 2.2215045 13.171875 2.2265625 C 13.265395 2.2416325 13.349378 2.2690615 13.423828 2.3046875 C 13.473738 2.3285565 13.519982 2.3548479 13.560547 2.3886719 C 13.577317 2.4025619 13.594295 2.4159296 13.609375 2.4316406 C 13.610875 2.4327606 13.611681 2.4344069 13.613281 2.4355469 C 13.615581 2.4377769 13.616941 2.4400194 13.619141 2.4433594 C 13.72527 2.5544351 13.785152 2.7069557 13.806641 2.890625 C 13.807057 2.892825 13.808194 2.8932044 13.808594 2.8964844 C 13.815094 2.9552473 13.817606 3.0169474 13.816406 3.0820312 C 13.816126 3.0842212 13.816682 3.0876638 13.816406 3.0898438 C 13.816128 3.0920337 13.816684 3.0935231 13.816406 3.0957031 C 13.816083 3.1011531 13.814853 3.1090204 13.814453 3.1152344 C 13.796583 3.9701474 13.185065 5.3227669 12.400391 6.6601562 L 11.087891 6.671875 L 11.84375 5.9335938 C 12.248171 5.5397358 12.265736 4.9015535 11.875 4.4941406 L 11.773438 4.3886719 C 11.382711 3.9812587 10.738353 3.9655079 10.333984 4.359375 L 7.6230469 7 L 7.6152344 4.4824219 C 9.4278967 3.3262309 11.731266 2.1762251 12.955078 2.2070312 z M 5.4375 6.0976562 L 5.4472656 9.0292969 C 5.4473492 9.0573558 5.4489119 9.0837702 5.4511719 9.1113281 L 4.5820312 9.9589844 C 3.9667011 8.7951643 4.1739961 7.3096564 5.1855469 6.3398438 C 5.2115058 6.3149548 5.251088 6.2813272 5.28125 6.2539062 C 5.317185 6.2156893 5.3559416 6.1741449 5.3984375 6.1328125 C 5.4098715 6.1217005 5.425603 6.1089782 5.4375 6.0976562 z M 10.951172 8.8535156 C 10.377922 9.6311324 9.8347883 10.268592 9.453125 10.599609 C 9.423382 10.629669 9.3881581 10.669553 9.3613281 10.695312 C 8.4998977 11.521214 7.2890945 11.746646 6.2460938 11.386719 L 8.8398438 8.859375 C 8.8816107 8.864625 8.9234665 8.8693006 8.9667969 8.8691406 L 10.951172 8.8535156 z " />
</svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre- jazz.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="1.71875"
inkscape:cy="11.09375"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path169"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.86789;paint-order:stroke markers fill"
d="M 4.4121094 0.037109375 C 4.0689893 0.041569173 3.7363534 0.24221959 3.4882812 0.54101562 L 1.5957031 2.8203125 L 1.2324219 2.765625 C 0.67371855 2.6823485 0.14574916 3.0265825 0.04296875 3.5820312 L 0.017578125 3.7246094 C -0.085202282 4.2800581 0.27526978 4.8307824 0.83398438 4.9140625 L 1.7539062 5.0507812 C 1.8586652 5.0663957 1.9606276 5.0657997 2.0605469 5.0527344 C 2.392597 5.0370258 2.7125702 4.842476 2.953125 4.5527344 L 4.328125 2.8964844 L 5.4824219 4.5507812 A 0.57188776 0.57188776 0 0 0 5.3496094 5.3476562 A 0.57188776 0.57188776 0 0 0 6.1367188 5.4882812 L 6.6933594 6.2851562 A 0.57188776 0.57188776 0 0 0 6.5742188 7.0703125 A 0.57188776 0.57188776 0 0 0 7.3457031 7.21875 L 7.9042969 8.0195312 A 0.57188776 0.57188776 0 0 0 7.8007812 8.7910156 A 0.57188776 0.57188776 0 0 0 8.5546875 8.953125 L 10.542969 11.800781 C 10.733409 12.290388 11.369907 12.467873 11.863281 12.25 L 11.996094 12.191406 C 12.512824 11.963223 12.671375 11.391182 12.517578 10.847656 L 11.259766 6.4003906 L 12.265625 6.5859375 C 12.241452 6.6180823 12.220436 6.6501537 12.199219 6.6835938 C 12.195312 6.6828806 12.19141 6.6823437 12.1875 6.6816406 C 12.164432 6.7243985 12.141321 6.7782972 12.117188 6.8300781 C 12.112773 6.8392895 12.107702 6.8481536 12.103516 6.8574219 C 11.844466 7.4291504 11.588785 8.455558 12.371094 9.0097656 C 13.210643 9.3736309 13.731501 10.1859 13.808594 11.097656 C 13.916499 12.46578 12.895417 13.66097 11.527344 13.769531 C 10.644304 13.832811 9.7934907 13.422984 9.2949219 12.691406 L 4.765625 4.9511719 C 4.027611 3.6902582 2.1853621 4.7698542 2.7871094 5.8769531 L 7.0097656 13.052734 C 7.4895337 13.839429 7.9192228 14.469431 8.5664062 15.041016 C 9.4424947 15.688792 10.543966 16.038659 11.699219 15.947266 C 14.24462 15.745897 16.187696 13.469226 15.986328 10.923828 C 15.879901 9.5785387 15.214276 8.3965766 14.230469 7.6113281 L 15.013672 6.703125 C 15.252956 6.4258282 15.381616 6.0829232 15.341797 5.7597656 C 15.333249 5.2848245 14.991891 4.8672199 14.505859 4.7773438 L 10.251953 3.9902344 C 10.075364 3.9127586 9.8713957 3.8850979 9.671875 3.9121094 C 9.4121316 3.9242656 9.1707485 4.0354782 8.9941406 4.2148438 C 8.9880951 4.2210011 8.9824558 4.2280587 8.9765625 4.234375 C 8.7278124 4.471381 8.6333185 4.8283875 8.6835938 5.1933594 L 8.6835938 5.1953125 C 8.690633 5.2549398 8.7016532 5.3126167 8.71875 5.3691406 L 5.4726562 0.71875 C 5.4524488 0.68979967 5.4287611 0.65900308 5.40625 0.6328125 C 5.3097338 0.47084013 5.1727197 0.32979273 5.0058594 0.234375 L 4.8789062 0.16210938 C 4.7256705 0.074480235 4.5680731 0.035082194 4.4121094 0.037109375 z " />
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-light_music.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="-3.5797281"
inkscape:cy="17.810252"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path87"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.10101;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 11.913927,7.6229346e-4 C 11.702753,0.00507029 11.499638,0.03009829 11.316981,0.07287709 10.342839,0.3010337 9.6596049,0.760274 8.9332017,1.3308705 A 2.5162957,2.5162957 0 0 0 8.7929794,1.4470544 C 7.4813228,2.6406786 6.7928719,4.234222 6.603509,5.6136588 6.5152077,6.2571732 6.507613,6.8534125 6.5313952,7.4065007 6.5075032,7.4002443 6.4832821,7.3944721 6.4592814,7.3884722 5.9813105,7.2689837 5.4751708,7.19475 4.9488874,7.1901583 4.4226041,7.1855429 3.8766572,7.2492794 3.3223092,7.4065007 1.8170068,7.8334091 0.61063534,8.7350462 0.28549569,10.675684 0.12293136,11.646003 0.46817173,12.863969 1.15888,13.644389 c 0.6907083,0.780418 1.5531305,1.206968 2.5199943,1.502382 A 2.5162957,2.5162957 0 0 0 5.860332,14.798218 l 0.00401,-0.0021 c -0.014582,0.244956 0.0562,0.495592 0.2223525,0.703114 l 0.092146,0.114181 c 0.3558909,0.444519 0.9997671,0.516157 1.4442892,0.160254 L 15.367401,9.5739365 c 0.444522,-0.3558897 0.516154,-1.0017647 0.160254,-1.4462924 l -0.09214,-0.1141812 c -0.211996,-0.264795 -0.52582,-0.39407 -0.839331,-0.3826066 l 0.232367,-0.1943079 a 2.5162957,2.5162957 0 0 0 0.899421,-1.7928419 c 0.0425,-0.7771586 0.04274,-1.5040257 -0.07011,-2.2455592 C 15.545039,2.6566189 15.365239,1.8176069 14.576145,0.99233413 13.935006,0.32180159 12.828977,-0.01801691 11.913927,7.6229346e-4 Z M 12.154308,2.4867025 c 0.90699,-0.017077 1.162788,1.1711353 1.061682,3.0187856 L 9.2837574,8.7906951 A 2.5162957,2.5162957 0 0 0 9.1635669,8.6785173 C 8.969855,6.7711543 8.775704,4.8640884 10.485663,3.3080051 11.194946,2.7508626 11.742035,2.4944644 12.154308,2.4867025 Z M 4.9949593,9.6841112 c 0.8037381,-0.00363 1.5101396,0.2786853 2.1774514,0.6750708 A 2.5162957,2.5162957 0 0 0 7.4047791,10.64163 L 4.4140386,12.740957 C 1.6896086,11.908545 2.8795402,10.148202 4.007394,9.8283395 4.3534308,9.7301957 4.6818869,9.6855074 4.9949593,9.6841112 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-metal.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-2.78125"
inkscape:cy="16.90625"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path30"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.49216;stroke-dasharray:none;paint-order:stroke markers fill"
d="M 14.083984 0.453125 C 14.068046 0.45312504 14.052844 0.45428566 14.037109 0.45507812 C 14.010346 0.45644632 13.983619 0.45918523 13.957031 0.46289062 C 13.945199 0.46451153 13.933557 0.46668709 13.921875 0.46875 C 13.917365 0.46955689 13.912703 0.46982833 13.908203 0.47070312 C 13.829574 0.48581976 13.753629 0.51127315 13.683594 0.54492188 C 13.674405 0.54937711 13.665319 0.55381417 13.65625 0.55859375 C 13.606239 0.58475751 13.55965 0.61582832 13.515625 0.65039062 C 13.51125 0.65383383 13.50628 0.65662259 13.501953 0.66015625 C 13.500548 0.66130082 13.499445 0.66290979 13.498047 0.6640625 C 13.496987 0.66493793 13.495197 0.66513473 13.494141 0.66601562 C 13.472636 0.68392085 13.451411 0.70483898 13.431641 0.72460938 C 13.421603 0.73467927 13.411907 0.74338006 13.402344 0.75390625 L 8.5703125 5.5859375 C 7.7929375 5.1916159 6.8560148 5.1410876 6.03125 5.5488281 L 1.6035156 7.7382812 C 1.3403494 7.8684081 1.1041744 8.0378847 0.90039062 8.234375 C 0.89852163 8.236135 0.89639325 8.2384644 0.89453125 8.2402344 L 0.89257812 8.2421875 L 0.89257812 8.2441406 C 0.016032192 9.0962821 -0.27430964 10.473722 0.2890625 11.613281 L 0.34765625 11.732422 C 0.37315542 11.784042 0.40220875 11.835016 0.43164062 11.884766 C 0.4597337 11.932256 0.49016291 11.979751 0.52148438 12.025391 C 0.54874765 12.065061 0.57600898 12.104357 0.60546875 12.142578 C 0.61425474 12.153878 0.62388751 12.164631 0.6328125 12.175781 C 0.66049417 12.210571 0.68936003 12.243881 0.71875 12.277344 C 1.1109371 12.724532 1.6402322 13.048982 2.1113281 13.177734 C 2.2127741 13.205424 2.2743305 13.172341 2.3652344 13.181641 C 2.3740044 13.271741 2.3415397 13.334586 2.3691406 13.435547 C 2.4977509 13.906129 2.823095 14.436065 3.2695312 14.828125 C 3.3034882 14.857895 3.3377369 14.887986 3.3730469 14.916016 C 3.3840639 14.924816 3.395024 14.934649 3.40625 14.943359 C 3.44446 14.972789 3.4818376 15.000154 3.5214844 15.027344 C 3.6149393 15.091474 3.7134952 15.149315 3.8144531 15.199219 L 3.9316406 15.257812 C 5.0718052 15.821486 6.4526675 15.529981 7.3046875 14.652344 C 7.3069575 14.650044 7.3082869 14.648784 7.3105469 14.646484 C 7.3605828 14.595054 7.4089316 14.539865 7.4550781 14.484375 C 7.5905733 14.32057 7.7095393 14.139849 7.8066406 13.943359 L 9.9960938 9.5136719 C 10.402474 8.6916532 10.351915 7.7600343 9.9609375 6.984375 L 14.519531 2.4257812 L 15.080078 2.4257812 C 15.590099 2.4257868 16.000003 2.0158687 16 1.5058594 L 16 1.375 C 16.000004 0.86499773 15.590092 0.45312291 15.080078 0.453125 L 14.083984 0.453125 z M 6.7597656 7.3964844 L 5.7558594 8.4003906 C 5.3952272 8.7610089 5.3952265 9.3424866 5.7558594 9.703125 L 5.8476562 9.7949219 C 6.2082961 10.155567 6.7897598 10.155553 7.1503906 9.7949219 L 8.1386719 8.8066406 L 6.0332031 13.066406 C 5.9908372 13.152146 5.9376779 13.229455 5.875 13.294922 C 5.6383335 13.544139 5.2787099 13.643287 4.9433594 13.541016 C 4.8954704 13.526426 4.847227 13.507335 4.8007812 13.484375 L 4.6835938 13.425781 C 4.6561908 13.412181 4.6303887 13.398472 4.6054688 13.382812 C 4.6045721 13.382315 4.6024525 13.381359 4.6015625 13.380859 C 4.5756935 13.364469 4.5505977 13.346705 4.5273438 13.328125 C 4.5226938 13.324425 4.5182789 13.320186 4.5136719 13.316406 C 4.2156941 13.058699 4.1841461 12.623713 4.2695312 12.195312 L 4.4980469 11.052734 L 4.4941406 11.052734 L 4.4941406 11.046875 L 3.3515625 11.277344 C 2.9229548 11.362774 2.4881447 11.331589 2.2304688 11.033203 C 2.2265788 11.028703 2.222447 11.024101 2.21875 11.019531 C 2.200133 10.996311 2.1844727 10.971202 2.1679688 10.945312 C 2.1515828 10.919443 2.1352067 10.891841 2.1210938 10.863281 L 2.0625 10.746094 C 2.0395135 10.699641 2.0205021 10.65146 2.0058594 10.603516 C 1.9035955 10.268172 2.0027219 9.9065743 2.2519531 9.6699219 C 2.31742 9.6072441 2.3947322 9.556038 2.4804688 9.5136719 L 6.7597656 7.3964844 z M 4.6152344 9.2304688 L 3.9453125 9.9003906 L 5.5703125 11.525391 L 6.2402344 10.855469 L 4.6152344 9.2304688 z " />
</svg>

Before

Width:  |  Height:  |  Size: 5 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-music_of_world.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-4.65625"
inkscape:cy="16.15625"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path230"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.19521;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 7.9999987,-2.5e-7 C 3.6098256,-2.5e-7 -3e-7,3.6098258 -3e-7,7.9999989 -3e-7,12.390148 3.6098256,16 7.9999987,16 12.390138,16 16,12.390148 16,7.9999988 16,3.6098257 12.390138,-2.5e-7 7.9999987,-2.5e-7 Z m 0,2.39042885 a 5.6099799,5.6099799 0 0 1 1.3586226,0.1890865 c 0.09084,0.1639595 0.180059,0.3372298 0.261453,0.5229063 0.4122417,0.1658121 0.8028847,0.3691456 1.1718707,0.6069454 -0.0747,-0.2371305 -0.153202,-0.4682682 -0.23811,-0.6839805 a 5.6099799,5.6099799 0 0 1 1.533704,1.1601982 c -0.165931,0.036334 -0.343231,0.068295 -0.515903,0.1027167 0.22274,0.1896446 0.434736,0.3924032 0.634957,0.6069442 l 0.130727,0.1400648 c 0.119521,-0.026175 0.236998,-0.054514 0.350161,-0.084035 a 5.6099799,5.6099799 0 0 1 0.882404,2.6028602 h -1.944558 -0.235774 v -0.228773 c -0.006,-0.1072106 -0.01408,-0.2115589 -0.02101,-0.3174788 L 10.362412,8.0723715 10.262034,7.9626507 v 0.4832217 l 0.242777,-0.00705 -0.0047,0.2544504 c -0.03191,0.5851165 -0.09633,1.1648325 -0.172746,1.7181202 l -0.03735,0.221768 -0.105049,-0.0093 c -0.06574,0.300992 -0.169333,0.586791 -0.3104747,0.852057 l 0.2497807,0.01634 -0.09571,0.291801 c -0.1208827,0.394325 -0.2482427,0.764107 -0.3945137,1.094834 -0.08331,0.19604 -0.172966,0.37467 -0.266121,0.541582 A 5.6099799,5.6099799 0 0 1 8.0000039,13.609536 5.6099799,5.6099799 0 0 1 6.6437165,13.422784 c -0.030717,-0.05438 -0.058588,-0.118087 -0.088708,-0.17508 -0.4060382,-0.04315 -0.7906558,-0.159825 -1.1415229,-0.336154 0.00717,0.01888 0.013719,0.03984 0.021009,0.05836 A 5.6099799,5.6099799 0 0 1 3.9101177,11.814383 c 0.067171,-0.01482 0.1398903,-0.02804 0.2100972,-0.04202 -0.1690033,-0.251305 -0.3049446,-0.527014 -0.401518,-0.819375 -0.1375094,0.03 -0.2791268,0.05817 -0.4085207,0.09104 A 5.6099799,5.6099799 0 0 1 2.4277722,8.445833 H 3.8937767 C 4.0562303,8.1155367 4.2695378,7.8132012 4.5264001,7.5540919 H 4.3746641 2.4277722 A 5.6099799,5.6099799 0 0 1 3.3125105,4.9535659 C 3.709752,5.0582666 4.1389821,5.1438798 4.5847612,5.2150191 l 0.2404425,0.03735 -0.03735,0.2427779 C 4.6923556,6.086635 4.6341834,6.7020402 4.6151077,7.3253194 L 4.6127777,7.472387 C 4.8801346,7.2209736 5.188084,7.012514 5.5255288,6.8584389 5.5551702,6.4252345 5.5970003,5.9968614 5.6585897,5.5838551 l 0.039685,-0.2241027 0.2287712,0.021012 c 0.471536,0.04494 0.9575114,0.072155 1.4496648,0.086378 V 4.5800685 C 6.9631184,4.5717021 6.5534407,4.5558893 6.155818,4.5217062 L 5.8826924,4.5030251 5.964396,4.2158939 C 6.0725629,3.8152102 6.205625,3.4464723 6.3519073,3.1093871 6.4359308,2.9228381 6.5261528,2.7503555 6.6180289,2.5864808 A 5.6099799,5.6099799 0 0 1 7.9999956,2.3903904 Z M 5.4344901,3.0300548 C 5.2954747,3.3862765 5.1669294,3.7690427 5.0609856,4.171579 L 4.9979571,4.3886776 4.78786,4.3560005 C 4.4836671,4.3020963 4.1921663,4.2460408 3.9147941,4.1832549 A 5.6099799,5.6099799 0 0 1 5.4344901,3.0300596 Z M 8.2731243,3.627662 V 7.866938 C 7.8823489,7.6053545 7.4130612,7.4514146 6.9074986,7.4514146 c -1.3582046,0 -2.4581269,1.1022566 -2.4581269,2.4604617 0,1.3582147 1.0999223,2.4581247 2.4581269,2.4581247 1.3184398,0 2.3939277,-1.036003 2.4557917,-2.339071 0.0012,-0.02367 0.0047,-0.0487 0.0047,-0.07237 V 5.8126597 c 0.327846,0.1957642 0.595332,0.4948439 0.8567257,0.7843595 0.049,0.054263 0.09831,0.1081788 0.147067,0.1610742 L 11.55296,5.506857 C 10.67179,4.5626746 9.5595323,3.8924737 8.2731243,3.627662 Z m 3.1234317,4.8182081 h 0.233441 1.939888 a 5.6099799,5.6099799 0 0 1 -0.882404,2.6028589 c -0.396644,-0.09956 -0.825634,-0.188125 -1.279253,-0.268456 l -0.235775,-0.03968 0.03968,-0.233441 c 0.0955,-0.5851157 0.152626,-1.2028557 0.184418,-1.832505 z m -0.408521,3.1677849 0.224103,0.03035 c 0.304062,0.049 0.590506,0.109709 0.873067,0.172746 a 5.6099799,5.6099799 0 0 1 -1.517363,1.150861 c 0.140701,-0.355493 0.265549,-0.737269 0.37117,-1.143857 z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-pop.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="-7.7339804"
inkscape:cy="21.699339"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path16"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.71888;paint-order:stroke markers fill"
d="M 11.591797 -0.005859375 C 10.456206 -0.0062220059 9.3212901 0.42090902 8.4667969 1.2753906 C 7.7621086 1.9800793 7.3481518 2.8769724 7.2246094 3.8066406 C 7.2179588 3.8152271 7.211501 3.823171 7.2050781 3.8320312 L 2.4980469 10.324219 C 2.4491686 10.391642 2.4107872 10.463508 2.3808594 10.537109 C 2.07822 11.086657 2.0168736 11.740489 2.1972656 12.332031 L 0.47265625 14.058594 C 0.18897439 14.228336 4.8853054e-17 14.536617 0 14.892578 L 0 15.03125 C 0 15.57055 0.43335963 16.005859 0.97265625 16.005859 L 12.453125 16.005859 C 12.992424 16.005859 13.427734 15.57055 13.427734 15.03125 L 13.427734 14.892578 C 13.427734 14.353279 12.992424 13.919922 12.453125 13.919922 L 4.6484375 13.919922 C 4.9370974 13.886764 5.2200529 13.799108 5.4804688 13.658203 C 5.5596316 13.627571 5.636774 13.587505 5.7089844 13.535156 L 12.199219 8.828125 C 12.230741 8.8052744 12.261025 8.7814713 12.289062 8.7558594 C 13.182718 8.6165891 14.039443 8.2086032 14.71875 7.5292969 C 16.427736 5.8203105 16.425842 2.9863343 14.716797 1.2773438 C 13.862306 0.42285267 12.727388 -0.0054967441 11.591797 -0.005859375 z M 11.591797 2.0664062 A 2.3354256 2.3354256 0 0 1 13.242188 2.7519531 A 2.3354256 2.3354256 0 0 1 13.244141 6.0546875 A 2.3354256 2.3354256 0 0 1 9.9414062 6.0546875 A 2.3354256 2.3354256 0 0 1 9.9414062 2.75 A 2.3354256 2.3354256 0 0 1 11.591797 2.0664062 z M 7.7675781 6.609375 C 7.955623 6.9391297 8.1873895 7.2498894 8.4667969 7.5292969 C 8.7602019 7.8227016 9.0871683 8.0631999 9.4355469 8.2558594 L 5.0488281 11.4375 C 4.924257 11.472099 4.787065 11.442057 4.6894531 11.34375 C 4.5930605 11.246934 4.5626007 11.109478 4.5957031 10.986328 L 7.7675781 6.609375 z M 3.6582031 13.820312 C 3.8064349 13.868641 3.9593372 13.902239 4.1132812 13.919922 L 3.5585938 13.919922 L 3.6582031 13.820312 z " />
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -1,40 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-punk.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-4.65625"
inkscape:cy="16.15625"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path802"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.10368;paint-order:stroke markers fill"
inkscape:transform-center-x="-2.2560875"
inkscape:transform-center-y="-3.7601404"
d="M 12.401185,2.5039952e-5 C 11.473827,2.6139952e-5 10.548269,0.35024425 9.8515523,1.0469656 c -0.0048,0.00473 -0.0092,0.00706 -0.0129,0.010754 -0.0012,0.00121 -0.0053,0.00524 -0.0065,0.00645 L 6.8655139,4.0308583 C 6.5449941,4.3513777 6.690674,5.0125987 7.19013,5.5120532 L 7.3169668,5.6388906 C 7.8164466,6.1383704 8.4776539,6.2840141 8.7981617,5.9635068 L 9.3098083,5.45186 11.764851,2.9968167 c 0.32052,-0.3205184 0.836058,-0.3205063 1.156579,0 l 0.08169,0.081692 c 0.32052,0.3205205 0.32052,0.8360593 0,1.1565787 l -2.455041,2.4571872 -0.509496,0.5116467 c -0.2742237,0.2742236 -0.2064587,0.79517 0.131136,1.253319 L 7.0912413,11.535718 C 6.9408035,10.915661 6.6249718,10.329912 6.1474901,9.8524439 5.4687394,9.1736871 4.5721037,8.8251486 3.6687994,8.8076533 L 6.4807052,4.1469409 C 6.7148577,3.7588373 6.591476,3.2588512 6.2033842,3.0247586 l -0.09889,-0.060194 C 5.7164034,2.730408 5.2142669,2.8537926 4.9801622,3.2418852 L 0.9020389,10.002929 c -0.00133,0.0022 -0.00299,0.0042 -0.0043,0.0064 -1.2435531,1.405151 -1.19386852,3.602264 0.148339,4.944483 1.3934437,1.393444 3.7101339,1.395589 5.1035659,0.0022 0.00478,-0.0047 0.00919,-0.0092 0.012899,-0.0129 0.0012,-0.0012 0.0031,-0.0031 0.0043,-0.0043 L 11.751953,9.3536959 c 0.042,-0.042 0.07864,-0.087597 0.10964,-0.1354355 0.03946,-0.023206 0.07464,-0.050988 0.107492,-0.083841 l 2.966691,-2.9666891 0.0065,-0.00645 0.0129,-0.010743 C 16.348613,4.7571056 16.346466,2.440415 14.952968,1.0469711 14.256252,0.35025525 13.328543,2.9439952e-5 12.401185,3.0539952e-5 Z M 3.5978569,10.677958 a 1.7268117,1.7268117 0 0 1 1.2210722,0.503047 1.7268117,1.7268117 0 0 1 0,2.444294 1.7268117,1.7268117 0 0 1 -2.4421445,0 1.7268117,1.7268117 0 0 1 0,-2.442144 1.7268117,1.7268117 0 0 1 1.2210723,-0.505197 z" />
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-rap&amp;hip_hop.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="1.53125"
inkscape:cy="10.09375"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path13"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:0.93569;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 4.5029338,0.35791756 C 2.0406173,0.35791756 5.7289231e-7,2.3985451 5.7289231e-7,4.860851 V 9.6580047 C 5.7289231e-7,12.12034 2.0406173,14.160937 4.5029338,14.160937 h 3.0006565 c 0.021439,0.04153 0.043344,0.08303 0.068196,0.122755 l -0.1285992,0.222126 c -0.2015831,0.349157 -0.086993,0.789093 0.2571991,0.987879 l 0.08963,0.0526 c 0.3442579,0.198766 0.7843793,0.07848 0.9859306,-0.270838 l 0.1208049,-0.212385 c 0.4630806,0.02474 0.9257582,-0.142347 1.2665103,-0.465686 0.04966,-0.03661 0.09753,-0.08024 0.138342,-0.130548 l 3.723543,-4.586713 c 0.01906,-0.023544 0.03693,-0.047253 0.05261,-0.072094 C 14.685826,9.5381766 15.216986,9.087224 15.570291,8.4752744 16.461026,6.9324746 15.920605,4.9137458 14.377827,4.0230011 13.707089,3.6357386 12.947121,3.5187995 12.228655,3.6372021 11.687068,1.7581553 9.9379383,0.35791357 7.8991366,0.35791357 Z m 0,1.88612694 h 3.3961975 c 1.3263448,0 2.4131757,0.9781942 2.5895277,2.2543888 C 10.272314,4.7043801 10.08128,4.9437892 9.9255485,5.2135249 9.5581816,5.8498275 9.4346572,6.5679878 9.5241627,7.2535818 c -0.00279,0.00599 -0.00698,0.014051 -0.00978,0.021434 L 7.6029626,12.274811 H 4.5029338 c -1.4501643,0 -2.6168063,-1.166636 -2.6168063,-2.6168063 V 4.860851 c 0,-1.4501507 1.166642,-2.6168065 2.6168063,-2.6168065 z m 1.699073,0.5027072 c -0.74317,-2.295e-4 -1.4866933,0.2805789 -2.0459022,0.8397942 -1.1184217,1.1184019 -1.1184207,2.9733731 0,4.0918039 0.087013,0.086993 0.179752,0.1662785 0.2747355,0.2396634 C 4.8018669,7.4877793 5.3270597,7.1939141 5.917529,7.1288792 a 1.5283871,1.5283871 0 0 1 -0.7949792,-0.4150253 1.5283871,1.5283871 0 0 1 0,-2.1628111 1.5283871,1.5283871 0 0 1 2.1589139,0.00195 1.5283871,1.5283871 0 0 1 0.1948479,0.2474568 C 8.0723386,4.9672772 8.6148762,5.2517707 9.0857543,5.6246515 9.083759,4.8842671 8.803232,4.1457723 8.245961,3.5884913 7.6867536,3.0292759 6.9451787,2.7469782 6.2020068,2.7467487 Z m 5.5999272,0.9917758 c -0.04114,0.012494 -0.0821,0.026843 -0.122755,0.040917 0.0408,-0.014126 0.08146,-0.02838 0.122755,-0.040917 z m -0.24356,0.083784 c -0.07584,0.029565 -0.150488,0.060378 -0.224075,0.095475 0.07342,-0.034941 0.148435,-0.066026 0.224075,-0.095475 z m -0.28253,0.126651 c -0.06262,0.031421 -0.124477,0.063953 -0.185105,0.099373 0.06067,-0.035365 0.122453,-0.068003 0.185105,-0.099373 z m 1.473049,1.1729836 A 1.7214315,1.7214315 0 0 1 13.610122,5.3538154 1.7214315,1.7214315 0 0 1 14.23948,7.7056287 1.7214315,1.7214315 0 0 1 11.887666,8.3349878 1.7214315,1.7214315 0 0 1 11.25636,5.9831745 1.7214315,1.7214315 0 0 1 12.302692,5.1804009 1.7214315,1.7214315 0 0 1 12.748893,5.1219461 Z M 6.186419,5.3538154 c -0.1546123,0.00776 -0.2763283,0.1356694 -0.276684,0.2922719 -5.58e-5,0.1619738 0.1303102,0.2942802 0.2922718,0.2942204 0.025619,10e-6 0.050389,-0.00376 0.074043,-0.00975 V 5.3635541 c -0.023614,-0.00599 -0.048463,-0.00975 -0.074043,-0.00975 -0.00505,-10e-7 -0.010601,-2.504e-4 -0.015588,0 z m 0.8378456,0.105218 V 8.1245517 C 6.9935578,8.1039967 6.9629458,8.0844563 6.9307377,8.0660971 6.7052796,7.9375826 6.4450169,7.8634554 6.1669342,7.8634554 c -0.8538139,0 -1.5470917,0.6932886 -1.5470917,1.5470924 0,0.8538232 0.6932778,1.5451432 1.5470917,1.5451432 0.8288126,0 1.5043046,-0.651935 1.5431948,-1.4711017 8.978e-4,-0.014865 0.00165,-0.029951 0.00195,-0.044814 V 6.8327105 c 0.2060933,0.1230665 0.3754104,0.3109794 0.5397287,0.4929654 0.030826,0.034119 0.060905,0.06803 0.091582,0.1013203 L 9.0857542,6.6398115 C 8.5318193,6.046257 7.8329403,5.6255064 7.0242646,5.4590334 Z m 3.4215284,3.6865214 c 0.196445,0.1982362 0.42064,0.3749897 0.672225,0.5202433 0.265015,0.1530051 0.547016,0.2625279 0.832,0.3331897 L 9.4306358,13.102914 c -0.081895,0.04769 -0.1869582,0.05124 -0.2747358,0 C 9.068169,13.052034 9.0207004,12.959864 9.0214546,12.8652 Z M 7.3769393,12.878839 c -0.00708,0.02783 -0.011842,0.05576 -0.015588,0.08379 -0.012864,0.05133 -0.023289,0.10201 -0.031176,0.153929 0.0078,-0.05115 0.016545,-0.103328 0.029227,-0.153929 0.00374,-0.02803 0.010147,-0.05567 0.017536,-0.08379 z m -0.048712,0.261096 c -0.00751,0.05462 -0.013444,0.110815 -0.015588,0.165621 -0.00221,0.05672 -0.00147,0.113058 0.00195,0.169517 -0.00351,-0.0565 -0.00411,-0.112744 -0.00195,-0.169517 0.00211,-0.05528 0.00797,-0.11051 0.015588,-0.165621 z m -0.01364,0.342933 c 0.0029,0.04461 0.00729,0.08831 0.01364,0.132496 -0.00641,-0.04408 -0.010667,-0.08798 -0.01364,-0.132496 z m 0.025331,0.198745 c 0.00647,0.03526 0.014733,0.07043 0.023381,0.105217 -0.00873,-0.03484 -0.016834,-0.0699 -0.023381,-0.105217 z m 0.037021,0.155878 c 0.0066,0.02351 0.013835,0.04693 0.021433,0.07014 -0.00766,-0.02327 -0.014767,-0.04658 -0.021433,-0.07014 z" />
</svg>

Before

Width:  |  Height:  |  Size: 5.8 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-reggae.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-4.65625"
inkscape:cy="16.15625"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path86"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.22415;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.0000003,1.2e-7 C 3.6114823,1.2e-7 1.75e-7,3.6114824 1.75e-7,8 c 0,4.388518 3.611482125,8 8.000000125,8 C 12.388518,16 16,12.388518 16,8 16,6.6187592 15.642086,5.3158505 15.014943,4.1769286 l -0.03587,0.038255 v 1.317393 l -0.0024,0.028692 c 0.0013,-0.014322 -0.0012,0.012303 -0.0024,0.038255 -0.04689,0.9875437 -0.611588,1.84468 -1.424985,2.3096238 5.03e-4,0.030359 0.0024,0.060496 0.0024,0.090854 0,1.0877487 -0.320919,2.1043816 -0.870293,2.9647346 L 9.2241486,7.5074724 V 2.5893602 C 9.7167328,2.7025829 10.185855,2.8799068 10.620443,3.115362 11.06471,2.8211869 11.59464,2.6491341 12.162582,2.6491341 c 0.04995,0 0.08679,0.038197 0.136282,0.040646 V 1.2695765 C 11.053833,0.46795528 9.5774851,1.2e-7 8.0000003,1.2e-7 Z M 13.216975,0.61446498 V 3.8852362 C 12.915541,3.6834598 12.552547,3.5672453 12.162582,3.5672453 c -1.047698,0 -1.895994,0.8483212 -1.895994,1.895995 0,1.0476984 0.848296,1.8959952 1.895994,1.8959952 1.017009,0 1.848266,-0.7999687 1.895995,-1.80514 0.0011,-0.01824 0.0012,-0.036751 0.0024,-0.054991 V 2.3024516 c 0.252884,0.1510097 0.460654,0.3792008 0.662283,0.6025099 0.03783,0.041866 0.0748,0.083478 0.112377,0.1243282 l 0.91097,-0.9635393 C 15.066905,1.3374201 14.209342,0.81873868 13.217037,0.61446498 Z M 6.7758521,2.5869694 v 4.920503 L 3.3185897,10.964735 C 2.7692152,10.104382 2.4482966,9.0877488 2.4482966,8 c 0,-2.6264811 1.8618957,-4.849707 4.3275555,-5.4130306 z m 0,8.3825476 v 2.441124 C 6.1560453,13.269035 5.5755449,13.024882 5.0520028,12.693367 Z m 2.4482965,0 1.7238494,1.72385 c -0.523542,0.331515 -1.1040432,0.575668 -1.7238494,0.717274 z" />
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.6 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-rock.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-0.71875"
inkscape:cy="16.03125"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="rect5-2"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.65884;stroke-dasharray:none;paint-order:stroke markers fill"
d="M 13.992188 0.46875 C 13.975489 0.46875 13.959845 0.46987287 13.943359 0.47070312 C 13.942052 0.47076981 13.940761 0.47063112 13.939453 0.47070312 C 13.923692 0.47157111 13.90829 0.47296749 13.892578 0.47460938 C 13.881529 0.47576394 13.870387 0.47697838 13.859375 0.47851562 C 13.845071 0.48047505 13.830499 0.4818 13.816406 0.484375 C 13.81378 0.48486282 13.811216 0.48581829 13.808594 0.48632812 C 13.789006 0.4900716 13.76914 0.49509817 13.75 0.5 C 13.735156 0.5038486 13.719763 0.50714919 13.705078 0.51171875 C 13.684158 0.51819825 13.662853 0.52537008 13.642578 0.53320312 C 13.636061 0.53573719 13.62952 0.5383341 13.623047 0.54101562 C 13.605933 0.54805245 13.590816 0.55647889 13.574219 0.56445312 C 13.563799 0.56947033 13.553242 0.57466365 13.542969 0.58007812 C 13.514404 0.59509281 13.487705 0.61119991 13.460938 0.62890625 C 13.436247 0.6452388 13.411688 0.66316307 13.388672 0.68164062 C 13.386818 0.68313172 13.384658 0.68404008 13.382812 0.68554688 C 13.381375 0.68671842 13.380337 0.68827345 13.378906 0.68945312 C 13.377488 0.69062452 13.376413 0.69217864 13.375 0.69335938 C 13.352391 0.71222251 13.33132 0.73112082 13.310547 0.75195312 C 13.296359 0.76618096 13.280856 0.77982988 13.267578 0.79492188 L 8.7148438 5.3476562 C 8.4824736 4.9585572 8.1617599 4.6800783 7.9023438 4.5175781 C 7.4731536 4.2487409 7.090089 4.1398052 6.7070312 4.125 C 6.4771956 4.1157016 6.2476398 4.1409046 6.0078125 4.1875 C 5.368276 4.3118815 4.6968166 4.7126672 4.2578125 5.296875 C 3.8080263 5.8954437 3.5930391 6.4167968 3.3964844 6.8359375 C 2.8286975 6.9295413 2.0875628 7.1292299 1.2871094 7.9296875 C -0.438054 9.6549222 -0.42455462 12.513015 1.296875 14.234375 C 3.0181424 15.956086 5.8763433 15.968871 7.6015625 14.244141 C 8.212589 13.633102 8.3377235 13.14463 8.4960938 12.6875 C 8.5661007 12.485404 8.6078289 12.299587 8.6640625 12.103516 C 8.6806655 12.096316 8.6800846 12.095841 8.6972656 12.087891 C 8.9337022 11.983632 9.2217326 11.868291 9.5898438 11.636719 C 9.9579569 11.405147 10.709224 11.012838 10.845703 9.7617188 C 10.860653 9.6247224 10.889378 9.423727 10.859375 9.0839844 C 10.829383 8.7442313 10.764992 8.1194957 10.105469 7.5234375 C 9.988001 7.4172722 9.8593945 7.3308999 9.7246094 7.2597656 L 14.449219 2.5351562 L 15.035156 2.5351562 C 15.569515 2.5351562 16 2.1046603 16 1.5703125 L 16 1.4335938 C 16 0.8992459 15.569515 0.46875 15.035156 0.46875 L 13.992188 0.46875 z M 6.5214844 6.203125 C 6.6373331 6.201055 6.7403173 6.2278943 6.8066406 6.2695312 C 7.0901993 6.4471513 7.0983016 6.7602899 6.7460938 7.3164062 L 5.2675781 8.7949219 C 4.8897379 9.172757 4.8897379 9.7823112 5.2675781 10.160156 L 5.3632812 10.255859 C 5.7411309 10.633715 6.3506743 10.633705 6.7285156 10.255859 L 7.8027344 9.1816406 C 8.6553397 8.5943949 8.8301432 9.1780569 8.7910156 9.5371094 C 8.7354009 10.04694 7.0098792 10.355809 6.8828125 10.833984 C 6.6560804 11.687205 6.4504528 12.473381 6.140625 12.783203 C 5.2097678 13.714055 3.6961957 13.710355 2.7597656 12.773438 C 1.8233366 11.837006 1.819211 10.321488 2.75 9.390625 C 3.270018 8.870607 3.9917475 8.8862837 4.6523438 8.7070312 C 4.9301829 8.6316109 5.3790516 7.2438908 5.9101562 6.5371094 C 6.0944991 6.2917971 6.3284033 6.206865 6.5214844 6.203125 z M 3.9101562 9.8261719 L 3.2089844 10.529297 L 4.9101562 12.232422 L 5.6132812 11.529297 L 3.9101562 9.8261719 z " />
</svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-ska.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="-4.65625"
inkscape:cy="16.15625"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path202"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.22415;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8,0 C 3.611482,0 0,3.6114823 0,8 c 0,4.388519 3.611482,8 8,8 4.388519,0 8,-3.611481 8,-8 0,-1.381242 -0.357914,-2.6841508 -0.985056,-3.8230726 l -0.03587,0.038255 v 1.3173941 l -0.0024,0.028692 c 0.0012,-0.014323 -0.0011,0.012303 -0.0024,0.038255 -0.04688,0.9875437 -0.611589,1.8446801 -1.424986,2.3096239 5.02e-4,0.030358 0.0024,0.060495 0.0024,0.090854 0,3.0464496 -2.505254,5.5517046 -5.5517032,5.5517026 -0.2281604,0 -0.4529728,-0.01575 -0.6742376,-0.04304 v -0.70532 c 0,-0.02913 -0.00147,-0.05626 -0.00722,-0.08368 0.016036,0.0012 0.031289,0.0024 0.047815,0.0024 H 8.776982 c 0.232319,0 0.41841,-0.186091 0.41841,-0.41841 v -1.413031 c 0,-0.232318 -0.186091,-0.418409 -0.41841,-0.418409 H 7.3662939 c -0.013833,0 -0.026319,0.0012 -0.040642,0.0024 2.326e-4,-0.0061 0,-0.01114 0,-0.01673 v -1.40836 c 0,-0.02913 -0.00147,-0.05626 -0.00722,-0.08368 0.016036,0.0012 0.031289,0.0024 0.047815,0.0024 H 8.776887 c 0.232319,0 0.41841,-0.188494 0.41841,-0.420801 V 7.1392707 c 0,-0.2323066 -0.186091,-0.4184102 -0.41841,-0.4184102 H 7.3662469 c -0.013711,0 -0.028719,0.00117 -0.043041,0.00239 2.326e-4,-0.00612 0,-0.013497 0,-0.019129 V 5.2982668 c 0,-0.029135 9.475e-4,-0.056261 -0.00477,-0.083682 0.016036,0.00122 0.031289,0.00239 0.047815,0.00239 H 8.776891 c 0.232319,0 0.41841,-0.1908741 0.41841,-0.4231917 V 3.3879259 c 0,-0.2323189 -0.186091,-0.420801 -0.41841,-0.420801 H 7.3662509 c -0.2323189,0 -0.4184102,0.1884821 -0.4184102,0.420801 v 1.4058584 c 0,0.028033 0.00105,0.05724 0.00722,0.083681 -0.016159,-0.00122 -0.033566,0 -0.050214,0 h -1.40813 c -0.017628,0 -0.033194,-0.00122 -0.05021,0 0.0049,-0.026442 0.00956,-0.055649 0.00956,-0.083681 V 3.3879259 c 0,-0.1010131 -0.036758,-0.1933383 -0.095637,-0.2653917 0.7868088,-0.429987 1.6868185,-0.6742376 2.6395695,-0.6742376 0.9456048,0 1.8378578,0.2430693 2.6204428,0.6670653 0.444268,-0.2941751 0.974197,-0.4662291 1.54214,-0.4662291 0.04994,0 0.08679,0.038198 0.136282,0.040647 V 1.2695752 C 11.053834,0.4679552 9.577485,0 8,0 Z m 5.216976,0.6168557 V 3.8876269 C 12.915542,3.6858505 12.552547,3.567244 12.162583,3.567244 c -1.047699,0 -1.895995,0.8483213 -1.895995,1.8959964 0,1.0476983 0.848296,1.8983859 1.895995,1.8983859 1.017009,0 1.848265,-0.7999687 1.895995,-1.8051413 0.0011,-0.018239 0.0012,-0.03675 0.0024,-0.05499 V 2.3024503 c 0.252885,0.1510109 0.460655,0.3815927 0.662284,0.6049019 0.03783,0.041866 0.0748,0.083478 0.112377,0.1243269 L 15.746625,2.0657502 C 15.066844,1.3374199 14.209282,0.8211293 13.216976,0.6168557 Z M 3.3042441,5.056784 c 0.076498,0.09601 0.1902417,0.160192 0.3227733,0.160192 H 5.040048 c 0.016526,0 0.031905,-0.00107 0.047819,-0.00239 -0.00612,0.027421 -0.00717,0.054547 -0.00717,0.083682 v 1.4058571 c 0,0.00612 -2.326e-4,0.013497 0,0.019129 -0.01371,-0.00122 -0.026323,-0.00239 -0.040645,-0.00239 H 3.6270174 c -0.2323308,0 -0.41841,0.1861036 -0.4184099,0.4184102 V 8.547523 c 0,0.232307 0.1860791,0.420801 0.4184099,0.420801 H 5.040048 c 0.016526,0 0.031905,-0.0011 0.047819,-0.0024 -0.00612,0.02742 -0.00717,0.05455 -0.00717,0.08368 v 1.408249 c 0,0.0061 -2.203e-4,0.01114 0,0.01673 -0.013833,-0.0012 -0.028714,-0.0024 -0.043036,-0.0024 H 3.6270174 c -0.2024727,0 -0.3691717,0.142212 -0.4088464,0.332337 C 2.7297225,9.979327 2.4482966,9.020567 2.4482966,8.000024 c 0,-1.0783253 0.3152879,-2.0876025 0.8559475,-2.943216 z m 2.154214,2.0657502 c 0.013833,0.00122 0.026323,0 0.040645,0 h 1.4082486 c 0.01371,0 0.027543,0.00122 0.040642,0 -1.836e-4,0.0049 0,0.010001 0,0.016737 V 8.54752 c 0,0.02901 0.00343,0.05877 0.00955,0.08607 -0.016159,-0.0012 -0.033566,-0.0024 -0.050215,-0.0024 h -1.408224 c -0.017628,0 -0.033194,8.61e-4 -0.05021,0.0024 0.00612,-0.02742 0.00956,-0.05706 0.00956,-0.08607 V 7.1392707 c 0,-0.0049 1.837e-4,-0.010001 0,-0.016737 z m 0,3.7513448 c 0.013833,0.0012 0.026323,0.0024 0.040645,0.0024 h 1.4082486 c 0.01371,0 0.027543,-0.0012 0.040642,-0.0024 -1.836e-4,0.0049 0,0.01004 0,0.01673 v 1.41064 c 0,0.02914 0.00343,0.05626 0.00955,0.08368 -0.016159,-0.0012 -0.033566,-0.0024 -0.050215,-0.0024 h -1.408224 c -0.017628,0 -0.033194,8.61e-4 -0.05021,0.0024 0.00612,-0.02742 0.00956,-0.05455 0.00956,-0.08368 v -1.41064 c 0,-0.0049 1.837e-4,-0.01004 0,-0.01673 z" />
</svg>

Before

Width:  |  Height:  |  Size: 5.3 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-sounds_of_nature&amp;noise_of_city.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="0.78125"
inkscape:cy="15.96875"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path32"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.42557;paint-order:stroke markers fill"
d="M 9.9594991,5.5629309e-4 C 9.7581292,-0.00911658 9.5721856,0.10807416 9.4928583,0.2933871 L 6.9952921,5.1789443 5.2817574,3.431404 C 5.0428861,3.1890018 4.6350096,3.2625292 4.4958364,3.5730962 L 2.3836735,8.296179 c -0.1027258,0.2301758 -0.011514,0.5006574 0.209705,0.6215586 l 5.0990407,2.7960654 c 0.150355,0.08203 0.3328667,0.07867 0.4798653,-0.0095 L 13.422464,8.5795643 C 13.617014,8.4635091 13.70496,8.2279582 13.634058,8.0127948 L 10.397801,0.33306136 C 10.335121,0.1418383 10.16054,0.00941665 9.9594991,5.5629309e-4 Z M 6.6420054,0.89983088 A 0.4836921,0.4836921 0 0 0 6.2547126,1.0604161 L 5.699278,1.6800846 A 0.4836921,0.4836921 0 0 0 5.633155,2.2317403 l 0.5988869,1.1127588 a 0.4836921,0.4836921 0 0 0 0.8501551,0.00189 L 7.5960686,2.4017681 A 0.4836921,0.4836921 0 0 0 7.5658409,1.8916758 L 7.010406,1.1019785 A 0.4836921,0.4836921 0 0 0 6.6420054,0.89983088 Z M 9.8933763,4.0208448 11.278184,6.7507864 10.086077,8.1696008 8.1515029,8.0071264 Z M 5.3157637,6.2954813 6.5683254,9.0254238 4.573295,7.9334462 Z m 6.5386373,4.2791137 c -0.117314,0.0016 -0.236859,0.02723 -0.351398,0.07746 L 7.9569118,12.206892 3.8988386,11.141365 C 3.4149729,11.014254 2.9226472,11.301728 2.7955264,11.785593 l -0.032117,0.12469 c -0.1271208,0.483856 0.1603628,0.976201 0.6442286,1.103312 l 1.6965315,0.445859 -1.5812883,0.693349 C 3.064726,14.353747 2.8571858,14.882985 3.0581299,15.341131 l 0.051009,0.119021 c 0.2009345,0.458146 0.7320618,0.663807 1.190217,0.462862 l 3.8143625,-1.671972 3.7217896,0.976734 c 0.483856,0.127112 0.976191,-0.160362 1.103312,-0.644229 l 0.03211,-0.124689 c 0.127121,-0.483865 -0.160363,-0.976191 -0.644228,-1.103312 l -1.358359,-0.357064 1.311128,-0.574327 c 0.458146,-0.200935 0.665695,-0.732063 0.464751,-1.190218 l -0.051,-0.117132 c -0.1507,-0.343617 -0.486881,-0.547265 -0.838819,-0.54221 z" />
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-soundtracks.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="1.84375"
inkscape:cy="7.09375"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path23"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.22415;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.0000002,-1e-7 C 3.6114818,-1e-7 -1.5e-7,3.6114821 -1.5e-7,7.9999998 -1.5e-7,12.388517 3.6114818,16 8.0000002,16 12.388518,16 16,12.388517 16,7.9999998 16,3.6114821 12.388518,-1e-7 8.0000002,-1e-7 Z m 0,2.4482965 c 3.0464498,0 5.5517028,2.5052549 5.5517028,5.5517034 0,3.0464482 -2.505253,5.5517032 -5.5517028,5.5517032 -3.0464494,0 -5.5517037,-2.505255 -5.5517037,-5.5517032 0,-3.0464485 2.5052543,-5.5517034 5.5517037,-5.5517034 z M 5.6927674,3.5648531 c -0.062711,0.0014 -0.1258718,0.00677 -0.1864912,0.014346 -0.090941,0.011372 -0.1800014,0.027355 -0.2677825,0.05021 -0.047542,0.012361 -0.094596,0.027437 -0.141064,0.043036 -0.046467,0.015599 -0.093379,0.031447 -0.1386729,0.050208 C 4.686994,3.8352221 4.4393092,4.0054008 4.222355,4.2223553 3.8663845,4.5784111 3.6373887,5.0213251 3.5768081,5.5062763 c -0.053028,0.4243363 0.041903,0.9119691 0.3371189,1.2982663 0.021087,0.027592 0.041387,0.05479 0.064554,0.081291 0.023167,0.0265 0.04883,0.051221 0.074118,0.076509 0.4046137,0.4046553 0.8381728,0.5547836 1.3484759,0.6335923 0.5103143,0.078814 1.1800504,0.058421 1.7142856,-0.475792 C 7.6496052,6.5859168 7.6747657,5.9113922 7.5959354,5.4010754 7.5171301,4.8907696 7.3669786,4.4596246 6.9623431,4.054991 6.6083015,3.7009184 6.1317435,3.5550513 5.6927674,3.5648531 Z m 4.5188286,0 C 9.7995092,3.5765801 9.3640192,3.7262093 9.0352662,4.054991 8.6306302,4.4596259 8.4804791,4.8907696 8.4016739,5.4010754 8.3228439,5.911391 8.3480049,6.5859168 8.8822472,7.1201433 9.4164832,7.6543612 10.086219,7.67475 10.596533,7.5959353 11.106837,7.5171263 11.540395,7.3669983 11.945009,6.962343 12.349619,6.557736 12.481403,5.9912312 12.420801,5.5062763 12.360221,5.0213251 12.131225,4.5784123 11.775254,4.2223553 11.485981,3.933083 11.139457,3.7283074 10.759115,3.6294085 c -0.08778,-0.022855 -0.176842,-0.038825 -0.267782,-0.05021 -0.09093,-0.01136 -0.18464,-0.017051 -0.279737,-0.014345 z M 5.7405857,4.5451289 c 0.2023257,-0.00108 0.3905309,0.065346 0.5283921,0.203227 C 6.5957914,5.0751594 6.8421174,6.0042831 6.4219964,6.4243872 6.0018632,6.844503 5.0751526,6.5957982 4.7483564,6.2689777 4.4215903,5.9421967 4.4955948,5.3382362 4.9157201,4.918111 5.099511,4.7343027 5.3190746,4.616143 5.5349671,4.5690378 5.6043653,4.5539036 5.673144,4.5454888 5.7405857,4.5451289 Z m 4.5164373,0 c 0.06744,3.599e-4 0.13622,0.00878 0.205619,0.023909 0.215892,0.047105 0.435455,0.1652649 0.619247,0.3490732 0.420125,0.4201265 0.494129,1.0240857 0.167364,1.3508667 C 10.922457,6.5957981 9.9957462,6.844503 9.5756132,6.4243872 9.1554912,6.0042831 9.4018182,5.0751594 9.7286312,4.7483559 9.8664922,4.6104752 10.054698,4.5440456 10.257023,4.5451289 Z M 8.0000002,7.1392706 C 7.5004011,7.1390992 7.0949818,7.5434375 7.0938433,8.0430364 7.0936721,8.5435661 7.4994708,8.9493641 8.0000002,8.9491931 8.5005293,8.9493641 8.9039372,8.5435661 8.9037662,8.0430364 8.9026272,7.5434375 8.499599,7.1390992 8.0000002,7.1392706 Z M 5.8099223,8.3682007 C 5.666692,8.3686052 5.5286549,8.3819657 5.4010759,8.4016737 4.8907694,8.4804787 4.4572339,8.6306301 4.0526001,9.0352661 3.6479496,9.4398851 3.5162225,10.006377 3.5768081,10.491333 c 0.011372,0.09094 0.029739,0.180001 0.0526,0.267782 0.098899,0.380342 0.3036746,0.729258 0.5929468,1.018529 0.3560571,0.355972 0.7989706,0.582577 1.2839212,0.643157 0.4849557,0.06061 1.05146,-0.0688 1.4560669,-0.473402 C 7.366998,11.542785 7.5171267,11.109227 7.5959349,10.598924 7.67475,10.08861 7.6519699,9.4164821 7.117752,8.8822471 6.7170826,8.4815648 6.2396133,8.3669874 5.8099223,8.3682007 Z m 4.3777647,0 C 9.7579962,8.3669907 9.2805262,8.4815647 8.8798572,8.8822471 8.3456387,9.4164821 8.3228588,10.08861 8.4016739,10.598924 c 0.078809,0.510303 0.2289373,0.943863 0.6335923,1.348475 0.202303,0.202306 0.445091,0.335601 0.698147,0.411238 0.03163,0.0094 0.06375,0.01626 0.09564,0.02391 0.127544,0.03063 0.2557308,0.0491 0.3825468,0.0526 0.09511,0.0026 0.188808,-0.0029 0.279737,-0.01435 0.484951,-0.06058 0.927864,-0.287186 1.283921,-0.643157 0.289272,-0.289271 0.494046,-0.638188 0.592946,-1.018529 0.02286,-0.08778 0.04123,-0.176842 0.0526,-0.267783 0.06058,-0.484954 -0.07114,-1.0514459 -0.475793,-1.4560649 -0.404634,-0.404636 -0.83817,-0.5547872 -1.348476,-0.6335926 -0.127579,-0.019708 -0.265616,-0.033068 -0.408846,-0.033473 z M 5.7955768,9.3532571 c 0.2421582,7.24e-4 0.4712715,0.06481 0.6288105,0.222355 0.4201159,0.420134 0.171411,1.3492349 -0.1554094,1.6760319 C 5.9421965,11.578409 5.3358457,11.504405 4.9157201,11.084279 4.7319122,10.900488 4.6137471,10.680925 4.5666467,10.465033 4.5061107,10.187438 4.5621267,9.9148371 4.7459652,9.7310221 4.9502174,9.5267631 5.3919795,9.3520521 5.7955768,9.3532571 Z m 4.4064552,0 c 0.403597,-0.0012 0.84536,0.173506 1.049612,0.377765 0.183841,0.183815 0.239854,0.4564159 0.179318,0.7340109 -0.04711,0.215892 -0.165265,0.435455 -0.349073,0.619246 -0.420126,0.420126 -1.026476,0.49413 -1.3532579,0.167365 -0.32682,-0.326797 -0.575525,-1.2558979 -0.155409,-1.6760319 0.157539,-0.157545 0.386652,-0.221631 0.6288099,-0.222355 z" />
</svg>

Before

Width:  |  Height:  |  Size: 6.1 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-genre-soviet_music.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627417"
inkscape:cx="2.541165"
inkscape:cy="18.981398"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path99-5"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.19521;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 7.9999998,-2.5e-7 C 3.6098262,-2.5e-7 2.5e-7,3.6098258 2.5e-7,7.9999989 2.5e-7,12.390174 3.6098262,16 7.9999998,16 12.390175,16 16,12.390174 16,7.9999988 16,3.6098257 12.390173,-2.5e-7 7.9999998,-2.5e-7 Z m 0,2.39042885 A 5.6099799,5.6099799 0 0 1 13.609572,7.9999989 5.6099799,5.6099799 0 0 1 7.9999998,13.609571 5.6099799,5.6099799 0 0 1 2.390429,7.9999989 5.6099799,5.6099799 0 0 1 7.9999998,2.3904286 Z m 0,1.9842424 c -0.1874394,0 -0.3751436,0.098843 -0.4715495,0.2941351 L 6.6437116,6.4616277 4.6664721,6.7487588 C 4.2353945,6.8114239 4.0627449,7.3410962 4.3746716,7.6451696 l 1.4309892,1.3936387 -0.336154,1.9702367 c -0.073637,0.429416 0.3754395,0.755973 0.7610153,0.553254 l 1.7694777,-0.929093 1.7694779,0.929093 C 10.15497,11.765018 10.604118,11.438461 10.530493,11.009045 L 10.194339,9.0388082 11.625328,7.6451695 c 0.312023,-0.3040733 0.13941,-0.8337815 -0.2918,-0.8964108 L 9.3562878,6.4616277 8.4715492,4.6688061 C 8.3752149,4.4735139 8.187439,4.374671 7.9999998,4.374671 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-aggression.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="3.15625"
inkscape:cy="11.96875"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1182"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.60346;paint-order:stroke markers fill"
d="M 8.0009969,2.5e-7 C 3.5972067,2.5e-7 0,3.6150747 0,8.0009903 0,12.386897 3.5972067,16 8.0009969,16 12.404766,16 16.00001,12.386897 16,8.0009904 16,3.6150748 12.404766,2.5e-7 8.0009969,2.5e-7 Z m 0,1.95518085 A 6.031546,6.0448401 0 0 1 14.03215,8.0009903 6.031546,6.0448401 0 0 1 8.0009969,14.044819 6.031546,6.0448401 0 0 1 1.9678505,8.0009903 6.031546,6.0448401 0 0 1 8.0009969,1.9551811 Z M 5.0103427,4.7879161 C 4.6887375,4.7947825 4.3800912,4.9632332 4.2068537,5.2613593 L 4.1390657,5.378234 C 4.0111593,5.598349 3.9817055,5.8475767 4.0373838,6.0755226 a 1.4683864,1.4589327 0 0 0 -0.095701,0.5071189 1.4683864,1.4589327 0 0 0 1.4674143,1.457967 1.4683864,1.4589327 0 0 0 1.4694081,-1.457967 1.4683864,1.4589327 0 0 0 -0.013956,-0.1723413 c 2.3e-4,-0.0013 -2.244e-4,-0.00266 0,-0.00397 C 6.9299232,6.0270572 6.7559961,5.6319679 6.4000008,5.4277532 L 5.5087851,4.9146959 C 5.3516097,4.8245362 5.1788026,4.7843186 5.0103427,4.7879161 Z m 6.0690343,0 c -0.153556,0.00412 -0.307705,0.044817 -0.450592,0.1267798 L 9.7355764,5.4277572 C 9.3814794,5.6308837 9.2085311,6.022981 9.2710281,6.4003962 a 1.4683864,1.4589327 0 0 0 -0.011963,0.1822453 1.4683864,1.4589327 0 0 0 1.4674139,1.457967 1.4683864,1.4589327 0 0 0 1.469409,-1.457967 1.4683864,1.4589327 0 0 0 -0.0957,-0.5090997 c 0.05491,-0.227308 0.02579,-0.4759454 -0.101682,-0.6953078 L 11.930716,5.2613593 C 11.749229,4.9490369 11.417198,4.7788519 11.079376,4.7879161 Z M 5.6363864,9.1459697 c -0.5386503,-1.014e-4 -0.9794367,0.412378 -1.02081,0.9369823 -0.00204,0.02667 -0.00598,0.05404 -0.00598,0.08122 0,0.0041 -8.16e-5,0.0081 0,0.01189 -3.06e-5,0.003 0,0.0059 0,0.0099 3.879e-4,0.01085 9.73e-4,0.02115 0.00199,0.0317 0.056961,1.141523 3.0730925,1.222236 3.3016823,1.222236 0.010412,0 0.059395,-9.68e-4 0.085732,-0.002 0.026235,6.48e-4 0.077313,0.002 0.087725,0.002 0.2285898,0 3.2447003,-0.08073 3.3016813,-1.222236 10e-4,-0.01329 0.002,-0.02603 0.002,-0.03962 1.12e-4,-0.0051 0,-0.0091 0,-0.01386 1.02e-4,-0.5623849 -0.45877,-1.0183123 -1.024797,-1.0182007 l -2.3646104,0.00991 z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-autumn.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16.000001"
inkscape:cx="-0.031249999"
inkscape:cy="17.593749"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1282"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.60346;paint-order:stroke markers fill"
d="M 8.0009969,2.5e-7 C 3.5972067,2.5e-7 0,3.6150747 0,8.0009903 0,12.386897 3.5972067,16 8.0009969,16 12.404766,16 16.00001,12.386897 16,8.0009904 16,3.6150748 12.404766,2.5e-7 8.0009969,2.5e-7 Z m 0,1.95518085 A 6.031546,6.0448401 0 0 1 14.03215,8.0009903 6.031546,6.0448401 0 0 1 8.0009969,14.044819 6.031546,6.0448401 0 0 1 4.6674143,13.020677 l 1.0367602,-1.032068 1.0866044,1.07961 c 0.373333,0.370928 0.9744625,0.370922 1.3477881,0 l 0.095701,-0.09509 c 0.1704344,-0.169337 0.262317,-0.385563 0.277134,-0.606166 l 1.648847,0.437787 c 0.509976,0.135764 1.031703,-0.162874 1.168349,-0.669556 l 0.03389,-0.130742 c 0.05539,-0.205394 0.03923,-0.411534 -0.03389,-0.59428 h 0.25919 c 0.527973,0 0.953022,-0.422322 0.953022,-0.946886 v -0.134703 c 0,-0.5245645 -0.425049,-0.9468871 -0.953022,-0.9468871 h -0.25919 c 0.07312,-0.1827464 0.08929,-0.3888853 0.03389,-0.5942805 L 11.328598,8.6566739 C 11.277884,8.4686504 11.173796,8.3103167 11.037508,8.19116 l 1.124485,-0.6457846 c 0.457231,-0.262285 0.612888,-0.8392697 0.34891,-1.2935499 L 12.443111,6.1349508 C 12.336038,5.950681 12.176423,5.8165917 11.994517,5.7387641 l 0.183428,-0.1822453 c 0.373332,-0.3709301 0.373324,-0.9681895 0,-1.3391115 l -0.0957,-0.095085 c -0.373327,-0.370922 -0.974456,-0.3709291 -1.347789,0 L 10.551028,4.3045689 C 10.47264,4.1241877 10.337447,3.9650791 10.152274,3.858859 L 10.034642,3.7915065 C 9.5774188,3.5292296 8.9966947,3.6838847 8.7327104,4.13817 L 8.0827415,5.2554169 C 7.9630012,5.1209624 7.8025479,5.0183226 7.6142057,4.9681817 L 7.4846106,4.9325241 C 7.2775691,4.8774044 7.0686223,4.8952489 6.884486,4.9681817 V 4.7106596 c 0,-0.524573 -0.4250593,-0.9468854 -0.9530218,-0.9468854 H 5.7958879 C 5.2679255,3.7637732 4.8428661,4.1860866 4.8428661,4.7106596 V 4.9681817 C 4.6591566,4.8958351 4.4511247,4.8775778 4.2447352,4.9325241 L 4.1131465,4.9681817 C 3.6031809,5.1039466 3.3026069,5.6203346 3.4392523,6.1270276 L 3.8818692,7.7652591 C 3.6596159,7.7798459 3.4403798,7.8711101 3.269782,8.0406085 l -0.095701,0.095085 c -0.3733257,0.370923 -0.373333,0.9681814 0,1.3391115 L 4.2606854,10.554414 3.1820561,11.62808 A 6.031546,6.0448401 0 0 1 1.9678505,8.0009903 6.031546,6.0448401 0 0 1 8.0009969,1.9551811 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-calmness.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16.000001"
inkscape:cx="4.8437498"
inkscape:cy="12.843749"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1404"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.01752;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.0009973,2.5e-7 C 3.5972068,2.5e-7 0,3.6150747 0,8.0009903 0,12.386896 3.5972068,16 8.0009973,16 12.404766,16 16.00001,12.386896 16,8.0009904 16,3.6150748 12.404766,2.5e-7 8.0009973,2.5e-7 Z m 0,1.95518085 A 6.031546,6.0448401 0 0 1 14.03215,8.0009903 6.031546,6.0448401 0 0 1 8.0009973,14.044819 6.031546,6.0448401 0 0 1 1.9678505,8.0009903 6.031546,6.0448401 0 0 1 2.04162,7.0560847 6.031546,6.0448401 0 0 1 8.0009973,1.9551811 Z M 4.4839874,5.5763279 C 3.9424682,5.6034999 3.5129226,6.0497173 3.5130216,6.5945274 3.5140416,7.7773712 5.1890905,7.870249 5.389159,7.870249 c 0.014414,0 0.033819,-0.00109 0.057819,-0.00198 C 5.518976,7.865589 5.6308535,7.858099 5.7639865,7.838556 6.2965216,7.7603817 7.1672286,7.4947142 7.1695949,6.6163223 7.1696959,6.0539477 6.7108153,5.5980204 6.1447966,5.5981218 l -1.6069788,-0.02179 h -0.00204 c -0.017027,2.84e-5 -0.035014,-8.438e-4 -0.051837,0 z m 5.3173829,0 C 9.6616234,5.5833362 9.5300727,5.6181844 9.410592,5.6753743 9.395658,5.6825247 9.381254,5.691309 9.366728,5.699146 9.0472471,5.8715532 8.8303342,6.2078887 8.8304046,6.5945274 8.8311702,7.48166 9.7738597,7.7547101 10.329719,7.8365722 c 0.185286,0.027288 0.326805,0.033677 0.376822,0.033677 0.01441,0 0.03382,-0.00109 0.05782,-0.00198 0.072,-0.00268 0.183875,-0.01017 0.317009,-0.029713 0.532535,-0.078176 1.403241,-0.3438438 1.405607,-1.2222358 1.02e-4,-0.5623746 -0.458779,-1.0183019 -1.024797,-1.0182005 l -1.606978,-0.02179 h -0.002 c -0.017027,2.84e-5 -0.035014,-8.438e-4 -0.051837,0 z M 5.1997508,9.8373157 c -0.022866,6.09e-5 -0.045845,9.159e-4 -0.067792,0.00198 -0.00204,5.07e-5 -0.00398,-5.07e-5 -0.00602,0 -0.050326,0.00101 -0.1011623,0.00382 -0.1455451,0.00991 -0.00408,5.771e-4 -0.00817,9.26e-4 -0.011964,0.00198 -0.00204,3.144e-4 -0.00398,0.00198 -0.00602,0.00198 -0.02011,0.00304 -0.039138,0.00484 -0.057819,0.0099 -0.00306,6.187e-4 -0.0049,9.169e-4 -0.00796,0.00198 -0.1854607,0.045742 -0.3011103,0.1625433 -0.3010593,0.4437303 0,0.0051 -1.123e-4,0.0091 0,0.01386 0,0.0051 -2.654e-4,0.01067 0,0.01585 -0.0051,0.166964 0.00919,1.164982 1.0128354,1.164789 l 1.9479127,-0.0079 c 0.00102,8.1e-5 0.00296,-8.1e-5 0.00398,0 0.1001415,0.0061 0.2008567,0.0089 0.3010594,0.0099 0.019191,2.03e-4 0.03873,-2.1e-5 0.057819,0 0.035728,3.9e-5 0.072069,5.68e-4 0.1076639,0 0.019191,-2.1e-5 0.038627,2.03e-4 0.057819,0 0.1002436,-10e-4 0.2009587,-0.0039 0.3010593,-0.0099 h 0.00398 l 1.9479129,0.0079 c 0.999933,1.93e-4 1.017602,-0.98884 1.012835,-1.164789 2.66e-4,-0.0051 0,-0.01047 0,-0.01585 1.13e-4,-0.0051 0,-0.0091 0,-0.01386 5.1e-5,-0.281187 -0.113605,-0.3979673 -0.299065,-0.4437303 -0.0031,-7.191e-4 -0.0049,-9.159e-4 -0.008,-0.00198 -0.0196,-0.00507 -0.04068,-0.00915 -0.06181,-0.011885 -10e-4,-2.029e-4 -0.003,2.028e-4 -0.004,0 -0.0041,-5.579e-4 -0.0082,-9.271e-4 -0.01196,-0.00198 -0.04471,-0.00609 -0.09483,-0.00788 -0.145546,-0.00991 -0.002,-5.07e-5 -0.004,5.07e-5 -0.006,0 -0.14521,-0.00406 -0.311598,0.00397 -0.488474,0.00397 l -1.6608095,0.00792 c -0.4551475,-0.015011 -0.9264729,-0.014909 -1.3816816,0 l -1.6628046,-0.00792 c -0.00817,0 -0.015863,4.06e-5 -0.023928,0 -0.063188,-1.02e-5 -0.1239958,-3.783e-4 -0.1834273,-0.00198 -0.00408,-1.014e-4 -0.00817,9.13e-5 -0.011964,0 -0.070742,-0.00203 -0.1374072,-0.00397 -0.2013711,-0.00397 z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-cool.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627417"
inkscape:cx="1.4363106"
inkscape:cy="13.943262"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1188"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.60346;paint-order:stroke markers fill"
d="M 8.0019531 0 C 3.5981761 0 -1.1842367e-15 3.6160507 0 8.0019531 C 0 12.387847 3.5981761 16 8.0019531 16 C 12.40571 16 16.00001 12.387846 16 8.0019531 C 16 3.6160507 12.40571 -1.1842367e-15 8.0019531 0 z M 8.0019531 1.9550781 C 11.333299 1.9552955 14.031784 4.6632656 14.03125 8.0019531 C 14.030693 11.339869 11.332527 14.044705 8.0019531 14.044922 C 6.4513554 14.045334 5.0375344 13.459212 3.96875 12.496094 C 4.8679034 12.495778 5.0937824 12.494477 5.1152344 12.490234 C 5.2590022 12.455664 5.3637613 12.375303 5.4257812 12.251953 C 5.4563812 12.191093 5.4718094 12.129441 5.4746094 12.056641 L 5.4765625 12.009766 L 5.1640625 9.6972656 C 4.9919957 8.4257269 4.8487562 7.38 4.8476562 7.375 C 4.8464563 7.3678 4.8442969 7.3642844 4.8417969 7.3652344 C 4.8391369 7.3662344 4.834125 7.3564969 4.828125 7.3417969 C 4.822765 7.3285969 4.8094081 7.3040562 4.7988281 7.2851562 C 4.7057542 7.1198464 4.5367837 6.9970968 4.3574219 6.9667969 C 4.3157659 6.9608369 4.3050422 6.9619306 3.1152344 6.9628906 C 2.4671673 6.9634723 2.2032932 6.9618049 2.0605469 6.9628906 C 2.5522366 4.1189289 5.0237592 1.9542861 8.0019531 1.9550781 z M 7.4121094 2.9160156 C 7.3156923 2.9171156 7.2127698 2.9285156 7.1230469 2.9472656 C 6.8001532 3.0144856 6.5763887 3.1719733 6.5117188 3.3769531 C 6.4931688 3.4356831 6.4902274 3.4595095 6.4902344 3.5371094 C 6.4902344 3.6328293 6.4975857 3.6827577 6.5410156 3.8671875 C 6.6017356 4.1250372 6.6185344 4.2456208 6.6152344 4.4316406 C 6.6116444 4.6342004 6.5844981 4.7762539 6.5175781 4.9648438 C 6.4056132 5.2803834 6.1895327 5.7135342 5.90625 6.1835938 C 5.6541723 6.6018733 5.3929356 6.9738602 5.2460938 7.125 L 5.2070312 7.1640625 L 5.5273438 9.5195312 C 5.7026996 10.81533 5.8473094 11.88965 5.8496094 11.90625 L 5.8535156 11.935547 L 5.953125 11.972656 C 6.5316984 12.192716 7.0505207 12.351169 7.4121094 12.417969 C 7.5192833 12.437769 7.6231501 12.452031 7.71875 12.457031 L 7.71875 12.458984 C 7.728458 12.459494 8.3473409 12.459314 9.0957031 12.458984 C 10.579814 12.458484 10.470175 12.459853 10.595703 12.439453 C 10.751697 12.414063 10.897449 12.361462 11.007812 12.289062 C 11.064142 12.252113 11.096578 12.225434 11.142578 12.177734 C 11.24712 12.069404 11.307828 11.938978 11.335938 11.767578 C 11.345137 11.712838 11.344937 11.577131 11.335938 11.519531 C 11.326658 11.460431 11.306386 11.378066 11.285156 11.322266 C 11.269696 11.281466 11.264772 11.267941 11.263672 11.244141 L 11.263672 11.216797 L 11.292969 11.208984 C 11.362794 11.189824 11.461471 11.145016 11.525391 11.103516 C 11.695286 10.993066 11.805923 10.82569 11.845703 10.619141 C 11.862863 10.530291 11.865246 10.498859 11.865234 10.380859 C 11.865234 10.25212 11.861067 10.211781 11.835938 10.113281 C 11.809186 10.008431 11.754049 9.8863468 11.699219 9.8105469 C 11.692769 9.8013469 11.6875 9.7919656 11.6875 9.7910156 C 11.6875 9.7899156 11.705716 9.7790781 11.728516 9.7675781 C 11.940145 9.6564182 12.081535 9.4783898 12.140625 9.25 C 12.182675 9.0879302 12.182625 8.8852236 12.140625 8.7148438 C 12.098647 8.5445739 12.02121 8.3988355 11.896484 8.2597656 C 11.862997 8.2224157 11.793552 8.1573656 11.763672 8.1347656 C 11.756442 8.1280656 11.751953 8.1240469 11.751953 8.1230469 C 11.751883 8.1217469 11.76426 8.1093031 11.78125 8.0957031 C 11.815892 8.0679232 11.872054 8.0124687 11.896484 7.9804688 C 11.970078 7.8840588 12.013273 7.7713092 12.033203 7.6308594 C 12.039272 7.5875594 12.039303 7.3994499 12.033203 7.34375 C 11.99621 7.0116903 11.86602 6.7203685 11.662109 6.5117188 C 11.569434 6.4169288 11.484891 6.3534687 11.367188 6.2929688 C 11.223978 6.2193088 11.073005 6.1806687 10.896484 6.1679688 C 10.864001 6.1649688 10.460897 6.1641025 9.7929688 6.1640625 L 8.7402344 6.1640625 L 8.7382812 6.0722656 C 8.7330713 5.8955958 8.7409931 5.3491679 8.7519531 5.1113281 C 8.7579531 4.9834183 8.7579531 4.7911281 8.7519531 4.7363281 C 8.7494031 4.7130481 8.7429812 4.6662125 8.7382812 4.6328125 C 8.6735853 4.178593 8.4332995 3.6380596 8.1367188 3.28125 C 8.0947638 3.2307901 7.9868493 3.1222906 7.9433594 3.0878906 C 7.8503615 3.0144007 7.7509724 2.9636062 7.6640625 2.9414062 C 7.5983831 2.9242563 7.5085264 2.9149156 7.4121094 2.9160156 z " />
</svg>

Before

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-dream.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="-7.4688154"
inkscape:cy="15.24699"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1360"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.01752;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.0009969,2.5e-7 C 3.5972067,2.5e-7 0,3.6150749 0,8.0009902 0,12.386897 3.5972067,16 8.0009969,16 12.404766,16 16.00001,12.386896 16,8.0009903 16,3.615075 12.404766,2.5e-7 8.0009969,2.5e-7 Z m 0,1.95518125 A 6.031546,6.0448401 0 0 1 14.03215,8.0009902 6.031546,6.0448401 0 0 1 8.0009969,14.044819 6.031546,6.0448401 0 0 1 1.9678505,8.0009902 6.031546,6.0448401 0 0 1 8.0009969,1.9551815 Z M 4.5358256,4.9028104 C 3.9706994,4.9037514 3.5129199,5.359276 3.5130218,5.9210101 3.5133444,6.2947559 3.6803693,6.5593569 3.9157633,6.7470594 A 1.4683864,1.4589327 0 0 0 5.3413085,7.8702486 1.4683864,1.4589327 0 0 0 6.7588786,6.788659 C 6.997067,6.6028884 7.1685436,6.3331971 7.1695951,5.9428004 7.1696972,5.3804264 6.7108157,4.9244993 6.1447975,4.9246007 l -1.6069781,-0.02179 z m 5.3173834,0 C 9.2880825,4.9037514 8.8303031,5.359276 8.830405,5.9210101 8.8307276,6.2947559 8.9977524,6.5593569 9.2331466,6.7470594 A 1.4683864,1.4589327 0 0 0 10.658691,7.8702486 1.4683864,1.4589327 0 0 0 12.076262,6.788659 C 12.314034,6.6029092 12.485928,6.332757 12.486978,5.9428004 12.487081,5.3804264 12.028199,4.9244993 11.462181,4.9246007 L 9.855203,4.9028107 Z M 4.5438007,9.1519125 C 3.9777723,9.1518011 3.518901,9.6077281 3.5190031,10.170113 c 0,0.0051 -1.123e-4,0.0091 0,0.01386 0,0.01359 8.812e-4,0.02633 0.00199,0.03962 0.2207498,0.304809 0.5136348,0.571438 0.8573208,0.802279 0.00919,0.0061 0.016834,0.01372 0.025919,0.01981 0.039607,0.02617 0.078713,0.0521 0.1196262,0.07725 0.9333358,0.592527 2.1370337,0.876142 3.3415576,0.889439 0.089525,9.84e-4 0.1797055,0.002 0.2691589,0 1.2554728,-0.0141 2.5110624,-0.321621 3.4591904,-0.966695 0.01154,-0.0071 0.02256,-0.01617 0.03389,-0.02377 0.340511,-0.229745 0.632162,-0.495668 0.851339,-0.798317 0.001,-0.01329 0.002,-0.02602 0.002,-0.03962 1.13e-4,-0.0051 0,-0.0091 0,-0.01387 1.02e-4,-0.562376 -0.458768,-1.0183031 -1.024797,-1.0181915 -1.548699,0.3585732 -2.5021754,0.6280928 -3.4492207,0.6754982 -0.0051,-2.535e-4 -0.010642,2.637e-4 -0.01595,0 C 7.0440861,9.7799385 6.0924406,9.5104493 4.5438427,9.1519064 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-energetic.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627418"
inkscape:cx="9.5680382"
inkscape:cy="11.866135"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1404"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.01752;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.0019531 0 C 3.598167 0 -1.1842367e-15 3.6160419 0 8.0019531 C 0 12.387855 3.598167 16 8.0019531 16 C 12.405717 16 16.00001 12.387855 16 8.0019531 C 16 3.6160419 12.405717 0 8.0019531 0 z M 8.0019531 1.9550781 C 11.333304 1.9552958 14.031784 4.663259 14.03125 8.0019531 C 14.030693 11.339874 11.332533 14.044704 8.0019531 14.044922 C 4.6705946 14.045808 1.9693073 11.340655 1.96875 8.0019531 C 1.9686257 7.6855353 1.9917875 7.3691884 2.0410156 7.0566406 C 2.5045179 4.1183859 5.0337478 1.9541787 8.0019531 1.9550781 z M 8.234375 3.2519531 C 8.222991 3.2519531 8.2104407 3.2532863 8.1992188 3.2539062 C 8.1802418 3.2549662 8.1610291 3.2589388 8.1425781 3.2617188 C 7.938079 3.2925037 7.7700285 3.4245348 7.6894531 3.6074219 C 7.6881831 3.6103119 7.6867769 3.6142775 7.6855469 3.6171875 L 4.6816406 8.4824219 C 4.5567351 8.5913949 4.4785156 8.7521046 4.4785156 8.9316406 L 4.4785156 9.015625 C 4.4785156 9.3454183 4.7444147 9.6113281 5.0742188 9.6113281 L 7.0878906 9.6113281 L 7.0878906 12.150391 C 7.0878906 12.480183 7.3537898 12.748047 7.6835938 12.748047 L 7.7675781 12.748047 C 7.7781281 12.747819 7.7883281 12.746894 7.7988281 12.746094 C 8.0323698 12.733914 8.2282085 12.587396 8.3144531 12.382812 L 11.326172 7.5078125 C 11.435718 7.4075463 11.505176 7.2655821 11.515625 7.1074219 C 11.522625 7.0585479 11.523178 7.0094746 11.517578 6.9609375 C 11.506478 6.6410326 11.24458 6.3886719 10.921875 6.3886719 L 8.9140625 6.3886719 L 8.9140625 3.9082031 L 8.9140625 3.8496094 C 8.9140132 3.519816 8.6462102 3.2519531 8.3164062 3.2519531 L 8.2578125 3.2519531 L 8.234375 3.2519531 z " />
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-epic.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16.000001"
inkscape:cx="4.0312498"
inkscape:cy="10.09375"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1422"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.01752;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.0009969,2.5e-7 C 3.5972067,2.5e-7 0,3.6150747 0,8.0009903 0,12.386896 3.5972067,16 8.0009969,16 12.404766,16 16.00001,12.386896 16,8.0009904 16,3.6150748 12.404766,2.5e-7 8.0009969,2.5e-7 Z m 0,1.95518085 A 6.031546,6.0448401 0 0 1 13.541682,5.615946 H 13.362243 C 13.246979,5.204346 12.944555,4.912715 12.58866,4.912715 H 8.9520249 c -0.3558181,0 -0.6548121,0.2917577 -0.7695949,0.703231 H 7.8195639 C 7.7046078,5.2041046 7.4038626,4.9107342 7.0479752,4.9107342 H 3.4093458 c -0.3558954,0 -0.6566296,0.2933704 -0.7715887,0.7052118 H 2.4762617 A 6.031546,6.0448401 0 0 1 8.0009969,1.9551811 Z m 2.8311521,3.3576822 c 0.05712,0.0014 0.114202,0.033289 0.143552,0.093104 h 0.0019 l 0.273147,0.5566422 0.612088,0.089142 c 0.116795,0.017039 0.172404,0.1444234 0.119625,0.2396928 -0.0038,0.00681 -0.0091,0.013398 -0.01395,0.019809 -0.005,0.00657 -0.0098,0.013755 -0.01595,0.01981 l -0.442618,0.433824 0.103677,0.6140896 c 0.02276,0.1335944 -0.115943,0.2353955 -0.235265,0.1723403 L 10.830072,7.260121 10.283779,7.5513178 C 10.164436,7.6144038 10.023726,7.5125718 10.04652,7.3789775 L 10.15219,6.7648879 9.7095733,6.3310639 c -0.012071,-0.011829 -0.020377,-0.026008 -0.027913,-0.039619 -0.037677,-0.068056 -0.021632,-0.1527858 0.033894,-0.2020555 0.022211,-0.019708 0.050383,-0.032762 0.083738,-0.037637 l 0.6120867,-0.089142 0.273147,-0.5566422 c 0.02613,-0.053146 0.07319,-0.084531 0.123614,-0.091123 0.0081,-0.00101 0.01576,-0.00218 0.02393,-0.00198 z M 2.1871651,6.4519002 h 0.4007476 v 1.1251701 c 0,0.595307 0.3702458,1.1578003 0.8214331,1.0756471 L 7.0479752,7.9910853 c 0.4511873,-0.082092 0.821433,-0.4803299 0.821433,-1.075647 V 6.4519002 H 8.130592 v 0.4635381 c 0,0.5953171 0.3702457,0.9935546 0.8214329,1.075647 L 12.58866,8.6527174 c 0.451188,0.082153 0.823427,-0.4783592 0.823427,-1.0736662 v -1.127151 h 0.416698 A 6.031546,6.0448401 0 0 1 14.03215,8.0009903 6.031546,6.0448401 0 0 1 8.0009969,14.044819 6.031546,6.0448401 0 0 1 1.9678505,8.0009903 6.031546,6.0448401 0 0 1 2.1871651,6.4519002 Z M 4.5438007,9.0964464 C 3.9777723,9.0963348 3.518901,9.5522622 3.5190031,10.114647 c 0,0.0051 -1.123e-4,0.0091 0,0.01386 0,0.01359 8.811e-4,0.02633 0.00199,0.03962 0.22075,0.304808 0.5136349,0.571437 0.8573209,0.802278 0.00919,0.0061 0.016834,0.01372 0.025919,0.01981 0.039607,0.02617 0.078713,0.0521 0.1196262,0.07725 0.9333357,0.592528 2.1370336,0.876144 3.3415575,0.889439 0.089525,9.84e-4 0.1797055,0.002 0.2691589,0 1.2554726,-0.0141 2.5110634,-0.321619 3.4591904,-0.966695 0.01154,-0.0071 0.02256,-0.01617 0.03389,-0.02377 0.34051,-0.229745 0.632161,-0.495669 0.851339,-0.798316 0.001,-0.01329 0.0019,-0.02602 0.0019,-0.03962 1.12e-4,-0.0051 0,-0.0091 0,-0.01386 1.02e-4,-0.5623849 -0.45877,-1.0183123 -1.024798,-1.0182007 -1.5487,0.3585737 -2.5021756,0.6280932 -3.449221,0.6754987 -0.0051,-2.536e-4 -0.010642,2.637e-4 -0.01595,0 C 7.0439419,9.7244726 6.0922964,9.4549836 4.5436986,9.0964403 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-gloomy.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="-0.3093592"
inkscape:cy="5.7894365"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1334"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.60346;paint-order:stroke markers fill"
d="M 8.0009969,2.5e-7 C 3.5972067,2.5e-7 0,3.6150747 0,8.0009903 0,12.386897 3.5972067,16 8.0009969,16 12.404766,16 16.00001,12.386897 16,8.0009904 16,3.6150748 12.404766,2.5e-7 8.0009969,2.5e-7 Z m 0,1.95518085 A 6.031546,6.0448401 0 0 1 14.03215,8.0009903 6.031546,6.0448401 0 0 1 8.0009969,14.044819 6.031546,6.0448401 0 0 1 1.9678505,8.0009903 6.031546,6.0448401 0 0 1 8.0009969,1.9551811 Z m -3.174081,3.3774913 c -0.5279726,0 -0.9530218,0.4223236 -0.9530218,0.9468864 v 0.134704 c 0,0.081295 0.010688,0.1625195 0.029907,0.237712 a 1.4683864,1.4589327 0 0 0 -0.029907,0.279311 1.4683864,1.4589327 0 0 0 1.4674144,1.457967 1.4683864,1.4589327 0 0 0 1.4694081,-1.457967 1.4683864,1.4589327 0 0 0 -0.029907,-0.2773302 v -0.00198 c 0.019525,-0.075749 0.029907,-0.1557494 0.029907,-0.237712 v -0.134704 c 0,-0.5245628 -0.4250493,-0.9468763 -0.9530219,-0.9468864 z m 5.3153901,0 c -0.5279736,1e-6 -0.9530226,0.4223338 -0.9530226,0.9468864 v 0.134704 c -1e-6,0.081963 0.010382,0.1639435 0.02991,0.2396928 a 1.4683864,1.4589327 0 0 0 -0.02991,0.2773302 1.4683864,1.4589327 0 0 0 1.4694076,1.457967 1.4683864,1.4589327 0 0 0 1.467415,-1.457967 1.4683864,1.4589327 0 0 0 -0.02991,-0.279311 v -0.00198 c 0.01922,-0.075193 0.02991,-0.154436 0.02991,-0.2357312 V 6.2795619 c 10e-6,-0.5245628 -0.425049,-0.9468763 -0.953022,-0.9468864 z M 7.9132711,9.3916059 c -0.2285898,0 -3.2447211,0.080712 -3.3016823,1.2222361 -0.00102,0.01055 -0.0016,0.02084 -0.00199,0.0317 0,0.0041 -3.06e-5,0.0069 0,0.0099 -8.16e-5,0.0038 0,0.0078 0,0.01189 0,0.02718 0.00394,0.05455 0.00598,0.08122 0.041373,0.524604 0.4821597,0.937082 1.0208099,0.936981 l 2.3646106,-0.0099 2.3646117,0.0099 c 0.566028,1.12e-4 1.024899,-0.455814 1.024797,-1.018199 0,-0.0048 1.12e-4,-0.0088 0,-0.01386 0,-0.01359 -9.73e-4,-0.02633 -0.002,-0.03962 -0.05694,-1.1415468 -3.0730486,-1.2222791 -3.3016384,-1.2222791 -0.010412,0 -0.06149,0.00133 -0.087725,0.00198 -0.026337,-0.00101 -0.075319,-0.00198 -0.085733,-0.00198 z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-joy.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16.000001"
inkscape:cx="-0.031249999"
inkscape:cy="17.593749"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1325"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.01752;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.0019531 0 C 3.5981606 0 1.1842367e-15 3.6160374 0 8.0019531 C 0 12.387859 3.5981606 16 8.0019531 16 C 12.405725 16 16.00001 12.387859 16 8.0019531 C 16 3.6160374 12.405725 1.1842367e-15 8.0019531 0 z M 8.0019531 1.9550781 A 6.0315491 6.0448406 0 0 1 14.03125 8.0019531 A 6.0315491 6.0448406 0 0 1 8.0019531 14.044922 A 6.0315491 6.0448406 0 0 1 1.96875 8.0019531 A 6.0315491 6.0448406 0 0 1 2.0429688 7.0546875 A 6.0315491 6.0448406 0 0 1 8.0019531 1.9550781 z M 5.375 4.5917969 A 1.4683871 1.4589329 0 0 0 3.90625 6.0488281 A 1.4683871 1.4589329 0 0 0 5.375 7.5078125 A 1.4683871 1.4589329 0 0 0 6.84375 6.0488281 A 1.4683871 1.4589329 0 0 0 5.375 4.5917969 z M 10.693359 4.5917969 A 1.4683871 1.4589329 0 0 0 9.2382812 5.8417969 A 1.4683871 1.4589329 0 0 0 9.2246094 6.0488281 A 1.4683871 1.4589329 0 0 0 10.693359 7.5078125 A 1.4683871 1.4589329 0 0 0 12.160156 6.0488281 A 1.4683871 1.4589329 0 0 0 10.693359 4.5917969 z M 4.5429688 9.0976562 C 3.9769401 9.0975447 3.5194292 9.5528502 3.5195312 10.115234 C 3.5195312 10.120334 3.519419 10.124116 3.5195312 10.128906 C 3.5195312 10.142496 3.5203734 10.154679 3.5214844 10.167969 C 3.7422345 10.472777 4.0352202 10.739863 4.3789062 10.970703 C 4.3880962 10.976803 4.3952109 10.984144 4.4042969 10.990234 C 4.4439038 11.016404 4.4825229 11.043209 4.5234375 11.068359 C 5.4567738 11.660887 6.6607099 11.943734 7.8652344 11.957031 C 7.9547593 11.958015 8.0453121 11.959031 8.1347656 11.957031 C 8.2916998 11.955269 8.4491318 11.948518 8.6054688 11.9375 C 9.6998273 11.860373 10.764138 11.554675 11.59375 10.990234 C 11.60529 10.983134 11.615623 10.974397 11.626953 10.966797 C 11.967464 10.737052 12.259338 10.470617 12.478516 10.167969 C 12.479516 10.154679 12.480469 10.142496 12.480469 10.128906 C 12.480581 10.123806 12.480469 10.120024 12.480469 10.115234 C 12.480571 9.5528496 12.02306 9.0975447 11.457031 9.0976562 C 9.9083302 9.4562296 8.9548584 9.7240789 8.0078125 9.7714844 C 8.0027125 9.7712309 7.9955434 9.7717481 7.9902344 9.7714844 C 7.0432944 9.7240191 6.0915673 9.4561992 4.5429688 9.0976562 z " />
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-mystic.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="-0.3093592"
inkscape:cy="5.2591065"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1360"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.01752;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 1.6660156 0 C 1.1488161 -7.4014794e-17 0.73242187 0.41638427 0.73242188 0.93359375 L 0.73242188 4.625 C 0.73242188 4.6408335 0.73360359 4.6562396 0.734375 4.671875 C 0.26417571 5.6882854 0 6.8168804 0 8.0019531 C 0 12.387856 3.5981673 16 8.0019531 16 C 12.405718 16 16.00001 12.387854 16 8.0019531 C 16 6.8168804 15.735614 5.6882854 15.265625 4.671875 C 15.266396 4.6562396 15.267578 4.6408335 15.267578 4.625 L 15.267578 0.93359375 C 15.267578 0.41638427 14.851184 -7.4014794e-17 14.333984 0 L 14.201172 0 C 13.930802 0 13.693958 0.12034518 13.517578 0.296875 L 12.576172 1.2402344 C 12.53564 1.2807966 12.499317 1.3262263 12.46875 1.375 C 11.191434 0.50770722 9.6539309 -4.4424097e-16 8.0019531 0 C 6.3505335 0 4.8086567 0.50825002 3.53125 1.375 C 3.5006828 1.3262263 3.4643596 1.2807966 3.4238281 1.2402344 L 2.4824219 0.296875 C 2.306042 0.12034518 2.069198 0 1.7988281 0 L 1.6660156 0 z M 8.0019531 1.9550781 C 11.333305 1.9552955 14.031784 4.663259 14.03125 8.0019531 C 14.030693 11.339874 11.332533 14.044705 8.0019531 14.044922 C 4.6705947 14.045808 1.9693072 11.340655 1.96875 8.0019531 C 1.968216 4.6624787 4.6698232 1.954192 8.0019531 1.9550781 z M 5.4257812 4.5253906 A 1.4384522 1.4384522 0 0 0 3.9882812 5.9648438 A 1.4384522 1.4384522 0 0 0 5.4257812 7.4023438 A 1.4384522 1.4384522 0 0 0 6.8652344 5.9648438 A 1.4384522 1.4384522 0 0 0 5.4257812 4.5253906 z M 10.634766 4.5253906 A 1.4384522 1.4384522 0 0 0 9.1972656 5.9648438 A 1.4384522 1.4384522 0 0 0 10.634766 7.4023438 A 1.4384522 1.4384522 0 0 0 12.074219 5.9648438 A 1.4384522 1.4384522 0 0 0 10.634766 4.5253906 z M 5.421875 8.7871094 C 4.9046755 8.7871094 4.4882812 9.2034936 4.4882812 9.7207031 L 4.4882812 11.193359 C 4.4882812 11.710569 4.9046755 12.126953 5.421875 12.126953 L 5.5546875 12.126953 C 6.071887 12.126953 6.4882812 11.710569 6.4882812 11.193359 L 6.4882812 10.869141 C 7.2619092 11.029723 8.0579569 11.048828 8.1699219 11.048828 C 8.1801219 11.048828 8.2281063 11.047875 8.2539062 11.046875 C 8.2796062 11.047515 8.3276906 11.048828 8.3378906 11.048828 C 8.4282345 11.048828 8.9646089 11.03468 9.5742188 10.945312 L 9.5742188 11.193359 C 9.5742188 11.710569 9.9906127 12.126953 10.507812 12.126953 L 10.640625 12.126953 C 11.157824 12.126953 11.574219 11.710569 11.574219 11.193359 L 11.574219 9.8046875 C 11.574329 9.7996875 11.574219 9.7957156 11.574219 9.7910156 L 11.574219 9.7207031 C 11.574219 9.2034936 11.157824 8.7871094 10.640625 8.7871094 L 10.507812 8.7871094 C 10.505231 8.7871094 10.502577 8.7870887 10.5 8.7871094 L 8.2539062 8.796875 L 5.9375 8.7871094 C 5.8715413 8.7870969 5.8065264 8.7945195 5.7441406 8.8066406 C 5.6832574 8.7942453 5.6193374 8.7871094 5.5546875 8.7871094 L 5.421875 8.7871094 z " />
</svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-new_year.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16.000001"
inkscape:cx="-0.031249999"
inkscape:cy="17.593749"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1317"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.01912;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.0209801,6.4381707e-5 C 5.965812,0.0082831 3.9105687,0.79481716 2.3524097,2.3529009 -0.7639084,5.4690634 -0.79226595,10.574789 2.3166087,13.683509 c 3.1088665,3.10871 8.2148643,3.080368 11.3311743,-0.0358 2.457644,-2.457521 2.994245,-6.153782 1.5872,-9.1309146 0.117967,-0.050987 0.229513,-0.1240924 0.326191,-0.220765 L 15.66659,4.1926085 c 0.409133,-0.4091154 0.409142,-1.068611 0,-1.4777325 L 15.187246,2.2355527 C 15.307904,1.8727559 15.224396,1.4572649 14.934648,1.1675282 L 14.829231,1.0621227 C 14.539371,0.77227703 14.12407,0.69067839 13.761153,0.81152446 L 13.2838,0.334195 c -0.409144,-0.40912353 -1.066682,-0.40911538 -1.475818,0 L 11.702567,0.43960564 C 11.605797,0.53637699 11.532785,0.64768361 11.481791,0.76578026 10.39248,0.25126849 9.2067218,-0.00467684 8.0209801,6.4381707e-5 Z M 8.5540246,1.9730261 a 6.0215732,6.0739508 45.165238 0 1 3.4946234,1.5254655 c 0.04211,0.068267 0.09385,0.1336217 0.153151,0.1929206 l 0.103426,0.1034208 c 0.07384,0.073841 0.157472,0.133802 0.244644,0.1809881 A 6.0215732,6.0739508 45.165238 0 1 12.25749,12.257486 6.0215732,6.0739508 45.165238 0 1 3.7049107,12.295276 6.0215732,6.0739508 45.165238 0 1 3.7407117,3.7411339 6.0215732,6.0739508 45.165238 0 1 8.5540246,1.9730261 Z M 8.3491605,3.9002437 V 7.5120366 C 8.0162057,7.2891779 7.6163586,7.1600062 7.1856118,7.1600062 c -1.1572303,0 -2.0963765,0.9371146 -2.0963765,2.0942834 0,1.1571754 0.9391462,2.0942824 2.0963765,2.0942824 1.1233416,0 2.0396891,-0.882654 2.0923986,-1.9928503 0.00121,-0.020203 0.00157,-0.041452 0.00199,-0.061655 V 5.7618286 c 0.2793327,0.1667857 0.50923,0.4216048 0.7319416,0.6682612 0.04177,0.046241 0.08372,0.092134 0.125305,0.1372326 L 11.141681,5.5012866 C 10.390891,4.6968549 9.4452115,4.1258568 8.3491605,3.9002437 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.8 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-sadness.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="4.5519999"
inkscape:cy="15.865708"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1188"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.60346;paint-order:stroke markers fill"
d="M 8.0009969,2.5e-7 C 3.5972067,2.5e-7 0,3.6150747 0,8.0009903 0,12.386896 3.5972067,16 8.0009969,16 12.404766,16 16.00001,12.386896 16,8.0009904 16,3.6150748 12.404766,2.5e-7 8.0009969,2.5e-7 Z m 0,1.95518085 A 6.031546,6.0448401 0 0 1 14.03215,8.0009903 6.031546,6.0448401 0 0 1 8.0009969,14.044819 6.031546,6.0448401 0 0 1 1.9678505,8.0009903 6.031546,6.0448401 0 0 1 8.0009969,1.9551811 Z M 10.32972,4.6928313 C 10.101548,4.7037003 9.876678,4.7962947 9.7016821,4.9701625 l -0.095701,0.095085 C 9.3466382,5.3229175 9.2677419,5.6897481 9.3687224,6.0141145 A 1.4683864,1.4589327 0 0 0 9.1892834,6.7034788 1.4683864,1.4589327 0 0 0 10.658691,8.1634266 1.4683864,1.4589327 0 0 0 12.126106,6.7034788 1.4683864,1.4589327 0 0 0 12.114146,6.5232143 C 12.164266,6.2312558 12.074726,5.9214679 11.846981,5.6951834 L 11.117261,4.9701625 C 10.92476,4.7789026 10.672597,4.6868534 10.421435,4.6928313 c -0.0072,-3.458e-4 -0.01465,1.805e-4 -0.02193,0 -0.02316,-5.751e-4 -0.04663,-0.00111 -0.06978,0 z M 5.6942057,4.7879161 C 5.5406501,4.7920339 5.3865006,4.8327333 5.2436138,4.9146959 L 4.3504051,5.4277572 C 3.9788994,5.6408699 3.8058051,6.063871 3.8958255,6.4578436 A 1.4683864,1.4589327 0 0 0 3.8738945,6.7034788 1.4683864,1.4589327 0 0 0 5.3413089,8.1634266 1.4683864,1.4589327 0 0 0 6.810717,6.7034788 1.4683864,1.4589327 0 0 0 6.728973,6.2339972 C 6.8470479,5.9676574 6.8394466,5.6506958 6.681122,5.378234 L 6.6133341,5.2613593 C 6.431847,4.9490369 6.0998166,4.7788519 5.7619945,4.7879161 c -0.022582,-0.001 -0.045102,-6.085e-4 -0.067789,0 z m -0.05782,4.3580535 c -0.5386503,-1.014e-4 -0.9794367,0.412378 -1.02081,0.9369824 -0.00204,0.02667 -0.00598,0.05404 -0.00598,0.08122 0,0.0041 -8.16e-5,0.0081 0,0.01189 -3.06e-5,0.003 0,0.0059 0,0.0099 3.879e-4,0.01085 9.73e-4,0.02115 0.00199,0.0317 0.056961,1.141524 3.0730925,1.222236 3.3016823,1.222236 0.010412,0 0.059395,-9.66e-4 0.085732,-0.002 0.026235,6.49e-4 0.077314,0.002 0.087725,0.002 0.22859,0 3.244701,-0.08073 3.301682,-1.222236 10e-4,-0.01329 0.002,-0.02603 0.002,-0.03962 1.12e-4,-0.0051 0,-0.0091 0,-0.01386 1.02e-4,-0.562385 -0.45877,-1.0183123 -1.024797,-1.0182008 l -2.3646111,0.00991 z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-sentimental.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16.000001"
inkscape:cx="4.8437498"
inkscape:cy="12.843749"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1434"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:1.01752;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.0019531 0 C 3.5981606 0 -1.1842367e-15 3.6160273 0 8.0019531 C 0 12.387859 3.5981606 16 8.0019531 16 C 12.405725 16 16.00001 12.387859 16 8.0019531 C 16 3.6160374 12.405725 0 8.0019531 0 z M 8.0019531 1.9550781 A 6.0315491 6.0448406 0 0 1 14.03125 8.0019531 A 6.0315491 6.0448406 0 0 1 8.0019531 14.044922 A 6.0315491 6.0448406 0 0 1 1.96875 8.0019531 A 6.0315491 6.0448406 0 0 1 8.0019531 1.9550781 z M 4.4453125 5.0449219 C 4.222776 5.0503303 4.0000411 5.126827 3.8242188 5.2636719 C 3.589779 5.4462517 3.4403281 5.7325672 3.4238281 6.0292969 C 3.4049381 6.3707665 3.5059833 6.6781472 3.6894531 6.9667969 C 3.9339229 7.3514965 4.6801451 8.1227003 5.3964844 8.4375 C 6.1127837 8.1227003 6.8570327 7.3514965 7.1015625 6.9667969 C 7.2849923 6.6781472 7.3861875 6.3707665 7.3671875 6.0292969 C 7.3507875 5.7325672 7.2012366 5.4462517 6.9667969 5.2636719 C 6.7323471 5.0812321 6.4164397 5.0050001 6.125 5.0625 C 5.8139603 5.1237299 5.5388642 5.338564 5.3964844 5.6210938 C 5.2541745 5.338564 4.9770853 5.1237999 4.6660156 5.0625 C 4.5931407 5.04812 4.5194913 5.0431191 4.4453125 5.0449219 z M 9.6542969 5.0449219 C 9.4317604 5.0503303 9.2090254 5.126827 9.0332031 5.2636719 C 8.7987634 5.4462517 8.6493125 5.7325672 8.6328125 6.0292969 C 8.6139225 6.3707665 8.7149677 6.6781472 8.8984375 6.9667969 C 9.1429073 7.3514965 9.8871763 8.1227003 10.603516 8.4375 C 11.319815 8.1227003 12.066017 7.3514965 12.310547 6.9667969 C 12.493977 6.6781472 12.595172 6.3707665 12.576172 6.0292969 C 12.559772 5.7325672 12.410221 5.4462517 12.175781 5.2636719 C 11.941331 5.0812321 11.625424 5.0050001 11.333984 5.0625 C 11.022945 5.1237299 10.745895 5.338564 10.603516 5.6210938 C 10.461206 5.338564 10.18607 5.1237999 9.875 5.0625 C 9.8021251 5.04812 9.7284757 5.0431191 9.6542969 5.0449219 z M 5.2578125 9.8769531 C 5.2354125 9.8770131 5.2129062 9.8779063 5.1914062 9.8789062 C 5.1894063 9.8789562 5.1875469 9.8788563 5.1855469 9.8789062 C 5.1362469 9.8799062 5.0864487 9.8826719 5.0429688 9.8886719 C 5.0389688 9.8892419 5.03495 9.889625 5.03125 9.890625 C 5.02925 9.890935 5.0273906 9.8925781 5.0253906 9.8925781 C 5.0056906 9.8955781 4.98705 9.8973438 4.96875 9.9023438 C 4.96575 9.9029537 4.9639375 9.9032969 4.9609375 9.9042969 C 4.7792577 9.9493968 4.6659656 10.064557 4.6660156 10.341797 C 4.6660156 10.346797 4.6659056 10.350769 4.6660156 10.355469 C 4.6660156 10.360469 4.6657556 10.365994 4.6660156 10.371094 C 4.6658756 10.376094 4.6660156 10.381519 4.6660156 10.386719 C 4.6660156 10.390719 4.6659356 10.394738 4.6660156 10.398438 C 4.6659856 10.401437 4.6660156 10.404203 4.6660156 10.408203 C 4.6663956 10.418903 4.6669188 10.429053 4.6679688 10.439453 C 4.6863687 10.809883 6.2946359 11.504494 7.8652344 11.521484 C 7.8840344 11.521684 7.903175 11.521464 7.921875 11.521484 C 7.956875 11.521524 7.9924738 11.522044 8.0273438 11.521484 C 8.0461437 11.521464 8.0651844 11.521684 8.0839844 11.521484 C 9.6545928 11.504484 11.26285 10.809883 11.28125 10.439453 C 11.28225 10.429053 11.283203 10.418803 11.283203 10.408203 C 11.283203 10.404203 11.283233 10.401437 11.283203 10.398438 C 11.283283 10.394438 11.283203 10.390419 11.283203 10.386719 C 11.283203 10.381719 11.283343 10.376294 11.283203 10.371094 C 11.283463 10.366094 11.283203 10.360769 11.283203 10.355469 C 11.283313 10.350469 11.283203 10.346497 11.283203 10.341797 C 11.283253 10.064557 11.171914 9.9494168 10.990234 9.9042969 C 10.987234 9.9035869 10.985422 9.9033437 10.982422 9.9023438 C 10.963222 9.8973438 10.942575 9.893325 10.921875 9.890625 C 10.920875 9.890425 10.918969 9.890825 10.917969 9.890625 C 10.913969 9.890075 10.90995 9.8896719 10.90625 9.8886719 C 10.86245 9.8826719 10.813352 9.8809062 10.763672 9.8789062 C 10.761672 9.8788563 10.759812 9.8789562 10.757812 9.8789062 C 10.615563 9.8749063 10.452567 9.8828125 10.279297 9.8828125 L 7.9863281 9.8945312 L 5.6699219 9.8828125 C 5.6619219 9.8828125 5.6543844 9.8828525 5.6464844 9.8828125 C 5.5845844 9.8828025 5.5250168 9.8823894 5.4667969 9.8808594 C 5.4627969 9.8807594 5.4587781 9.8809494 5.4550781 9.8808594 C 5.3857782 9.8788594 5.3204724 9.8769531 5.2578125 9.8769531 z " />
</svg>

Before

Width:  |  Height:  |  Size: 5.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.1 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-summer.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="11.313709"
inkscape:cx="-7.4688154"
inkscape:cy="15.24699"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1258"
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke-width:0.65028;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:stroke fill markers"
d="M 8.00195,0 C 3.59816,0 0,3.61604 0,8.00195 0,12.38786 3.59816,16 8.00195,16 12.40572,16 16.00001,12.38786 16,8.00195 16,3.61604 12.40572,0 8.00195,0 Z m 0,1.95508 a 6.0315491,6.0448405 0 0 1 6.0293,6.04687 6.0315491,6.0448405 0 0 1 -6.0293,6.04297 6.0315491,6.0448405 0 0 1 -6.0332,-6.04297 6.0315491,6.0448405 0 0 1 6.0332,-6.04687 z M 7.92575,3.18359 C 7.60411,3.19979 7.34958,3.4652 7.34958,3.79102 v 0.65625 c 1e-5,0.33633 0.2711,0.60742 0.60742,0.60742 H 8.0429 C 8.37922,5.05468 8.65032,4.7836 8.65032,4.44727 V 3.79102 C 8.65031,3.45468 8.37922,3.18359 8.0429,3.18359 H 7.957 c -0.0105,0 -0.0209,-5.2e-4 -0.0312,0 z M 5.05466,4.38477 c -0.15519,0 -0.31078,0.0588 -0.42969,0.17773 L 4.56247,4.625 c -0.23781,0.23781 -0.23782,0.6196 0,0.85742 l 0.46484,0.46485 c 0.23783,0.23782 0.62157,0.23781 0.85938,0 l 0.0606,-0.0605 c 0.23781,-0.23782 0.23782,-0.62156 0,-0.85938 L 5.48244,4.56255 C 5.36353,4.44364 5.20989,4.38481 5.05471,4.38482 Z m 5.89062,0 C 10.7901,4.38476 10.63646,4.44357 10.51755,4.5625 L 10.0527,5.02734 c -0.23781,0.23783 -0.23781,0.62157 0,0.85938 l 0.0606,0.0605 c 0.23782,0.23781 0.62156,0.23782 0.85938,0 l 0.46484,-0.46485 c 0.23782,-0.23783 0.23781,-0.61961 0,-0.85742 l -0.0625,-0.0625 C 11.25611,4.44354 11.10052,4.38472 10.94533,4.38472 Z M 8,5.26562 C 6.50456,5.26562 5.26367,6.50456 5.26367,8 5.26367,9.49544 6.50456,10.73437 8,10.73437 9.49544,10.73437 10.73633,9.49544 10.73633,8 10.73633,6.50456 9.49544,5.26562 8,5.26562 Z M 8,6.56641 A 1.4350688,1.4350688 0 0 1 9.43555,8 1.4350688,1.4350688 0 0 1 8,9.43359 1.4350688,1.4350688 0 0 1 6.56445,8 1.4350688,1.4350688 0 0 1 8,6.56641 Z M 3.75977,7.34961 C 3.43811,7.36581 3.18359,7.63122 3.18359,7.95703 v 0.0859 c 1e-5,0.33632 0.2711,0.60742 0.60743,0.60742 H 4.44727 C 4.7836,8.65034 5.05469,8.37925 5.05469,8.04293 V 7.95703 C 5.05468,7.62071 4.7836,7.34961 4.44727,7.34961 H 3.79102 c -0.0105,0 -0.0209,-5.2e-4 -0.0312,0 z m 7.76171,0 c -0.32166,0.0162 -0.57617,0.28161 -0.57617,0.60742 v 0.0859 c 0,0.33632 0.27109,0.60742 0.60742,0.60742 h 0.65625 c 0.33634,-10e-6 0.60743,-0.2711 0.60743,-0.60742 V 7.95703 C 12.8164,7.62071 12.54531,7.34961 12.20898,7.34961 h -0.65625 c -0.0105,0 -0.0209,-5.2e-4 -0.0312,0 z M 5.42773,9.875 C 5.28238,9.882 5.13882,9.9413 5.02734,10.05273 L 4.5625,10.51758 c -0.23782,0.23783 -0.23781,0.61961 0,0.85742 l 0.0625,0.0625 c 0.23781,0.23781 0.6196,0.23782 0.85742,0 l 0.46485,-0.46484 c 0.23782,-0.23783 0.23781,-0.62157 0,-0.85938 l -0.0606,-0.0605 C 5.76033,9.92645 5.59242,9.86716 5.42768,9.87505 Z m 5.08594,0 c -0.14535,0.007 -0.28892,0.0663 -0.40039,0.17773 l -0.0606,0.0605 c -0.23781,0.23782 -0.23782,0.62156 0,0.85938 l 0.46484,0.46484 c 0.23783,0.23782 0.61962,0.23782 0.85743,0 l 0.0625,-0.0625 c 0.23781,-0.23781 0.23782,-0.6196 0,-0.85742 L 10.97261,10.05268 C 10.84626,9.92634 10.67835,9.86705 10.51362,9.87495 Z m -2.55664,1.07031 c -0.33632,0 -0.60742,0.27109 -0.60742,0.60742 v 0.65625 c 10e-6,0.33634 0.2711,0.60743 0.60742,0.60743 h 0.0859 c 0.33632,-10e-6 0.60742,-0.2711 0.60742,-0.60743 V 11.55273 C 8.65034,11.2164 8.37925,10.94531 8.04293,10.94531 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg5"
sodipodi:docname="cassette-wave-mood-winter.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
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="defs5" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="22.627417"
inkscape:cx="6.0325047"
inkscape:cy="15.711029"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" />
<path
id="path1188"
style="fill:#2e3436;fill-opacity:1;stroke-width:3.60346;paint-order:stroke markers fill"
d="M 8.0019531 0 C 3.5981673 0 0 3.6160419 0 8.0019531 C 0 12.387855 3.5981673 16 8.0019531 16 C 12.405718 16 16.00001 12.387854 16 8.0019531 C 16 3.6160419 12.405718 1.1842367e-15 8.0019531 0 z M 8.0019531 1.9550781 C 11.333305 1.9552955 14.031784 4.6632588 14.03125 8.0019531 C 14.030693 11.339875 11.332533 14.044705 8.0019531 14.044922 C 4.6705947 14.045808 1.9693073 11.340655 1.96875 8.0019531 C 1.9682157 4.6624786 4.669823 1.954192 8.0019531 1.9550781 z M 6.1542969 4.1914062 C 6.0850565 4.1989919 6.0178932 4.2200019 5.953125 4.2558594 L 5.8867188 4.2949219 C 5.8704688 4.3039219 5.8549937 4.3120656 5.8398438 4.3222656 C 5.617636 4.4763255 5.5433363 4.7748384 5.6738281 5.0175781 C 5.5641802 5.0847781 5.4779941 5.192352 5.4394531 5.3261719 L 5.4179688 5.4023438 C 5.3358088 5.6880935 5.4993985 5.9804301 5.7851562 6.0625 L 6.2636719 6.203125 C 6.182382 6.2830249 6.1041181 6.3698707 6.0332031 6.4628906 C 5.8394303 6.7165604 5.7012945 6.9966128 5.6191406 7.2890625 L 5.2617188 6.9160156 C 5.056057 6.7028558 4.7140738 6.7002171 4.5 6.9042969 L 4.4472656 6.9550781 C 4.3469757 7.051778 4.2916361 7.182127 4.2832031 7.3105469 C 3.9894194 7.3095469 3.7514527 7.5413778 3.7460938 7.8359375 L 3.7421875 7.9140625 C 3.7368875 8.2097522 3.9705713 8.4493013 4.265625 8.4570312 C 4.245485 8.6129211 4.2940185 8.7721414 4.4121094 8.8945312 L 4.4648438 8.953125 C 4.6712365 9.1670848 5.0106466 9.1732367 5.2246094 8.9667969 L 5.6074219 8.5996094 C 5.7099898 9.005179 5.9100465 9.3866622 6.2070312 9.7011719 L 5.7011719 9.8261719 C 5.4126402 9.8978718 5.2388049 10.188133 5.3105469 10.476562 L 5.328125 10.548828 C 5.361755 10.684018 5.4458015 10.797631 5.5527344 10.869141 C 5.4046875 11.12303 5.4856635 11.445696 5.7382812 11.597656 L 5.8066406 11.638672 C 6.0592924 11.790652 6.3803314 11.708884 6.5351562 11.458984 L 6.5410156 11.458984 C 6.6651295 11.550784 6.8279705 11.591141 6.9902344 11.550781 L 7.0644531 11.529297 C 7.3529728 11.457597 7.5268101 11.169299 7.4550781 10.880859 L 7.3320312 10.376953 C 7.7458998 10.492573 8.1842067 10.501707 8.5976562 10.404297 L 8.4570312 10.888672 C 8.3749513 11.174422 8.538395 11.472668 8.8242188 11.554688 L 8.9003906 11.574219 C 9.0343185 11.612719 9.1736866 11.595962 9.2890625 11.539062 C 9.4348364 11.794482 9.7556271 11.88703 10.013672 11.744141 L 10.080078 11.707031 C 10.339326 11.563891 10.432618 11.240068 10.291016 10.980469 L 10.294922 10.978516 C 10.436614 10.917016 10.549454 10.795345 10.595703 10.634766 L 10.617188 10.5625 C 10.699267 10.27676 10.535826 9.9785243 10.25 9.8964844 L 9.7675781 9.7578125 C 9.850858 9.6762126 9.9294782 9.5910637 10.001953 9.4960938 C 10.185949 9.255374 10.319134 8.9892903 10.402344 8.7128906 L 10.740234 9.0625 C 10.946608 9.2764298 11.284095 9.2845648 11.498047 9.078125 L 11.554688 9.0234375 C 11.67505 8.9073676 11.726849 8.7477298 11.714844 8.59375 C 12.010033 8.59675 12.252447 8.3581397 12.257812 8.0625 L 12.257812 7.9882812 C 12.263112 7.6926615 12.031248 7.4512694 11.736328 7.4433594 L 11.738281 7.4394531 C 11.734381 7.3108533 11.686591 7.1842943 11.589844 7.0839844 L 11.533203 7.0292969 C 11.326827 6.8153671 10.989353 6.8092052 10.775391 7.015625 L 10.425781 7.3515625 C 10.323156 6.9534329 10.126363 6.5777978 9.8359375 6.2675781 L 10.298828 6.1542969 C 10.587355 6.0825969 10.761184 5.7942891 10.689453 5.5058594 L 10.673828 5.4296875 C 10.633498 5.2674977 10.520212 5.1427618 10.380859 5.0761719 C 10.532047 4.8216921 10.447285 4.4906405 10.193359 4.3378906 L 10.128906 4.3007812 C 9.8755225 4.1483814 9.5488191 4.2269859 9.3945312 4.4785156 C 9.2812554 4.4175157 9.1450075 4.3979407 9.0097656 4.4316406 L 8.9375 4.4492188 C 8.6490423 4.5210187 8.4751421 4.8111797 8.546875 5.0996094 L 8.6640625 5.5703125 C 8.2608929 5.4646126 7.8387996 5.4616407 7.4375 5.5566406 L 7.578125 5.0722656 C 7.6601549 4.7865959 7.4947371 4.490273 7.2089844 4.4082031 L 7.1347656 4.3867188 C 6.9738698 4.3402188 6.8090245 4.3754907 6.6816406 4.4628906 C 6.5729702 4.2695633 6.3620179 4.1686494 6.1542969 4.1914062 z " />
</svg>

Before

Width:  |  Height:  |  Size: 5.1 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.4 KiB

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