Files
Hipsterfy/test_notebooks/scratch.ipynb
2025-07-20 20:17:02 +02:00

1707 lines
187 KiB
Plaintext

{
"cells": [
{
"cell_type": "markdown",
"id": "95a6b0fe",
"metadata": {},
"source": [
"## Scratchpad\n",
"\n",
"read a spotify playlist and parse that"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "dcb56db9",
"metadata": {},
"outputs": [],
"source": [
"import spotipy\n",
"from spotipy.oauth2 import SpotifyClientCredentials\n",
"\n",
"from pathlib import Path\n",
"import json\n",
"import pandas as pd\n",
"\n",
"creadentials = Path(\"spotify_credentials.json\")\n",
"if not creadentials.exists():\n",
" raise FileNotFoundError(\"Spotify credentials file not found. Please create 'spotify_credentials.json' with your Spotify API credentials.\")\n",
"creds = json.loads(creadentials.read_text())\n",
"\n",
"CLIENT_ID = creds.get(\"CLIENT_ID\")\n",
"CLIENT_SECRET = creds.get(\"CLIENT_SECRET\")\n",
"if not CLIENT_ID or not CLIENT_SECRET:\n",
" raise ValueError(\"CLIENT_ID and CLIENT_SECRET must be provided in 'spotify_credentials.json'.\")\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "243aa1d1",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n",
"dict_keys(['preview_url', 'available_markets', 'explicit', 'type', 'episode', 'track', 'album', 'artists', 'disc_number', 'track_number', 'duration_ms', 'external_ids', 'external_urls', 'href', 'id', 'name', 'popularity', 'uri', 'is_local'])\n"
]
}
],
"source": [
"# Set up client credentials\n",
"auth_manager = SpotifyClientCredentials(client_id=CLIENT_ID, client_secret=CLIENT_SECRET)\n",
"sp = spotipy.Spotify(auth_manager=auth_manager)\n",
"\n",
"# Your playlist link or ID\n",
"playlist_url = 'https://open.spotify.com/playlist/294v6cT4ZWxtpsKQPZyC5h'\n",
"\n",
"# Extract playlist ID from URL\n",
"playlist_id = playlist_url.split(\"/\")[-1].split(\"?\")[0]\n",
"\n",
"# Get playlist items\n",
"results = sp.playlist_items(playlist_id, additional_types=['track'])\n",
"\n",
"tracks_data = []\n",
"\n",
"for item in results['items']:\n",
" track = item['track']\n",
" if track:\n",
" print(track.keys())\n",
" title = track['name']\n",
" artists = ', '.join([artist['name'] for artist in track['artists']])\n",
" album = track['album']['name']\n",
" release_date = track['album']['release_date']\n",
" duration_ms = track['duration_ms']\n",
" duration_min = round(duration_ms / 60000, 2)\n",
" link = track['external_urls']['spotify']\n",
"\n",
" track_info = {\n",
" 'title': title,\n",
" 'artist': artists,\n",
" 'album': album,\n",
" 'release_date': release_date,\n",
" 'length_min': duration_min,\n",
" 'spotify_link': link\n",
" }\n",
" tracks_data.append(track_info)\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "e0c7b632",
"metadata": {},
"outputs": [],
"source": [
"tracks_data = []\n",
"\n",
"for item in results['items']:\n",
" track = item['track']\n",
" if track:\n",
" title = track['name']\n",
" artists = ', '.join([artist['name'] for artist in track['artists']])\n",
" album = track['album']['name']\n",
" release_date = track['album']['release_date']\n",
" duration_ms = track['duration_ms']\n",
" duration_min = round(duration_ms / 60000, 2)\n",
" link = track['external_urls']['spotify']\n",
" track_id = track['id']\n",
" popularity = track.get('popularity')\n",
" explicit = track.get('explicit')\n",
" preview_url = track.get('preview_url')\n",
" track_number = track.get('track_number')\n",
" disc_number = track.get('disc_number')\n",
" available_markets = track.get('available_markets')\n",
" is_local = track.get('is_local')\n",
" external_ids = track.get('external_ids')\n",
" uri = track.get('uri')\n",
" album_images = track['album'].get('images')\n",
" album_type = track['album'].get('album_type')\n",
" album_release_date_precision = track['album'].get('release_date_precision')\n",
" album_total_tracks = track['album'].get('total_tracks')\n",
" album_id = track['album'].get('id')\n",
" album_uri = track['album'].get('uri')\n",
" # Künstler-Objekte mit mehr Infos\n",
" artists_full = track.get('artists')\n",
"\n",
" track_info = {\n",
" 'title': title,\n",
" 'artist': artists,\n",
" 'album': album,\n",
" 'release_date': release_date,\n",
" 'length_min': duration_min,\n",
" 'spotify_link': link,\n",
" 'track_id': track_id,\n",
" 'popularity': popularity,\n",
" 'explicit': explicit,\n",
" 'preview_url': preview_url,\n",
" 'track_number': track_number,\n",
" 'disc_number': disc_number,\n",
" 'available_markets': available_markets,\n",
" 'is_local': is_local,\n",
" 'external_ids': external_ids,\n",
" 'uri': uri,\n",
" 'album_images': album_images,\n",
" 'album_type': album_type,\n",
" 'album_release_date_precision': album_release_date_precision,\n",
" 'album_total_tracks': album_total_tracks,\n",
" 'album_id': album_id,\n",
" 'album_uri': album_uri,\n",
" 'artists_full': artists_full\n",
" }\n",
" tracks_data.append(track_info)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "696c61f5",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": 18,
"id": "33b0a0ee",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273f5768db89dd8ac30fd0e414f\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Barbie Girl</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Aqua</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Aquarium (Special Edition) (album, 17 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1997-01-01 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.3 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 3 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 80/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DKBKA9700403</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:5ZrDlcxIDZyjOzHdYW1ydr</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:3hHmYc6mrl6NkmRW1ZwYvm</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/5ZrDlcxIDZyjOzHdYW1ydr\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/5ZrDlcxIDZyjOzHdYW1ydr\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABUklEQVR4nIVTMWrDQBAceQXBcOIErlIG3BoULhACFhK4MgjyoXzBkAf4E3mA4IwMaWTiNhBIk9Zw4g7cnLg0JmgVQrY6htnZ2WEvCrjUboKf+uPZRbd3Lk6jmKEUCHmmC8Pb4ulGateVIzGnnt/LXyPk8Walx6jHIq2fpB6ikUkVAByoHqAIwTZQMgQ9VHDJNfRU53sw7lvIjCChhtzIVjt4Sl+oZx5cU7ymXcWcwYiCZCs8mxYZ6h+Bbksd42ryRipwZ5JOM1lvliyduKsWC5SYSzbNwpI0yKxmuqqQCKGRDLUUGiMby7kByIQObcHTgaUvSskxD6JNzRq9OzIP3ts2KCuYbnzOhdt+JMTSiQIckvb+9Nnx2ymT4oxVxncLWdN4MqT57Qgs434mRldyXh+oaOdcgRTgM8HyjeHzJa7qku026SNH+wdhq5HfS/3/A74B2SGNr54UzLcAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273a00ecc3de0f1456c5b79d532\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Sing Hallelujah!</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Dr. Alban</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> One Love (2nd Edition) (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1992-05-04 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.02 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 4 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 3/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 0 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEA819200295</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:1ohbjkuczl6hEoYEo931PH</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:5YPI9qfm2uuMxlq4CEUOFu</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/1ohbjkuczl6hEoYEo931PH\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/1ohbjkuczl6hEoYEo931PH\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABTUlEQVR4nIVTwWYEQRSsyZvL0KuXPeW+16XpIcKMXva6P5FvyHeEkFM+I+S69Oollo5ZcgohXxCmTRNhRucSMW+I1KmV6qpqqrOEH+zP8Is/jiEry5jNs5yxlAbUypqWX8vljaQY1mM2B+L1PZUrTFgRl1INk+Aex/ke0o7ZrJ1rAHim3YhFSl0HTSnZsUOcnZ9s0dcHMG2TVCtJaMs6XJ2sXN1GGsbaXtnkJAk31qJVygkSlqVl7ctqUeHxlQLTWu1b0mBaJG1lY60wrEN42yps1RK8L1oSLVTH0vo1Tp+XdBAPLE0kUtJppkVvSMMbb/gryDk4KTVv5k2qKuGIO/jOdtQI7tupCt6AeLOEQLOm/HgPfDubUx/sRk23s36qsMun2zmqQ70QkyHGstgYv5zOs8q/Qu0n2ylQXdzFyNghixSLQm/B+/7g/x/wDZxdj9tkNjMRAAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2734bf1b45214be9a5c9a6cbc9a\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Wonderwall - Remastered</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Oasis</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> [What's the Story] Morning Glory? [Remastered] (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1995-10-02 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.31 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 3 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 2/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 0 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: GBQCP1400109</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:1rHtngf9FuO1y0aEyPcNVF</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:0spT2EJ0PlKmrwydKWHRA1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/1rHtngf9FuO1y0aEyPcNVF\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/1rHtngf9FuO1y0aEyPcNVF\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABUklEQVR4nIWTMWvDMBSEz5aXwAsyZOpY8BpwcKGLjQ1e+zO6dsrUsT8g0D8UUHEhi4MNmQKBjpkKMhJ4sVGXUPwMpW8SH6d3Jzh5Drf58PE7fxw7b/Ngg9ALGBVOIItVrvm1YLGTsF0xpQFgkx3K+7mFpGir58YDuvCtkGpKPR0mAHAU++le6exlk8DxV9jlnVXnOvucboBpXKxJUKKmVCfAMEhUU+rTWLnDqiOWDBq5lA20m2o9M7ZbaqNz1TGtypWWCZgWTtTSDDXlUxp09cuasjbiboY0pEFseN44r6s0F5JTcko3IuFaE1MK4Wrm5o+na6/oWFrm5kiYNKVKsA0DOd3Iithev4+yYkTWs7yeQyeW9eP3V8e7UxwHq8p41h3gkBb7YNYdEutwv6JZd/pXXKl+nlGgHTcXw/s7LGDLd8ve5o+ePeFM5mmW9zb//4AfyHWS2UBHxqgAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273ac1d08ce400ede1a8ab75e31\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Lemon Tree - Album Edit</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Fools Garden</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Dish Of The Day (album, 11 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1995 (year)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.18 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 3 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 0/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 0 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEAF70927221</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:4jH2NgiLe1z17ev6z6i7Fz</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:1L8jOPhcmUBO9Ljr3x3EfP</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/4jH2NgiLe1z17ev6z6i7Fz\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/4jH2NgiLe1z17ev6z6i7Fz\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABS0lEQVR4nJVTMWoDMRDcy6oxrLlrU6W51iDQgQnY6CBtnuEfpMov8oBAPhFwFZC5ynDh3AbcpEplkJFABCSUJoTbCymylRikmWF2VGT4nt0F/Mwfx3PRNl5UhWAo5vT4+llry5+JADfi8dyOUQGQNvvQLH5J0HIWp8IRDtd3UBqGpgLr4JtdNUYhZzs4o3I2Y9SBppgRtGG8nan9HMgzZylVp6pGODK18vbdOzqmmqlZ1EhoDFfLyrnelBk5GiX2NlLJPSwfSMFBSsYbVyhXTnaOMUTZDQoGYrwC6P7gIwbiOVinEbTRPAe5ijIrOzAPCbcBxNvVZsxQuON6S/Uans48yV47QxKnvNBrQO43ZztYVI7ftaAJVad4Dph9MHt44bsAsYjzcKq6NGlJ87xvHUwahbPWwqXj/Y3kHXUfLd8bKEMZS5ZD8Y8f8AW385cgm8531QAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273f94b2a29ccc364e8faedce10\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">The Rhythm of the Night</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Corona</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> The Rhythm of the Night (album, 16 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1994 (year)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.4 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 8 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 76/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 169 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: ITA199800041</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:0ofMkI3jzmGCElAOgOLeo3</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:6rrPmmb2lQd5pNRL6HKBZx</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/0ofMkI3jzmGCElAOgOLeo3\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/0ofMkI3jzmGCElAOgOLeo3\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABO0lEQVR4nJWTMUsEMRSEJ74FOQhkW3vhKiGQbYQ9IlgJgn/CnyhYCTlSCStZsN3yWiFLAtdkiY3IvgULU4Vh8s2El4iKn3W8wO/6YzuLQzc3rWiYSpWmsZxs5MeajPvjNN9tYEt8Vx3nNgC68UZugwvkLUXlmLoIymd0x3atotZYU6Fa3dqbxdNhR1rwDtK7fG5Hmfnd0Mqr09d+4h0eTzntpuWapRVrvArSsTQUJDVob2mtNiSv9nnAh+Tc1yhtztCcW0hLD58YN/Y+aAqScVGNHVzpvWJpi8Pu8o0OlnEjmWiKjoERkvO1UA2Gq1Unn3q98aKoFKF5h6R7FAvifWtNIcIk7o3olU9k1DbNUU9xwyWjh0HDO/5Kls9nOBqx8UpELfnkUST8NOzZ5JtFmJeHJALmlSr+8QO+AYGDmkMBVwjcAAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27329cced2f38d87456e0b5c398\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Blue (Da Ba Dee) - Gabry Ponte Ice Pop Radio</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Eiffel 65, Gabry Ponte</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Europop (album, 19 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1999 (year)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.73 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 4 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 11/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 0 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: ITT019810102</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:2yAVzRiEQooPEJ9SYx11L3</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:54vbD17F1t5q3yHkj1cX37</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/2yAVzRiEQooPEJ9SYx11L3\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/2yAVzRiEQooPEJ9SYx11L3\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABT0lEQVR4nJWTz0rEMBDGJzu9LMzSgidPIngVIhUWoSWBvQo+k48h+BiCJyFSYRG6tFdhQXwAISWBXhLiRSSz4sE5hR9fvvmTiUjwHc8L+Ik/jpO4uPSiEgWjmBC0A2X5tWK5I/0w6ZwWALPbT/ocDijtT29+JQ4Qq1tZmpwKW9UAADt8yiik5BzUZUomd/CrYzBL077kDuCGIC0h1blWOD3GgOOEMXegaNK28gTcQdVIHViWDZw0qNDRwKi1aEOpGq5NrsfUG1I5LaaTeAUazg6ygUWyIB1zCKoZOqW6kvtCAjlAzbSLWFbqPrq7azb1+aMs5LxEzyi1c2hhfBxZDaEfQsKBeA3ONhAUIKMiwYSrfv35PvHd2ayUNxvJe0sSu4AWDd8dem228YgOFnHWrU79GXfAmiBI4i8PYembtfGst0UUXvm3fc3mIP7xA74AiAKY+Gaa4nEAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273a00ecc3de0f1456c5b79d532\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">It's My Life</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Dr. Alban</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> One Love (2nd Edition) (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1992-05-04 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.0 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 2 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 8/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 0 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEA819200287</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:6HdM7gzXVgcpepv276raog</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:5YPI9qfm2uuMxlq4CEUOFu</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/6HdM7gzXVgcpepv276raog\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/6HdM7gzXVgcpepv276raog\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABSUlEQVR4nJVTsUrEQBCdOGmEkQSsrhds54ggQmQDVsKBX+I3+AVWtoI/EbAS9thrhBz7AykPrIQNE7hmw9qIZE4snGp5zLx57zGbJfiu9RH81B/PIbu+GPMyyxWKCfrt1c4EPZbv4WbTD80hWXiH5teKabzsWKOZ0LKYsF2123nvlOG4H5t1Oe+FlIITiynZOSpgKCYEY9U293a2PwEalQaCkhYffN4r3kAhpOhDpXhjbQpC6vS26HzRWW9Qoamr0cYIhUbRGoldbTRDRCZhJwoNbLsKPKF2QQ/4mO5faa43hxbuNpOZWLtgE6Nw8JrXiQvOe+Utk9XwBHw7vgwqSdtVEoi1N+EaomHUelMKXqAS3RugJlu5SuWQY1q2eNx8niq9glyTZ3D24HbcbglyeDu4LCMsao1G6j08nzc6B6gsJfYqh+wfP+AL3kydUIF452oAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27354be522e5e1814efa54a31b3\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Boom, Boom, Boom, Boom!!</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Vengaboys</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Greatest Hits! (compilation, 16 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2009-12-11 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.38 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 2 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 5/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 0 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: NLC529811150</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:65OXGbKBQ8gUyJvUd0jNpf</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:5t02mTYT9ks9sOC1ihea4a</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/65OXGbKBQ8gUyJvUd0jNpf\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/65OXGbKBQ8gUyJvUd0jNpf\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABS0lEQVR4nJWTMWrDQBBFvzxqDGvWkCrg0uDKsEFqDAsWpMphcoDcwpAD5AyBtIE1KoJBIB/AkMaQKjBiBWo2TJoQPIIU2Wr5zL4/M/zNBD9nP8Hv+ePaZVXZZ/MsVyoJTkc5b1k/yztU+1NXjWHLA0rNzQGE+dp3I+OEamODDUr9yghDX+7nlypEOMZAIuFSjdiaJIRtUNw6LIcZTK97MDO+OoMWmkvRiTdcKK64whoKrN1SiLEJ25Z0bfLUJIYNyu1td7s69p6UW0oEU7s6aq6rm4Jao7iTwT7QbrMejCYIpxpJT5xT7vuD3PB7d1nL3FoumlbNlsVF12J51z91amfPTYXpEaVyi86gsY50vyLcMIqo98DwFgUVag8TkuGFpnjtNZeco+BQh1F2Hj8rxHE86X7BuPaj7BjzgXql0gdGEbxQ26qJ//EDvgFVDZL2i/uZ/wAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27336cf58e3e7cf36a145b1da18\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">...Baby One More Time</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Britney Spears</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> ...Baby One More Time (Digital Deluxe Version) (album, 16 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1999-01-12 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.52 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 85/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USJI19810404</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:3MjUtNVVq3C8Fn0MP3zhXa</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:3WNxdumkSMGMJRhEgK80qx</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/3MjUtNVVq3C8Fn0MP3zhXa\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/3MjUtNVVq3C8Fn0MP3zhXa\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABVElEQVR4nJWTwUrEMBCGJ04vC4EU9iTsRSh4EiLpZSGSPoCwz+ADCL6C4Bt4XdiX8Cq01GMhgteCCF4XElIoQkq8iHQKHpxT+Jn8/zdMwhL8VHMCv/XH0bOr0rOcZUTFhP1bKoyj17IBqmbvq4XZ9NmJivpmAJDDUfpFcAS93T2JmqgTw2Ecqiafq5CSsyGKlOp578B2tyssGGHIuL0ox9ORDzTNr/mmOJ73dOLqY3B881yQNKc1cuw6kgaxTth1xiBRk5aijk4KQgbjHsRL30viGyNK3kIbqK+uOwWWL3yVtmASCqqGELE2YOZqNuRb/ALv3v28N6hWuTZaNe9l4dofQF7CwRPe++4OGg4l4Q2Oy2gkUt6UnHWgAuV1YASoVhHeDFPpcVUd10AYcrl6EGd5O9FXMj36GwivlAGV5lFyuouQDNjYBbNgULW2YC2Z+B8/4BtgcZr03DoCowAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2732160c02bc56f192df0f4986b\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">I Want It That Way</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Backstreet Boys</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Millennium (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1999-05-18 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.56 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 2 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 87/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USJI19910614</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:47BBI51FKFwOMlIiX6m8ya</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:5ySxm9hxBNss01WCL7GLyQ</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/47BBI51FKFwOMlIiX6m8ya\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/47BBI51FKFwOMlIiX6m8ya\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABRUlEQVR4nJVTsWoDMQyVqywHgjvoWiiFrAEXG7ok3EGnQqG/0k/pxxSyOni94ELWQJZApoIOG7KccZdSTikdqsk8HtJ7erIq8F2bK/ipP56D6uygGjUTKJa837XzlqcoRNQBXdDGyWb42pP9NSK/2TRKVEW6x+rcd+/bKTcrhDPYTTPlzuoyIFQPRbpI6uWp2oHqBBfCwqYuURIaKDV0O/887aWy51Pi6mY1l96MQSLiIrxVuWd3XB/EdqCQRjeOVDuhYb14rBNpFNxxNJq89nHKBdYuGAiEAi2mJSitF30hFl4iFGjFtNzchYwrPgyC64rXiMHIDoGCj0sdZG53bCknsDKhFaX+ekDeCmWFA4OJUi9DSz6iudSrEUdklNNmyLlZNO7ySvb66CJc3JkBYk0yCxiJ/Ic/ieSBwbhlwFp4U//4AV8tSpRItTgqKwAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273bce5ea610d97401b08bd0a9b\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Teenage Dirtbag</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Wheatus</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Songs From Dawson's Creek, Vol. II (compilation, 14 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2000-09-29 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.03 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 10 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 72/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USSM10008431</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:3LI4MmibTkXH5cGpCGZgyw</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:187HV0h26fG3mkRsySp5Lj</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/3LI4MmibTkXH5cGpCGZgyw\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/3LI4MmibTkXH5cGpCGZgyw\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABQUlEQVR4nJWTwUrEMBCG/zo9RlrYk0dhwVMhkIIIhezVxxC8+kw+yUKWeBEW0gcoeFnwmpJCEVLGi0in4ME5hY/JzP9PJgXjJ05X+I0/jmNxaKeiLkpBiZehtxcb5bVyxuE0jIc1LYEl9mPbYENRYqm2jTO6BxMrJ+hS0DSjPdVrCuaYkjPMbk0TrMpMsGt6pbzbz9dQk9AwoW5u9qBB1E0qas4hGlE3UxeqgLPsxuT5rAOTpGdVuZh1JTRgdpMZMGjRLXekVYJPInfC8fWuDo8bx8YqMFMllXG03nVOOC7yrpnxfn/8GIU38il6VUlvKXTBp04HqffJPasFaOV0otLZgpJ0zClEMknOIcIqaG/kHIjHmRSO8i1QNl9veOn9stmS3e1woV5qIANkrVjqzUonuE+xfYgwUQUKwlvxjx/wDQfPnToJ8iW2AAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2737632fe25cd368dc205927f0c\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Gangsta's Paradise</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Coolio, L.V.</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Gangsta's Paradise (album, 14 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1995-11-07 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.01 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 2 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 11/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 0 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USTB10400128</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:7lQWRAjyhTpCWFC0jmclT4</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:0fYctMs4EvoEqzDh8Kmg5g</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/7lQWRAjyhTpCWFC0jmclT4\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/7lQWRAjyhTpCWFC0jmclT4\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABOklEQVR4nJWTMWoDMRBFZz3bBATyAVIaXBkG5FJmBWkDOUYukSsE0uYegbRaVAUWZNgDhEAOIDPbBLRMmhA8a1JElXh8/T8ajRqBn9Wv4Hf9sT01oT8EaFpFUaa7V5i6oo+1AOv++hQWZnPZDfEiwrRjuAiuSFebjY2Kzs0EWwz9+pyCCEvKKBLPKYvzVcBbRcWVYiCVTtEy2GqoOKVd2fuPKdn3x41KqxkoFbZJ+2K11ZmM57SFr9Yd32BvdL2dpC5TdMqhVgeGKbGmJg2A2Wtf5Kaal/lIujs9hy3Sp05jT0JCJesbd0OKvjrdB84+ZSbSWgZGTgC4cABGjKC1IpwTOlba1am5DfPuKSwqky51jEW/EKOnGAmS7iTgSDdxvBjPMj6PsJyd+UA4w4NKK+CiF7Cq3uYfP+AbQuWavryLQc8AAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27379606c79fde418c0bc458abb\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Jump Around - 30 Years Remaster</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> House Of Pain</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> House of Pain (Fine Malt Lyrics) [30 Years] [Deluxe Edition] (album, 22 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2022-07-22 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.64 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 2 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ✅ | <strong>Beliebtheit:</strong> 78/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USTB12100088</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:7L93GESzq43UkKUt5FsOCq</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:1GYvmeraQXDxxSC9T3RDvM</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/7L93GESzq43UkKUt5FsOCq\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/7L93GESzq43UkKUt5FsOCq\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABRklEQVR4nJWTMUoEMRSGXybTLEQyB7BZELYSIhFEyDDTCh5DsBI8gIfYG3gJWyFL2oVsu7Bg4wEyJDAICc9GZF/EYl8Vfl6+5H/5wxB+atPAb/2znFi/6Udg7bEKEZWMOQ7Rkm0tQNceprGC8c9LUXFbgMV5eh+X1cGZq8VzkJaohaW04teb7lhlCOmQVJeJC4ioTUZlpCWqjkFyFwai4lYaGYKmvUFF5VFaTdQcRbBouKMq5Ji1kZxyhdE2ZEW5iNFrZyi3KWW82kPixDEE4Tzn3hBuK2J7u53K+pFMct6F+4fdVxJ0OmcXfpKpfEyEi4Fvc45kDg2HMc/z2K/pG1vU3gug3sIAjmsL/o83x3Ukvc3E7kpR61FU2RkAowuyyk7Bbv/UvdXZScsbcHV2YPdaZqizU/q0UvBCJwk6GARJ7stO+AHf95OiZtVTx3gAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273ab1d7b56d97842315dd0fdaa\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Intergalactic - Remastered 2009</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Beastie Boys</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Hello Nasty (Deluxe Edition/Remastered) (album, 43 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1998-07-14 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.86 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 7 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 72/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USCA20903764</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:5fpizYGbi5IQoEraj6FP0R</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:6eGYLONkDMja0MNtZWnRRB</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/5fpizYGbi5IQoEraj6FP0R\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/5fpizYGbi5IQoEraj6FP0R\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABTElEQVR4nJVTwUoDMRCdOHsRIlnwJBSKUPAkpGRBhC3Za0/+hB/UDyj0SwopOYiwJfsBXoSCp0JKAkVIiBeRTsWDcwqP4b03My+swHdtLuCn/ngeWNdEVrOKoFhgOeid9qcoBJQCjZPKUDL0r6L5JZHjw7Q/RxOMHrUUhqCZ4eQYm01N1ErxLvSiFEM8gG5TUaCpB7uOsR54JLyX/JqPbvcfbwSN3XsMfDybEDUvJXI0hqqlUFRvWo1EDedTAGkyp7Mdl4OCCJLwpqQkD2CDoWrWKXAcqZpunUnailO0wvVx/pJ1PuMF6UNqvaPbsQGNKoJciAV+ZWEyg9WB+N2YZ9gO0NAbSw69AKR+S/F9QBXoHg7sCbf7RccpQ1GILXraC1Xew+K+NmcpgfFnhEBSUgHgbb2Dm0Dzm/hg+equI72ZKT8KUwens7F//IAvbImTIHTVyl0AAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273530cec85d4543693bd726167\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Everybody (Backstreet's Back) - Radio Edit</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Backstreet Boys</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Backstreet's Back (album, 11 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1997-08-12 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.76 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 82/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 183 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USJI19710083</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:1di1BEgJYzPvXUuinsYJGP</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:2U9ONknz1iFEK9drEKLx8v</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/1di1BEgJYzPvXUuinsYJGP\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/1di1BEgJYzPvXUuinsYJGP\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABQklEQVR4nJVTQWrDMBAcd30pbJGh10LoDxTko0B+QD5R6DV/yQMC/USvBQUXQsHBhXwh0FNBRgZfZNRLKdmUHronMYeZ2Z1RkfE9uyv8zB/PoWjqoayKUqCUsT3akwvnKCJpRb7Xxl+Q6TeuJW8JYFPPbhBoEXmp5qlrng/nDHNB44R6Vwm1nEMfg8rZCw9wnLKB80Kt18txMfIoPQw3oTqB7gRvoKizVUFsgaA0cQsv1ZJvY+eVI7Ex8XoF/TmzVJu6WwLejVBL1oCjbqNUs21vqGeSu1mr4DIpiaaYyCfvpDOnUwwm9MLZND7tD3S9eJRx8wMTj/dbmSY6ExP0hQdt0SlN0m/OoQswUd5hKFZ01JuGL7ozDejwMkoP5Wx4v678ryIOa0Rc9MxYTpqz7FlixNf2o5Fpwnib0Ys7FP/4AV8MOpU1bI78NwAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27363facc42e4a35eb3aa182b59\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Wannabe</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Spice Girls</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Spice (album, 10 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1996-01-01 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 2.88 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 84/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: GBAAA9600008</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:1Je1IMUlBXcx1Fz0WE7oPT</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:3x2jF7blR6bFHtk4MccsyJ</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/1Je1IMUlBXcx1Fz0WE7oPT\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/1Je1IMUlBXcx1Fz0WE7oPT\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABUklEQVR4nIWTwUoDMRCGJ85ehJQteBW89FqIpBdhZRd6EnwJ38AXEfoGPoMgeCqkRCiFLF3otSCCVyFLFvaSMF6K7CyIcwo/w/f/mUwEwak2Z/BbfxxbUXXTSSMypiIBrD2UfqiKML3BtC1afOIwrFfzETcDAN/b48PIOLbZeTPLDeP6qQYAqHE9UIEo5lFaIjMkdPXie2tSw91S93zxKavD61CFqBRF560eEsAbRyUYv2dqdBrD3qkwVLNemWOTEBrGJUQKJDFnydq0u62v36ThvVJidKi5G/loAxlHPINRjkJRIu8NHh3Ans8h3S8NFnaULIJVFq20/MaUx9KVJnA35SGH0vMMwWmvlEGmCoK2cu84PyTGhSKS14rPAalfbi7BfvGXz6R59GkiR4vYilWX62q0OzJC/wJY893BBu6upOQvL9QCd7PuA3jeU/3/A34AZEGnDhr4ZBUAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273efb3fd949c71bc9b5e7b31dc\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">What Is Love - 7\" Mix</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Haddaway</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> The Album (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1993-09-13 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.51 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 85/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEA410500401</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:0OTO8ZF2YqFQVw9hnZylTd</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:5YOPNlihunDoAew2Jlbbd7</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/0OTO8ZF2YqFQVw9hnZylTd\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/0OTO8ZF2YqFQVw9hnZylTd\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABRklEQVR4nJVTz2YEMRz+ZrOXEjLsqeylLD2VVIZawgy9Ln2VfYA+yrIvUXoqGTmVMEtPpcd5gIyEvWSkl6r9hR76O8Unvj+/fKkyfqZf4Hf+OE5V10xVXS0JyjIOH+3Y+ksUgSnBMEhlLtAlMI+f6G4I7xLAOs6sFE7AVnlhCDpXbHNG19dELWdvQxI5G+IBLU+DQks92G0Tu8gj8XA1174e8fhF1OLT2ITdet7QbFoJYeGoWobNzunMKOo4c95zYUi2hxd+Pp0gCW9KSvIAGwhDkmaQGHjBK7WDTlbQu95rhtaQxPBS5+S1H+h2rGXS5qF4oefZQd7jOBG/vdnHHmjoHqSGa8Go35yD81CB+F1M1Q4rdep40Z14xrt5i0V3ZDJGwpqiiCvsEcp6srudwbUuusPjKz/cdoTXQxmdpSB7qP7xA74BKUCWSVpj4G8AAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273cebdf1f7660ace8c2a80585c\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">I'm Gonna Be (500 Miles)</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> The Proclaimers</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Sunshine on Leith (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1988-01-01 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.66 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 79/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: GBAYK8800055</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:67iAlVNDDdddxqSD2EZhFs</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:5sK78apv4yOoXjxRL4kOdJ</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/67iAlVNDDdddxqSD2EZhFs\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/67iAlVNDDdddxqSD2EZhFs\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABPklEQVR4nIVTvUoEMRCemCtHsnDV9dsKgV0QYWEXrrrKZ/ANfANfwQfwMWwPcuQaIZAFK0GwEa5NSOCaHGOj4kTEqYaP8P3MTATBZ+3O4Lv+aKOY+iwasWCopNPDXNox/EQhSa0keN2Ziqx9wv63xP3le6nRArdX66wMQ09CwhGmXcPUiIJNThEZ5gHGoZCEkXlAv83Hc8DMs+UlrtqLw2uVIgQaHE8BRY1WWQhcrSRSTpOSTE1uBGQTI3K/Nkgqbhg5w9ABJm1ThRrfgUfGuwB5N+eyPnLeFBJZUwzjFdRjBrN5fIv8LXXBkufZktfkSWvP93bjpvaE0Fd7a+LLcv8c6l24AF3ic4jiGho9T1jdTswWzTbXtxOc1WB5YgDVQ5Bz5UEKLNNqqG4H0WZ/mBhvgM4MBN7z6Xx1//+AD/5Cn0o8hxtxAAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2734c894b7dd6b2939c8c547d3d\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Rhythm Is a Dancer</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> SNAP!</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> The Madman's Return (album, 14 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1992-01-01 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 5.54 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 6 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 75/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DET189200600</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:5uFYYOyT3EclOVhiFzPJSz</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:4XbUZbCiZynKWMCWFoNSbY</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/5uFYYOyT3EclOVhiFzPJSz\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/5uFYYOyT3EclOVhiFzPJSz\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABSUlEQVR4nIWTwUoDMRCGJ86CFCLZa6EXoeCpEMmCCCnZax9D8I16FXySQkoOIqyk4AN4KXjNkkAvCfGi0lkQ5zT8hJnvn5mwCt+xv4Df+CMd2bobWcsaomKFp3e9NOFchYhSoPVS2TO1AYBwmNZtACB1xUwbZ+jvjRWWqIUhnFK3b0m3WoOLWdVqCQMYnj2CsaSus8vTGngiDJy3q/lnwQVluD2muFmUJfUmpOcDD6Qbyy88zZKQzY6QZa2GnLWgc7h8vVN7DpLUzRpBR3CR8CbY+XTlNxPHxgjQ2gnqOEfjwFDHrLarhHZtP0byVlUvY/ZkQywuiktyk55HMofr46N+S9DROUguBwFIeKHW4COoiEQNoIVTTk14q0LUGJBuqCkBtqvWTg+xLw82Ts8TZ3zo53pyO/wQ0/amB8qggvbgPZ3OT/b/D/gCg0CSIpJSMMAAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2732c25dad9f8fd54652f7ba5df\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Harder, Better, Faster, Stronger</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Daft Punk</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Discovery (album, 14 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2001-03-12 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.77 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 4 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 75/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: GBDUW0000059</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:5W3cjX2J3tjhG8zb6u0qHn</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:2noRn2Aes5aoNVsU6iWThc</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/5W3cjX2J3tjhG8zb6u0qHn\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/5W3cjX2J3tjhG8zb6u0qHn\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABP0lEQVR4nJWTsWrDMBCGf+e8BAQKdCpkzBowKEtBwV479TH6Eh37AH0YrwUFdSm4yJC1kKUPICNDF5nrUorPpUNvEh+/ft39kgrGd51W+Kk/lkPRnI4NilJQ4uGuncY6ym0lcPXyPjRLs489Dr+OUNuzs0uaabd+aLWb0yJuDAC80fOcMkb06pDlFCOa6xvsj5u5A1KdoiYfazej5fS43U9xol5qTYqhVjBzLTipynM2XtAcHWcPTVJrQV2OVksaQtCpctI3ZwPr4ZOgES4QBSt8S3DBr+PUV/IuThH3VO2UyIyPI60/1+1lEL5dx8rVSeSAFGwIqaqCpC5o9oCcLTKSoQipZU7BwyShXQ3FLWCeGrV4OxgtmmfI1MnaLlTwcmJQvyN3FtoSQHsZCAsHtpaZfb1I0kQVoEW/xT9+wBckspj7i2tocQAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27354a277d652eba4cd35a2e78a\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Digital Love</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Daft Punk</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Musique, Vol. 1 (compilation, 15 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2006-03-29 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 5.02 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 15 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 47/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: GBDUW0000058</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:5bRDSGmwZJsGG7tPN14fDu</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:4a0p1M12f7VaZWdoNSdEK4</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/5bRDSGmwZJsGG7tPN14fDu\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/5bRDSGmwZJsGG7tPN14fDu\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABR0lEQVR4nJWTsWrDMBCGzzlDFoH9ABm9BlSUJeAgQ6ZCX6KQ9+gr5AH6Hl0veCoY5AcwZAlkKshIEAoW16WUnEuH3iR+Tt/9dydlDN9xWsBP/HEcs2YTszLLhYoMQ28r6+W1PEJzGsZmDrt0NOPmAKnp178KTzBsC1+QUFOG1S1uTuW9Csy+Dd4y070awKqJESwJrqMqlqCi8JCgXK+uACvpobnE8DjsKlnN1qgASFbjlouOOkYSvW0fdNRqp2THy/c99gq04E610SroNpBUqTPolOAubvCCx1q/CS54H2oklh3nsIf0sU/+PIpcCq131hnBRbuDc5WeXwU3UFe0BBrlfLXSndUo/TJ7F8AE6XfMnlIfjo30G9gg1uhnM8vXnz0cyjbN3s4yHiiAJKDRymvFcseTUtf+eG3kdMCQYnTuPjf7xw/4AoSyk9+C8Jk9AAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273b0c0201a8796d8a536253a61\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">I'm Gonna Be (500 Miles)</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> The Proclaimers</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Finest (album, 14 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2003-09-01 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.66 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 72/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: GBAYK8800055</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:66S14BkJDxgkYxLl5DCqOz</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:7hPq9fDWwXPo1tT0oi3XcM</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/66S14BkJDxgkYxLl5DCqOz\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/66S14BkJDxgkYxLl5DCqOz\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABS0lEQVR4nIWTwWrDMAyG5SmXgEP6ADv2WvBwji0O9HkGhb3IYE8y6LXgkcAYuCTQa6EMdh3YOFAGDtqljKhsTCfzI3/6JdmC4BIvN/ATfxyDqIei6EXGVKSxtro2nl/LwG1aFeorGIqnr19KqDnaazUFmbdDaaeq8DMNALDH3UQFomSSIiI7VaNTrnG+Y6rwR1i/y/qwHRlhqYk6jZoRUuPIgPWdZc7yh9nWwu2cOzueN48L6JFzNXaRwJSMEMa3+7wgYL1l5XHz2vuKzwHIpyaSdby31OmOojHIe5PnPh/q0k+3KeJK9vBxkBAYF8jG2MiGcT2h007byPzKu88KKlCSOYtSWwCPfL4EoXYtLg4j35sZMTSr0zMjkEpW6siqZZAtK+mrgng1VAkkacNzQbYJww73/O3gsi3WkvnNRqEybYfhBNzvJf7/Ad/Nw6NYSqs6dQAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27386ea2bbfc9494163c9f5e42d\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Insomnia - Radio Edit</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Faithless</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Pure... 90s Dance Party (compilation, 68 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2010-12-10 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.58 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 17 | <strong>Disc #:</strong> 3</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 64/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 170 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: GBBXH9600001</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:3dX6WDwnHwYzB5t754oB4T</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:03awYMGLQWIlD1VyDwq1HF</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/3dX6WDwnHwYzB5t754oB4T\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/3dX6WDwnHwYzB5t754oB4T\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABR0lEQVR4nJWTsUoEMRCG/7255mAhB1aCpWAlBHLlShasrHyJA1sfwFcQbAVfQrj2IEdshD1yYCtYWglZsmCTMDYiNysWpgofk3/+/JlUjO+1meBn/bHtq3Zz1qKaCkrcq9V6YaM8NkV78PTQtyMx0qeXg9SdArPV/JnGjTPNZ9dauX1axbkBgC2t9ylj2EEfRXELJDZ1Zt0oJ6hJUcFH64SH+8OICNoJZ+XqfeHUrj/ep8iZtLesvNBlF1P2dSBJM6iLUUsPbANbbqIRHkpZltdheHFb0Q0uEIVmpBuRa991UmF4S3TSNo+1zHeJgo9z3PUiB9VxRk5WphMaDtzoIGn0JoUa0kO02hM5yFrmGBxMGtXCdojeiBwmxGVhCWvx8kjUGB80RL4TgHazJfx4duA+b3/PTrmoVcENpAfj6kBK+K3+8QO+ABTJmjoJBkf1AAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2739b822cb1e44499e15e54fd6a\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Chihuahua</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> DJ BoBo</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Visions (album, 16 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2003-02-24 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.0 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 5 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 53/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEMI60300005</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:4XxARXvYh14HGGt6EMNmUm</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:06WU43pEpl5mpnkKsRn47A</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/4XxARXvYh14HGGt6EMNmUm\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/4XxARXvYh14HGGt6EMNmUm\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABTklEQVR4nIWTsWrDMBCGf0eGYlCwoVOh0CXQVaApIBND1kJfIu/StQ/Qx8haUHBGG/sBAnmCwhkZtNioSyg6l9KbxMfdf/cfpyTgFqcVfuKP55BUY7Huk5RREcb5COyIl6XZ1QgM1VKsbDeHXy28171c0inbVs17bmOaUKEBoBWfEUUIkyXoEGxE07HK3gsS4yVWANkup2DyOs7FZGBc0J1gNMDmkyS3yLWqdo2E491E3V42zxlzgaDyzgRFXJcUGau6XRfTlewfj2gGKKbgtCNNlLNuK3yUT1K8UsG2M/kepeprOXDHhgQZyVwkk5ez78vGz7Gur4q7ly2Bu5gESat2ms0AJ4VVigTbehIwAvP9l2jZDDC5CbXme3DBTGicW3hLvTB+Xl8WV5Kt3+YrHWKaAiPBz7Atv518f36Q4ApzMpxwPO9H8Hlv8f8P+AaqMp7ZhYzjfgAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273dad3539832612d6ed91a24f5\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">How Much Is The Fish?</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Scooter</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> No Time To Chill (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1998-07-20 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.78 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 2 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 65/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 183 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEN270200133</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:73aOM4jyU3begiIYxYUd89</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:0sFHr1bZ6mPOnICWWRJA01</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/73aOM4jyU3begiIYxYUd89\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/73aOM4jyU3begiIYxYUd89\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABTUlEQVR4nJWTwWZEMRSG/zSXGkIuXZWhytBVCXcYl9S9dFVKn6T0IfoAfYDSZ+iqqyEjqzKVYbZDlaGrkiuhm1zppmrOrS6aVXzk/P9/zgnL+D6LPfycP64da6ddUbKCUJ77zbreNp4+KyLa23HXDorxyfOwbgH0r7OPX8IJqj7fSkNoz3j8RLsodynL6DhG+4mmiOzqYrQGox6Em8d4BhGpWncgjibqfbNLEWTwWQtVmV3q0VjpjM+EZhvC0kvJDalbH44j3o4FVZttJ1IIoYhaShzaKhtI3aSNU3CCU6oayZtsJaEhBW2NNg31q1WqsvaOUu+qZK2j2YJUwQWtHE3xeF/iBZjS7nitUgNO/eYclgFVoH3o2CVfhbtWDHYndhhhPphFgZt+fV2a4ZY8nBaer6gHXmnhlcjUbxJ4gjkhk4dHZUSGJNnYP37AF63nkQkDyQjyAAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27377a50cb765eef114e8ce488c\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Lemon Tree</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Fools Garden</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Dish of the Day (album, 11 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1995-01-01 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.18 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 3 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 79/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEAF70927221</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:2epbL7s3RFV81K5UhTgZje</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:3epesmrZX0KYpeImQtcVUa</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/2epbL7s3RFV81K5UhTgZje\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/2epbL7s3RFV81K5UhTgZje\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABUUlEQVR4nJWTv0rFMBTGT+/pIgTSB3C8qxBJwaWlBSdB8BkE38BVcPE9fAYnpwu55C5CSwp3vYsguKakIMIJcRHpqTh4pvDj5Mt3/iRL8B3bFfzEH8cxq7d1DVk+pxCSloFCEwy7lkdT7I7Hdil2cyLNryeE2F+XS0q4OwKSZk4zX2gAgB43c5pgOkyqIFYFhKQrSqqShlHtvUDrG0apkyS1Dyx3Nd2+TkYc+jWvuEMylKTlCoocuU4io6mrGuMJuIfkbGis8HpO83hyFg+w3pue6QrrEF3FdPPpvfh8+YiDmjvLsffn00BvV8yvB6WIKu+YBy8pdJUNrA85mjzhcw2PI5vFaSpBiKHkuo0KGj1w3ZSCs6gD87sas8s2+qEVbMaY4tM9wAZ4f7FJznqwZrE75Shay3KzUFQPEBEg8t2JF6JRcLfogzaVQ8n8Zv/4AV9LNqMBR60x7wAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2735c34d7a87663652675cf3264\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Let's Get Loud</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Jennifer Lopez</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> On The 6 (album, 16 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1999-06-01 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.99 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 5 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 75/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USSM19900597</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:42nSaPdT6g3ZIMHmKLlP2p</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:3Gby5NNeNYkMgAnrtEA3lc</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/42nSaPdT6g3ZIMHmKLlP2p\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/42nSaPdT6g3ZIMHmKLlP2p\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABW0lEQVR4nIVTQUoDMRR90wxIIWUKXfUErgqRKYgwkoIroeAlPEDBreDSldADeInCgCthShZFmCEFt4VeISWBIiTEjcr8ETGrz+PnvZf3f5KIr7Pu4ef8UR6SmRsMt0lKUBYxqyaQhl5LwRePi8OsQxaa5X35S4K5U8wpChsF9ypKW7XQxAxzAGjYa7s3Rs98oWJs9/ZcM/3YLMOW8vpaZ9YXmaoIgxDSc8FyqrYPd1hXYn8gzkyhbVVx4gxWqlyZHB1eJrW1yDOCGtSooaUmanEgjm84xzNRi8Yr46u687bdtH/jipzMAtFbxSuVReosKzLtuSZqPb56mdxujsHRGT/MS94vnKCZGc8lpKEejruT8oDViOSbRLhLvWaT90DnJgPKq7BftdCUxTOd7KDQtFGkFzOLMIidLXFP1+MsJxuVAhwlC2AN6fXMbccjzkFTF8hrIzqpf1f//4BP8DmjVgP4RLoAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273c36cf94d717475042f6bb0f3\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Angels</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Robbie Williams</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Life Thru A Lens (album, 11 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1997-01-01 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.42 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 4 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 80/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: GBAYE9700233</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:1M2nd8jNUkkwrc1dgBPTJz</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:31Sx9uz9KqlvmX07Pvp0wN</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/1M2nd8jNUkkwrc1dgBPTJz\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/1M2nd8jNUkkwrc1dgBPTJz\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABRklEQVR4nJVTMWrEMBBcZ90EZOQfhDzgQLDXBHTIbSCQl6TKU/KAvCFw7YGMi+PAhwxpD9LkATIypJHZNCF4DSmylRiWmd3ZUcHwU+0V/NYfz7HYTXU1FKVAkaE5ELi4RCGhZYvOkJdkWL3crXhLAPhEXKGQ2Kgc2KUlQxFrAgA442HZy5wxW2YWatN5ezr6cZC80Qcds9WdF6gllwN1JNUG9Qwtbl5H0RtdSH1nxGQlPO5rf/0Eg1BjJE4JUEs14222QQeBslLU90gSTTn7xL5niQYTrHEOJW+KnfKdZrnFze0F4oAgtuAUYqKsVj5oHZ0nL13Pk6ppxINuxQw9RTARpRrD1JyOsHmfl+6MtT01E84fb/LGZH1PaeVkafdqniteBXG8bxtNzTpnMXKMSeYso7oU9YMSOZsLs8X8tRMXKv7xA74BMvWpvoJkGJkAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273ac84d8bd8b1e6f9752dc361e\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Mr. Vain - Original Radio Edit</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Culture Beat</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Mr. Vain (single, 8 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1993-01-01 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.29 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 3 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 75/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEPT99300113</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:4ih3dyFZoeTdaeJW9mPbOI</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:0eVj6uUqoagjDPSOmz2rRj</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/4ih3dyFZoeTdaeJW9mPbOI\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/4ih3dyFZoeTdaeJW9mPbOI\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABP0lEQVR4nIVTsWrDMBA957wELijQtaPXgooyChTwmh/q1KVrpv5K1oCKA10c7LVQ6BcUJCToInNdQvGllL5JPJ7ee+JOFcMFLwv4wR/HWN1vcr2uasEiA2zvvAvyWq32hJu4vTKLj/uRfkWoU2MPkoXELkDvXPIztgprAwBwxuNcy5w6QMPshQNR8pZtJ1geig4KyQi2OPSlKC+0iwxH93pzINmMjUUawIu0Kk1ja/1piXGuDd6UgkbLZmyKGUKwbs7W8X37BjvISqZBAkqgk+yrbY/FoZK+VLqg0EhtUCqhCr1MwxzG6XCLjUwjw9pShzKtdGVQiaRvCqSL0ygnxBBxNWw+P6LcnXblsm/19e74pwc41nLyaHsHIN+2APjKU3J9c6U1loomltqyHKF9zlmkTVU2zZnMDmTfC/7/Ad+XIJpAFy4W8QAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273c50b7d96737041f4bfd844d6\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Oops!...I Did It Again</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Britney Spears</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Oops!... I Did It Again (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2000-05-16 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.52 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 85/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USJI10000100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:6naxalmIoLFWR0siv8dnQQ</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:5PmgtkodFl2Om3hMXONDll</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/6naxalmIoLFWR0siv8dnQQ\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/6naxalmIoLFWR0siv8dnQQ\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABTklEQVR4nJWTMUvEMBzFX00XIUcLTo4HgpMQaOE4qLTgVPB7uB7cB/BDuPo9nA5S6tgjBzcJByIc3CS0JNAlIS4i/UcczBR+w3uPl5fI4/s0Z/g5f1yHqMqHOI1iQpl3z/vlseynFJqJhMlEZHJCYwDHN2Z+W6SLwYbUQizXSCShLmIYkTcpcfO+97orvZckA8rCeoZSEl21MWMKbqYK8bm7+ExPt+xA3MbFR67rd3dF3PpEtByQ1M1K7zupSkbcGJ/Fppg3nLjh4XiXgBdsSiNbje5wmrViS3SF7ARTnOoa9oin5eqFBz1o28LKMuihsKIXvaJUK4akSzJKFXzrC6FoZ3Mb861BTl+oSp1bY9+HGTqNTNO8Q1SzVO8qHmzHDKjlxgTbyUpIgZZmgNvJFXS4HXZzL3FZBNvhr6eduq5I6y7KZN3GHYZp6//4AV+O4pYR7PThtwAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273c24c489de3040f32d80f21f6\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Infinity</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Guru Josh</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Infinity (album, 16 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1990-10-17 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.03 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 7 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 59/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 183 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: GBARL9000068</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:78fTO9KOXmWLkm1r6Ko2Uq</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:0PuT9tt0GtnAYA8CaZ5RMW</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/78fTO9KOXmWLkm1r6Ko2Uq\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/78fTO9KOXmWLkm1r6Ko2Uq\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABRklEQVR4nJWTMWrDQBBFvzxqDAsKpE1pSGWQWZUyMqQKBHyJHMAHcJMz5AC5hCGVYM26NKzBbSDkBitGpZZJE4JGkCJTLY/ZP39nZjPBTxxn+I0/jl22Pq43yHJFSfrtIVVN1Ndy4Pb00W0mYlQui4PWzYG5y9v9tPBA1XznCqdoynrcU3W8GVOIMHshETemLNYMgrpQVCzHAj42ikZvBhPZ6tzYcBma4KzWdVQ74cYrOuDMQyENjWlOpqL2K3VG+y0CWyknusNAMB6etQfjzkCotW4RcwkrXErVye7CePa7haqW03aB1iT32Y1panu6w+HBvIxoxk/ptS8f+7dOvTh6y8GAtDMpPdmI4CazCI4sT3JRBzDp/s5I0AtcqyYPprpxpoTqbw4Qdu/L63R34E7piunupJWxS+yhPVhnAgXlN/vHD/gG02yajcEyI28AAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273abe9c2b5f03653d6b87696e6\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Lo Siento BB:/ (with Bad Bunny & Julieta Venegas)</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Tainy, Bad Bunny, Julieta Venegas</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Lo Siento BB:/ (with Bad Bunny & Julieta Venegas) (single, 1 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2021-10-05 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.46 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 74/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USA2P2135437</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:4gzsuuZypVbxs0Af1LSZyB</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:4589OIFRZp41qbsp7TWFCx</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/4gzsuuZypVbxs0Af1LSZyB\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/4gzsuuZypVbxs0Af1LSZyB\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABTElEQVR4nIWTvWrDMBSFjyItgRvkB8hSCHRVUSAUHGzIVMir9WH6AAUVFbrYZOhUCIRC14KNBF5k1CUUX0PpncTh6J7v6kdkXOtlgd/6Y9mLu21UhVBMlRmuNq7q+DZFK3Kxr6eqAobwscYNZiqtP7EZZ8EJT8UTaTdVRVdYAGjl87SDzhErS5lNgUDkHZ1K75jqkwkkyTI1GSDlBsy7GMhVb8WOGBmyNSfdkMtTrwgt7NGJRvZTb2ds6rQ1zIvsU5VTKiuW1lM9oi7iLI2CpAATZryllrmSmjEklV7NJRq0zFtp6xGaivOuPPV6PGweWVrSwZTwkpGNcK2X4YHdsRr2502D/cB4RUaP4rT9vvT87dTvZY+DYbOFbKRMvmNpCup++VVESbOHOJj1bW42vIO0oGSIne8CaWmw8zGyDqOIOi7P9jjjvdb/P+AHnjeRoGkpZf4AAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27399d5e13356b05f244af52d78\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Ante Up (feat. Busta Rhymes, Teflon & Remi Martin) - Remix</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> M.O.P., Busta Rhymes, Teflon, Remi Martin</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Warriorz (album, 20 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2000-08-29 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.13 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 20 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ✅ | <strong>Beliebtheit:</strong> 64/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USLR50100062</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:5osSw3tL07Tuid7AWsvYcc</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:0mw0v424Ribwwrt0oMVB1j</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/5osSw3tL07Tuid7AWsvYcc\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/5osSw3tL07Tuid7AWsvYcc\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABRUlEQVR4nJWTMWoDMRBF/3q2MQi0B0hpSBWQkZuAzBrcBnKGQA6QAxhCzpDWxwi4Msgo5Qb5AL6CQUZbapk0IXgWUmQq8fl6mj+MKsZPHSb4rT+Ol2p5WK5Q1UIl7h93WLRJXqvJN2/by2oMezZYSG4NTHeNcZfRw4UepqsP7a/VKjUWAL5of03Q3B+BDYsUyGxdYeO0v1bZ5qQppPZarYftzd1wxvoE4TUpRe5gBSEVcoFbHSTXFy5RaZJqAflSxj3oyMTwgjsZzotq2hsSiVEQIlF0glsTV6z64WjEzPrPvJz5l5kShKxsccWlKFPojlTnrZgDclQxZGekNyO0kRVkttSaQNZDeplTF8jmkRet8omsmMOEeOhf19iP9qG+5yOemjDI3aF+3iOMdwenOLxjvDvD3NwqbCB7sN4xtOi3+scP+Ab3rpc7K9RHiwAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273c9f143444515b5106b0e4de5\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Jump Around</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> House Of Pain</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> House of Pain (Fine Malt Lyrics) (album, 19 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1992-07-21 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.58 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 2 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 68/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USTB10300119</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:6JymsaWDHk2Yj4e0yNBIFH</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:0hWY4eSi2bZ8tWplgjO0ph</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/6JymsaWDHk2Yj4e0yNBIFH\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/6JymsaWDHk2Yj4e0yNBIFH\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABPklEQVR4nJWTT0rEMBTGv/i6EQrpAdwIsxUKEUTI0B7AY3gAb+AVPIAwx5jVQIashJYUPIBXSElgEFKeG5F5FRe+Vfj45Xv/EsX4juMFfuKP46z643YLVQmVOOs93XZRXqsWNMfXuV+bPd2E/CtFjffFrtVC0+UjtDtXVWwMAIx0OFcZeUJ7FUUXSGxs4dZqJ1QTYw0fO6kOuug2GclyF2PgACPZQMUlJi9ZV3ShosmJLuoG0yfmGoJl7w23TvhWS38abQa58ZyN8AEIVviiMJXg60E6nMbY75v7jcimuM9vlBd8zMJXD8EiJDEHlWoV0G7zTrCp5c4HQNYQO3gyDkHOgePgySQ5h1k9YGlf+nr1dpCf0R/E5pHIsh5aeDlJ0HR9By/YCsBmt5ywcmAL5oHkjiOMswFB1Kv+8QO+AHI6mtkenoGLAAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27399a0d444b8ccf14a24aec74d\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Espresso Macchiato</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Tommy Cash</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Espresso Macchiato (single, 1 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2024-12-07 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 2.9 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 82/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 14 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DGA0S2441622</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:4zpNfuWJA3K4d9TS4qnOIB</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:6i83szVwI1FZFeMQHobNsj</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/4zpNfuWJA3K4d9TS4qnOIB\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/4zpNfuWJA3K4d9TS4qnOIB\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABQ0lEQVR4nJWTsWrDMBCGf1uGUlBQXqHgtSDQ0MVBhqyFvkTXQl6hjxToWlBQRhUbMhUCWfoAZ2ToIqMupfhcOvQm8XH67/47qcj4jkOJn/jjOBSbcb3qi4pRkUXrYmuJX6sgn456aOe0Aqbe3/wuIer64pY0DfJ6HJWb04LWBgDexOuMIudkk445uzmNQQefXMdpCkFRapRnlBpjc0feMJpdyNaBOq6bTUdByjin5TQFnB5f6h5MwasuRmkUr6YDkvSW6VbqvDOgOz4HxJR9TC4svDkTrLZWcG8xQsJzx9Xnyjih38E6KyWChKynke9YVdgdtqNmPSQkraSg5XwFQZNgtMgY2u6I29PE99YI7LfTZc/fzojnM/wHdyyamInAdEtg3Bzkg2mXuZQiEd8FkuixWd9L5m0qht1ViCObQ/GPH/AF9lmo9EZG6McAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273beeef739e5c1c30b9539bdea\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Bara Bada Bastu</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> KAJ</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Bara Bada Bastu (single, 1 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2025-02-21 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 2.78 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 81/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: SEPQA2500011</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:2gThkoApt6B7ajBWZRLAVv</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:2zjk45mVWiAZILHTUmR0ON</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/2gThkoApt6B7ajBWZRLAVv\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/2gThkoApt6B7ajBWZRLAVv\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABSklEQVR4nIWTMWoDMRBFR9Y2CzIS5ApuAzKqAmt2wW2OEcglcggfIMdwG5DZKrCLBWkNJpA2MIsEbiSUIibsKIRMJT7Smz/DF8twrcMCfuqP48Q2QSnHKqLyfEn7BC3SZ1V9bvpu6goYT+PD6leL8GiG51KNdepckHauMlQGAGDkLzMVco4DNjJnO1Or0NU7hTycKOEE24+6e9unOSFqaLBFyecEQOhlHLzp5+pCxid7CctaA7mLvT4Cj54QsjZe+yYWXIyAjZdHwhVOIexGTbm+9V4jSsqN1sioY0u4LE+OJ+24mEi3vs1Hj4JMUcnbPfPfjWcErwSsXsFd6HY8ahStoR78YFBryzP1ACHxdPPJR5qd+7MQsFVFdkAzh7bMTljnsFme6B54M/Qo0dgiO+FOvoMtsiO3bu06QlgkNqWV5TwA9Xut/3/AF8Cgo4LHEu7kAAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273d17ecf4a99433a0a2d5e81dc\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Baller</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Abor & Tynna</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Bittersüß (album, 16 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2025-02-14 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 2.66 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 12 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 79/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEE862401926</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:4kbkYbhWNiSJraySknB4hD</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:0PrVmVD88Xk509v7BOT6a2</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/4kbkYbhWNiSJraySknB4hD\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/4kbkYbhWNiSJraySknB4hD\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABPUlEQVR4nJVTvUoEMRD+9rKNMJIFWxvhwGohkgMRAtn2Hss3EGzvPawOImu5R64VLH2AHAnY5BgbkZ0FC6cKH8P3x6Rh/MzrCr/zx/PUDJvSdE0rUMXn3cGvfZqjyMpoFbSxYYa2AD7fy4K3BXAc+nS3EK4YHlTRYY42qbMAcFD7uRpz4lwtcxAe4F2NCj4I3rgvZQCVhYer/voW+BApmFLiOskUYOc0jQhSjVWME6JXEq2wU0qkpYf7Sl90NEao1WpB2YxZMFQXJqMiLXi9o1B5FLxIOfkRXiZGVS75alKUuzZzUFqLbCtF26Jrf7OT7Tyimw4FG9F6Ns5UDyX9MueYYbPwuzo12/OlfRpIXglbKKeS3EV7dhdvfReWhziuQ8hY3JklqoZYMlQqL8fn20HsJthEEVr00PzjB3wDobSUgfRICDEAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2730c79c6cfc5b627fcb3491e20\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Recognizer</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Daft Punk</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> TRON: Legacy (album, 22 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2010-12-03 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 2.63 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 4 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 0/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 0 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USWD11054879</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:5d5AjRMgz2TO50BCoXRu7Z</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:40EZGFRJY2R43IPiOnFelG</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/5d5AjRMgz2TO50BCoXRu7Z\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/5d5AjRMgz2TO50BCoXRu7Z\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABUUlEQVR4nIWTsWrDMBCGf+e8BBTktVOXrAEFeVSxIWseo2/QqVOXQqdCoVPfI2tAwRkVXOhUKPQJCjIyZJFRl1J8htKbxM+v779Dpyzhpw4z/NYfxy5bl31WZDlTKRFqj8rza/n8UWx2XT1Wc6C/eaFyhYkq75dSDZPgiFVxgrRjNfOFBoAT7UcqUgoJRCnZMaFfXBzt3F0dxwSEJiovSeixF96QTcahYQTC/u74VjrWGZI0JNvGsrTM00BbHBx1jOt19LIC8yI1TqdoTcXSOlG/v9bbnqcFEUgEqMAIQRtHVWwk58rYqNZq7o1aaEnB8bTzU/PRuS31fLaoW2VEQ5zgkm+pFYETrhfFYNZn1m+W0KFoy6/Pju9OXZjebtR0d+zDLfY5n5iMCBLEZpsB591JVW458WoBrwR/ecQ51OVzz2abDVmvsRJhO+n3p/7/Ad8EmJUdB3WgyQAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273f5e5babccf665ef8c912b190\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">U Can't Touch This</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> MC Hammer</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Please Hammer Don't Hurt 'Em (album, 13 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1990-02-20 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.29 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 2 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 77/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USCA29000294</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:1B75hgRqe7A4fwee3g3Wmu</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:4r1WecJyt5FOhglysp9zhN</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/1B75hgRqe7A4fwee3g3Wmu\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/1B75hgRqe7A4fwee3g3Wmu\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABTklEQVR4nIVTsWrDMBQ8x4YSkJGhU6GjP8BBWQI2NmT1P3XpWuivBLIGFJzRxl4LgVDIWlCQoBQUXpdQ/FxK3ySO0717T6eAcKv9DD/1x/ESLJYuSIKIoSGFulC6NPxaNO8k3KWaiLmnl2P9q4XcpjhPUY9rsqmlHqOBSRQAdOFuhEaS3FCUID6Fix+gO10cxgqghjIrQqH0GPUKIJJoNFOYazokG8Gcwed5L/q+pTE3+nwWlcKiHRjXGGV8qMC4INuGjW5FyRQup2qVF0PKu1lhIS0yyxRMnvegvJEMtZJgJCzjzkQW0+PWv9X8NffN4Yxh7fh2WtlkmWhCvh1BhhQJyydOY+dFEDK/AcEh7pcfpwvPThV7h3U2yc61uVthF02yI+uvaHcvptl5H1TZpmM0ApDAL46W59fPgfWrY7PNroGTWSdtPfF7q/9/wDcC2JJTTj1DSAAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2733408a925e0bcb7940f864a0e\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Relax, Take It Easy</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> MIKA</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Life In Cartoon Motion (album, 10 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2006-01-01 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.5 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 5 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 71/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 182 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USC7R0600114</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:0KM2y796j63t5RHhvRUxld</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:6oIaXBTIZ2Q9cJKBgrZ2Ox</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/0KM2y796j63t5RHhvRUxld\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/0KM2y796j63t5RHhvRUxld\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABSklEQVR4nJVTwUrDQBB9cQJSWNm9Cl4KuQqRFERYScBTwZ/wS/yFfkDBn/AqpOQghcIWehIKXgo9CRsmUIQN60WkE/HgnJbH8N68N7NJxHctTvBTfzzbpJq0iUlSgVLst5syK/0xCqZcE1xe1AOybOmq3xLr6/Z5iAaom0era4H2CWWHbrIwQi1G33AoYqzFDChVcITyGE3h8qtDBdUdM6Sj3nyYPaqt9FbtOp6+9ZlUs9Zpt1pJtVAwrzxFEo5peWugPs+UUMPpy91hDeSCN9gCivOGJa9tXAGnSHrLrUJpScte5tgg1MIxIixHjt5Jhtppz9CDDemH3TvseC530c5M13eYYDADQgmS88boHaNgmUOb3PeGZ5WSDDFHE8jLXqRkp6+Xph5cSb/ZjcCQSYLGFx7nLO83KDTd074Sah5FbSNpkUPyjx/wBU0clZPZnMG1AAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273c6710b4a52539506c30e5354\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Pump It</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Black Eyed Peas</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Monkey Business (album, 16 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2005-01-01 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.55 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ✅ | <strong>Beliebtheit:</strong> 84/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USIR10500407</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:2ygMBIctKIAfbEBcT9065L</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:6VsJamdhvYKcnpwHAKULI0</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/2ygMBIctKIAfbEBcT9065L\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/2ygMBIctKIAfbEBcT9065L\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABTklEQVR4nIWTsWrDMBCGz5YXg4sMfYU8gECFLAo2ZA3kJboWCn2RQp+kkDWg4KGLjAxZDX6CwgkZukioSyg+l9KbxM/pu/9OpyzBLS45/MQfR5e1c10PWUFUlubd6dw2SK8V1aQYuHYNc/3T5leJuZFv41oNZWzhxPVSzbCWAAA9Oy/Ugqc4bA4skS6KuS1fa2TzuCRAMIZjUrzTSzUJFnyQli3VPI76Wg6wIR7Am6ZDpiu/zC3iNvRTFIJ0AQm4FUkFwgXUQWmw3JJqVVufIDghKKHxXnrknhKssEmqhnAzX35AfL6CcdSvCiCxWndsRce06ShhOMzqHcavSGbmg9KqkdSDryQKgSwRQgLHItx/sp7uznE8HmFf00kmlcBITycJhXgIBd7Z1ZaUcS8mfKQEJgx6RELIIfAX2E0tefk8Zu4C2rEZqN9b/P8DvgHN5qT5lNHqFQAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2736e88eb6508fd94cd1b745ce2\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Hey Ya!</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Outkast</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Speakerboxxx/The Love Below (album, 40 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2003 (year)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.92 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 9 | <strong>Disc #:</strong> 2</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ✅ | <strong>Beliebtheit:</strong> 86/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USAR10300924</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:2PpruBYCo4H7WOBJ7Q2EwM</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:1UsmQ3bpJTyK6ygoOOjG1r</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/2PpruBYCo4H7WOBJ7Q2EwM\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/2PpruBYCo4H7WOBJ7Q2EwM\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABT0lEQVR4nIVTwUoDMRCdNQEpTMmCJ0Hw0qsQieBlSwo9CX6GP+HJH/En/IBCSgoipKzgSSj4BUKWBPaSZbwU2VkQ5xQeLzNvXl4qgmNtT+C3/jh21fVNV9WVZKgg4dbR2civydkcRe5WY1QCZNpf5KvpCCUX2vFpkMgWCMYmN0KrWBsAgL3YjLlEiUAoojH3JM/Pd27mljvWl1rSSQk0Yy5ELRw1CrzjytzT7uMlcGURjFJtKMSVrd9OG9gG0TGuM7EI2zAukC/KO4d2jMoOa8AlLCY+YASVQDMfIFmLvrFe8S0Uuai84dyIWFxLwfIOiRKkorgPhKbVDXjB0FIotCYh6yv7JeZnXPZMb0WQhzrcfn91PDuruvSw1pPsgH99dBvJUyKbu8VhOMNpduJ734QH7o4wGqJG/vJQZgd96XNm04YqCxg+zf1E77H+/wE/D6Sc+zUqiAsAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2738399047ff71200928f5b6508\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Thunderstruck</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> AC/DC</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> The Razors Edge (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1990-09-24 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.88 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 89/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: AUAP09000014</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:57bgtoPSgt236HzfBOd8kj</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:4vu7F6h90Br1ZtYYaqfITy</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/57bgtoPSgt236HzfBOd8kj\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/57bgtoPSgt236HzfBOd8kj\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABSUlEQVR4nJVTsWrDMBQ85xlKQMGGroUuWQsOyhKQsX6lkM/o3g/oB/QnsgYUNBUSZOga6JK1ICNBKdioSyl+Lh36JnFI9+6OU5bwPYcZfuaPY5fVh7pGljOUUix2JjaeP8uhr/ObTk/I6FIZw3lzYK5bnaaLe8JcxcKM0cyXEgBOtB8zFCmeo9gm7iJC1xsMdTlmQJLBF2R9Y8ZocKIXsgrFGJ0N95e1FefFkjH0x6IyKTWWMfTkXU9NQ2M0p01JL5/QgmtIyVEQRvJtw3q1aSMZvk0YB3KK80afJ9cNbcUyE68eW5JLwTO7vbMDdXjrmONkwlG5wHLIoYdH2BWe+V0TGmcVmAb4prKSDJzh3ryzJAPX25Wq/fAtz2FGCbte6z2m3VGn9r3cTbtzFY/a/qqnp+EJ0+4MC0VzPLAkPaRRCQXTm/3jB3wBqgiTFX+eBFQAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27321ebf49b3292c3f0f575f0f5\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Sweet Child O' Mine</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Guns N' Roses</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Appetite For Destruction (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1987-07-21 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 5.93 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 9 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 90/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 183 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USGF18714809</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:7snQQk1zcKl8gZ92AnueZW</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:28yHV3Gdg30AiB8h8em1eW</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/7snQQk1zcKl8gZ92AnueZW\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/7snQQk1zcKl8gZ92AnueZW\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABTUlEQVR4nIWTv2rDMBDGz5WXgoICmboXOhUEyugir4VCHqNTHyXQBwj0GQpZCyoqZFGwIVOnEsgaOGFDFpnrEopPpfQm8ePuuz98KgjO8X4BP/HHMxZ1P520RcmooAFcV1vkZSU8PJU61mNaAoglPPa/W+gbWOU0xfnl6lq5MS1wagAAtuJtRIEoqVQ1RG6s0G/nx81zbJluOfQvs72sd+sxhc4aIonCjBVKuQSo+9nxK7LcYBpsguwco8lbH6z2jJKxnkgqxSg6p7Ei2/BcKU1KwmQUySO5QLxbo1WFFQmui52XziuWW9BEt2LfKojsDms1nGb4eWJ3QGWCDdbx3ZJGsJXFbAZpEDSKrBv0d2EDt7uB6YKtUtdpdocLQVF8XIE/ZN5RUR+GicxcEldTuTC5oySk0yuILfeO6Nv7hZR8N9BgAmKTzXuO/3/AN2DhpSzfnAp8AAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273f1d892ee1063e3b39fa77f2c\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Fuck It</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Myle</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Fuck It (single, 1 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2024-02-23 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 2.35 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ✅ | <strong>Beliebtheit:</strong> 34/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEZC62400003</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:4LyjgYMLOm3ZHEmO5cYRar</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:5d5pTxLQL12Vcf3ENE3Bl1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/4LyjgYMLOm3ZHEmO5cYRar\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/4LyjgYMLOm3ZHEmO5cYRar\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABSUlEQVR4nIWTsWrDMBCGf0daDAo2dCoUunQNCLQq2NCpEOhLZe3zdCqoKKOD/QCBEOgaOCGDFxt1CcXnUnqT+Dl9d//plCXc4nOFn/jjGLK6X6+7TDJVpLB9R10RvybV2XqEegkL3UZzrgSGqH4XHvNtfdgXbq5mVBoAOIqPmYqUxpEgUnJzbl/nrnSiP80JINcWlGzhHVMNbBypFYwgTl7l5ZN30zw3ttaTczrOc1fTk9+ctVDMBRIVUSdLnBu6yz1l7WsT5gSFh69+DNCMEKsYdaSCVUN0phlNSoy7QvU2yEkeGu6YKt2SVcyxVDLmQznxfuXga4Wr6gZGGP1oG2XMogdlnAYJNvUsIUBMd1dx5LuzO6kdnkvuLdnKKRMXXKHJeEK7UC1FFGS4Y/SY4gVusTvFo3rpavbyqykLod8L34P3e4v/f8A3wpqhRn7pKaYAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273f5e30500f0eec7d92b159eae\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">The Final Countdown</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Europe</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> The Final Countdown (Expanded Edition) (album, 13 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1986 (year)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 5.17 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 80/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USSM18600196</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:3MrRksHupTVEQ7YbA0FsZK</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:5Jkd47JEaCU1g4DcGBnHm3</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/3MrRksHupTVEQ7YbA0FsZK\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/3MrRksHupTVEQ7YbA0FsZK\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABSElEQVR4nJVTsWrDMBA99bwEBA5kzRjoKlDGM/YaCPRX+gGFLv2MQn8i0CmgoNVFhk6FQJd8gMwZslioSyk+lw69STye3t17OqkM33W6gZ/649ir6lRVoAqBYh7uDrito7xWgFudzn0zE8N749yvFounrmnm6IjNwlxKN0VVXFoAgDc8TtCizEMHtM3CBXC2NAag0k3RXHMs0cdaoNFpKk20ksuWTcits5I7ltETo5e6sQ0jU4kSJUIXRzObIfiMAaLUHQmB2HiW3bRvEQMJ3UJfVrQYUmem6RRwjovr0m60yIx3V+36/eGzF7phzAStFTkoXqdXvdkNL4LL0duQAaS3WANbjBCkt8zBo2XBvenVHlLsGj3bHegfGziKlwdGMs4Z8HKyJQ3Jp3dIwjHAM3xcYb47qYJbggeRTlL2suZCu6k39Y8f8AWUgJ0GfAQpmgAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27315ebbedaacef61af244262a8\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Never Gonna Give You Up</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Rick Astley</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Whenever You Need Somebody (album, 10 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1987-11-12 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.56 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 82/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: GBARL9300135</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:4PTG3Z6ehGkBFwjybzWkR8</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:6eUW0wxWtzkFdaEFsTJto6</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/4PTG3Z6ehGkBFwjybzWkR8\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/4PTG3Z6ehGkBFwjybzWkR8\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABQ0lEQVR4nJWTsWrDMBCGf+W8GBTsB+jotaBiQwgoyG/Ql+pj5DECnQIKGkrAwYau3rMqyJBFRl1K8aV06E3i4/Tf/+uQSPiu0wo/9cfxJnbNTZQiY5QS9p+6Mp5fyya0b+OtfRCj6kzTrxHzuNl1jzSi2ZqqsEsqfFkDwIWOC4qUfApdkZJdKkzidZdTJZiHDG7b3NtJTozmeenLyuGJebhvrk2Q41wtKaLRhexk5NNoct5OB+Kvg/NLA6XWktOPPWgYlGLZYnuf5fvaqctymleuV+glWZZY6x5Gu8KybAfK6WRmposAk+qgfW+5bk/Rpb5mNBiEPmnFewOsSRaKewheozOKAneWQheoDrzXw0gbXF1whaRAkTzrXSFDOA7PpeV7A2SrLA08G9UKUUm+C0Q5pGF/ZZuHR+11UgXLJv7xA74AlF2QOyHcNE4AAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2734a052b99c042dc15f933145b\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Africa</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> TOTO</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Toto IV (album, 10 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1982-04-08 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.93 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 10 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 90/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USSM19801941</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:2374M0fQpWi3dLnB54qaLX</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:62U7xIHcID94o20Of5ea4D</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/2374M0fQpWi3dLnB54qaLX\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/2374M0fQpWi3dLnB54qaLX\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABRElEQVR4nJVTsUoDQRSc9V0T2HAHqYSUtsLKBdKsXMBWyJf4B5aCbf7GSlg5G+HCBWwDIhxYBXbZA5sNz0bk3qGFr1qG2TczzK5ifM/TCX7mj2NQl4teFSoTKDHtt7arvLyWBVw9z8NqvMy85L9I3C3fjUQR2eS2ilV0A1T5ogSALT0Oucyeo8uZh9yTXq2nk/xMCQ/gOpmoSZdDbgbMDrOOMBdcr6Ph1BjBRSxtrTV5oYbkuWqczkl4oOspYLugZeL7bkc9tBFqyZKxtamj3GtdU6LVcu8n3dKGbx609Muea1hUIhtltj/yyr8FkQI1I7p8lK3V3LI1rVDDhcv6ACxkQ16bVIGkX2bfRCqj9BvUGsX5ZqXHHaNO5CUXGdLk9VA4yIaw3MLE3ejt0BEep1aiSe/bvfuQzXuUXjO1Ipv6xw/4AncDkeN1hYcEAAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2739061a4e47413aff8f58a3c9c\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Alles neu</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Peter Fox</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Stadtaffe (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2008-09-26 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.33 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 70/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEA620800706</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:5hqxBvQJ3XJDSbxT9vyyqA</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:6cEVfMd0XVocPbRrYkVY5H</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/5hqxBvQJ3XJDSbxT9vyyqA\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/5hqxBvQJ3XJDSbxT9vyyqA\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABSUlEQVR4nJWTsWrDMBCGTz0vAQX7AQolEMgUUFGWgoP9BnmJQl+nb9CXMHQKqKhLwEWGTgVDlq6FM9IooS6l+AIdepP4+fXr/zgkMvzMyxX8zh/HSex3oahEwVTMOA7xsyF+rQimFePUXoSl+xMGnlsAgKm+DpcPR6juDqY0c1VQpQEA3vA4UyFncj7qnM08IYjDfvEOgnWA7LIiiVIz75SW/c2GNiPzUkmUY0ncK7ftefmahp7nWoe9qRtkXljcylB3SXK2B7MuhxEUS4i1VtIr6w1TlXEanUSu1rWEmG3JiZ87hUVKLFf4NoE0bXeeGBv5DLYvGRv4svbWK+U4xerxWn4MsGN9PUnoG4W8b87kCLXnfQkaidpq3hdz6OAEx8BzUTfGKLCGUVTbpxUADunCKyEqyTcPUa5dsBu+eQJNdUbH2MQ/fsA3NZuaMt0/HQ8AAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2739061a4e47413aff8f58a3c9c\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Haus am See</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Peter Fox</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Stadtaffe (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2008-09-26 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.6 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 3 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 68/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEA620800624</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:7A4KdLy1DXOOC5fhIdDuHz</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:6cEVfMd0XVocPbRrYkVY5H</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/7A4KdLy1DXOOC5fhIdDuHz\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/7A4KdLy1DXOOC5fhIdDuHz\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABQUlEQVR4nJWTMWrEMBBFv3bcLCjIbSBlDiBQkUaLdYCFXCWHyAFymG0XtKgKONiQKrDgJpAqICPDNjJKE4LHIUWmEo/Rn/kfSRR812mDn/rjOAp3cjuIilEqozrQ1ER+rYKrTzejW4nRuw7+14it63fTmmY6b61VfklFrA0AvNBxQStVpvOEh8JcIBUjc4FVfklLk6KkEBtGU1BZaZN4bzIxdqX1htEYSIeYKTCadW4ySUVLWlFbU/8JN4DvEDoqdqWbs4FNCIlPk6EjdJbryo+r5nlys17qVnhL27s+j/c8s/0EOjo/jMybzapFY1gOG1B9oDTOT2zfhKJKZ0F8s6KTIY+O51tiG2AS692MYu+QeidXbweTdf4IPo2sblsNlm8FkLol/wruGHgc5gtWCsUihULc2ywu/loKybyJf/yAL/sYl1fr/ZZkAAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27369199ebb6dec831abd4e437f\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">RÓA</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> VÆB</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> RÓA (single, 1 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2025-01-17 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 2.71 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 75/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: ISB112500109</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:1YnOwWvV1bQevRqJMCbYJz</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:6CukWYQblekfCN4j1SVYp2</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/1YnOwWvV1bQevRqJMCbYJz\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/1YnOwWvV1bQevRqJMCbYJz\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABKUlEQVR4nJWTMWpDMRBE52fdGATKIQJpFeRSRv8quYGvkJP4DIG0AZltFRRIm0PI6EMafTZNCF6ZFNlKPIbRaFhNgp853eB3/jiep/k07zFtFCU522fsYr2kaOQtoTiftNl659J8dYUx7wc30k7LFi82KbpOC+5pPt2q20RaYbEiSWUQb7q4YDX1rRriGhXtyXRbm7/SuiImea3tFJKIZ0WFs+9ULGkaYHPvQwYp3IhNHXwDudAcN0UrOBOVoH27IBayWTls6K2ZJYUHq9qpzjdXQy2X2ql9rl/bA+/Mk6JmYuP2y/GseoBQYQOdoYpjTwlFv01qZvJt0CJmONb93pBgFwmvGHYnxsIOPOwO0iMSK+0GwHJcPzA4SHDSMsUhg09BYHUP//gB38t2nYaS9EULAAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2739061a4e47413aff8f58a3c9c\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Schwarz zu blau</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Peter Fox</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Stadtaffe (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2008-09-26 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.6 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 2 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 63/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEA620800623</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:1Fjz0ME9pzk553wH86m3ZZ</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:6cEVfMd0XVocPbRrYkVY5H</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/1Fjz0ME9pzk553wH86m3ZZ\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/1Fjz0ME9pzk553wH86m3ZZ\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABU0lEQVR4nIWTQWrDMBBFvzuGEJjgQFaFbgo5gIoC3SQo0G2gVynkBD1AoYfJNuDiQCk4xDfIptBVQMaCUJCZbkLxGEpnJR6j/780UiK41NsVfuuPZZ3czep0nKSKkiBf+tx5vS3NRhlCvezSFAju5Qa36FHeTQ3qnnHEafwcsrxLEz+2ALCnbYdCpGmQkUjeVQij6ypv42LXVUBTiPFMbLu98HMgSolCKXAo3Hs1Y2gFOz8wodRuaF+DZUKlen1uoycL1Qsh76SM7Lo0rXmF6glT7SbwlHmYRilE4w65CGVdmsTB9+B0DAZ7lYERGVI6nfdTJpusfQjarXTFfM4Fad3q3NIyjr6UbmPYRGdIJUsEoZ183J+OtcoAWwjI6jsjaRe7iG3aezvMptpOuPcQz5vh2pVTPQuyDG+4N4s4BD8WG3W2qzYJNN0P1yvovJf6/wf8AOpclWpXWqfjAAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273fe7580700cff44fdab553c4d\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Zukunft Pink (feat. Inéz)</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Peter Fox, Inéz</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Love Songs (deluxe) (album, 14 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2023-05-26 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.86 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 11 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ✅ | <strong>Beliebtheit:</strong> 60/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEA622201528</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:0XRJfwNFKpKn6yN1JYktSK</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:5wHeVZ2szvl9VF1AVuBN3Y</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/0XRJfwNFKpKn6yN1JYktSK\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/0XRJfwNFKpKn6yN1JYktSK\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABP0lEQVR4nIWTsWrDMBCGf+e8BA6cNZAx0FVFWQoyDnQt9JkKfYA+QKEvUegUUFCXgosNeRGZM2RRUJdQfIbSm8TH6ZPudCoyrnFc4Df+WA7F/ljXKEpFKY+PH9g1UW8rgdXz67Cfy6KpRu0tgeWur2V+cKJ+acbKT2kRVxYAvukwpRkjejxEXcWI/fqOh3o1NUCsREaIjZ/S1HFiK7bStBHTNZW3ioqn5EVs0Lkm2SSuI0Vzy+RjYu3NuQskHLU3OYILJoiiEaEFdU57JcG1YFaGxeVT6CbIllXFmZrkoovdNLccvrZnbOien6adlM0Q4G7xNqjTTK66wNB3iNkEIo9uVpu0HlZmuWgYNuj+LihfxsbjAP1C5AyCgepvCVBl2J/ms4P3fjhhZsiOJWRqdHeK8/uaS36Bnp1r/P8DfgD+q5OuFDeRZQAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2734ee35a7450f3c8476654a256\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Augenbling</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Seeed</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> SEEED (album, 13 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2012-09-21 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.61 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 4 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 62/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 0 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEA611200344</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:4eT8TcG3KKlprFcYePA9gw</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:2dSLWOAettty18g9KTmi6E</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/4eT8TcG3KKlprFcYePA9gw\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/4eT8TcG3KKlprFcYePA9gw\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABT0lEQVR4nJWTsUoDQRCG/8schMDKBmzTCIJV4MLaCCd3YCUIPoyvkDbgq/gAwoathJNbSCUINoFUgTt2Ic0tYyOSCVg41TLMfvz7z78Z46fWI/zWH8c+W6zrW2T5cReBKwoDV8GKa3m8+QD6+gSmqBjnkpsDCX5ylXDCNVp1QXKzbmoA4J1ej2eZOThNzFYQKt0a51ojuhy4dI0upd40W2wSRQi9GEwo2wpWzGIY9GC7oJ1QFuo3SuP9V0xiNhSNttpJDcEE46hRQu9I2ZlFc4AXnqWzF1/3KKJUxjQo0kpwR4f1Pu7s5bYRhImZbe6xeozSdd/dLececsdxft0/bMjKXTACOV1AvBgdF4HIohU+MKJHerJe+NDBVEqFQuolnvid8fZZpiSHnSKdlzIPVGlQ6cjK7MTtZ0+wSWanBFctSX9TdjBxeZGED9k/fsA3XUOilwcpxRsAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273436e38032cf3389d01426eca\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Two Princes</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Spin Doctors</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Pocket Full Of Kryptonite (album, 10 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1991-08-27 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.28 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 7 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 75/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USSM19000350</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:4ePP9So5xRzspjLFVVbj90</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:2TWdmpnFNCMlZDQROleupK</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/4ePP9So5xRzspjLFVVbj90\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/4ePP9So5xRzspjLFVVbj90\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABR0lEQVR4nJVTMWrEMBBc37o5EMhwVeDKtAcCpQnY2A84uJfkBwf5Qh5zkOpgD7Vn5AcY0gTSrpHBjYzShOA1pMhWYhiNZodRluBnbhv4nT+OQ1bdqgqyXKCYJn1xTzXLazk0u6wfmpXYbAyR1M0B1KUwu8Pq4Yj77TFqWqIZFxYAoMXrEk0w9qPZs9gCQrJl9FBqWqKpZtbguBYok4qKOQjuBs5fozv17ePSA0TCkjhoJxQiE8agPC7RHI+j6gwXSiik5L11QFZw52aaezBIrXCmnEf0pdTVn7t4HyswIsmh52bs4nCSmTUaBl9dPgahqwlJRSty2CCdGUMzvwm/gTymZABlZrUJFhm8zDeFuwMbVlyoNVlnZb6YYHiF5rrqQ/4cWnwp3Cxbgt1xOrh1d8C8bydYd2d+UKjgDNKD5TJZL/xm//gB3xpamRil8+YPAAAAAElFTkSuQmCC\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2736fd4e80ba6b94862a0c183ab\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Alles nur geklaut</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Die Prinzen</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Alles nur geklaut (album, 12 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1993-11-12 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.2 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 2 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 70/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 185 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEC739300092</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:6X1mehC9bJ1ExEip4HB79W</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:3Vew6UPhQVQ1vRCLKbLcEj</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/6X1mehC9bJ1ExEip4HB79W\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/6X1mehC9bJ1ExEip4HB79W\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABRklEQVR4nH2SwUrEMBCGp5tchEj6BrLgVQikF6ElBa++jVfBV/BVfICFlPQidIngtbBPsJCSwF4Sxotop6BzGj4yP39m/grhu4Yd/NQf7VI1Q9dDxQllWB4vYzKBjnGw89289Bsx8bSfN7ocIMlXcUspRDSeKWmiXdEq1BoA4MgO67eIaJljiOu3uzRweW7PifqFl/P+hn+WltAy1vMhA4z0b/cxpf75pKgzJ7INQTtLPLiQW4PeEJpB5clqQSlKRInK6jXlRdV7C9AjvcX4JvpKak53Fq7bwo5AnQUx5WhQMepBQTZeZ7IdiNPk2tZHs6HCQxSR/i1idAEnSXR3pe/UQ5OWCegtgmdGU12+1Op0NbBebLLDktb28EH3y5R3Api3NCWsAdu9p012xATFXTahzaVpWAs0faW6QIERMlGQ+DsG/7dfR32cNQ+gHPgAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b273b75dd1b7de969ef4e3a497c2\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Who the Hell Is Edgar?</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> TEYA, SALENA</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Who the Hell Is Edgar? (single, 1 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 2023-03-08 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 2.66 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 55/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: DEA622300267</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:3gUC7tGDPVLOq42vvTUVdI</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:0Pc0YjphyuqsZbeHJq7AJ0</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/3gUC7tGDPVLOq42vvTUVdI\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/3gUC7tGDPVLOq42vvTUVdI\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABS0lEQVR4nJVTMWoDMRBcRQfhQKBrDW4Cbg0KOjABBRv8gLwhkDZ/CbgN5BNuAzLnJiAjQ1qXAbcyElyjY9OEcCtIka3EsJqZ1awYwk/truC3/jhe2KpNrGEVQTkOp0OeLQO9VvV2Xb1eVmO0AoCnj9TOS4nhZQGGqrEobnnN7Wp7GPcOjEOf2l0z7gXEgNFJRDvuTezhvtYzVnjw87af9CIRdBgaNfkCPqW8MgY0TukxL0StvbRgiRpkiN45g5yg6IS0OShJnMFiCzKJkyJqOWtlouoiYQjGOg1eFLzGuA5NR3gr6FJ9PeQ95UVt8jKY4IspkIP3vphNGvTRKE/93mybVB+hLXKbXur17DOUWbjIdaR+AxjBA9f0HTj2PQj7nordgTu3f25suSWbR7CRbAlEro0IStDkIYt0Pr6dSfIQQAfhlSSzsX/8gG+HU5q6WtS4lQAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b27312420fd11177dce2d1ce356b\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">The Look</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Roxette</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> Don't Bore Us - Get to the Chorus! Roxette's Greatest Hits (compilation, 18 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1995-10-23 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 3.96 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 3 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 55/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: SEAME8878010</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:7akWKDSf4k0Q0AHGoG91hu</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:6Zd1OLqFX5geleqvJ9xtAL</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/7akWKDSf4k0Q0AHGoG91hu\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/7akWKDSf4k0Q0AHGoG91hu\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABQ0lEQVR4nJWTsWrDMBRFryIvAYEDWQulkNUgUCAUHGzIB/RL+kf9iX5AQcFZAg4asgayFLK+IEEXmdelFD9Dh2oSB3TvfbqSYvys/Qy/64/tXbXrpBaqEFQzLideNSSPFcnv9m/3dkwLAPaok9QtgKE9VNeniXHG4bmk0o+pooUDgJP+GFEwE8esmf1YIamX7fxs1SRDqNZp+2WScBuGZf/waW+XMUU0ZDn35Ma6INd0ZTBeuIFj53rLjZY019oT2dKLDJvjUhsYK9xydjDRdlG61V1wOpiJrq1LMGuhi5gpa1+j8eLOHiuk8h3Xu9ClyDbWQc4WgwmBaxskRXYhw4oMM9h2qHY4i+bBTD3BRZmX0JjOdm6Slx107miiWww0L14XfvoQz6seEbIh7WqQNbJ5ZJOC8TfRPAjOG0YpZlP/+AHfmUOdXX6brWIAAAAASUVORK5CYII=\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" <img src=\"https://i.scdn.co/image/ab67616d0000b2734bb0c02f38a183d19b410662\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">\n",
" <h3 style=\"margin:0 0 8px 0;\">Ice Ice Baby</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> Vanilla Ice</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> To The Extreme (album, 15 Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> 1990-01-01 (day)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> 4.52 min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> 1 | <strong>Disc #:</strong> 1</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> ❌ | <strong>Beliebtheit:</strong> 67/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> 184 Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> isrc: USSB29000129</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> spotify:track:11d9oUiwHuYt216EFA2tiz</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> spotify:album:1LHacvoBTd7o2d7wwQ9EZD</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> ❌</p>\n",
" <a href=\"https://open.spotify.com/track/11d9oUiwHuYt216EFA2tiz\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">\n",
" <iframe src=\"https://open.spotify.com/embed/track/11d9oUiwHuYt216EFA2tiz\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" </div>\n",
" <div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABRUlEQVR4nJWTsUvEMBjFX02XQiAFJ8Gx4CRE0kUItKvgn+GfIrj6rxwINx3kyOBSiatw4HLrQY4Ubkn5XET6FR3MFH4k7718vBSE77U9w8/6Y3ss+nYs6qJkVNC0e6emi/xaeUK/3R37hdjUDPIXi+f2wS1pRn+rtHJzWsTaAMCb2MwoiGJIzhC5OU3obCaBzjFdvxlPNeQ41y2r6vxQ7wUueYZ236b7j6mZU2Rhg/KI3I1coEEqJbibvKmxP1xLpkAmGspZsmTIWWibtE+cWhcMghTcrbPSW+sVc5te1gaPYtJsZtRPI6BWn0c+ndDpYJXhMwvWe7I6cKqzCoPUPEOKVucOguclikMSJvGzEVZBe8PzCjqtvOw346I7k62ermu3bMlrUyGxlpSAuEPEReL9zbJZj+GKtQ8RxklCYG8r/vEDvgCSxZMFnkGrrgAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" "
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"from IPython.display import display, HTML\n",
"import re\n",
"import qrcode\n",
"import base64\n",
"from io import BytesIO\n",
"\n",
"def extract_track_id(spotify_link):\n",
" match = re.search(r\"track/([a-zA-Z0-9]+)\", spotify_link)\n",
" if match:\n",
" return match.group(1)\n",
" return None\n",
"\n",
"def bool_icon(val):\n",
" return \"✅\" if val else \"❌\"\n",
"\n",
"def generate_qr_code_base64(url):\n",
" qr = qrcode.QRCode(box_size=2, border=2)\n",
" qr.add_data(url)\n",
" qr.make(fit=True)\n",
" img = qr.make_image(fill_color=\"black\", back_color=\"white\")\n",
" buffered = BytesIO()\n",
" img.save(buffered, format=\"PNG\")\n",
" img_str = base64.b64encode(buffered.getvalue()).decode()\n",
" return f'<div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,{img_str}\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>'\n",
"\n",
"html_cards = \"\"\n",
"for track in tracks_data:\n",
" track_id = extract_track_id(track['spotify_link'])\n",
" embed_html = \"\"\n",
" qr_html = \"\"\n",
" if track_id:\n",
" embed_html = f\"\"\"\n",
" <iframe src=\"https://open.spotify.com/embed/track/{track_id}\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\n",
" \"\"\"\n",
" qr_html = generate_qr_code_base64(f\"https://open.spotify.com/embed/track/{track_id}\")\n",
" # Albumcover, falls vorhanden\n",
" album_img_html = \"\"\n",
" if track.get('album_images') and len(track['album_images']) > 0:\n",
" album_img_html = f'<img src=\"{track[\"album_images\"][0][\"url\"]}\" width=\"80\" style=\"float:right; margin-left:10px; border-radius:6px;\">'\n",
" \n",
" # Künstler-Details\n",
" artists_full = \", \".join([a[\"name\"] for a in track.get(\"artists_full\", [])]) if track.get(\"artists_full\") else track.get(\"artist\")\n",
" # Märkte\n",
" markets_count = len(track.get(\"available_markets\", [])) if track.get(\"available_markets\") else 0\n",
" # Externe IDs\n",
" external_ids = track.get(\"external_ids\", {})\n",
" external_ids_str = \", \".join([f\"{k}: {v}\" for k, v in external_ids.items()]) if external_ids else \"\"\n",
" # Weitere Albumdaten\n",
" album_type = track.get(\"album_type\", \"\")\n",
" album_release_date_precision = track.get(\"album_release_date_precision\", \"\")\n",
" album_total_tracks = track.get(\"album_total_tracks\", \"\")\n",
" # Explizit\n",
" explicit = bool_icon(track.get(\"explicit\"))\n",
" # Beliebtheit\n",
" popularity = track.get(\"popularity\", \"\")\n",
" # Tracknummer\n",
" track_number = track.get(\"track_number\", \"\")\n",
" disc_number = track.get(\"disc_number\", \"\")\n",
" # Lokal\n",
" is_local = bool_icon(track.get(\"is_local\"))\n",
" # URI\n",
" uri = track.get(\"uri\", \"\")\n",
" # Album URI\n",
" album_uri = track.get(\"album_uri\", \"\")\n",
"\n",
" card = f\"\"\"\n",
" <div style=\"border:1px solid #ccc; border-radius:8px; padding:16px; margin:10px 0; box-shadow:2px 2px 8px #eee; max-width:600px; overflow:auto;\">\n",
" {album_img_html}\n",
" <h3 style=\"margin:0 0 8px 0;\">{track['title']}</h3>\n",
" <p style=\"margin:4px 0;\"><strong>Künstler:</strong> {artists_full}</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album:</strong> {track['album']} ({album_type}, {album_total_tracks} Tracks)</p>\n",
" <p style=\"margin:4px 0;\"><strong>Veröffentlicht:</strong> {track['release_date']} ({album_release_date_precision})</p>\n",
" <p style=\"margin:4px 0;\"><strong>Länge:</strong> {track['length_min']} min</p>\n",
" <p style=\"margin:4px 0;\"><strong>Track #:</strong> {track_number} | <strong>Disc #:</strong> {disc_number}</p>\n",
" <p style=\"margin:4px 0;\"><strong>Explizit:</strong> {explicit} | <strong>Beliebtheit:</strong> {popularity}/100</p>\n",
" <p style=\"margin:4px 0;\"><strong>Verfügbar in:</strong> {markets_count} Ländern</p>\n",
" <p style=\"margin:4px 0;\"><strong>ISRC/IDs:</strong> {external_ids_str}</p>\n",
" <p style=\"margin:4px 0;\"><strong>Spotify URI:</strong> {uri}</p>\n",
" <p style=\"margin:4px 0;\"><strong>Album URI:</strong> {album_uri}</p>\n",
" <p style=\"margin:4px 0;\"><strong>Lokal:</strong> {is_local}</p>\n",
" <a href=\"{track['spotify_link']}\" target=\"_blank\" style=\"color:#1DB954;\">Auf Spotify anhören</a>\n",
" <div style=\"margin-top:10px;\">{embed_html}</div>\n",
" {qr_html}\n",
" <div style=\"clear:both;\"></div>\n",
" </div>\n",
" \"\"\"\n",
" html_cards += card\n",
"\n",
"display(HTML(html_cards))"
]
},
{
"cell_type": "code",
"execution_count": 16,
"id": "d7efef5f",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"''"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"qr_html"
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "026dec91",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'<div style=\"margin-top:8px;\"><strong>QR für Preview:</strong><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABKAQAAAAA0q//cAAABTklEQVR4nJWTwUrDQBCG/zgBLynJA/RY8CQsRBBhQwJeCz6JD+BbFHrqewieClsiSCGSQk+FHgWvE3ahFLKsF5FMxINzWobZ7/9nZzYK+I7NBX7ij2MXFZOiQBSLLIUTvZArWV6LvZtvpl31C+YSI7kxkJ4vvRsL97jZap2aYTbiLAeAd1oPsgiBa7J5CGZIcLh/PB99kQ0JsC33CWpOh7Vx4qcfjkFKdnziXf8wnThBYCbdWFtKNZrzUlUHxLK35YRf1/BNJzwYq3ObNLkgeKpw2M0cpJq2uqZWi1r0nLdAmkgC5qZLazXbyY6DolRpI/yCG256E+pSZG2qbGl1KV8HWFSLo0tGzjjhQIasGc0igHJLgtBlep987io9clbaPic5iwvEfvq2us6eR7tD7ukWdTXaHaj99uTHu+NX6uoOUo2hCAFpO1SL/vEDvgDaopmBQANXwgAAAABJRU5ErkJggg==\" alt=\"QR Code\" style=\"margin-top:4px;\"/></div>'"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"generate_qr_code_base64(\"https://open.spotify.com/track/3n3Ppam7vgaVa1iaRUc9Lp\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "83781998",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "hipsterfy-T9PmAG4i-py3.12",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.3"
}
},
"nbformat": 4,
"nbformat_minor": 5
}