commit d12f6c3c6862636bc70d3a75b7f36df17cbd3c19 Author: ovosimpatico Date: Wed Apr 2 01:40:37 2025 -0300 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96f7785 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +.conda +.venv +.env +__pycache__ +*.pyc +*.log +*.log.* diff --git a/backend/.gitignore b/backend/.gitignore new file mode 100644 index 0000000..e13e981 --- /dev/null +++ b/backend/.gitignore @@ -0,0 +1,39 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Virtual Environment +venv/ +ENV/ +.env + +# IDE files +.idea/ +.vscode/ +*.swp +*.swo + +# Logs +logs/ +*.log + +# Static files +static/ \ No newline at end of file diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..773e938 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.11-slim + +WORKDIR /app + +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file diff --git a/backend/README.md b/backend/README.md new file mode 100644 index 0000000..5a1168f --- /dev/null +++ b/backend/README.md @@ -0,0 +1,25 @@ +# Music Guesser Game + +A web-based music guessing game where players try to identify songs from short previews and blurred covers. + +## Backend Setup + +1. Install the required dependencies: + ``` + pip install -r requirements.txt + ``` + +2. Run the FastAPI server: + ``` + uvicorn app.main:app --reload + ``` + +3. Access the API documentation at `http://localhost:8000/docs` + +## Game Rules + +- Random songs (5, 10, or 25) are selected from the database +- A preview of the song will play and a blurred cover will be displayed +- Players must choose the correct song name from 6 options +- Players have 15 seconds to make their choice +- No login required - anyone can play \ No newline at end of file diff --git a/backend/app/__init__.py b/backend/app/__init__.py new file mode 100644 index 0000000..e3b99ff --- /dev/null +++ b/backend/app/__init__.py @@ -0,0 +1 @@ +# Main app package \ No newline at end of file diff --git a/backend/app/main.py b/backend/app/main.py new file mode 100644 index 0000000..2c6a86a --- /dev/null +++ b/backend/app/main.py @@ -0,0 +1,64 @@ +import os +from pathlib import Path + +from app.routes import game_routes, playlist_routes, preview_routes, song_routes, stats_routes +from fastapi import FastAPI, HTTPException +from fastapi.middleware.cors import CORSMiddleware +from fastapi.staticfiles import StaticFiles + +# Create the FastAPI app +app = FastAPI( + title="Music Guesser API", + description="API for the Music Guesser game", + version="1.0.0" +) + +app.add_middleware( + CORSMiddleware, + allow_origins=["*"], + allow_credentials=True, + allow_methods=["*"], + allow_headers=["*"], +) + +static_dir = Path("static") +static_dir.mkdir(exist_ok=True) + +# Mount static files +app.mount("/static", StaticFiles(directory="static"), name="static") + +# Include routers +app.include_router(game_routes.router) +app.include_router(song_routes.router) +app.include_router(preview_routes.router) +app.include_router(playlist_routes.router) +app.include_router(stats_routes.router) + +@app.get("/") +async def root(): + """Root endpoint that returns basic API information.""" + return { + "message": "Music Guesser API", + "docs": "/docs", + "version": "1.0.0" + } + + +@app.get("/health") +async def health_check(): + """Health check endpoint.""" + return {"status": "ok"} + + +# Handle 404 errors +@app.exception_handler(404) +async def not_found_exception_handler(request, exc): + return { + "detail": "The requested resource was not found", + "path": str(request.url) + } + + +if __name__ == "__main__": + import uvicorn + uvicorn.run("app.main:app", host="0.0.0.0", port=8000, reload=True) \ No newline at end of file diff --git a/backend/app/models/__init__.py b/backend/app/models/__init__.py new file mode 100644 index 0000000..d8cfe8a --- /dev/null +++ b/backend/app/models/__init__.py @@ -0,0 +1 @@ +# Models package \ No newline at end of file diff --git a/backend/app/models/game.py b/backend/app/models/game.py new file mode 100644 index 0000000..d460ac3 --- /dev/null +++ b/backend/app/models/game.py @@ -0,0 +1,80 @@ +import uuid +from typing import Dict, List, Optional + +from pydantic import BaseModel + + +class GameSettings(BaseModel): + num_songs: int = 5 # 5, 10, or 25 songs + num_choices: int = 6 # Number of song choices to present + genres: Optional[List[str]] = None # List of genres to filter songs by + playlist_id: Optional[str] = None # ID of a predefined playlist + start_year: Optional[int] = None # Start year for filtering + end_year: Optional[int] = None # End year for filtering + + +class GameOption(BaseModel): + song_id: int + name: str + is_correct: bool + + +class GameQuestion(BaseModel): + song_id: int + preview_url: str + blurred_cover_url: str + clear_cover_url: str = "" # Original unblurred cover URL + correct_option_index: int + options: List[GameOption] + time_limit: int = 15 # seconds + song_color: str = "" # Add song color for theming + artists: str = "" # Artists of the song + + +class GameSession(BaseModel): + session_id: str + questions: List[GameQuestion] + current_question: int = 0 + score: int = 0 + total_questions: int + started_at: float # Unix timestamp + + @classmethod + def create(cls, questions: List[GameQuestion]): + return cls( + session_id=str(uuid.uuid4()), + questions=questions, + total_questions=len(questions), + started_at=0 # Will be set when the game starts + ) + + +class GameResponse(BaseModel): + session_id: str + current_question: int + total_questions: int + question: GameQuestion + score: int + time_remaining: Optional[int] = None + + +class AnswerRequest(BaseModel): + session_id: str + question_index: int + selected_option_index: int + + +class AnswerResponse(BaseModel): + correct: bool + correct_option_index: int + score: int + next_question_index: Optional[int] = None + game_complete: bool = False + points_earned: int = 0 + + +class GameSummary(BaseModel): + session_id: str + score: int + total_questions: int + accuracy: float # Percentage correct \ No newline at end of file diff --git a/backend/app/models/song.py b/backend/app/models/song.py new file mode 100644 index 0000000..0fb024f --- /dev/null +++ b/backend/app/models/song.py @@ -0,0 +1,71 @@ +from typing import Any, Dict, List, Optional, Tuple + +from pydantic import BaseModel + + +class Contributor(BaseModel): + id: int + name: str + role: str + + +class Song(BaseModel): + SongId: int + Name: str + Artists: str + Color: str + DarkColor: str + SongMetaId: Optional[Any] = None + SpotifyId: Optional[str] = None + DeezerID: Optional[int] = None + DeezerURL: Optional[str] = None + CoverSmall: Optional[str] = None + CoverMedium: Optional[str] = None + CoverBig: Optional[str] = None + CoverXL: Optional[str] = None + ISRC: Optional[str] = None + BPM: Optional[float] = 0 + Duration: Optional[int] = 0 + ReleaseDate: Optional[str] = None + AlbumName: Optional[str] = None + Explicit: Optional[bool] = False + Rank: Optional[int] = None + Tags: Optional[List[str]] = None + Contributors: Optional[List[Contributor]] = None + AlbumGenres: Optional[List[str]] = None + + +class Playlist(BaseModel): + """A predefined playlist with specific filters for song selection.""" + id: str + name: str + description: str + genres: Optional[List[str]] = None + start_year: Optional[int] = None + end_year: Optional[int] = None + cover_image: Optional[str] = None + + +class Artist(BaseModel): + ArtistId: int + Name: str + HasPublicSongs: Optional[bool] = None + SongId: Optional[int] = None + Color: Optional[str] = None + DarkColor: Optional[str] = None + DeezerID: Optional[int] = None + DeezerURL: Optional[str] = None + PictureSmall: Optional[str] = None + PictureMedium: Optional[str] = None + PictureBig: Optional[str] = None + PictureXL: Optional[str] = None + NbAlbums: Optional[int] = None + NbFans: Optional[int] = None + Radio: Optional[bool] = None + TopGenres: Optional[List[str]] = None + Rank: Optional[Any] = None + + +class SongsData(BaseModel): + Songs: List[Song] + Artists: Optional[List[Artist]] = None \ No newline at end of file diff --git a/backend/app/routes/__init__.py b/backend/app/routes/__init__.py new file mode 100644 index 0000000..7e1d20f --- /dev/null +++ b/backend/app/routes/__init__.py @@ -0,0 +1 @@ +# Routes package \ No newline at end of file diff --git a/backend/app/routes/game_routes.py b/backend/app/routes/game_routes.py new file mode 100644 index 0000000..88a5a38 --- /dev/null +++ b/backend/app/routes/game_routes.py @@ -0,0 +1,73 @@ +from typing import List, Optional + +from app.models.game import AnswerRequest, AnswerResponse, GameResponse, GameSession, GameSettings, GameSummary +from app.services.game_service import game_service +from fastapi import APIRouter, BackgroundTasks, Depends, HTTPException + +router = APIRouter( + prefix="/api/game", + tags=["game"] +) + + +@router.post("/create", response_model=GameSession) +async def create_game(settings: GameSettings): + """Create a new game session with the specified settings.""" + try: + return await game_service.create_game(settings) + except Exception as e: + raise HTTPException(status_code=500, detail=f"Failed to create game: {str(e)}") + + +@router.post("/start/{session_id}", response_model=GameResponse) +async def start_game(session_id: str, background_tasks: BackgroundTasks): + """Start a game session and get the first question.""" + # Start the game + session = game_service.start_game(session_id) + if not session: + raise HTTPException(status_code=404, detail="Game session not found") + + # Schedule cleanup of old sessions + background_tasks.add_task(game_service.cleanup_old_sessions) + + # Get the game response + response = game_service.get_game_response(session_id) + if not response: + raise HTTPException(status_code=404, detail="Failed to get game state") + + return response + + +@router.get("/state/{session_id}", response_model=GameResponse) +async def get_game_state(session_id: str): + """Get the current state of a game session.""" + response = game_service.get_game_response(session_id) + if not response: + raise HTTPException(status_code=404, detail="Game session not found or invalid state") + + return response + + +@router.post("/answer", response_model=AnswerResponse) +async def answer_question(answer: AnswerRequest): + """Submit an answer to the current question.""" + response = game_service.answer_question( + answer.session_id, + answer.question_index, + answer.selected_option_index + ) + + if not response: + raise HTTPException(status_code=404, detail="Game session not found or invalid answer") + + return response + + +@router.get("/summary/{session_id}", response_model=GameSummary) +async def get_game_summary(session_id: str): + """Get a summary of a completed game.""" + summary = game_service.get_game_summary(session_id) + if not summary: + raise HTTPException(status_code=404, detail="Game session not found") + + return summary \ No newline at end of file diff --git a/backend/app/routes/playlist_routes.py b/backend/app/routes/playlist_routes.py new file mode 100644 index 0000000..5d21402 --- /dev/null +++ b/backend/app/routes/playlist_routes.py @@ -0,0 +1,26 @@ +"""Routes for playlist operations.""" +from typing import List + +from app.models.song import Playlist +from app.services.playlist_service import playlist_service +from fastapi import APIRouter, HTTPException + +router = APIRouter( + prefix="/api/playlists", + tags=["playlists"] +) + + +@router.get("", response_model=List[Playlist]) +async def get_playlists(): + """Get all available predefined playlists.""" + return playlist_service.get_all_playlists() + + +@router.get("/{playlist_id}", response_model=Playlist) +async def get_playlist(playlist_id: str): + """Get a playlist by its ID.""" + playlist = playlist_service.get_playlist_by_id(playlist_id) + if not playlist: + raise HTTPException(status_code=404, detail="Playlist not found") + return playlist \ No newline at end of file diff --git a/backend/app/routes/preview_routes.py b/backend/app/routes/preview_routes.py new file mode 100644 index 0000000..62fc144 --- /dev/null +++ b/backend/app/routes/preview_routes.py @@ -0,0 +1,45 @@ +from typing import Dict + +from app.services.song_service import song_service +from fastapi import APIRouter, HTTPException + +router = APIRouter( + prefix="/api/preview", + tags=["preview"] +) + + +@router.get("/audio/{song_id}") +async def get_audio_preview(song_id: int): + """Get the audio preview URL for a song.""" + song = song_service.get_song_by_id(song_id) + if not song: + raise HTTPException(status_code=404, detail="Song not found") + + preview_url = await song_service.get_deezer_preview_url(song) + if not preview_url: + raise HTTPException(status_code=404, detail="Preview not available for this song") + + # Return the preview URL + return {"preview_url": preview_url} + + +@router.get("/cover/{song_id}") +async def get_blurred_cover(song_id: int, blur_level: int = 10): + """Get a blurred version of the song cover image.""" + song = song_service.get_song_by_id(song_id) + if not song: + raise HTTPException(status_code=404, detail="Song not found") + + # Get the original cover + original_cover = song.CoverMedium or song.CoverBig or song.CoverXL or song.CoverSmall + + # Get the blurred URL + blurred_url = original_cover + + # Return the blurred cover URL and the original URL + return { + "blurred_url": blurred_url, + "original_url": original_cover, + "blur_level": blur_level + } \ No newline at end of file diff --git a/backend/app/routes/song_routes.py b/backend/app/routes/song_routes.py new file mode 100644 index 0000000..af90a13 --- /dev/null +++ b/backend/app/routes/song_routes.py @@ -0,0 +1,46 @@ +from typing import List, Optional + +from app.models.song import Song +from app.services.song_service import song_service +from fastapi import APIRouter, HTTPException, Query + +router = APIRouter( + prefix="/api/songs", + tags=["songs"] +) + + +@router.get("", response_model=List[dict]) +async def get_songs(limit: int = 10, offset: int = 0): + """Get a paginated list of songs.""" + songs = song_service.songs[offset:offset + limit] + return [song.dict() for song in songs] + + +@router.get("/count", response_model=int) +async def get_song_count(): + """Get the total number of songs.""" + return song_service.get_total_song_count() + + +@router.get("/genres", response_model=List[str]) +async def get_available_genres(): + """Get a list of available genres that have at least 30 songs.""" + return song_service.get_available_genres() + + +@router.get("/random", response_model=List[dict]) +async def get_random_songs(count: int = 10): + """Get a list of random songs.""" + count = min(count, 50) # Limit to 50 songs max + songs = song_service.get_random_songs(count) + return [song.dict() for song in songs] + + +@router.get("/{song_id}", response_model=dict) +async def get_song(song_id: int): + """Get a song by ID.""" + song = song_service.get_song_by_id(song_id) + if not song: + raise HTTPException(status_code=404, detail="Song not found") + return song.dict() \ No newline at end of file diff --git a/backend/app/routes/stats_routes.py b/backend/app/routes/stats_routes.py new file mode 100644 index 0000000..a501b7e --- /dev/null +++ b/backend/app/routes/stats_routes.py @@ -0,0 +1,35 @@ +"""Routes for song statistics and analytics.""" +from typing import Dict, List + +from app.services.song_service import song_service +from fastapi import APIRouter, HTTPException + +router = APIRouter( + prefix="/api/stats", + tags=["stats"] +) + + +@router.get("/years") +async def get_available_years(): + """Get a list of years that have songs in the database, suitable for filtering.""" + years = song_service.get_available_years() + return { + "min_year": min(years) if years else None, + "max_year": max(years) if years else None, + "years": sorted(years) + } + + +@router.get("/decade-counts") +async def get_decade_counts(): + """Get counts of songs by decade.""" + decades = song_service.get_decade_counts() + return decades + + +@router.get("/genre-distribution") +async def get_genre_distribution(): + """Get distribution of songs by genre.""" + genre_distribution = song_service.get_genre_distribution() + return genre_distribution \ No newline at end of file diff --git a/backend/app/services/__init__.py b/backend/app/services/__init__.py new file mode 100644 index 0000000..c66a0b2 --- /dev/null +++ b/backend/app/services/__init__.py @@ -0,0 +1 @@ +# Services package \ No newline at end of file diff --git a/backend/app/services/game_service.py b/backend/app/services/game_service.py new file mode 100644 index 0000000..af9f9e4 --- /dev/null +++ b/backend/app/services/game_service.py @@ -0,0 +1,293 @@ +import random +import time +import uuid +from typing import Dict, List, Optional, Tuple + +from app.models.game import ( + AnswerResponse, + GameOption, + GameQuestion, + GameResponse, + GameSession, + GameSettings, + GameSummary, +) +from app.models.song import Song +from app.services.playlist_service import playlist_service +from app.services.song_service import song_service + + +class GameService: + def __init__(self): + # Store active game sessions + self.active_sessions: Dict[str, GameSession] = {} + + async def create_game(self, settings: GameSettings) -> GameSession: + """Create a new game session with the specified settings.""" + # Override settings to ensure exactly 4 questions + settings.num_songs = 4 + settings.num_choices = 4 + + + # Process playlist if specified + genres = settings.genres + start_year = settings.start_year + end_year = settings.end_year + + if settings.playlist_id: + playlist = playlist_service.get_playlist_by_id(settings.playlist_id) + if playlist: + genres = playlist.genres or genres + start_year = playlist.start_year or start_year + end_year = playlist.end_year or end_year + else: + print(f"Playlist not found: {settings.playlist_id}") + + # Get random songs for the game, filtered by criteria + game_songs = song_service.get_random_songs( + settings.num_songs, + genres=genres, + start_year=start_year, + end_year=end_year + ) + + + # Ensure we have at least one song + if not game_songs: + # Return songs without filtering if no songs match the criteria + game_songs = song_service.get_random_songs(settings.num_songs) + + # Create game questions + questions = [] + for song in game_songs: + # Get choices for this question, using the same filters + choices = song_service.get_random_song_choices( + song, + settings.num_choices, + genres=genres, + start_year=start_year, + end_year=end_year + ) + + # Make sure we have exactly 4 different song options + # First, ensure the correct song is in the list + if song not in choices: + choices.append(song) + + # Filter out duplicates by name + unique_choices = [] + seen_names = set() + for choice in choices: + if choice.Name not in seen_names: + seen_names.add(choice.Name) + unique_choices.append(choice) + + # If we don't have enough unique options after filtering, add more random songs + while len(unique_choices) < settings.num_choices: + additional_songs = song_service.get_random_songs( + settings.num_choices - len(unique_choices), + genres=genres, + start_year=start_year, + end_year=end_year + ) + + for additional_song in additional_songs: + if additional_song.Name not in seen_names and additional_song.SongId != song.SongId: + seen_names.add(additional_song.Name) + unique_choices.append(additional_song) + + # Break if we can't find any more unique songs + if len(unique_choices) < settings.num_choices: + additional_songs = song_service.get_random_songs( + settings.num_choices - len(unique_choices) + ) + for additional_song in additional_songs: + if additional_song.Name not in seen_names and additional_song.SongId != song.SongId: + seen_names.add(additional_song.Name) + unique_choices.append(additional_song) + + # Ensure we have exactly 4 options + choices = unique_choices[:settings.num_choices] + + # Make sure the correct song is still in the list + if song not in choices: + choices[-1] = song + + # Find the index of the correct option + correct_index = next(i for i, s in enumerate(choices) if s.SongId == song.SongId) + + # Create option objects + options = [ + GameOption( + song_id=s.SongId, + name=s.Name, + is_correct=(s.SongId == song.SongId) + ) for s in choices + ] + + # Create the question + preview_url = await song_service.get_deezer_preview_url(song) + question = GameQuestion( + song_id=song.SongId, + preview_url=preview_url, + blurred_cover_url=song.CoverMedium or "", + clear_cover_url=song.CoverBig or song.CoverXL or song.CoverMedium or "", # Use best available cover + correct_option_index=correct_index, + options=options, + song_color=song.DarkColor or song.Color, # Prefer DarkColor when available + artists=song.Artists # Add the artists field from the song + ) + + questions.append(question) + + # Create the game session + session = GameSession.create(questions) + + # Store the session + self.active_sessions[session.session_id] = session + + return session + + def start_game(self, session_id: str) -> Optional[GameSession]: + """Start the game by setting the start time.""" + if session_id not in self.active_sessions: + return None + + session = self.active_sessions[session_id] + session.started_at = time.time() + return session + + def get_game_response(self, session_id: str) -> Optional[GameResponse]: + """Get the current game state as a response object.""" + if session_id not in self.active_sessions: + return None + + session = self.active_sessions[session_id] + + # Check if we have a valid current question + if session.current_question >= len(session.questions): + return None + + question = session.questions[session.current_question] + + # Calculate time remaining if game has started + time_remaining = None + if session.started_at > 0: + elapsed = time.time() - session.started_at + question_time = session.current_question * question.time_limit + current_question_elapsed = elapsed - question_time + + if current_question_elapsed < question.time_limit: + time_remaining = int(question.time_limit - current_question_elapsed) + else: + time_remaining = 0 + + return GameResponse( + session_id=session.session_id, + current_question=session.current_question, + total_questions=session.total_questions, + question=question, + score=session.score, + time_remaining=time_remaining + ) + + def answer_question(self, session_id: str, question_index: int, selected_option_index: int) -> Optional[AnswerResponse]: + """Process a player's answer to a question.""" + if session_id not in self.active_sessions: + return None + + session = self.active_sessions[session_id] + + # Validate question index + if question_index < 0 or question_index >= len(session.questions): + return None + + # Check if this is the current question + if question_index != session.current_question: + return None + + question = session.questions[question_index] + + # Special case for timeouts: -1 option index means timeout + is_correct = False + if selected_option_index == -1: + # Timeout - always incorrect + is_correct = False + else: + # Check if the selected option is valid + if selected_option_index < 0 or selected_option_index >= len(question.options): + return None + + # Check if the answer is correct + is_correct = question.correct_option_index == selected_option_index + + # Update score if correct - add time bonus based on remaining time + time_remaining = 0 + if session.started_at > 0: + elapsed = time.time() - session.started_at + question_time = session.current_question * question.time_limit + current_question_elapsed = elapsed - question_time + time_remaining = max(0, question.time_limit - current_question_elapsed) + + # Calculate points: 10 base points + time bonus if correct + points = 0 + if is_correct: + # Base points (10) + time bonus (up to 5 more points based on time) + points = 10 + int(time_remaining / question.time_limit * 5) + session.score += points + + # Move to the next question + session.current_question += 1 + game_complete = session.current_question >= session.total_questions + + # Prepare the response + next_question = None if game_complete else session.current_question + + return AnswerResponse( + correct=is_correct, + correct_option_index=question.correct_option_index, + score=session.score, + next_question_index=next_question, + game_complete=game_complete, + points_earned=points + ) + + def get_game_summary(self, session_id: str) -> Optional[GameSummary]: + """Get a summary of the completed game.""" + if session_id not in self.active_sessions: + return None + + session = self.active_sessions[session_id] + + # Calculate accuracy + accuracy = (session.score / session.total_questions) * 100 if session.total_questions > 0 else 0 + + return GameSummary( + session_id=session.session_id, + score=session.score, + total_questions=session.total_questions, + accuracy=accuracy + ) + + def cleanup_old_sessions(self, max_age_seconds: int = 3600) -> None: + """Remove old game sessions to free up memory.""" + current_time = time.time() + to_remove = [] + + for session_id, session in self.active_sessions.items(): + # Skip sessions that haven't started + if session.started_at == 0: + continue + + # Check if the session is too old + age = current_time - session.started_at + if age > max_age_seconds: + to_remove.append(session_id) + + # Remove old sessions + for session_id in to_remove: + del self.active_sessions[session_id] + + +# Create a global instance of the game service +game_service = GameService() \ No newline at end of file diff --git a/backend/app/services/playlist_service.py b/backend/app/services/playlist_service.py new file mode 100644 index 0000000..ecbd774 --- /dev/null +++ b/backend/app/services/playlist_service.py @@ -0,0 +1,64 @@ +"""Service for managing predefined playlists.""" +from typing import Dict, List, Optional + +from app.models.song import Playlist + +# Predefined playlists +PLAYLISTS: List[Playlist] = [ + Playlist( + id="pop-2010s", + name="Best Pop 2010s", + description="The most popular pop hits from the 2010s decade", + genres=["Pop"], + start_year=2010, + end_year=2019, + ), + Playlist( + id="old-school-rap", + name="Old School Rap", + description="Classic rap hits from the 80s and 90s", + genres=["Rap/Hip Hop"], + start_year=1980, + end_year=1999, + ), + Playlist( + id="latest-hits", + name="Latest Hits", + description="The newest songs from the past year", + start_year=2023, + ), + Playlist( + id="rock-classics", + name="Rock Classics", + description="Timeless rock anthems from the 70s to 90s", + genres=["Rock"], + start_year=1970, + end_year=1999, + ), + Playlist( + id="2000s-nostalgia", + name="2000s Nostalgia", + description="Hits that defined the 2000s", + start_year=2000, + end_year=2009, + ), +] + + +class PlaylistService: + """Service for managing predefined playlists.""" + + def __init__(self): + self.playlists: Dict[str, Playlist] = {p.id: p for p in PLAYLISTS} + + def get_all_playlists(self) -> List[Playlist]: + """Get all available playlists.""" + return list(self.playlists.values()) + + def get_playlist_by_id(self, playlist_id: str) -> Optional[Playlist]: + """Get a playlist by its ID.""" + return self.playlists.get(playlist_id) + + +# Create a global instance of the playlist service +playlist_service = PlaylistService() \ No newline at end of file diff --git a/backend/app/services/song_service.py b/backend/app/services/song_service.py new file mode 100644 index 0000000..696efb2 --- /dev/null +++ b/backend/app/services/song_service.py @@ -0,0 +1,294 @@ +import json +import random +import re +from collections import defaultdict +from math import floor +from pathlib import Path +from typing import Any, Dict, List, Optional, Set + +import httpx +from app.models.song import Song, SongsData +from fastapi import HTTPException + + +class SongService: + def __init__(self): + self.songs_data: Optional[SongsData] = None + self.songs: List[Song] = [] + self.genres: Dict[str, List[Song]] = {} # Map of genre to songs with that genre + self.available_genres: List[str] = [] # Genres with at least 30 songs + self._load_songs() + + def _load_songs(self) -> None: + """Load songs data from the JSON file and index genres.""" + try: + json_path = Path("songs.json") + with open(json_path, "r", encoding="utf-8") as f: + data = json.load(f) + self.songs_data = SongsData(**data) + self.songs = self.songs_data.Songs + + # Index genres + self._index_genres() + print(f"Loaded {len(self.songs)} songs successfully") + print(f"Found {len(self.available_genres)} genres with at least 30 songs") + except Exception as e: + print(f"Error loading songs: {e}") + # Initialize with empty list to avoid crashes + self.songs = [] + self.genres = {} + self.available_genres = [] + + def _index_genres(self) -> None: + """Index all songs by genre and find available genres with at least 30 songs.""" + self.genres = {} + genre_count: Dict[str, int] = {} + + # Process each song + for song in self.songs: + # Use AlbumGenres field if available, or Tags as fallback + song_genres = song.AlbumGenres or song.Tags or [] + + # Add song to each of its genres + for genre in song_genres: + if genre not in self.genres: + self.genres[genre] = [] + self.genres[genre].append(song) + + # Track genre count + genre_count[genre] = genre_count.get(genre, 0) + 1 + + # Find genres with at least 30 songs + self.available_genres = [ + genre for genre, count in genre_count.items() + if count >= 30 + ] + + # Sort genres alphabetically + self.available_genres.sort() + + def get_song_by_id(self, song_id: int) -> Optional[Song]: + """Get a song by its ID.""" + for song in self.songs: + if song.SongId == song_id: + return song + return None + + def get_song_release_year(self, song: Song) -> Optional[int]: + """Extract the release year from a song. + + Tries to get it from the ReleaseDate field first, then from Tags. + """ + # Try to get year from ReleaseDate (format: YYYY-MM-DD) + if song.ReleaseDate and len(song.ReleaseDate) >= 4: + try: + return int(song.ReleaseDate[:4]) + except ValueError: + pass + + # Try to get year from Tags (format: "year:YYYY") + if song.Tags: + for tag in song.Tags: + if tag.startswith("year:"): + try: + return int(tag[5:]) + except ValueError: + pass + + return None + + def filter_songs_by_criteria( + self, + genres: Optional[List[str]] = None, + start_year: Optional[int] = None, + end_year: Optional[int] = None + ) -> List[Song]: + """Filter songs based on multiple criteria.""" + filtered_songs = self.songs.copy() + + # Filter by genres if specified + if genres: + genre_song_ids = set() + for genre in genres: + if genre in self.genres: + for song in self.genres[genre]: + genre_song_ids.add(song.SongId) + + filtered_songs = [song for song in filtered_songs if song.SongId in genre_song_ids] + + # Filter by year range if specified + if start_year or end_year: + year_filtered = [] + for song in filtered_songs: + year = self.get_song_release_year(song) + if year: + if start_year and end_year: + if start_year <= year <= end_year: + year_filtered.append(song) + elif start_year: + if year >= start_year: + year_filtered.append(song) + elif end_year: + if year <= end_year: + year_filtered.append(song) + filtered_songs = year_filtered + + return filtered_songs + + def get_random_songs( + self, + count: int, + genres: Optional[List[str]] = None, + start_year: Optional[int] = None, + end_year: Optional[int] = None + ) -> List[Song]: + """Get a random sample of songs, optionally filtered by genres and/or year range.""" + # Filter songs based on criteria + filtered_songs = self.filter_songs_by_criteria(genres, start_year, end_year) + + # If we don't have enough songs after filtering, return all we have + if count >= len(filtered_songs): + return filtered_songs + + return random.sample(filtered_songs, count) + + def get_random_song_choices( + self, + correct_song: Song, + num_choices: int, + genres: Optional[List[str]] = None, + start_year: Optional[int] = None, + end_year: Optional[int] = None + ) -> List[Song]: + """Get a list of random song choices including the correct song, optionally filtered.""" + + # Get the filtered song pool + song_pool = self.filter_songs_by_criteria(genres, start_year, end_year) + + # Remove the correct song from the pool for now + other_songs = [s for s in song_pool if s.SongId != correct_song.SongId] + + # Make sure we have enough songs for choices + if len(other_songs) < num_choices - 1: + # Get more songs from the general pool + additional_songs = [s for s in self.songs if s.SongId != correct_song.SongId and s not in other_songs] + other_songs.extend(additional_songs) + + # Filter songs to ensure unique names + unique_other_songs = [] + seen_names = set() + + # First add the correct song name to seen_names + seen_names.add(correct_song.Name) + + # Shuffle to get random candidates + random.shuffle(other_songs) + + # Select songs with unique names + for song in other_songs: + if song.Name not in seen_names: + seen_names.add(song.Name) + unique_other_songs.append(song) + + # Break when we have enough choices + if len(unique_other_songs) >= num_choices - 1: + break + + # If we still don't have enough unique names, try again with the full song list + if len(unique_other_songs) < num_choices - 1: + remaining_songs = [s for s in self.songs if s.SongId != correct_song.SongId and s.Name not in seen_names] + random.shuffle(remaining_songs) + + for song in remaining_songs: + if song.Name not in seen_names: + seen_names.add(song.Name) + unique_other_songs.append(song) + + # Break when we have enough choices + if len(unique_other_songs) >= num_choices - 1: + break + + # Get the choices we have + wrong_choices = unique_other_songs[:num_choices - 1] + + # Add the correct song + choices = wrong_choices + [correct_song] + + # Verify all song names are unique + choice_names = [s.Name for s in choices] + if len(set(choice_names)) != len(choices): + print("WARNING: Duplicate song names in choices!") + + # Shuffle the choices + random.shuffle(choices) + + return choices + + def get_available_genres(self) -> List[str]: + """Get the list of available genres (those with at least 30 songs).""" + return self.available_genres + + async def get_deezer_preview_url(self, song: Song) -> str: + """Get the Deezer preview URL for a song.""" + if not song.DeezerID: + return "" + + async with httpx.AsyncClient() as client: + try: + response = await client.get(f"https://api.deezer.com/track/{song.DeezerID}") + if response.status_code != 200: + return "" + + data = response.json() + preview_url = data.get("preview") + if not preview_url: + return "" + + return preview_url + except Exception as e: + print(f"Error fetching preview URL: {e}") + return "" + + def get_total_song_count(self) -> int: + """Get the total number of songs in the database.""" + return len(self.songs) + + def get_available_years(self) -> Set[int]: + """Get a set of all years that have at least one song.""" + years = set() + for song in self.songs: + year = self.get_song_release_year(song) + if year: + years.add(year) + return years + + def get_decade_counts(self) -> Dict[str, int]: + """Get counts of songs by decade.""" + decade_counts = defaultdict(int) + for song in self.songs: + year = self.get_song_release_year(song) + if year: + # Calculate the decade (e.g., 1980s, 1990s, etc.) + decade = floor(year / 10) * 10 + decade_counts[f"{decade}s"] += 1 + + # Sort by decade + sorted_decades = dict(sorted(decade_counts.items(), + key=lambda item: int(item[0][:-1]))) + return sorted_decades + + def get_genre_distribution(self) -> Dict[str, int]: + """Get distribution of songs by genre.""" + genre_distribution = defaultdict(int) + for genre, songs in self.genres.items(): + genre_distribution[genre] = len(songs) + + # Sort by count descending + sorted_genres = dict(sorted(genre_distribution.items(), + key=lambda item: item[1], + reverse=True)) + return sorted_genres + + +# Create a global instance of the song service +song_service = SongService() \ No newline at end of file diff --git a/backend/app/utils/__init__.py b/backend/app/utils/__init__.py new file mode 100644 index 0000000..67b9db6 --- /dev/null +++ b/backend/app/utils/__init__.py @@ -0,0 +1 @@ +# Utils package \ No newline at end of file diff --git a/backend/app/utils/image_utils.py b/backend/app/utils/image_utils.py new file mode 100644 index 0000000..6fb3f85 --- /dev/null +++ b/backend/app/utils/image_utils.py @@ -0,0 +1,21 @@ +from typing import Optional + + +def get_blurred_image_url(original_url: Optional[str], blur_level: int = 10) -> str: + """ + Generate a URL for a blurred version of the image. + + In a production environment, this would typically: + 1. Download the image + 2. Apply a blur filter + 3. Save the blurred image + 4. Return a URL to the blurred image + + For this implementation, we'll assume a frontend solution where + the blur is applied via CSS, and we'll just return the original URL. + """ + if not original_url: + # Return a default image URL if the original is None + return "/static/default-cover.jpg" + + return original_url \ No newline at end of file diff --git a/backend/requirements.txt b/backend/requirements.txt new file mode 100644 index 0000000..a6d7611 --- /dev/null +++ b/backend/requirements.txt @@ -0,0 +1,8 @@ +fastapi==0.104.1 +uvicorn==0.23.2 +pydantic==2.4.2 +python-dotenv==1.0.0 +httpx==0.25.0 +python-multipart==0.0.6 +pytest==7.4.0 +pytest-asyncio==0.21.1 \ No newline at end of file diff --git a/backend/run.py b/backend/run.py new file mode 100644 index 0000000..f7ef026 --- /dev/null +++ b/backend/run.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python3 +import uvicorn + +if __name__ == "__main__": + uvicorn.run("app.main:app", host="0.0.0.0", port=8000, reload=True) \ No newline at end of file diff --git a/backend/songs.json b/backend/songs.json new file mode 100644 index 0000000..2e72663 --- /dev/null +++ b/backend/songs.json @@ -0,0 +1,58120 @@ +{ + "Songs": [ + { + "SongId": 359, + "Name": "10,000 Hours", + "Artists": "Dan + Shay, Justin Bieber", + "Color": "73FBCE", + "DarkColor": "265445", + "SongMetaId": null, + "SpotifyId": "6tpKWKiK6nwGHcc4CA3wpC", + "DeezerID": 1566169822, + "DeezerURL": "https://www.deezer.com/track/1566169822", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4bd8d6ec0ae01857bb07a103789d9a84/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4bd8d6ec0ae01857bb07a103789d9a84/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4bd8d6ec0ae01857bb07a103789d9a84/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4bd8d6ec0ae01857bb07a103789d9a84/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZHN81959729", + "BPM": 0, + "Duration": 162, + "ReleaseDate": "2021-11-24", + "AlbumName": "10,000 Hours", + "Explicit": false, + "Rank": 474061, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 288166, + "name": "Justin Bieber", + "role": "Main" + }, + { + "id": 5112746, + "name": "Dan + Shay", + "role": "Main" + }, + { + "id": 9775042, + "name": "Kid Travis", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 322, + "Name": "16 Shots", + "Artists": "Stefflon Don", + "Color": "DC5B9E", + "DarkColor": "852856", + "SongMetaId": null, + "SpotifyId": "2169IKAivSUUFGcedGASXc", + "DeezerID": 362632151, + "DeezerURL": "https://www.deezer.com/track/362632151", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ea65054a16e99bbcc424f1461cae56b4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ea65054a16e99bbcc424f1461cae56b4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ea65054a16e99bbcc424f1461cae56b4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ea65054a16e99bbcc424f1461cae56b4/1000x1000-000000-80-0-0.jpg", + "ISRC": "US23A1500365", + "BPM": 189.65, + "Duration": 224, + "ReleaseDate": "2017-05-23", + "AlbumName": "16 Shots", + "Explicit": true, + "Rank": 642994, + "Tags": [ + "Rap/Hip Hop", + "bpm:189.65", + "medium-length", + "very-fast", + "year:2017" + ], + "Contributors": [ + { + "id": 3972081, + "name": "Stefflon Don", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 185, + "Name": "1979", + "Artists": "Smashing Pumpkins", + "Color": "F59925", + "DarkColor": "9B4909", + "SongMetaId": null, + "SpotifyId": "3h5zik31hTTat9jmpCZZNC", + "DeezerID": 68976286, + "DeezerURL": "https://www.deezer.com/track/68976286", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c64acd4abaf6e8f2d7c895b4b73f3764/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c64acd4abaf6e8f2d7c895b4b73f3764/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c64acd4abaf6e8f2d7c895b4b73f3764/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c64acd4abaf6e8f2d7c895b4b73f3764/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVI21200910", + "BPM": 126.8, + "Duration": 266, + "ReleaseDate": "2013-07-23", + "AlbumName": "Aeroplane Flies High (Deluxe Edition)", + "Explicit": false, + "Rank": 771847, + "Tags": [ + "Alternativo", + "bpm:126.8", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 193331, + "name": "The Smashing Pumpkins", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 418, + "Name": "2 Be Loved", + "Artists": "Lizzo", + "Color": "A54482", + "DarkColor": "611A6E", + "SongMetaId": null, + "SpotifyId": "13Irp51zj01BZu2XtDrnAg", + "DeezerID": 1818665227, + "DeezerURL": "https://www.deezer.com/track/1818665227", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5dbe778e49b66641d85cc59425a7e0ee/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5dbe778e49b66641d85cc59425a7e0ee/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5dbe778e49b66641d85cc59425a7e0ee/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5dbe778e49b66641d85cc59425a7e0ee/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT22203706", + "BPM": 0, + "Duration": 187, + "ReleaseDate": "2022-07-15", + "AlbumName": "Special", + "Explicit": false, + "Rank": 855599, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 5200025, + "name": "Lizzo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 418, + "Name": "2 Be Loved", + "Artists": "Lizzo", + "Color": "A54482", + "DarkColor": "611A6E", + "SongMetaId": null, + "SpotifyId": "13Irp51zj01BZu2XtDrnAg", + "DeezerID": 1818665227, + "DeezerURL": "https://www.deezer.com/track/1818665227", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5dbe778e49b66641d85cc59425a7e0ee/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5dbe778e49b66641d85cc59425a7e0ee/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5dbe778e49b66641d85cc59425a7e0ee/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5dbe778e49b66641d85cc59425a7e0ee/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT22203706", + "BPM": 0, + "Duration": 187, + "ReleaseDate": "2022-07-15", + "AlbumName": "Special", + "Explicit": false, + "Rank": 855599, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 5200025, + "name": "Lizzo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 438, + "Name": "2 Billion", + "Artists": "CHAOSBAY", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "6dSZv23B2KEFYwUFT9rqbl", + "DeezerID": 1749324227, + "DeezerURL": "https://www.deezer.com/track/1749324227", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXN92239725", + "BPM": 0, + "Duration": 224, + "ReleaseDate": "2022-07-29", + "AlbumName": "2222", + "Explicit": false, + "Rank": 203741, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 7242032, + "name": "Chaosbay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 438, + "Name": "2 Billion", + "Artists": "CHAOSBAY", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "6dSZv23B2KEFYwUFT9rqbl", + "DeezerID": 1749324227, + "DeezerURL": "https://www.deezer.com/track/1749324227", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXN92239725", + "BPM": 0, + "Duration": 224, + "ReleaseDate": "2022-07-29", + "AlbumName": "2222", + "Explicit": false, + "Rank": 203741, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 7242032, + "name": "Chaosbay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 621, + "Name": "2 Hearts", + "Artists": "Disco Lines, GUDFELLA", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "1XAHKYnFF4fpvM8sWxSYZt", + "DeezerID": 2134511477, + "DeezerURL": "https://www.deezer.com/track/2134511477", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b963e1ef6edb0ae62b7c1141a1757816/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b963e1ef6edb0ae62b7c1141a1757816/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b963e1ef6edb0ae62b7c1141a1757816/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b963e1ef6edb0ae62b7c1141a1757816/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLRD52264199", + "BPM": 0, + "Duration": 146, + "ReleaseDate": "2023-02-17", + "AlbumName": "LOVELAND", + "Explicit": false, + "Rank": 207204, + "Tags": [ + "Dance", + "Electro", + "Techno/House", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 65148802, + "name": "Disco Lines", + "role": "Main" + }, + { + "id": 49031471, + "name": "GUDFELLA", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House", + "Dance" + ] + }, + { + "SongId": 621, + "Name": "2 Hearts", + "Artists": "Disco Lines, GUDFELLA", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "1XAHKYnFF4fpvM8sWxSYZt", + "DeezerID": 2134511477, + "DeezerURL": "https://www.deezer.com/track/2134511477", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b963e1ef6edb0ae62b7c1141a1757816/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b963e1ef6edb0ae62b7c1141a1757816/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b963e1ef6edb0ae62b7c1141a1757816/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b963e1ef6edb0ae62b7c1141a1757816/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLRD52264199", + "BPM": 0, + "Duration": 146, + "ReleaseDate": "2023-02-17", + "AlbumName": "LOVELAND", + "Explicit": false, + "Rank": 207204, + "Tags": [ + "Dance", + "Electro", + "Techno/House", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 65148802, + "name": "Disco Lines", + "role": "Main" + }, + { + "id": 49031471, + "name": "GUDFELLA", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House", + "Dance" + ] + }, + { + "SongId": 25, + "Name": "24K Magic", + "Artists": "Bruno Mars", + "Color": "C63031", + "DarkColor": "801909", + "SongMetaId": null, + "SpotifyId": "6b8Be6ljOzmkOmFslEb23P", + "DeezerID": 136336110, + "DeezerURL": "https://www.deezer.com/track/136336110", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/012b27906b430a37ec1d8f793d5c4fa6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/012b27906b430a37ec1d8f793d5c4fa6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/012b27906b430a37ec1d8f793d5c4fa6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/012b27906b430a37ec1d8f793d5c4fa6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21602944", + "BPM": 106.83, + "Duration": 225, + "ReleaseDate": "2016-11-18", + "AlbumName": "24K Magic", + "Explicit": false, + "Rank": 951585, + "Tags": [ + "Pop", + "bpm:106.83", + "medium", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 429675, + "name": "Bruno Mars", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 25, + "Name": "24K Magic", + "Artists": "Bruno Mars", + "Color": "CC2827", + "DarkColor": "801909", + "SongMetaId": null, + "SpotifyId": "6b8Be6ljOzmkOmFslEb23P", + "DeezerID": 136336110, + "DeezerURL": "https://www.deezer.com/track/136336110", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/012b27906b430a37ec1d8f793d5c4fa6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/012b27906b430a37ec1d8f793d5c4fa6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/012b27906b430a37ec1d8f793d5c4fa6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/012b27906b430a37ec1d8f793d5c4fa6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21602944", + "BPM": 106.83, + "Duration": 225, + "ReleaseDate": "2016-11-18", + "AlbumName": "24K Magic", + "Explicit": false, + "Rank": 951585, + "Tags": [ + "Pop", + "bpm:106.83", + "medium", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 429675, + "name": "Bruno Mars", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 165, + "Name": "3 Nights", + "Artists": "Dominic Fike", + "Color": "E7AF2C", + "DarkColor": "CA7F04", + "SongMetaId": null, + "SpotifyId": "1tNJrcVe6gwLEiZCtprs1u", + "DeezerID": 564326642, + "DeezerURL": "https://www.deezer.com/track/564326642", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fea07231e297ee0c926aad963fc333bd/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fea07231e297ee0c926aad963fc333bd/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fea07231e297ee0c926aad963fc333bd/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fea07231e297ee0c926aad963fc333bd/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX91802455", + "BPM": 152, + "Duration": 178, + "ReleaseDate": "2018-10-16", + "AlbumName": "Don't Forget About Me, Demos", + "Explicit": false, + "Rank": 749454, + "Tags": [ + "Alternativo", + "bpm:152", + "short", + "very-fast", + "year:2018" + ], + "Contributors": [ + { + "id": 13864157, + "name": "Dominic Fike", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 263, + "Name": "7 rings", + "Artists": "Ariana Grande", + "Color": "C092AA", + "DarkColor": "9E6B86", + "SongMetaId": null, + "SpotifyId": "6ocbgoVGwYJhOv1GgI9NsF", + "DeezerID": 629899842, + "DeezerURL": "https://www.deezer.com/track/629899842", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/49e86e935da829b44cb5ffae16826e55/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/49e86e935da829b44cb5ffae16826e55/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/49e86e935da829b44cb5ffae16826e55/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/49e86e935da829b44cb5ffae16826e55/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71900110", + "BPM": 140.15, + "Duration": 178, + "ReleaseDate": "2019-02-08", + "AlbumName": "thank u, next", + "Explicit": true, + "Rank": 921719, + "Tags": [ + "Pop", + "bpm:140.15", + "fast", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 1562681, + "name": "Ariana Grande", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 425, + "Name": "9 to 5", + "Artists": "Dolly Parton", + "Color": "FA597F", + "DarkColor": "842D42", + "SongMetaId": null, + "SpotifyId": "4w3tQBXhn5345eUXDGBWZG", + "DeezerID": 992937, + "DeezerURL": "https://www.deezer.com/track/992937", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/62438de920e4943c653d545999cd120e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/62438de920e4943c653d545999cd120e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/62438de920e4943c653d545999cd120e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/62438de920e4943c653d545999cd120e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRN19400384", + "BPM": 106, + "Duration": 165, + "ReleaseDate": "2008-02-12", + "AlbumName": "9 To 5 And Odd Jobs", + "Explicit": false, + "Rank": 685604, + "Tags": [ + "bpm:106", + "medium", + "short", + "year:2008" + ], + "Contributors": [ + { + "id": 8741, + "name": "Dolly Parton", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 425, + "Name": "9 to 5", + "Artists": "Dolly Parton", + "Color": "FA597F", + "DarkColor": "842D42", + "SongMetaId": null, + "SpotifyId": "4w3tQBXhn5345eUXDGBWZG", + "DeezerID": 992937, + "DeezerURL": "https://www.deezer.com/track/992937", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/62438de920e4943c653d545999cd120e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/62438de920e4943c653d545999cd120e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/62438de920e4943c653d545999cd120e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/62438de920e4943c653d545999cd120e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRN19400384", + "BPM": 106, + "Duration": 165, + "ReleaseDate": "2008-02-12", + "AlbumName": "9 To 5 And Odd Jobs", + "Explicit": false, + "Rank": 685604, + "Tags": [ + "bpm:106", + "medium", + "short", + "year:2008" + ], + "Contributors": [ + { + "id": 8741, + "name": "Dolly Parton", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 601, + "Name": "A Dream Of A Night In Mexico", + "Artists": "Abramo Abramo", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "37ZnhkXrMP41FRJEhW53Kn", + "DeezerID": 1651425532, + "DeezerURL": "https://www.deezer.com/track/1651425532", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0b11f68a79455b1828af49dae93c9fee/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0b11f68a79455b1828af49dae93c9fee/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0b11f68a79455b1828af49dae93c9fee/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0b11f68a79455b1828af49dae93c9fee/1000x1000-000000-80-0-0.jpg", + "ISRC": "NL6YL2200001", + "BPM": 0, + "Duration": 228, + "ReleaseDate": "2022-03-11", + "AlbumName": "A Dream of a night in Mexico", + "Explicit": false, + "Rank": 22042, + "Tags": [ + "Alternativo", + "Indie rock/Rock pop", + "Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 121425912, + "name": "Abramo Abramo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock", + "Indie rock/Rock pop" + ] + }, + { + "SongId": 601, + "Name": "A Dream Of A Night In Mexico", + "Artists": "Abramo Abramo", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "37ZnhkXrMP41FRJEhW53Kn", + "DeezerID": 1651425532, + "DeezerURL": "https://www.deezer.com/track/1651425532", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0b11f68a79455b1828af49dae93c9fee/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0b11f68a79455b1828af49dae93c9fee/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0b11f68a79455b1828af49dae93c9fee/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0b11f68a79455b1828af49dae93c9fee/1000x1000-000000-80-0-0.jpg", + "ISRC": "NL6YL2200001", + "BPM": 0, + "Duration": 228, + "ReleaseDate": "2022-03-11", + "AlbumName": "A Dream of a night in Mexico", + "Explicit": false, + "Rank": 22042, + "Tags": [ + "Alternativo", + "Indie rock/Rock pop", + "Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 121425912, + "name": "Abramo Abramo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock", + "Indie rock/Rock pop" + ] + }, + { + "SongId": 672, + "Name": "A Sky Full Of Stars", + "Artists": "Coldplay", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "0FDzzruyVECATHXKHFs9eJ", + "DeezerID": 78129603, + "DeezerURL": "https://www.deezer.com/track/78129603", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b8caede4e53ed433a2566d9fec29d638/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b8caede4e53ed433a2566d9fec29d638/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b8caede4e53ed433a2566d9fec29d638/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b8caede4e53ed433a2566d9fec29d638/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE1400217", + "BPM": 124.91, + "Duration": 267, + "ReleaseDate": "2014-05-02", + "AlbumName": "A Sky Full of Stars", + "Explicit": false, + "Rank": 893959, + "Tags": [ + "Alternativo", + "Rock", + "bpm:124.91", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 892, + "name": "Coldplay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock" + ] + }, + { + "SongId": 672, + "Name": "A Sky Full Of Stars", + "Artists": "Coldplay", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "0FDzzruyVECATHXKHFs9eJ", + "DeezerID": 78129603, + "DeezerURL": "https://www.deezer.com/track/78129603", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b8caede4e53ed433a2566d9fec29d638/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b8caede4e53ed433a2566d9fec29d638/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b8caede4e53ed433a2566d9fec29d638/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b8caede4e53ed433a2566d9fec29d638/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE1400217", + "BPM": 124.91, + "Duration": 267, + "ReleaseDate": "2014-05-02", + "AlbumName": "A Sky Full of Stars", + "Explicit": false, + "Rank": 893959, + "Tags": [ + "Alternativo", + "Rock", + "bpm:124.91", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 892, + "name": "Coldplay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock" + ] + }, + { + "SongId": 218, + "Name": "A Thousand Miles", + "Artists": "Vanessa Carlton", + "Color": "B23F27", + "DarkColor": "7A1E14", + "SongMetaId": null, + "SpotifyId": "4w1lzcaoZ1IC2K5TwjalRP", + "DeezerID": 983832, + "DeezerURL": "https://www.deezer.com/track/983832", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/990e08407e928abdbb14db86e5563ed0/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/990e08407e928abdbb14db86e5563ed0/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/990e08407e928abdbb14db86e5563ed0/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/990e08407e928abdbb14db86e5563ed0/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR10210955", + "BPM": 95, + "Duration": 237, + "ReleaseDate": "2002-04-11", + "AlbumName": "Be Not Nobody", + "Explicit": false, + "Rank": 862921, + "Tags": [ + "Pop", + "bpm:95", + "medium", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 456, + "name": "Vanessa Carlton", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 221, + "Name": "abc (nicer)", + "Artists": "GAYLE", + "Color": "B83564", + "DarkColor": "6E184D", + "SongMetaId": null, + "SpotifyId": "6Vb1LGvWPpP3aeuRcp098D", + "DeezerID": 1564314172, + "DeezerURL": "https://www.deezer.com/track/1564314172", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c71e6a65bfe3c5947e98127d85c2ddbb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c71e6a65bfe3c5947e98127d85c2ddbb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c71e6a65bfe3c5947e98127d85c2ddbb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c71e6a65bfe3c5947e98127d85c2ddbb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT22107819", + "BPM": 0, + "Duration": 168, + "ReleaseDate": "2021-08-14", + "AlbumName": "abc (nicer)", + "Explicit": false, + "Rank": 446460, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 4946605, + "name": "GAYLE", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 221, + "Name": "abc (nicer)", + "Artists": "GAYLE", + "Color": "B83564", + "DarkColor": "6E184D", + "SongMetaId": null, + "SpotifyId": "6Vb1LGvWPpP3aeuRcp098D", + "DeezerID": 1564314172, + "DeezerURL": "https://www.deezer.com/track/1564314172", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c71e6a65bfe3c5947e98127d85c2ddbb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c71e6a65bfe3c5947e98127d85c2ddbb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c71e6a65bfe3c5947e98127d85c2ddbb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c71e6a65bfe3c5947e98127d85c2ddbb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT22107819", + "BPM": 0, + "Duration": 168, + "ReleaseDate": "2021-08-14", + "AlbumName": "abc (nicer)", + "Explicit": false, + "Rank": 446460, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 4946605, + "name": "GAYLE", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 574, + "Name": "Africa", + "Artists": "TOTO", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "2374M0fQpWi3dLnB54qaLX", + "DeezerID": 1079668, + "DeezerURL": "https://www.deezer.com/track/1079668", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/153332e88a14255a8c3d5959a5a21882/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/153332e88a14255a8c3d5959a5a21882/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/153332e88a14255a8c3d5959a5a21882/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/153332e88a14255a8c3d5959a5a21882/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19801941", + "BPM": 92.49, + "Duration": 296, + "ReleaseDate": "1982-04-08", + "AlbumName": "Toto IV", + "Explicit": false, + "Rank": 933968, + "Tags": [ + "Pop", + "bpm:92.49", + "medium", + "medium-length", + "year:1982" + ], + "Contributors": [ + { + "id": 215, + "name": "Toto", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 574, + "Name": "Africa", + "Artists": "TOTO", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "2374M0fQpWi3dLnB54qaLX", + "DeezerID": 1079668, + "DeezerURL": "https://www.deezer.com/track/1079668", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/153332e88a14255a8c3d5959a5a21882/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/153332e88a14255a8c3d5959a5a21882/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/153332e88a14255a8c3d5959a5a21882/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/153332e88a14255a8c3d5959a5a21882/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19801941", + "BPM": 92.49, + "Duration": 296, + "ReleaseDate": "1982-04-08", + "AlbumName": "Toto IV", + "Explicit": false, + "Rank": 933968, + "Tags": [ + "Pop", + "bpm:92.49", + "medium", + "medium-length", + "year:1982" + ], + "Contributors": [ + { + "id": 215, + "name": "Toto", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 680, + "Name": "Afterlife", + "Artists": "Avenged Sevenfold", + "Color": "D0AB64", + "DarkColor": "7D5B3E", + "SongMetaId": null, + "SpotifyId": "7zAt4tdL44D3VuzsvM0N8n", + "DeezerID": 6278220, + "DeezerURL": "https://www.deezer.com/track/6278220", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b1d19308255ab3129a65ea2f3a222a89/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b1d19308255ab3129a65ea2f3a222a89/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b1d19308255ab3129a65ea2f3a222a89/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b1d19308255ab3129a65ea2f3a222a89/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB10703995", + "BPM": 109.96, + "Duration": 352, + "ReleaseDate": "2007-10-26", + "AlbumName": "Avenged Sevenfold", + "Explicit": false, + "Rank": 734470, + "Tags": [ + "Hard Rock", + "Rock", + "bpm:109.96", + "long", + "medium", + "year:2007" + ], + "Contributors": [ + { + "id": 406, + "name": "Avenged Sevenfold", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock" + ] + }, + { + "SongId": 680, + "Name": "Afterlife", + "Artists": "Avenged Sevenfold", + "Color": "D0AB64", + "DarkColor": "7D5B3E", + "SongMetaId": null, + "SpotifyId": "7zAt4tdL44D3VuzsvM0N8n", + "DeezerID": 6278220, + "DeezerURL": "https://www.deezer.com/track/6278220", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b1d19308255ab3129a65ea2f3a222a89/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b1d19308255ab3129a65ea2f3a222a89/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b1d19308255ab3129a65ea2f3a222a89/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b1d19308255ab3129a65ea2f3a222a89/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB10703995", + "BPM": 109.96, + "Duration": 352, + "ReleaseDate": "2007-10-26", + "AlbumName": "Avenged Sevenfold", + "Explicit": false, + "Rank": 734470, + "Tags": [ + "Hard Rock", + "Rock", + "bpm:109.96", + "long", + "medium", + "year:2007" + ], + "Contributors": [ + { + "id": 406, + "name": "Avenged Sevenfold", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock" + ] + }, + { + "SongId": 746, + "Name": "Ain't No Mountain High Enough", + "Artists": "Marvin Gaye, Tammi Terrell", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": "1", + "SpotifyId": "7tqhbajSfrz2F7E1Z75ASX", + "DeezerID": 646327092, + "DeezerURL": "https://www.deezer.com/track/646327092", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7beb28379235585e5c8376d11776479f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7beb28379235585e5c8376d11776479f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7beb28379235585e5c8376d11776479f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7beb28379235585e5c8376d11776479f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMO16700534", + "BPM": 0, + "Duration": 147, + "ReleaseDate": "2019-03-15", + "AlbumName": "United", + "Explicit": false, + "Rank": 702665, + "Tags": [ + "Pop", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 1154, + "name": "Marvin Gaye", + "role": "Main" + }, + { + "id": 110513, + "name": "Tammi Terrell", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 665, + "Name": "Ain't No Mountain High Enough", + "Artists": "Marvin Gaye, Tammi Terrell", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": "1", + "SpotifyId": "7tqhbajSfrz2F7E1Z75ASX", + "DeezerID": 646327092, + "DeezerURL": "https://www.deezer.com/track/646327092", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7beb28379235585e5c8376d11776479f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7beb28379235585e5c8376d11776479f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7beb28379235585e5c8376d11776479f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7beb28379235585e5c8376d11776479f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMO16700534", + "BPM": 0, + "Duration": 147, + "ReleaseDate": "2019-03-15", + "AlbumName": "United", + "Explicit": false, + "Rank": 702665, + "Tags": [ + "Pop", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 1154, + "name": "Marvin Gaye", + "role": "Main" + }, + { + "id": 110513, + "name": "Tammi Terrell", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 665, + "Name": "Ain't No Mountain High Enough", + "Artists": "Marvin Gaye, Tammi Terrell", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": "1", + "SpotifyId": "7tqhbajSfrz2F7E1Z75ASX", + "DeezerID": 646327092, + "DeezerURL": "https://www.deezer.com/track/646327092", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7beb28379235585e5c8376d11776479f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7beb28379235585e5c8376d11776479f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7beb28379235585e5c8376d11776479f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7beb28379235585e5c8376d11776479f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMO16700534", + "BPM": 0, + "Duration": 147, + "ReleaseDate": "2019-03-15", + "AlbumName": "United", + "Explicit": false, + "Rank": 702665, + "Tags": [ + "Pop", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 1154, + "name": "Marvin Gaye", + "role": "Main" + }, + { + "id": 110513, + "name": "Tammi Terrell", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 317, + "Name": "Alejandro", + "Artists": "Lady Gaga", + "Color": "398694", + "DarkColor": "123743", + "SongMetaId": null, + "SpotifyId": "4lwavw59UjXUPJZtKNdFYp", + "DeezerID": 4709938, + "DeezerURL": "https://www.deezer.com/track/4709938", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/62f368993ddb68c5364cd03221d07ac6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/62f368993ddb68c5364cd03221d07ac6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/62f368993ddb68c5364cd03221d07ac6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/62f368993ddb68c5364cd03221d07ac6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70905526", + "BPM": 98.9, + "Duration": 277, + "ReleaseDate": "2009-01-01", + "AlbumName": "The Fame Monster (International Deluxe)", + "Explicit": false, + "Rank": 880399, + "Tags": [ + "Pop", + "bpm:98.9", + "medium", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 75491, + "name": "Lady Gaga", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 504, + "Name": "All About That Bass", + "Artists": "Meghan Trainor", + "Color": "2E9AAA", + "DarkColor": "257E8B", + "SongMetaId": null, + "SpotifyId": "5jE48hhRu8E6zBDPRSkEq7", + "DeezerID": 84490455, + "DeezerURL": "https://www.deezer.com/track/84490455", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e7cb01eddbefc8e84c0cbc3703dc1c37/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e7cb01eddbefc8e84c0cbc3703dc1c37/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e7cb01eddbefc8e84c0cbc3703dc1c37/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e7cb01eddbefc8e84c0cbc3703dc1c37/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM11401317", + "BPM": 133.8, + "Duration": 189, + "ReleaseDate": "2014-09-09", + "AlbumName": "Title", + "Explicit": true, + "Rank": 595061, + "Tags": [ + "Pop", + "bpm:133.8", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 1181430, + "name": "Meghan Trainor", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 504, + "Name": "All About That Bass", + "Artists": "Meghan Trainor", + "Color": "2E9AAA", + "DarkColor": "1F7784", + "SongMetaId": null, + "SpotifyId": "5jE48hhRu8E6zBDPRSkEq7", + "DeezerID": 84490455, + "DeezerURL": "https://www.deezer.com/track/84490455", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e7cb01eddbefc8e84c0cbc3703dc1c37/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e7cb01eddbefc8e84c0cbc3703dc1c37/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e7cb01eddbefc8e84c0cbc3703dc1c37/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e7cb01eddbefc8e84c0cbc3703dc1c37/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM11401317", + "BPM": 133.8, + "Duration": 189, + "ReleaseDate": "2014-09-09", + "AlbumName": "Title", + "Explicit": true, + "Rank": 595061, + "Tags": [ + "Pop", + "bpm:133.8", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 1181430, + "name": "Meghan Trainor", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 116, + "Name": "All My Life", + "Artists": "Foo Fighters", + "Color": "E12223", + "DarkColor": "79000F", + "SongMetaId": null, + "SpotifyId": "6tsojOQ5wHaIjKqIryLZK6", + "DeezerID": 4311594, + "DeezerURL": "https://www.deezer.com/track/4311594", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/266f01f1c7a04843d11cd08f9c07d11f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/266f01f1c7a04843d11cd08f9c07d11f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/266f01f1c7a04843d11cd08f9c07d11f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/266f01f1c7a04843d11cd08f9c07d11f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRW30200001", + "BPM": 168.06, + "Duration": 262, + "ReleaseDate": "2009-10-30", + "AlbumName": "Greatest Hits", + "Explicit": false, + "Rank": 733383, + "Tags": [ + "Alternativo", + "Pop", + "Pop internacional", + "Rock", + "bpm:168.06", + "medium-length", + "very-fast", + "year:2009" + ], + "Contributors": [ + { + "id": 566, + "name": "Foo Fighters", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Pop", + "Pop internacional", + "Rock" + ] + }, + { + "SongId": 44, + "Name": "All Night", + "Artists": "The Vamps, Matoma", + "Color": "EA7CA3", + "DarkColor": "A72E68", + "SongMetaId": null, + "SpotifyId": "0dXNQ8dckG4eYfEtq9zcva", + "DeezerID": 381108081, + "DeezerURL": "https://www.deezer.com/track/381108081", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/62ad7912a3144d154086a827162c9db3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/62ad7912a3144d154086a827162c9db3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/62ad7912a3144d154086a827162c9db3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/62ad7912a3144d154086a827162c9db3/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71605342", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2017-07-14", + "AlbumName": "Night & Day (Night Edition)", + "Explicit": false, + "Rank": 568266, + "Tags": [ + "Pop", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 5171069, + "name": "The Vamps", + "role": "Main" + }, + { + "id": 6557769, + "name": "Matoma", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 614, + "Name": "All Night", + "Artists": "IVE, Saweetie", + "Color": "E359D8", + "DarkColor": "974190", + "SongMetaId": null, + "SpotifyId": "1hkeifGMiDQjXlvAsIoDaa", + "DeezerID": 2622504482, + "DeezerURL": "https://www.deezer.com/track/2622504482", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/aebe591c2f15495dcbfd6be230d38753/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/aebe591c2f15495dcbfd6be230d38753/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/aebe591c2f15495dcbfd6be230d38753/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/aebe591c2f15495dcbfd6be230d38753/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX92307375", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2024-01-19", + "AlbumName": "All Night", + "Explicit": true, + "Rank": 513137, + "Tags": [ + "K-Pop", + "Música asiática", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 153042292, + "name": "IVE", + "role": "Main" + }, + { + "id": 13641829, + "name": "Saweetie", + "role": "Main" + } + ], + "AlbumGenres": [ + "Música asiática", + "K-Pop" + ] + }, + { + "SongId": 614, + "Name": "All Night", + "Artists": "IVE, Saweetie", + "Color": "E359D8", + "DarkColor": "9C3E94", + "SongMetaId": null, + "SpotifyId": "1hkeifGMiDQjXlvAsIoDaa", + "DeezerID": 2622504482, + "DeezerURL": "https://www.deezer.com/track/2622504482", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/aebe591c2f15495dcbfd6be230d38753/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/aebe591c2f15495dcbfd6be230d38753/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/aebe591c2f15495dcbfd6be230d38753/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/aebe591c2f15495dcbfd6be230d38753/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX92307375", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2024-01-19", + "AlbumName": "All Night", + "Explicit": true, + "Rank": 513137, + "Tags": [ + "K-Pop", + "Música asiática", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 153042292, + "name": "IVE", + "role": "Main" + }, + { + "id": 13641829, + "name": "Saweetie", + "role": "Main" + } + ], + "AlbumGenres": [ + "Música asiática", + "K-Pop" + ] + }, + { + "SongId": 627, + "Name": "All Or Nothing", + "Artists": "Cher", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "4yWeYfdw5FR0vAMjtFfddA", + "DeezerID": 786740, + "DeezerURL": "https://www.deezer.com/track/786740", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/af263778ad6ef2f3f5be381292ed02a8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/af263778ad6ef2f3f5be381292ed02a8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/af263778ad6ef2f3f5be381292ed02a8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/af263778ad6ef2f3f5be381292ed02a8/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT9803035", + "BPM": 133.8, + "Duration": 238, + "ReleaseDate": "1998-10-26", + "AlbumName": "Believe", + "Explicit": false, + "Rank": 459371, + "Tags": [ + "Pop", + "bpm:133.8", + "fast", + "medium-length", + "year:1998" + ], + "Contributors": [ + { + "id": 3156, + "name": "Cher", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 627, + "Name": "All Or Nothing", + "Artists": "Cher", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "4yWeYfdw5FR0vAMjtFfddA", + "DeezerID": 786740, + "DeezerURL": "https://www.deezer.com/track/786740", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/af263778ad6ef2f3f5be381292ed02a8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/af263778ad6ef2f3f5be381292ed02a8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/af263778ad6ef2f3f5be381292ed02a8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/af263778ad6ef2f3f5be381292ed02a8/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT9803035", + "BPM": 133.8, + "Duration": 238, + "ReleaseDate": "1998-10-26", + "AlbumName": "Believe", + "Explicit": false, + "Rank": 459371, + "Tags": [ + "Pop", + "bpm:133.8", + "fast", + "medium-length", + "year:1998" + ], + "Contributors": [ + { + "id": 3156, + "name": "Cher", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 228, + "Name": "All the Small Things", + "Artists": "blink-182", + "Color": "00B0E9", + "DarkColor": "0059BB", + "SongMetaId": "2", + "SpotifyId": "2m1hi0nfMR9vdGC8UcrnwU", + "DeezerID": 127354207, + "DeezerURL": "https://www.deezer.com/track/127354207", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/50627ad1a5ce0215359f0e8b2e37a01f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/50627ad1a5ce0215359f0e8b2e37a01f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/50627ad1a5ce0215359f0e8b2e37a01f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/50627ad1a5ce0215359f0e8b2e37a01f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC19959123", + "BPM": 147.66, + "Duration": 172, + "ReleaseDate": "2016-06-24", + "AlbumName": "Greatest Hits", + "Explicit": false, + "Rank": 826449, + "Tags": [ + "Rock", + "bpm:147.66", + "fast", + "short", + "year:2016" + ], + "Contributors": [ + { + "id": 409, + "name": "blink-182", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 716, + "Name": "All the Small Things", + "Artists": "blink-182", + "Color": "00B0E9", + "DarkColor": "0059BB", + "SongMetaId": "2", + "SpotifyId": "2m1hi0nfMR9vdGC8UcrnwU", + "DeezerID": 127354207, + "DeezerURL": "https://www.deezer.com/track/127354207", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/50627ad1a5ce0215359f0e8b2e37a01f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/50627ad1a5ce0215359f0e8b2e37a01f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/50627ad1a5ce0215359f0e8b2e37a01f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/50627ad1a5ce0215359f0e8b2e37a01f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC19959123", + "BPM": 147.66, + "Duration": 172, + "ReleaseDate": "2016-06-24", + "AlbumName": "Greatest Hits", + "Explicit": false, + "Rank": 826449, + "Tags": [ + "Rock", + "bpm:147.66", + "fast", + "short", + "year:2016" + ], + "Contributors": [ + { + "id": 409, + "name": "blink-182", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 228, + "Name": "All the Small Things", + "Artists": "blink-182", + "Color": "00B0E9", + "DarkColor": "0059BB", + "SongMetaId": "2", + "SpotifyId": "2m1hi0nfMR9vdGC8UcrnwU", + "DeezerID": 127354207, + "DeezerURL": "https://www.deezer.com/track/127354207", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/50627ad1a5ce0215359f0e8b2e37a01f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/50627ad1a5ce0215359f0e8b2e37a01f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/50627ad1a5ce0215359f0e8b2e37a01f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/50627ad1a5ce0215359f0e8b2e37a01f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC19959123", + "BPM": 147.66, + "Duration": 172, + "ReleaseDate": "2016-06-24", + "AlbumName": "Greatest Hits", + "Explicit": false, + "Rank": 826449, + "Tags": [ + "Rock", + "bpm:147.66", + "fast", + "short", + "year:2016" + ], + "Contributors": [ + { + "id": 409, + "name": "blink-182", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 605, + "Name": "All These Things That I've Done", + "Artists": "The Killers", + "Color": "67AAF0", + "DarkColor": "334989", + "SongMetaId": null, + "SpotifyId": "5vollujufHY0jMZxx77VWr", + "DeezerID": 71955241, + "DeezerURL": "https://www.deezer.com/track/71955241", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/727528cdf2e2a99d397e872fe2bd856e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/727528cdf2e2a99d397e872fe2bd856e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/727528cdf2e2a99d397e872fe2bd856e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/727528cdf2e2a99d397e872fe2bd856e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR20400269", + "BPM": 118.12, + "Duration": 302, + "ReleaseDate": "2013-11-11", + "AlbumName": "Direct Hits", + "Explicit": false, + "Rank": 624993, + "Tags": [ + "Alternativo", + "bpm:118.12", + "long", + "medium", + "year:2013" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 605, + "Name": "All These Things That I've Done", + "Artists": "The Killers", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "5vollujufHY0jMZxx77VWr", + "DeezerID": 71955241, + "DeezerURL": "https://www.deezer.com/track/71955241", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/727528cdf2e2a99d397e872fe2bd856e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/727528cdf2e2a99d397e872fe2bd856e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/727528cdf2e2a99d397e872fe2bd856e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/727528cdf2e2a99d397e872fe2bd856e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR20400269", + "BPM": 118.12, + "Duration": 302, + "ReleaseDate": "2013-11-11", + "AlbumName": "Direct Hits", + "Explicit": false, + "Rank": 624993, + "Tags": [ + "Alternativo", + "bpm:118.12", + "long", + "medium", + "year:2013" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 87, + "Name": "Alright", + "Artists": "Supergrass", + "Color": "354D67", + "DarkColor": "1C3247", + "SongMetaId": null, + "SpotifyId": "5CQvKyzkWI7TnUu2oB9QZ0", + "DeezerID": 3152010, + "DeezerURL": "https://www.deezer.com/track/3152010", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/70715814cee545b075445719abdefbde/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/70715814cee545b075445719abdefbde/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/70715814cee545b075445719abdefbde/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/70715814cee545b075445719abdefbde/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE9500044", + "BPM": 0, + "Duration": 180, + "ReleaseDate": "1995-05-15", + "AlbumName": "I Should Coco", + "Explicit": false, + "Rank": 831981, + "Tags": [ + "Rock", + "medium-length", + "year:1995" + ], + "Contributors": [ + { + "id": 1320, + "name": "Supergrass", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 431, + "Name": "Always On Time", + "Artists": "Ja Rule", + "Color": "AD2429", + "DarkColor": "6E0C00", + "SongMetaId": null, + "SpotifyId": "2lXJr5BkUPZpQUV2ZGN1Wv", + "DeezerID": 623714342, + "DeezerURL": "https://www.deezer.com/track/623714342", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e53c97b776972eded1bcdae421cf7e0d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e53c97b776972eded1bcdae421cf7e0d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e53c97b776972eded1bcdae421cf7e0d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e53c97b776972eded1bcdae421cf7e0d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDJ20110760", + "BPM": 193.2, + "Duration": 243, + "ReleaseDate": "2019-02-01", + "AlbumName": "Pain Is Love", + "Explicit": true, + "Rank": 786038, + "Tags": [ + "R&B", + "bpm:193.2", + "medium-length", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 138, + "name": "Ja Rule", + "role": "Main" + }, + { + "id": 586, + "name": "Ashanti", + "role": "Featured" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 431, + "Name": "Always On Time", + "Artists": "Ja Rule", + "Color": "AC0620", + "DarkColor": "5A0001", + "SongMetaId": null, + "SpotifyId": "2lXJr5BkUPZpQUV2ZGN1Wv", + "DeezerID": 623714342, + "DeezerURL": "https://www.deezer.com/track/623714342", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e53c97b776972eded1bcdae421cf7e0d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e53c97b776972eded1bcdae421cf7e0d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e53c97b776972eded1bcdae421cf7e0d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e53c97b776972eded1bcdae421cf7e0d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDJ20110760", + "BPM": 193.2, + "Duration": 243, + "ReleaseDate": "2019-02-01", + "AlbumName": "Pain Is Love", + "Explicit": true, + "Rank": 786038, + "Tags": [ + "R&B", + "bpm:193.2", + "medium-length", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 138, + "name": "Ja Rule", + "role": "Main" + }, + { + "id": 586, + "name": "Ashanti", + "role": "Featured" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 759, + "Name": "Amascuts Promise", + "Artists": "Mykel Dunn, Jagex Audio Team", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "4xMXBQ0sl0Yjc6NFUPPu2z", + "DeezerID": 2840596062, + "DeezerURL": "https://www.deezer.com/track/2840596062", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7c50df7eafce8fb4aa70f47037966779/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7c50df7eafce8fb4aa70f47037966779/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7c50df7eafce8fb4aa70f47037966779/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7c50df7eafce8fb4aa70f47037966779/1000x1000-000000-80-0-0.jpg", + "ISRC": "NL8RL2424721", + "BPM": 0, + "Duration": 352, + "ReleaseDate": "2024-06-21", + "AlbumName": "RuneScape: Battleaxes and Ballads", + "Explicit": false, + "Rank": 184204, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "long", + "year:2024" + ], + "Contributors": [ + { + "id": 88156322, + "name": "Mykel Dunn", + "role": "Main" + }, + { + "id": 186970647, + "name": "Jagex Audio Team", + "role": "Main" + }, + { + "id": 89416482, + "name": "Julian Surma", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 719, + "Name": "American Idiot", + "Artists": "Green Day", + "Color": "C13031", + "DarkColor": "6E1D1E", + "SongMetaId": "3", + "SpotifyId": "6nTiIhLmQ3FWhvrGafw2zj", + "DeezerID": 773367, + "DeezerURL": "https://www.deezer.com/track/773367", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9e17c202b5ab081171f31c81eb32dc5d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9e17c202b5ab081171f31c81eb32dc5d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9e17c202b5ab081171f31c81eb32dc5d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9e17c202b5ab081171f31c81eb32dc5d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRE10400888", + "BPM": 186.2, + "Duration": 174, + "ReleaseDate": "2004-09-14", + "AlbumName": "American Idiot (Deluxe)", + "Explicit": true, + "Rank": 834717, + "Tags": [ + "Alternativo", + "bpm:186.2", + "short", + "very-fast", + "year:2004" + ], + "Contributors": [ + { + "id": 52, + "name": "Green Day", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 174, + "Name": "American Idiot", + "Artists": "Green Day", + "Color": "C13031", + "DarkColor": "6E1D1E", + "SongMetaId": "3", + "SpotifyId": "6nTiIhLmQ3FWhvrGafw2zj", + "DeezerID": 773367, + "DeezerURL": "https://www.deezer.com/track/773367", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9e17c202b5ab081171f31c81eb32dc5d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9e17c202b5ab081171f31c81eb32dc5d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9e17c202b5ab081171f31c81eb32dc5d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9e17c202b5ab081171f31c81eb32dc5d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRE10400888", + "BPM": 186.2, + "Duration": 174, + "ReleaseDate": "2004-09-14", + "AlbumName": "American Idiot (Deluxe)", + "Explicit": true, + "Rank": 834717, + "Tags": [ + "Alternativo", + "bpm:186.2", + "short", + "very-fast", + "year:2004" + ], + "Contributors": [ + { + "id": 52, + "name": "Green Day", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 174, + "Name": "American Idiot", + "Artists": "Green Day", + "Color": "C13031", + "DarkColor": "6E1D1E", + "SongMetaId": "3", + "SpotifyId": "6nTiIhLmQ3FWhvrGafw2zj", + "DeezerID": 773367, + "DeezerURL": "https://www.deezer.com/track/773367", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9e17c202b5ab081171f31c81eb32dc5d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9e17c202b5ab081171f31c81eb32dc5d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9e17c202b5ab081171f31c81eb32dc5d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9e17c202b5ab081171f31c81eb32dc5d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRE10400888", + "BPM": 186.2, + "Duration": 174, + "ReleaseDate": "2004-09-14", + "AlbumName": "American Idiot (Deluxe)", + "Explicit": true, + "Rank": 834717, + "Tags": [ + "Alternativo", + "bpm:186.2", + "short", + "very-fast", + "year:2004" + ], + "Contributors": [ + { + "id": 52, + "name": "Green Day", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 364, + "Name": "American Pie", + "Artists": "Don McLean", + "Color": "960019", + "DarkColor": "300505", + "SongMetaId": null, + "SpotifyId": "1fDsrQ23eTAVFElUMaf38X", + "DeezerID": 3156285, + "DeezerURL": "https://www.deezer.com/track/3156285", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5a0cfdacfaaa0ba9b514f86f9d69f988/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5a0cfdacfaaa0ba9b514f86f9d69f988/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5a0cfdacfaaa0ba9b514f86f9d69f988/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5a0cfdacfaaa0ba9b514f86f9d69f988/1000x1000-000000-80-0-0.jpg", + "ISRC": "USEM38600088", + "BPM": 138.7, + "Duration": 517, + "ReleaseDate": "2003-06-12", + "AlbumName": "American Pie (Expanded Edition)", + "Explicit": false, + "Rank": 757651, + "Tags": [ + "Pop", + "bpm:138.7", + "fast", + "long", + "year:2003" + ], + "Contributors": [ + { + "id": 2224, + "name": "Don McLean", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 118, + "Name": "Anaconda", + "Artists": "Nicki Minaj", + "Color": "E44A8C", + "DarkColor": "C52066", + "SongMetaId": "4", + "SpotifyId": "794F99D5BQHS5ZGRXAs7I5", + "DeezerID": 91543346, + "DeezerURL": "https://www.deezer.com/track/91543346", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ebbcc26be4391b139475aed5ce6a6c3e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ebbcc26be4391b139475aed5ce6a6c3e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ebbcc26be4391b139475aed5ce6a6c3e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ebbcc26be4391b139475aed5ce6a6c3e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCM51400260", + "BPM": 0, + "Duration": 260, + "ReleaseDate": "2014-12-15", + "AlbumName": "The Pinkprint", + "Explicit": true, + "Rank": 680422, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 382937, + "name": "Nicki Minaj", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 758, + "Name": "Anaconda", + "Artists": "Nicki Minaj", + "Color": "E44A8C", + "DarkColor": "C52066", + "SongMetaId": "4", + "SpotifyId": "5eqiMMbaeUZ32Q7sS00H35", + "DeezerID": 91543346, + "DeezerURL": "https://www.deezer.com/track/91543346", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ebbcc26be4391b139475aed5ce6a6c3e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ebbcc26be4391b139475aed5ce6a6c3e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ebbcc26be4391b139475aed5ce6a6c3e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ebbcc26be4391b139475aed5ce6a6c3e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCM51400260", + "BPM": 0, + "Duration": 260, + "ReleaseDate": "2014-12-15", + "AlbumName": "The Pinkprint", + "Explicit": true, + "Rank": 680422, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 382937, + "name": "Nicki Minaj", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 118, + "Name": "Anaconda", + "Artists": "Nicki Minaj", + "Color": "E44A8C", + "DarkColor": "C52066", + "SongMetaId": "4", + "SpotifyId": "794F99D5BQHS5ZGRXAs7I5", + "DeezerID": 91543346, + "DeezerURL": "https://www.deezer.com/track/91543346", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ebbcc26be4391b139475aed5ce6a6c3e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ebbcc26be4391b139475aed5ce6a6c3e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ebbcc26be4391b139475aed5ce6a6c3e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ebbcc26be4391b139475aed5ce6a6c3e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCM51400260", + "BPM": 0, + "Duration": 260, + "ReleaseDate": "2014-12-15", + "AlbumName": "The Pinkprint", + "Explicit": true, + "Rank": 680422, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 382937, + "name": "Nicki Minaj", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 24, + "Name": "Animals", + "Artists": "Martin Garrix", + "Color": "F1B500", + "DarkColor": "DC8E00", + "SongMetaId": null, + "SpotifyId": "1xMLthTaWJieT9YGV1hyS5", + "DeezerID": 2102633427, + "DeezerURL": "https://www.deezer.com/track/2102633427", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/97c1918368d8ed3b0bea34d0785d4db0/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/97c1918368d8ed3b0bea34d0785d4db0/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/97c1918368d8ed3b0bea34d0785d4db0/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/97c1918368d8ed3b0bea34d0785d4db0/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLZ541300467", + "BPM": 128, + "Duration": 304, + "ReleaseDate": "2013-06-17", + "AlbumName": "Animals", + "Explicit": false, + "Rank": 785080, + "Tags": [ + "Dance", + "Electro", + "Techno/House", + "bpm:128", + "fast", + "long", + "year:2013" + ], + "Contributors": [ + { + "id": 3968561, + "name": "Martin Garrix", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House", + "Dance" + ] + }, + { + "SongId": 24, + "Name": "Animals", + "Artists": "Martin Garrix", + "Color": "F1B500", + "DarkColor": "DC8E00", + "SongMetaId": null, + "SpotifyId": "1xMLthTaWJieT9YGV1hyS5", + "DeezerID": 2102633427, + "DeezerURL": "https://www.deezer.com/track/2102633427", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/97c1918368d8ed3b0bea34d0785d4db0/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/97c1918368d8ed3b0bea34d0785d4db0/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/97c1918368d8ed3b0bea34d0785d4db0/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/97c1918368d8ed3b0bea34d0785d4db0/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLZ541300467", + "BPM": 128, + "Duration": 304, + "ReleaseDate": "2013-06-17", + "AlbumName": "Animals", + "Explicit": false, + "Rank": 785080, + "Tags": [ + "Dance", + "Electro", + "Techno/House", + "bpm:128", + "fast", + "long", + "year:2013" + ], + "Contributors": [ + { + "id": 3968561, + "name": "Martin Garrix", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House", + "Dance" + ] + }, + { + "SongId": 206, + "Name": "Anna Julia", + "Artists": "Los Hermanos", + "Color": "F5346D", + "DarkColor": "9A1545", + "SongMetaId": null, + "SpotifyId": "0aASUtDb1N96NJDwmWj5Gf", + "DeezerID": 13305147, + "DeezerURL": "https://www.deezer.com/track/13305147", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b38d30f340fb0d05d3e1c1c13a8ab1c2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b38d30f340fb0d05d3e1c1c13a8ab1c2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b38d30f340fb0d05d3e1c1c13a8ab1c2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b38d30f340fb0d05d3e1c1c13a8ab1c2/1000x1000-000000-80-0-0.jpg", + "ISRC": "BRBMG9901028", + "BPM": 148.2, + "Duration": 212, + "ReleaseDate": "2003-06-05", + "AlbumName": "Los Hermanos", + "Explicit": false, + "Rank": 770534, + "Tags": [ + "Pop", + "bpm:148.2", + "fast", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 7691, + "name": "Los Hermanos", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 423, + "Name": "Anomalies", + "Artists": "Aphyxion", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "7wkwp1nGsZK7DpBBJ4QEpH", + "DeezerID": 1966386047, + "DeezerURL": "https://www.deezer.com/track/1966386047", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXO52210375", + "BPM": 0, + "Duration": 192, + "ReleaseDate": "2023-02-10", + "AlbumName": "Ad Astra", + "Explicit": false, + "Rank": 30704, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 5866635, + "name": "Aphyxion", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 423, + "Name": "Anomalies", + "Artists": "Aphyxion", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "7wkwp1nGsZK7DpBBJ4QEpH", + "DeezerID": 1966386047, + "DeezerURL": "https://www.deezer.com/track/1966386047", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXO52210375", + "BPM": 0, + "Duration": 192, + "ReleaseDate": "2023-02-10", + "AlbumName": "Ad Astra", + "Explicit": false, + "Rank": 30704, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 5866635, + "name": "Aphyxion", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 512, + "Name": "Any Man of Mine", + "Artists": "Shania Twain", + "Color": "1E7CBF", + "DarkColor": "034B95", + "SongMetaId": null, + "SpotifyId": "0pdfN7nOHMYmKykzu1cyfm", + "DeezerID": 2522928, + "DeezerURL": "https://www.deezer.com/track/2522928", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b9a6d5147e8b16a498c4e2e5f4acd515/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b9a6d5147e8b16a498c4e2e5f4acd515/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b9a6d5147e8b16a498c4e2e5f4acd515/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b9a6d5147e8b16a498c4e2e5f4acd515/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPR39402722", + "BPM": 156.6, + "Duration": 252, + "ReleaseDate": "2007-08-09", + "AlbumName": "The Woman In Me", + "Explicit": false, + "Rank": 594586, + "Tags": [ + "bpm:156.6", + "medium-length", + "very-fast", + "year:2007" + ], + "Contributors": [ + { + "id": 3134, + "name": "Shania Twain", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 512, + "Name": "Any Man of Mine", + "Artists": "Shania Twain", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "0pdfN7nOHMYmKykzu1cyfm", + "DeezerID": 2522928, + "DeezerURL": "https://www.deezer.com/track/2522928", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b9a6d5147e8b16a498c4e2e5f4acd515/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b9a6d5147e8b16a498c4e2e5f4acd515/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b9a6d5147e8b16a498c4e2e5f4acd515/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b9a6d5147e8b16a498c4e2e5f4acd515/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPR39402722", + "BPM": 156.6, + "Duration": 252, + "ReleaseDate": "2007-08-09", + "AlbumName": "The Woman In Me", + "Explicit": false, + "Rank": 594586, + "Tags": [ + "bpm:156.6", + "medium-length", + "very-fast", + "year:2007" + ], + "Contributors": [ + { + "id": 3134, + "name": "Shania Twain", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 111, + "Name": "Ao to Natsu", + "Artists": "Mrs.GREEN APPLE", + "Color": "EC345F", + "DarkColor": "9C142D", + "SongMetaId": null, + "SpotifyId": "74LbA6JyynlY3lgtsRO01q", + "DeezerID": 525091382, + "DeezerURL": "https://www.deezer.com/track/525091382", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c9e6595e853963acaac2fce78961ab7e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c9e6595e853963acaac2fce78961ab7e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c9e6595e853963acaac2fce78961ab7e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c9e6595e853963acaac2fce78961ab7e/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPPO01802568", + "BPM": 92.49, + "Duration": 270, + "ReleaseDate": "2018-07-12", + "AlbumName": "Ao To Natsu", + "Explicit": false, + "Rank": 311642, + "Tags": [ + "Rock", + "bpm:92.49", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 8152202, + "name": "Mrs. Green Apple", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 184, + "Name": "Apollo", + "Artists": "Porno Graffitti", + "Color": "F1D20F", + "DarkColor": "AB7911", + "SongMetaId": null, + "SpotifyId": "2ijbkI49qN0jm0WmR2npbN", + "DeezerID": 143818798, + "DeezerURL": "https://www.deezer.com/track/143818798", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/46d6155ce25c4fdd47f70b3e0d75438e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/46d6155ce25c4fdd47f70b3e0d75438e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/46d6155ce25c4fdd47f70b3e0d75438e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/46d6155ce25c4fdd47f70b3e0d75438e/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPSR09906473", + "BPM": 95.04, + "Duration": 261, + "ReleaseDate": "2017-03-10", + "AlbumName": "Porno Graffitti 15th Anniversary All Time Singles", + "Explicit": false, + "Rank": 119714, + "Tags": [ + "J-Pop", + "Música asiática", + "bpm:95.04", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 10039830, + "name": "Porno Graffitti", + "role": "Main" + } + ], + "AlbumGenres": [ + "Música asiática", + "J-Pop" + ] + }, + { + "SongId": 551, + "Name": "Arcade", + "Artists": "HCK9", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "6bXtJthgJR1hQf9dBonxKP", + "DeezerID": 2411195195, + "DeezerURL": "https://www.deezer.com/track/2411195195", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/65d889679b8bcac10eb02dd2cb41e91f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/65d889679b8bcac10eb02dd2cb41e91f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/65d889679b8bcac10eb02dd2cb41e91f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/65d889679b8bcac10eb02dd2cb41e91f/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXN82364410", + "BPM": 0, + "Duration": 162, + "ReleaseDate": "2023-09-15", + "AlbumName": "Tell Me It Gets Better", + "Explicit": false, + "Rank": 66654, + "Tags": [ + "Alternativo", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 92321912, + "name": "HCK9", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 551, + "Name": "Arcade", + "Artists": "HCK9", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "6bXtJthgJR1hQf9dBonxKP", + "DeezerID": 2411195195, + "DeezerURL": "https://www.deezer.com/track/2411195195", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/65d889679b8bcac10eb02dd2cb41e91f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/65d889679b8bcac10eb02dd2cb41e91f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/65d889679b8bcac10eb02dd2cb41e91f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/65d889679b8bcac10eb02dd2cb41e91f/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXN82364410", + "BPM": 0, + "Duration": 162, + "ReleaseDate": "2023-09-15", + "AlbumName": "Tell Me It Gets Better", + "Explicit": false, + "Rank": 66654, + "Tags": [ + "Alternativo", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 92321912, + "name": "HCK9", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 571, + "Name": "Arcangel", + "Artists": "Alphascan", + "Color": "B0C0DB", + "DarkColor": "768CAF", + "SongMetaId": null, + "SpotifyId": "4D2hAITDClC6qU9BHQEj04", + "DeezerID": 2534357161, + "DeezerURL": "https://www.deezer.com/track/2534357161", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/391d9d99b95ba8f0d32afb874f77bfef/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/391d9d99b95ba8f0d32afb874f77bfef/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/391d9d99b95ba8f0d32afb874f77bfef/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/391d9d99b95ba8f0d32afb874f77bfef/1000x1000-000000-80-0-0.jpg", + "ISRC": "SE5Q52303128", + "BPM": 0, + "Duration": 172, + "ReleaseDate": "2023-11-21", + "AlbumName": "X-Paradise", + "Explicit": false, + "Rank": 104958, + "Tags": [ + "Electro", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 5755651, + "name": "Alphascan", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 571, + "Name": "Arcangel", + "Artists": "Alphascan", + "Color": "B0C0DB", + "DarkColor": "768CAF", + "SongMetaId": null, + "SpotifyId": "4D2hAITDClC6qU9BHQEj04", + "DeezerID": 2534357161, + "DeezerURL": "https://www.deezer.com/track/2534357161", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/391d9d99b95ba8f0d32afb874f77bfef/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/391d9d99b95ba8f0d32afb874f77bfef/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/391d9d99b95ba8f0d32afb874f77bfef/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/391d9d99b95ba8f0d32afb874f77bfef/1000x1000-000000-80-0-0.jpg", + "ISRC": "SE5Q52303128", + "BPM": 0, + "Duration": 172, + "ReleaseDate": "2023-11-21", + "AlbumName": "X-Paradise", + "Explicit": false, + "Rank": 104958, + "Tags": [ + "Electro", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 5755651, + "name": "Alphascan", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 536, + "Name": "Are You Gonna Go My Way", + "Artists": "Lenny Kravitz", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "45Ia1U4KtIjAPPU7Wv1Sea", + "DeezerID": 3107395, + "DeezerURL": "https://www.deezer.com/track/3107395", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/92fc3b56541e6af90105452f8e3cf510/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/92fc3b56541e6af90105452f8e3cf510/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/92fc3b56541e6af90105452f8e3cf510/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/92fc3b56541e6af90105452f8e3cf510/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVI29300001", + "BPM": 0, + "Duration": 210, + "ReleaseDate": "2007-05-22", + "AlbumName": "Are You Gonna Go My Way", + "Explicit": false, + "Rank": 867715, + "Tags": [ + "Rock", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 189, + "name": "Lenny Kravitz", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 536, + "Name": "Are You Gonna Go My Way", + "Artists": "Lenny Kravitz", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "45Ia1U4KtIjAPPU7Wv1Sea", + "DeezerID": 3107395, + "DeezerURL": "https://www.deezer.com/track/3107395", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/92fc3b56541e6af90105452f8e3cf510/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/92fc3b56541e6af90105452f8e3cf510/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/92fc3b56541e6af90105452f8e3cf510/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/92fc3b56541e6af90105452f8e3cf510/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVI29300001", + "BPM": 0, + "Duration": 210, + "ReleaseDate": "2007-05-22", + "AlbumName": "Are You Gonna Go My Way", + "Explicit": false, + "Rank": 867715, + "Tags": [ + "Rock", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 189, + "name": "Lenny Kravitz", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 530, + "Name": "Avalon", + "Artists": "CHAOSBAY", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "7a0nWOhZ41sRZMJiOcPoOl", + "DeezerID": 1749324267, + "DeezerURL": "https://www.deezer.com/track/1749324267", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEZZ52170264", + "BPM": 0, + "Duration": 283, + "ReleaseDate": "2022-07-29", + "AlbumName": "2222", + "Explicit": false, + "Rank": 111150, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 7242032, + "name": "Chaosbay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 530, + "Name": "Avalon", + "Artists": "CHAOSBAY", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "7a0nWOhZ41sRZMJiOcPoOl", + "DeezerID": 1749324267, + "DeezerURL": "https://www.deezer.com/track/1749324267", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEZZ52170264", + "BPM": 0, + "Duration": 283, + "ReleaseDate": "2022-07-29", + "AlbumName": "2222", + "Explicit": false, + "Rank": 111150, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 7242032, + "name": "Chaosbay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 42, + "Name": "Back pocket", + "Artists": "Vulfpeck", + "Color": "C5132F", + "DarkColor": "440004", + "SongMetaId": null, + "SpotifyId": "1DrlLvlYd1FIjNavRm6NdX", + "DeezerID": 105648236, + "DeezerURL": "https://www.deezer.com/track/105648236", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/237dca271ff6b19119dd20cad6b6fa09/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/237dca271ff6b19119dd20cad6b6fa09/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/237dca271ff6b19119dd20cad6b6fa09/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/237dca271ff6b19119dd20cad6b6fa09/1000x1000-000000-80-0-0.jpg", + "ISRC": "TCACH1515840", + "BPM": 0, + "Duration": 182, + "ReleaseDate": "2015-10-09", + "AlbumName": "Thrill of the Arts", + "Explicit": false, + "Rank": 506012, + "Tags": [ + "Pop", + "Pop internacional", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 4441488, + "name": "Vulfpeck", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Pop internacional" + ] + }, + { + "SongId": 42, + "Name": "Back pocket", + "Artists": "Vulfpeck", + "Color": "C5132F", + "DarkColor": "440004", + "SongMetaId": null, + "SpotifyId": "1DrlLvlYd1FIjNavRm6NdX", + "DeezerID": 105648236, + "DeezerURL": "https://www.deezer.com/track/105648236", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/237dca271ff6b19119dd20cad6b6fa09/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/237dca271ff6b19119dd20cad6b6fa09/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/237dca271ff6b19119dd20cad6b6fa09/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/237dca271ff6b19119dd20cad6b6fa09/1000x1000-000000-80-0-0.jpg", + "ISRC": "TCACH1515840", + "BPM": 0, + "Duration": 182, + "ReleaseDate": "2015-10-09", + "AlbumName": "Thrill of the Arts", + "Explicit": false, + "Rank": 506012, + "Tags": [ + "Pop", + "Pop internacional", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 4441488, + "name": "Vulfpeck", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Pop internacional" + ] + }, + { + "SongId": 496, + "Name": "Back To You", + "Artists": "Selena Gomez", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "514rhnksEwHUh6LxXsQ4Y9", + "DeezerID": 499988792, + "DeezerURL": "https://www.deezer.com/track/499988792", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/19b14fa5b494e0e74332f7dbf8dab87d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/19b14fa5b494e0e74332f7dbf8dab87d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/19b14fa5b494e0e74332f7dbf8dab87d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/19b14fa5b494e0e74332f7dbf8dab87d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71805992", + "BPM": 102.08, + "Duration": 207, + "ReleaseDate": "2018-05-18", + "AlbumName": "13 Reasons Why (Season 2)", + "Explicit": false, + "Rank": 687953, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "bpm:102.08", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 292185, + "name": "Selena Gomez", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 496, + "Name": "Back To You", + "Artists": "Selena Gomez", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "514rhnksEwHUh6LxXsQ4Y9", + "DeezerID": 499988792, + "DeezerURL": "https://www.deezer.com/track/499988792", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/19b14fa5b494e0e74332f7dbf8dab87d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/19b14fa5b494e0e74332f7dbf8dab87d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/19b14fa5b494e0e74332f7dbf8dab87d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/19b14fa5b494e0e74332f7dbf8dab87d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71805992", + "BPM": 102.08, + "Duration": 207, + "ReleaseDate": "2018-05-18", + "AlbumName": "13 Reasons Why (Season 2)", + "Explicit": false, + "Rank": 687953, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "bpm:102.08", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 292185, + "name": "Selena Gomez", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 69, + "Name": "Bad Guy", + "Artists": "Billie Eilish", + "Color": "76FF00", + "DarkColor": "005F05", + "SongMetaId": null, + "SpotifyId": "2Fxmhks0bxGSBdJ92vM42m", + "DeezerID": 655095912, + "DeezerURL": "https://www.deezer.com/track/655095912", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6630083f454d48eadb6a9b53f035d734/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6630083f454d48eadb6a9b53f035d734/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6630083f454d48eadb6a9b53f035d734/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6630083f454d48eadb6a9b53f035d734/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71900764", + "BPM": 135.11, + "Duration": 194, + "ReleaseDate": "2019-03-29", + "AlbumName": "WHEN WE ALL FALL ASLEEP, WHERE DO WE GO?", + "Explicit": false, + "Rank": 960936, + "Tags": [ + "Alternativo", + "bpm:135.11", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 9635624, + "name": "Billie Eilish", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 69, + "Name": "Bad Guy", + "Artists": "Billie Eilish", + "Color": "76FF00", + "DarkColor": "005F05", + "SongMetaId": null, + "SpotifyId": "2Fxmhks0bxGSBdJ92vM42m", + "DeezerID": 655095912, + "DeezerURL": "https://www.deezer.com/track/655095912", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6630083f454d48eadb6a9b53f035d734/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6630083f454d48eadb6a9b53f035d734/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6630083f454d48eadb6a9b53f035d734/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6630083f454d48eadb6a9b53f035d734/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71900764", + "BPM": 135.11, + "Duration": 194, + "ReleaseDate": "2019-03-29", + "AlbumName": "WHEN WE ALL FALL ASLEEP, WHERE DO WE GO?", + "Explicit": false, + "Rank": 960936, + "Tags": [ + "Alternativo", + "bpm:135.11", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 9635624, + "name": "Billie Eilish", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 493, + "Name": "Bad Habit", + "Artists": "Steve Lacy", + "Color": "AD2429", + "DarkColor": "6E0C00", + "SongMetaId": null, + "SpotifyId": "5CM4UuQ9Gnd6K2YyKGPMoK", + "DeezerID": 1805106587, + "DeezerURL": "https://www.deezer.com/track/1805106587", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/61eb9d48a6d8e6d6d6742a59886fb07f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/61eb9d48a6d8e6d6d6742a59886fb07f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/61eb9d48a6d8e6d6d6742a59886fb07f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/61eb9d48a6d8e6d6d6742a59886fb07f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC12201440", + "BPM": 0, + "Duration": 232, + "ReleaseDate": "2022-06-29", + "AlbumName": "Bad Habit", + "Explicit": true, + "Rank": 827473, + "Tags": [ + "Pop", + "R&B", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 65574, + "name": "Steve Lacy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "R&B" + ] + }, + { + "SongId": 493, + "Name": "Bad Habit", + "Artists": "Steve Lacy", + "Color": "AC0620", + "DarkColor": "5A0001", + "SongMetaId": null, + "SpotifyId": "5CM4UuQ9Gnd6K2YyKGPMoK", + "DeezerID": 1805106587, + "DeezerURL": "https://www.deezer.com/track/1805106587", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/61eb9d48a6d8e6d6d6742a59886fb07f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/61eb9d48a6d8e6d6d6742a59886fb07f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/61eb9d48a6d8e6d6d6742a59886fb07f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/61eb9d48a6d8e6d6d6742a59886fb07f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC12201440", + "BPM": 0, + "Duration": 232, + "ReleaseDate": "2022-06-29", + "AlbumName": "Bad Habit", + "Explicit": true, + "Rank": 827473, + "Tags": [ + "Pop", + "R&B", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 65574, + "name": "Steve Lacy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "R&B" + ] + }, + { + "SongId": 483, + "Name": "Bad Habits", + "Artists": "Ed Sheeran", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "3rmo8F54jFF8OgYsqTxm5d", + "DeezerID": 1409072752, + "DeezerURL": "https://www.deezer.com/track/1409072752", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/63af28b4e046c59293eaf313be13f8f7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/63af28b4e046c59293eaf313be13f8f7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/63af28b4e046c59293eaf313be13f8f7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/63af28b4e046c59293eaf313be13f8f7/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS2100318", + "BPM": 0, + "Duration": 230, + "ReleaseDate": "2021-06-25", + "AlbumName": "Bad Habits", + "Explicit": false, + "Rank": 916833, + "Tags": [ + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 483, + "Name": "Bad Habits", + "Artists": "Ed Sheeran", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "3rmo8F54jFF8OgYsqTxm5d", + "DeezerID": 1409072752, + "DeezerURL": "https://www.deezer.com/track/1409072752", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/63af28b4e046c59293eaf313be13f8f7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/63af28b4e046c59293eaf313be13f8f7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/63af28b4e046c59293eaf313be13f8f7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/63af28b4e046c59293eaf313be13f8f7/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS2100318", + "BPM": 0, + "Duration": 230, + "ReleaseDate": "2021-06-25", + "AlbumName": "Bad Habits", + "Explicit": false, + "Rank": 916833, + "Tags": [ + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 11, + "Name": "Bad Romance", + "Artists": "Lady Gaga", + "Color": "E1380A", + "DarkColor": "BB0023", + "SongMetaId": null, + "SpotifyId": "0SiywuOBRcynK0uKGWdCnn", + "DeezerID": 4601933, + "DeezerURL": "https://www.deezer.com/track/4601933", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/113b8636fb6571bd9d6a50a5fe9b37ff/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/113b8636fb6571bd9d6a50a5fe9b37ff/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/113b8636fb6571bd9d6a50a5fe9b37ff/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/113b8636fb6571bd9d6a50a5fe9b37ff/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70903859", + "BPM": 118.8, + "Duration": 295, + "ReleaseDate": "2009-10-26", + "AlbumName": "Bad Romance", + "Explicit": false, + "Rank": 936855, + "Tags": [ + "Pop", + "bpm:118.8", + "medium", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 75491, + "name": "Lady Gaga", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 11, + "Name": "Bad Romance", + "Artists": "Lady Gaga", + "Color": "E1380A", + "DarkColor": "BB0023", + "SongMetaId": null, + "SpotifyId": "0SiywuOBRcynK0uKGWdCnn", + "DeezerID": 4601933, + "DeezerURL": "https://www.deezer.com/track/4601933", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/113b8636fb6571bd9d6a50a5fe9b37ff/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/113b8636fb6571bd9d6a50a5fe9b37ff/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/113b8636fb6571bd9d6a50a5fe9b37ff/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/113b8636fb6571bd9d6a50a5fe9b37ff/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70903859", + "BPM": 118.8, + "Duration": 295, + "ReleaseDate": "2009-10-26", + "AlbumName": "Bad Romance", + "Explicit": false, + "Rank": 936855, + "Tags": [ + "Pop", + "bpm:118.8", + "medium", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 75491, + "name": "Lady Gaga", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 318, + "Name": "Baddie", + "Artists": "MK xyz", + "Color": "DAB624", + "DarkColor": "DCA100", + "SongMetaId": null, + "SpotifyId": "64cHs4MX20D7ExGWQyZHLd", + "DeezerID": 1891112167, + "DeezerURL": "https://www.deezer.com/track/1891112167", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/003d8af402e81b99e8bdaaf67eca96e5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/003d8af402e81b99e8bdaaf67eca96e5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/003d8af402e81b99e8bdaaf67eca96e5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/003d8af402e81b99e8bdaaf67eca96e5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12206609", + "BPM": 0, + "Duration": 158, + "ReleaseDate": "2022-09-02", + "AlbumName": "Baddie", + "Explicit": false, + "Rank": 267460, + "Tags": [ + "R&B", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 95431562, + "name": "MK xyz", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 123, + "Name": "Bam Bam", + "Artists": "Camila Cabello, Ed Sheeran", + "Color": "4579C1", + "DarkColor": "2F4681", + "SongMetaId": null, + "SpotifyId": "0QBzMgT7NIeoCYy3sJCof1", + "DeezerID": 1666673152, + "DeezerURL": "https://www.deezer.com/track/1666673152", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/28cb1aaa68fe58feccb15f023ef2e5d1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/28cb1aaa68fe58feccb15f023ef2e5d1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/28cb1aaa68fe58feccb15f023ef2e5d1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/28cb1aaa68fe58feccb15f023ef2e5d1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12200047", + "BPM": 0, + "Duration": 206, + "ReleaseDate": "2022-03-04", + "AlbumName": "Bam Bam (feat. Ed Sheeran)", + "Explicit": false, + "Rank": 911468, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 9236850, + "name": "Camila Cabello", + "role": "Main" + }, + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 156, + "Name": "Bang Bang", + "Artists": "Jessie J, Ariana Grande, Nicki Minaj", + "Color": "BD9C62", + "DarkColor": "796044", + "SongMetaId": null, + "SpotifyId": "0puf9yIluy9W0vpMEUoAnN", + "DeezerID": 81609384, + "DeezerURL": "https://www.deezer.com/track/81609384", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e436fcd3350dc5fe2adbf59516f6cbe7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e436fcd3350dc5fe2adbf59516f6cbe7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e436fcd3350dc5fe2adbf59516f6cbe7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e436fcd3350dc5fe2adbf59516f6cbe7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71409737", + "BPM": 0, + "Duration": 198, + "ReleaseDate": "2014-07-29", + "AlbumName": "Bang Bang", + "Explicit": false, + "Rank": 800267, + "Tags": [ + "Pop", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 985109, + "name": "Jessie J", + "role": "Main" + }, + { + "id": 1562681, + "name": "Ariana Grande", + "role": "Main" + }, + { + "id": 382937, + "name": "Nicki Minaj", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 156, + "Name": "Bang Bang", + "Artists": "Jessie J, Ariana Grande, Nicki Minaj", + "Color": "BD9C62", + "DarkColor": "796044", + "SongMetaId": null, + "SpotifyId": "0puf9yIluy9W0vpMEUoAnN", + "DeezerID": 81609384, + "DeezerURL": "https://www.deezer.com/track/81609384", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e436fcd3350dc5fe2adbf59516f6cbe7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e436fcd3350dc5fe2adbf59516f6cbe7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e436fcd3350dc5fe2adbf59516f6cbe7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e436fcd3350dc5fe2adbf59516f6cbe7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71409737", + "BPM": 0, + "Duration": 198, + "ReleaseDate": "2014-07-29", + "AlbumName": "Bang Bang", + "Explicit": false, + "Rank": 800267, + "Tags": [ + "Pop", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 985109, + "name": "Jessie J", + "role": "Main" + }, + { + "id": 1562681, + "name": "Ariana Grande", + "role": "Main" + }, + { + "id": 382937, + "name": "Nicki Minaj", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 399, + "Name": "Bank Account", + "Artists": "21 Savage", + "Color": "CA6271", + "DarkColor": "7A2A32", + "SongMetaId": null, + "SpotifyId": "5eqK0tbzUPo2SoeZsov04s", + "DeezerID": 380536131, + "DeezerURL": "https://www.deezer.com/track/380536131", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e31287495f374bc12d135a7ea344d2c5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e31287495f374bc12d135a7ea344d2c5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e31287495f374bc12d135a7ea344d2c5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e31287495f374bc12d135a7ea344d2c5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM11705546", + "BPM": 149.8, + "Duration": 220, + "ReleaseDate": "2017-07-07", + "AlbumName": "Issa Album", + "Explicit": true, + "Rank": 716893, + "Tags": [ + "Rap/Hip Hop", + "bpm:149.8", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 6853403, + "name": "21 Savage", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 284, + "Name": "Basket Case", + "Artists": "Green Day", + "Color": "AE853B", + "DarkColor": "97551D", + "SongMetaId": null, + "SpotifyId": "6L89mwZXSOwYl76YXfX13s", + "DeezerID": 678044, + "DeezerURL": "https://www.deezer.com/track/678044", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1e17054b7bfa6576f64ea867b71ef479/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1e17054b7bfa6576f64ea867b71ef479/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1e17054b7bfa6576f64ea867b71ef479/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1e17054b7bfa6576f64ea867b71ef479/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRE19900151", + "BPM": 175.2, + "Duration": 181, + "ReleaseDate": "1994-01-28", + "AlbumName": "Dookie", + "Explicit": false, + "Rank": 886725, + "Tags": [ + "Alternativo", + "Indie rock/Rock pop", + "Rock", + "bpm:175.2", + "medium-length", + "very-fast", + "year:1994" + ], + "Contributors": [ + { + "id": 52, + "name": "Green Day", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock", + "Indie rock/Rock pop" + ] + }, + { + "SongId": 284, + "Name": "Basket Case", + "Artists": "Green Day", + "Color": "AE853B", + "DarkColor": "97551D", + "SongMetaId": null, + "SpotifyId": "6L89mwZXSOwYl76YXfX13s", + "DeezerID": 678044, + "DeezerURL": "https://www.deezer.com/track/678044", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1e17054b7bfa6576f64ea867b71ef479/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1e17054b7bfa6576f64ea867b71ef479/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1e17054b7bfa6576f64ea867b71ef479/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1e17054b7bfa6576f64ea867b71ef479/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRE19900151", + "BPM": 175.2, + "Duration": 181, + "ReleaseDate": "1994-01-28", + "AlbumName": "Dookie", + "Explicit": false, + "Rank": 886725, + "Tags": [ + "Alternativo", + "Indie rock/Rock pop", + "Rock", + "bpm:175.2", + "medium-length", + "very-fast", + "year:1994" + ], + "Contributors": [ + { + "id": 52, + "name": "Green Day", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock", + "Indie rock/Rock pop" + ] + }, + { + "SongId": 487, + "Name": "Be Careful With A Fool", + "Artists": "Johnny Winter", + "Color": "A79273", + "DarkColor": "453B33", + "SongMetaId": null, + "SpotifyId": "3YGsgJqtIWKjMjZtKLk11Z", + "DeezerID": 581562, + "DeezerURL": "https://www.deezer.com/track/581562", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dfd5cce0e61b966c21df36693d77cbde/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dfd5cce0e61b966c21df36693d77cbde/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dfd5cce0e61b966c21df36693d77cbde/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dfd5cce0e61b966c21df36693d77cbde/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM16900153", + "BPM": 102.3, + "Duration": 315, + "ReleaseDate": "2003-08-02", + "AlbumName": "Johnny Winter", + "Explicit": false, + "Rank": 441931, + "Tags": [ + "Rock", + "bpm:102.3", + "long", + "medium", + "year:2003" + ], + "Contributors": [ + { + "id": 4191, + "name": "Johnny Winter", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 487, + "Name": "Be Careful With A Fool", + "Artists": "Johnny Winter", + "Color": "A79273", + "DarkColor": "453B33", + "SongMetaId": null, + "SpotifyId": "3YGsgJqtIWKjMjZtKLk11Z", + "DeezerID": 581562, + "DeezerURL": "https://www.deezer.com/track/581562", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dfd5cce0e61b966c21df36693d77cbde/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dfd5cce0e61b966c21df36693d77cbde/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dfd5cce0e61b966c21df36693d77cbde/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dfd5cce0e61b966c21df36693d77cbde/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM16900153", + "BPM": 102.3, + "Duration": 315, + "ReleaseDate": "2003-08-02", + "AlbumName": "Johnny Winter", + "Explicit": false, + "Rank": 441931, + "Tags": [ + "Rock", + "bpm:102.3", + "long", + "medium", + "year:2003" + ], + "Contributors": [ + { + "id": 4191, + "name": "Johnny Winter", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 569, + "Name": "Be Where You Are", + "Artists": "The Indiana Drones", + "Color": "B58C9C", + "DarkColor": "936D7C", + "SongMetaId": null, + "SpotifyId": "5uuwTLMNENP81NJFtsMLKg", + "DeezerID": 1073875892, + "DeezerURL": "https://www.deezer.com/track/1073875892", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4ea6b763fca13f2bbca062b37561d4be/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4ea6b763fca13f2bbca062b37561d4be/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4ea6b763fca13f2bbca062b37561d4be/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4ea6b763fca13f2bbca062b37561d4be/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA66Q2000010", + "BPM": 0, + "Duration": 179, + "ReleaseDate": "2020-09-14", + "AlbumName": "Squalls, Vol. 2", + "Explicit": false, + "Rank": 51123, + "Tags": [ + "Alternativo", + "Rock", + "short", + "year:2020" + ], + "Contributors": [ + { + "id": 11717641, + "name": "The Indiana Drones", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock" + ] + }, + { + "SongId": 569, + "Name": "Be Where You Are", + "Artists": "The Indiana Drones", + "Color": "B58C9C", + "DarkColor": "936D7C", + "SongMetaId": null, + "SpotifyId": "5uuwTLMNENP81NJFtsMLKg", + "DeezerID": 1073875892, + "DeezerURL": "https://www.deezer.com/track/1073875892", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4ea6b763fca13f2bbca062b37561d4be/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4ea6b763fca13f2bbca062b37561d4be/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4ea6b763fca13f2bbca062b37561d4be/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4ea6b763fca13f2bbca062b37561d4be/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA66Q2000010", + "BPM": 0, + "Duration": 179, + "ReleaseDate": "2020-09-14", + "AlbumName": "Squalls, Vol. 2", + "Explicit": false, + "Rank": 51123, + "Tags": [ + "Alternativo", + "Rock", + "short", + "year:2020" + ], + "Contributors": [ + { + "id": 11717641, + "name": "The Indiana Drones", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock" + ] + }, + { + "SongId": 702, + "Name": "Beautiful Things", + "Artists": "Benson Boone", + "Color": "BD9C62", + "DarkColor": "796044", + "SongMetaId": null, + "SpotifyId": "6tNQ70jh4OwmPGpYy6R2o9", + "DeezerID": 2674548842, + "DeezerURL": "https://www.deezer.com/track/2674548842", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ab1ae3011977aa3c7f0a5f025a99cac9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ab1ae3011977aa3c7f0a5f025a99cac9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ab1ae3011977aa3c7f0a5f025a99cac9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ab1ae3011977aa3c7f0a5f025a99cac9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB12400851", + "BPM": 0, + "Duration": 201, + "ReleaseDate": "2024-02-23", + "AlbumName": "Beautiful Things (Alternate Versions)", + "Explicit": false, + "Rank": 925105, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 146543992, + "name": "Benson Boone", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 702, + "Name": "Beautiful Things", + "Artists": "Benson Boone", + "Color": "BD9C62", + "DarkColor": "796044", + "SongMetaId": null, + "SpotifyId": "6tNQ70jh4OwmPGpYy6R2o9", + "DeezerID": 2674548842, + "DeezerURL": "https://www.deezer.com/track/2674548842", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ab1ae3011977aa3c7f0a5f025a99cac9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ab1ae3011977aa3c7f0a5f025a99cac9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ab1ae3011977aa3c7f0a5f025a99cac9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ab1ae3011977aa3c7f0a5f025a99cac9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB12400851", + "BPM": 0, + "Duration": 201, + "ReleaseDate": "2024-02-23", + "AlbumName": "Beautiful Things (Alternate Versions)", + "Explicit": false, + "Rank": 925105, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 146543992, + "name": "Benson Boone", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 15, + "Name": "Before You Go", + "Artists": "Lewis Capaldi", + "Color": "CA2728", + "DarkColor": "7E000F", + "SongMetaId": null, + "SpotifyId": "2gMXnyrvIjhVBUZwvLZDMP", + "DeezerID": 807205422, + "DeezerURL": "https://www.deezer.com/track/807205422", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/327a13284c291832cf01622a414847c9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/327a13284c291832cf01622a414847c9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/327a13284c291832cf01622a414847c9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/327a13284c291832cf01622a414847c9/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEUM71905868", + "BPM": 112.04, + "Duration": 215, + "ReleaseDate": "2019-11-19", + "AlbumName": "Before You Go", + "Explicit": false, + "Rank": 891275, + "Tags": [ + "Alternativo", + "bpm:112.04", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 12088868, + "name": "Lewis Capaldi", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 62, + "Name": "Believer", + "Artists": "Imagine Dragons", + "Color": "6075B2", + "DarkColor": "3C4784", + "SongMetaId": null, + "SpotifyId": "0pqnGHJpmpxLKifKRmU6WP", + "DeezerID": 528330441, + "DeezerURL": "https://www.deezer.com/track/528330441", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/247b228179aea3b083eef43522b78b45/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/247b228179aea3b083eef43522b78b45/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/247b228179aea3b083eef43522b78b45/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/247b228179aea3b083eef43522b78b45/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71700626", + "BPM": 124.91, + "Duration": 202, + "ReleaseDate": "2018-02-23", + "AlbumName": "Evolve", + "Explicit": false, + "Rank": 978978, + "Tags": [ + "Alternativo", + "bpm:124.91", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 416239, + "name": "Imagine Dragons", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 62, + "Name": "Believer", + "Artists": "Imagine Dragons", + "Color": "6075B2", + "DarkColor": "3C4784", + "SongMetaId": null, + "SpotifyId": "0pqnGHJpmpxLKifKRmU6WP", + "DeezerID": 528330441, + "DeezerURL": "https://www.deezer.com/track/528330441", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/247b228179aea3b083eef43522b78b45/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/247b228179aea3b083eef43522b78b45/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/247b228179aea3b083eef43522b78b45/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/247b228179aea3b083eef43522b78b45/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71700626", + "BPM": 124.91, + "Duration": 202, + "ReleaseDate": "2018-02-23", + "AlbumName": "Evolve", + "Explicit": false, + "Rank": 978978, + "Tags": [ + "Alternativo", + "bpm:124.91", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 416239, + "name": "Imagine Dragons", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 395, + "Name": "Belly Dancer", + "Artists": "Imanbek, BYOR", + "Color": "D370AD", + "DarkColor": "3F2E5C", + "SongMetaId": null, + "SpotifyId": "7fZBQnc0zXwVybgCIrQQil", + "DeezerID": 1650410302, + "DeezerURL": "https://www.deezer.com/track/1650410302", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/795155e998f2b742bfeb540a44772a7d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/795155e998f2b742bfeb540a44772a7d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/795155e998f2b742bfeb540a44772a7d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/795155e998f2b742bfeb540a44772a7d/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLZ542200165", + "BPM": 0, + "Duration": 151, + "ReleaseDate": "2022-02-18", + "AlbumName": "Belly Dancer", + "Explicit": false, + "Rank": 823787, + "Tags": [ + "Dance", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 73101792, + "name": "Imanbek", + "role": "Main" + }, + { + "id": 9511278, + "name": "BYOR", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 535, + "Name": "Better Place", + "Artists": "NSYNC, Justin Timberlake", + "Color": "F5537A", + "DarkColor": "C03152", + "SongMetaId": null, + "SpotifyId": "41iJ5BjMdpW5hAJeS2NGDP", + "DeezerID": 15392506, + "DeezerURL": "https://www.deezer.com/track/15392506", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ff896e095842ed9082df220f34a131aa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ff896e095842ed9082df220f34a131aa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ff896e095842ed9082df220f34a131aa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ff896e095842ed9082df220f34a131aa/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJI10000001", + "BPM": 172.3, + "Duration": 199, + "ReleaseDate": "2000-03-21", + "AlbumName": "No Strings Attached", + "Explicit": false, + "Rank": 496944, + "Tags": [ + "Pop", + "bpm:172.3", + "medium-length", + "very-fast", + "year:2000" + ], + "Contributors": [ + { + "id": 187629, + "name": "N Sync", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 535, + "Name": "Better Place", + "Artists": "NSYNC, Justin Timberlake", + "Color": "F5537A", + "DarkColor": "C03152", + "SongMetaId": null, + "SpotifyId": "41iJ5BjMdpW5hAJeS2NGDP", + "DeezerID": 15392506, + "DeezerURL": "https://www.deezer.com/track/15392506", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ff896e095842ed9082df220f34a131aa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ff896e095842ed9082df220f34a131aa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ff896e095842ed9082df220f34a131aa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ff896e095842ed9082df220f34a131aa/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJI10000001", + "BPM": 172.3, + "Duration": 199, + "ReleaseDate": "2000-03-21", + "AlbumName": "No Strings Attached", + "Explicit": false, + "Rank": 496944, + "Tags": [ + "Pop", + "bpm:172.3", + "medium-length", + "very-fast", + "year:2000" + ], + "Contributors": [ + { + "id": 187629, + "name": "N Sync", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 33, + "Name": "Biscuit Town", + "Artists": "King Krule", + "Color": "FF97CC", + "DarkColor": "DA5CAC", + "SongMetaId": null, + "SpotifyId": "5650dsaBmvp9FuhCLLyijB", + "DeezerID": 413621292, + "DeezerURL": "https://www.deezer.com/track/413621292", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c26e4c98fcf7ba68c2a77668f092ac08/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c26e4c98fcf7ba68c2a77668f092ac08/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c26e4c98fcf7ba68c2a77668f092ac08/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c26e4c98fcf7ba68c2a77668f092ac08/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBKS1700210", + "BPM": 0, + "Duration": 222, + "ReleaseDate": "2017-10-13", + "AlbumName": "The OOZ", + "Explicit": true, + "Rank": 352533, + "Tags": [ + "Alternativo", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 1461568, + "name": "King Krule", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 625, + "Name": "Bizarre Love Triangle", + "Artists": "New Order", + "Color": "B0C0DB", + "DarkColor": "768CAF", + "SongMetaId": null, + "SpotifyId": "6wVViUl2xSRoDK2T7dMZbR", + "DeezerID": 2481156, + "DeezerURL": "https://www.deezer.com/track/2481156", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8504fd77dfccf2456cf32091ae3c23a9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8504fd77dfccf2456cf32091ae3c23a9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8504fd77dfccf2456cf32091ae3c23a9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8504fd77dfccf2456cf32091ae3c23a9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCRL0800398", + "BPM": 122.7, + "Duration": 263, + "ReleaseDate": "2008-09-29", + "AlbumName": "Brotherhood (Collector's Edition)", + "Explicit": false, + "Rank": 506368, + "Tags": [ + "Pop", + "bpm:122.7", + "fast", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 2016, + "name": "New Order", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 625, + "Name": "Bizarre Love Triangle", + "Artists": "New Order", + "Color": "B0C0DB", + "DarkColor": "768CAF", + "SongMetaId": null, + "SpotifyId": "6wVViUl2xSRoDK2T7dMZbR", + "DeezerID": 2481156, + "DeezerURL": "https://www.deezer.com/track/2481156", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8504fd77dfccf2456cf32091ae3c23a9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8504fd77dfccf2456cf32091ae3c23a9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8504fd77dfccf2456cf32091ae3c23a9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8504fd77dfccf2456cf32091ae3c23a9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCRL0800398", + "BPM": 122.7, + "Duration": 263, + "ReleaseDate": "2008-09-29", + "AlbumName": "Brotherhood (Collector's Edition)", + "Explicit": false, + "Rank": 506368, + "Tags": [ + "Pop", + "bpm:122.7", + "fast", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 2016, + "name": "New Order", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 502, + "Name": "Black And Gold", + "Artists": "Sam Sparro", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "3V45D1XTTyVZFN3liYuik6", + "DeezerID": 885918, + "DeezerURL": "https://www.deezer.com/track/885918", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3d6456e90130afc28bf0ef8b080a84f1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3d6456e90130afc28bf0ef8b080a84f1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3d6456e90130afc28bf0ef8b080a84f1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3d6456e90130afc28bf0ef8b080a84f1/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM70800412", + "BPM": 136, + "Duration": 277, + "ReleaseDate": "2008-04-04", + "AlbumName": "Black & Gold", + "Explicit": false, + "Rank": 435912, + "Tags": [ + "R&B", + "bpm:136", + "fast", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 74327, + "name": "Sam Sparro", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 502, + "Name": "Black And Gold", + "Artists": "Sam Sparro", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "3V45D1XTTyVZFN3liYuik6", + "DeezerID": 885918, + "DeezerURL": "https://www.deezer.com/track/885918", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3d6456e90130afc28bf0ef8b080a84f1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3d6456e90130afc28bf0ef8b080a84f1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3d6456e90130afc28bf0ef8b080a84f1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3d6456e90130afc28bf0ef8b080a84f1/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM70800412", + "BPM": 136, + "Duration": 277, + "ReleaseDate": "2008-04-04", + "AlbumName": "Black & Gold", + "Explicit": false, + "Rank": 435912, + "Tags": [ + "R&B", + "bpm:136", + "fast", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 74327, + "name": "Sam Sparro", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 172, + "Name": "Black and Yellow", + "Artists": "Wiz Khalifa", + "Color": "C3C63F", + "DarkColor": "264A23", + "SongMetaId": null, + "SpotifyId": "5A6OHHy73AR5tLxgTc98zz", + "DeezerID": 8035981, + "DeezerURL": "https://www.deezer.com/track/8035981", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/af7203fbcbf4b3ef09e54d30a97323e1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/af7203fbcbf4b3ef09e54d30a97323e1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/af7203fbcbf4b3ef09e54d30a97323e1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/af7203fbcbf4b3ef09e54d30a97323e1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21001800", + "BPM": 164.1, + "Duration": 217, + "ReleaseDate": "2010-09-14", + "AlbumName": "Black and Yellow", + "Explicit": true, + "Rank": 639637, + "Tags": [ + "Rap/Hip Hop", + "bpm:164.1", + "medium-length", + "very-fast", + "year:2010" + ], + "Contributors": [ + { + "id": 74804, + "name": "Wiz Khalifa", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 172, + "Name": "Black and Yellow", + "Artists": "Wiz Khalifa", + "Color": "C3C63F", + "DarkColor": "264A23", + "SongMetaId": null, + "SpotifyId": "5A6OHHy73AR5tLxgTc98zz", + "DeezerID": 8035981, + "DeezerURL": "https://www.deezer.com/track/8035981", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/af7203fbcbf4b3ef09e54d30a97323e1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/af7203fbcbf4b3ef09e54d30a97323e1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/af7203fbcbf4b3ef09e54d30a97323e1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/af7203fbcbf4b3ef09e54d30a97323e1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21001800", + "BPM": 164.1, + "Duration": 217, + "ReleaseDate": "2010-09-14", + "AlbumName": "Black and Yellow", + "Explicit": true, + "Rank": 639637, + "Tags": [ + "Rap/Hip Hop", + "bpm:164.1", + "medium-length", + "very-fast", + "year:2010" + ], + "Contributors": [ + { + "id": 74804, + "name": "Wiz Khalifa", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 470, + "Name": "Black Hole", + "Artists": "Griff", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "6xw8ld1ztoCKifwTN6uGDq", + "DeezerID": 1209288702, + "DeezerURL": "https://www.deezer.com/track/1209288702", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d476312ef092c972d9d48434902d2ae5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d476312ef092c972d9d48434902d2ae5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d476312ef092c972d9d48434902d2ae5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d476312ef092c972d9d48434902d2ae5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT2001109", + "BPM": 0, + "Duration": 200, + "ReleaseDate": "2021-01-18", + "AlbumName": "Black Hole", + "Explicit": false, + "Rank": 489178, + "Tags": [ + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 68939572, + "name": "Griff", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 470, + "Name": "Black Hole", + "Artists": "Griff", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "6xw8ld1ztoCKifwTN6uGDq", + "DeezerID": 1209288702, + "DeezerURL": "https://www.deezer.com/track/1209288702", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d476312ef092c972d9d48434902d2ae5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d476312ef092c972d9d48434902d2ae5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d476312ef092c972d9d48434902d2ae5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d476312ef092c972d9d48434902d2ae5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT2001109", + "BPM": 0, + "Duration": 200, + "ReleaseDate": "2021-01-18", + "AlbumName": "Black Hole", + "Explicit": false, + "Rank": 489178, + "Tags": [ + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 68939572, + "name": "Griff", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 633, + "Name": "Blackout", + "Artists": "Call Me Amour", + "Color": "E4323D", + "DarkColor": "3B010A", + "SongMetaId": null, + "SpotifyId": "56SWKV0782tz3w5iaEEkZ2", + "DeezerID": 2508428861, + "DeezerURL": "https://www.deezer.com/track/2508428861", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e5de0165c80ed3034f75839c2276fee9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e5de0165c80ed3034f75839c2276fee9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e5de0165c80ed3034f75839c2276fee9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e5de0165c80ed3034f75839c2276fee9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBGXD2300031", + "BPM": 0, + "Duration": 171, + "ReleaseDate": "2023-11-17", + "AlbumName": "Revolution", + "Explicit": false, + "Rank": 194890, + "Tags": [ + "Alternativo", + "Pop", + "Rock", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 52887012, + "name": "Call Me Amour", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Pop", + "Rock" + ] + }, + { + "SongId": 633, + "Name": "Blackout", + "Artists": "Call Me Amour", + "Color": "EF323D", + "DarkColor": "3B010A", + "SongMetaId": null, + "SpotifyId": "56SWKV0782tz3w5iaEEkZ2", + "DeezerID": 2508428861, + "DeezerURL": "https://www.deezer.com/track/2508428861", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e5de0165c80ed3034f75839c2276fee9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e5de0165c80ed3034f75839c2276fee9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e5de0165c80ed3034f75839c2276fee9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e5de0165c80ed3034f75839c2276fee9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBGXD2300031", + "BPM": 0, + "Duration": 171, + "ReleaseDate": "2023-11-17", + "AlbumName": "Revolution", + "Explicit": false, + "Rank": 194890, + "Tags": [ + "Alternativo", + "Pop", + "Rock", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 52887012, + "name": "Call Me Amour", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Pop", + "Rock" + ] + }, + { + "SongId": 428, + "Name": "Bleed Me Dry", + "Artists": "Electric Enemy", + "Color": "682A38", + "DarkColor": "321518", + "SongMetaId": null, + "SpotifyId": "6cUm6Pn7qCImY2y7qyuOfv", + "DeezerID": 2078146737, + "DeezerURL": "https://www.deezer.com/track/2078146737", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/46bc77881190f36060418ad86dfb0502/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/46bc77881190f36060418ad86dfb0502/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/46bc77881190f36060418ad86dfb0502/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/46bc77881190f36060418ad86dfb0502/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXO62201369", + "BPM": 0, + "Duration": 136, + "ReleaseDate": "2023-04-21", + "AlbumName": "Electric Enemy", + "Explicit": false, + "Rank": 177238, + "Tags": [ + "Alternativo", + "Pop", + "Rock", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 5712230, + "name": "Electric Enemy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Pop", + "Rock" + ] + }, + { + "SongId": 428, + "Name": "Bleed Me Dry", + "Artists": "Electric Enemy", + "Color": "682A38", + "DarkColor": "321518", + "SongMetaId": null, + "SpotifyId": "6cUm6Pn7qCImY2y7qyuOfv", + "DeezerID": 2078146737, + "DeezerURL": "https://www.deezer.com/track/2078146737", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/46bc77881190f36060418ad86dfb0502/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/46bc77881190f36060418ad86dfb0502/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/46bc77881190f36060418ad86dfb0502/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/46bc77881190f36060418ad86dfb0502/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXO62201369", + "BPM": 0, + "Duration": 136, + "ReleaseDate": "2023-04-21", + "AlbumName": "Electric Enemy", + "Explicit": false, + "Rank": 177238, + "Tags": [ + "Alternativo", + "Pop", + "Rock", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 5712230, + "name": "Electric Enemy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Pop", + "Rock" + ] + }, + { + "SongId": 327, + "Name": "Bleeding Out", + "Artists": "Imagine Dragons", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "6NaBDHz9C7Uz9Z9CwLXQin", + "DeezerID": 63510366, + "DeezerURL": "https://www.deezer.com/track/63510366", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71208569", + "BPM": 169.4, + "Duration": 223, + "ReleaseDate": "2013-02-05", + "AlbumName": "Night Visions", + "Explicit": false, + "Rank": 577542, + "Tags": [ + "Alternativo", + "bpm:169.4", + "medium-length", + "very-fast", + "year:2013" + ], + "Contributors": [ + { + "id": 416239, + "name": "Imagine Dragons", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 41, + "Name": "Blinding Lights", + "Artists": "The Weeknd", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "0VjIjW4GlUZAMYd2vXMi3b", + "DeezerID": 908604612, + "DeezerURL": "https://www.deezer.com/track/908604612", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG11904206", + "BPM": 170.84, + "Duration": 204, + "ReleaseDate": "2020-03-20", + "AlbumName": "After Hours", + "Explicit": false, + "Rank": 984833, + "Tags": [ + "R&B", + "bpm:170.84", + "medium-length", + "very-fast", + "year:2020" + ], + "Contributors": [ + { + "id": 4050205, + "name": "The Weeknd", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 41, + "Name": "Blinding Lights", + "Artists": "The Weeknd", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "0VjIjW4GlUZAMYd2vXMi3b", + "DeezerID": 908604612, + "DeezerURL": "https://www.deezer.com/track/908604612", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG11904206", + "BPM": 170.84, + "Duration": 204, + "ReleaseDate": "2020-03-20", + "AlbumName": "After Hours", + "Explicit": false, + "Rank": 984833, + "Tags": [ + "R&B", + "bpm:170.84", + "medium-length", + "very-fast", + "year:2020" + ], + "Contributors": [ + { + "id": 4050205, + "name": "The Weeknd", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 450, + "Name": "Blue Monday", + "Artists": "New Order", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "6hHc7Pks7wtBIW8Z6A0iFq", + "DeezerID": 706051, + "DeezerURL": "https://www.deezer.com/track/706051", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/90c08c26f9dd3f820e7f732a21edb65d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/90c08c26f9dd3f820e7f732a21edb65d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/90c08c26f9dd3f820e7f732a21edb65d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/90c08c26f9dd3f820e7f732a21edb65d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBANP9400071", + "BPM": 130.4, + "Duration": 244, + "ReleaseDate": "1994-01-01", + "AlbumName": "The Best of New Order", + "Explicit": false, + "Rank": 804721, + "Tags": [ + "Pop", + "bpm:130.4", + "fast", + "medium-length", + "year:1994" + ], + "Contributors": [ + { + "id": 2016, + "name": "New Order", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 450, + "Name": "Blue Monday", + "Artists": "New Order", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "6hHc7Pks7wtBIW8Z6A0iFq", + "DeezerID": 706051, + "DeezerURL": "https://www.deezer.com/track/706051", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/90c08c26f9dd3f820e7f732a21edb65d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/90c08c26f9dd3f820e7f732a21edb65d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/90c08c26f9dd3f820e7f732a21edb65d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/90c08c26f9dd3f820e7f732a21edb65d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBANP9400071", + "BPM": 130.4, + "Duration": 244, + "ReleaseDate": "1994-01-01", + "AlbumName": "The Best of New Order", + "Explicit": false, + "Rank": 804721, + "Tags": [ + "Pop", + "bpm:130.4", + "fast", + "medium-length", + "year:1994" + ], + "Contributors": [ + { + "id": 2016, + "name": "New Order", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 79, + "Name": "Bodysnatchers", + "Artists": "Radiohead", + "Color": "EE492E", + "DarkColor": "980915", + "SongMetaId": null, + "SpotifyId": "4pWIwnnqx8k01fuF95UMIg", + "DeezerID": 138546805, + "DeezerURL": "https://www.deezer.com/track/138546805", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a175af9b7d329bc678cb4d26fc13d6de/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a175af9b7d329bc678cb4d26fc13d6de/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a175af9b7d329bc678cb4d26fc13d6de/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a175af9b7d329bc678cb4d26fc13d6de/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBSTK0700002", + "BPM": 166.71, + "Duration": 242, + "ReleaseDate": "2007-12-28", + "AlbumName": "In Rainbows", + "Explicit": false, + "Rank": 624770, + "Tags": [ + "Alternativo", + "bpm:166.71", + "medium-length", + "very-fast", + "year:2007" + ], + "Contributors": [ + { + "id": 399, + "name": "Radiohead", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 328, + "Name": "Bones", + "Artists": "Imagine Dragons", + "Color": "A31F27", + "DarkColor": "750D0C", + "SongMetaId": null, + "SpotifyId": "0HqZX76SFLDz2aW8aiqi7G", + "DeezerID": 1682954137, + "DeezerURL": "https://www.deezer.com/track/1682954137", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1e70dfe85b51bacc19ff4df6f8726800/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1e70dfe85b51bacc19ff4df6f8726800/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1e70dfe85b51bacc19ff4df6f8726800/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1e70dfe85b51bacc19ff4df6f8726800/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72201759", + "BPM": 0, + "Duration": 165, + "ReleaseDate": "2022-03-11", + "AlbumName": "Bones", + "Explicit": false, + "Rank": 960337, + "Tags": [ + "Alternativo", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 416239, + "name": "Imagine Dragons", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 328, + "Name": "Bones", + "Artists": "Imagine Dragons", + "Color": "AC0620", + "DarkColor": "5A0001", + "SongMetaId": null, + "SpotifyId": "0HqZX76SFLDz2aW8aiqi7G", + "DeezerID": 1682954137, + "DeezerURL": "https://www.deezer.com/track/1682954137", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1e70dfe85b51bacc19ff4df6f8726800/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1e70dfe85b51bacc19ff4df6f8726800/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1e70dfe85b51bacc19ff4df6f8726800/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1e70dfe85b51bacc19ff4df6f8726800/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72201759", + "BPM": 0, + "Duration": 165, + "ReleaseDate": "2022-03-11", + "AlbumName": "Bones", + "Explicit": false, + "Rank": 960337, + "Tags": [ + "Alternativo", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 416239, + "name": "Imagine Dragons", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 363, + "Name": "Bonfire", + "Artists": "Knife Party", + "Color": "E51A18", + "DarkColor": "750D0C", + "SongMetaId": null, + "SpotifyId": "0QIYINh2AwmOmdu8CRYvlw", + "DeezerID": 33993921, + "DeezerURL": "https://www.deezer.com/track/33993921", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a62c65fe5d8e972479b74b46d66c902c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a62c65fe5d8e972479b74b46d66c902c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a62c65fe5d8e972479b74b46d66c902c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a62c65fe5d8e972479b74b46d66c902c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT1200225", + "BPM": 173.7, + "Duration": 272, + "ReleaseDate": "2012-05-27", + "AlbumName": "Rage Valley", + "Explicit": false, + "Rank": 479543, + "Tags": [ + "Dance", + "bpm:173.7", + "medium-length", + "very-fast", + "year:2012" + ], + "Contributors": [ + { + "id": 541764, + "name": "Knife Party", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 363, + "Name": "Bonfire", + "Artists": "Knife Party", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "0QIYINh2AwmOmdu8CRYvlw", + "DeezerID": 33993921, + "DeezerURL": "https://www.deezer.com/track/33993921", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a62c65fe5d8e972479b74b46d66c902c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a62c65fe5d8e972479b74b46d66c902c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a62c65fe5d8e972479b74b46d66c902c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a62c65fe5d8e972479b74b46d66c902c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT1200225", + "BPM": 173.7, + "Duration": 272, + "ReleaseDate": "2012-05-27", + "AlbumName": "Rage Valley", + "Explicit": false, + "Rank": 479543, + "Tags": [ + "Dance", + "bpm:173.7", + "medium-length", + "very-fast", + "year:2012" + ], + "Contributors": [ + { + "id": 541764, + "name": "Knife Party", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 253, + "Name": "Bonkers", + "Artists": "Dizzee Rascal, Armand Van Helden", + "Color": "E7456D", + "DarkColor": "671F2D", + "SongMetaId": null, + "SpotifyId": "6ddQ5KCkvCggk3j6KdA0zL", + "DeezerID": 15640851, + "DeezerURL": "https://www.deezer.com/track/15640851", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/04e697b0695be096cc13f9bb756c8dfd/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/04e697b0695be096cc13f9bb756c8dfd/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/04e697b0695be096cc13f9bb756c8dfd/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/04e697b0695be096cc13f9bb756c8dfd/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBPVV0900240", + "BPM": 126, + "Duration": 176, + "ReleaseDate": "2011-12-21", + "AlbumName": "Tongue N' Cheek (Dirtee Deluxe Edition)", + "Explicit": false, + "Rank": 552234, + "Tags": [ + "Rap/Hip Hop", + "bpm:126", + "fast", + "short", + "year:2011" + ], + "Contributors": [ + { + "id": 2388, + "name": "Dizzee Rascal", + "role": "Main" + }, + { + "id": 1079, + "name": "Armand van Helden", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 253, + "Name": "Bonkers", + "Artists": "Dizzee Rascal, Armand Van Helden", + "Color": "F5537A", + "DarkColor": "C03152", + "SongMetaId": null, + "SpotifyId": "6ddQ5KCkvCggk3j6KdA0zL", + "DeezerID": 15640851, + "DeezerURL": "https://www.deezer.com/track/15640851", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/04e697b0695be096cc13f9bb756c8dfd/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/04e697b0695be096cc13f9bb756c8dfd/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/04e697b0695be096cc13f9bb756c8dfd/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/04e697b0695be096cc13f9bb756c8dfd/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBPVV0900240", + "BPM": 126, + "Duration": 176, + "ReleaseDate": "2011-12-21", + "AlbumName": "Tongue N' Cheek (Dirtee Deluxe Edition)", + "Explicit": false, + "Rank": 552234, + "Tags": [ + "Rap/Hip Hop", + "bpm:126", + "fast", + "short", + "year:2011" + ], + "Contributors": [ + { + "id": 2388, + "name": "Dizzee Rascal", + "role": "Main" + }, + { + "id": 1079, + "name": "Armand van Helden", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 566, + "Name": "BOOM", + "Artists": "Bryce Green, 81maantra", + "Color": "FCBC4D", + "DarkColor": "CA7F04", + "SongMetaId": null, + "SpotifyId": "4d4r61Y57r9ncfC26aUVmC", + "DeezerID": 2121026367, + "DeezerURL": "https://www.deezer.com/track/2121026367", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dceb35fd212b2ad5d7a95f75b881bffb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dceb35fd212b2ad5d7a95f75b881bffb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dceb35fd212b2ad5d7a95f75b881bffb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dceb35fd212b2ad5d7a95f75b881bffb/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZFZ42331000", + "BPM": 0, + "Duration": 224, + "ReleaseDate": "2023-01-23", + "AlbumName": "BOOM", + "Explicit": false, + "Rank": 60260, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 10821172, + "name": "Bryce Green", + "role": "Main" + }, + { + "id": 77029092, + "name": "81mAAntra", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 566, + "Name": "BOOM", + "Artists": "Bryce Green, 81maantra", + "Color": "FCBC4D", + "DarkColor": "CA7F04", + "SongMetaId": null, + "SpotifyId": "4d4r61Y57r9ncfC26aUVmC", + "DeezerID": 2121026367, + "DeezerURL": "https://www.deezer.com/track/2121026367", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dceb35fd212b2ad5d7a95f75b881bffb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dceb35fd212b2ad5d7a95f75b881bffb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dceb35fd212b2ad5d7a95f75b881bffb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dceb35fd212b2ad5d7a95f75b881bffb/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZFZ42331000", + "BPM": 0, + "Duration": 224, + "ReleaseDate": "2023-01-23", + "AlbumName": "BOOM", + "Explicit": false, + "Rank": 60260, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 10821172, + "name": "Bryce Green", + "role": "Main" + }, + { + "id": 77029092, + "name": "81mAAntra", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 95, + "Name": "Boom Boom Pow", + "Artists": "The Black Eyed Peas", + "Color": "68FA4E", + "DarkColor": "275D19", + "SongMetaId": null, + "SpotifyId": "3opVsyWVYEAFK9bJAG8Opa", + "DeezerID": 4619462, + "DeezerURL": "https://www.deezer.com/track/4619462", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ea30377840f4ef9ac62406c5e16e9c4b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ea30377840f4ef9ac62406c5e16e9c4b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ea30377840f4ef9ac62406c5e16e9c4b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ea30377840f4ef9ac62406c5e16e9c4b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70955624", + "BPM": 130, + "Duration": 253, + "ReleaseDate": "2009-10-26", + "AlbumName": "THE E.N.D. (THE ENERGY NEVER DIES) (Deluxe Version)", + "Explicit": true, + "Rank": 783059, + "Tags": [ + "Pop", + "bpm:130", + "fast", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 1020109, + "name": "Black Eyed Peas", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 316, + "Name": "Boom Clap", + "Artists": "Charli XCX", + "Color": "F2A3C9", + "DarkColor": "BF4F7C", + "SongMetaId": null, + "SpotifyId": "0Y1MWB026LYxGvhq4EcMiC", + "DeezerID": 94453318, + "DeezerURL": "https://www.deezer.com/track/94453318", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4a3890f719237239b05194425e04a253/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4a3890f719237239b05194425e04a253/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4a3890f719237239b05194425e04a253/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4a3890f719237239b05194425e04a253/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS1400160", + "BPM": 183.8, + "Duration": 169, + "ReleaseDate": "2015-02-13", + "AlbumName": "SUCKER", + "Explicit": false, + "Rank": 656222, + "Tags": [ + "Pop", + "bpm:183.8", + "short", + "very-fast", + "year:2015" + ], + "Contributors": [ + { + "id": 1462230, + "name": "Charli xcx", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 377, + "Name": "Boom, Boom, Boom, Boom!", + "Artists": "Vengaboys", + "Color": "8791FC", + "DarkColor": "313072", + "SongMetaId": null, + "SpotifyId": "5N6M8yDiMV32T6Rkzh8EbW", + "DeezerID": 1802253167, + "DeezerURL": "https://www.deezer.com/track/1802253167", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/41e71f8047038de8d35f1e378c518cf7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/41e71f8047038de8d35f1e378c518cf7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/41e71f8047038de8d35f1e378c518cf7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/41e71f8047038de8d35f1e378c518cf7/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLC529811150", + "BPM": 0, + "Duration": 202, + "ReleaseDate": "2022-07-01", + "AlbumName": "Boom, Boom, Boom, Boom!!", + "Explicit": false, + "Rank": 773470, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 765, + "name": "Vengaboys", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 346, + "Name": "Born To Be Wild", + "Artists": "Steppenwolf", + "Color": "BB3E4E", + "DarkColor": "601F2A", + "SongMetaId": null, + "SpotifyId": "39vX5jwuZ1ye6YDIGNfXog", + "DeezerID": 540202122, + "DeezerURL": "https://www.deezer.com/track/540202122", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/164e4c358a1984b300a62de87cbd2948/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/164e4c358a1984b300a62de87cbd2948/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/164e4c358a1984b300a62de87cbd2948/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/164e4c358a1984b300a62de87cbd2948/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC16846563", + "BPM": 146.61, + "Duration": 208, + "ReleaseDate": "2018-08-10", + "AlbumName": "Born To Be Wild (Best Of....)", + "Explicit": false, + "Rank": 812488, + "Tags": [ + "Rock", + "bpm:146.61", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 1172, + "name": "Steppenwolf", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 561, + "Name": "boy", + "Artists": "The Killers", + "Color": "EE492E", + "DarkColor": "980915", + "SongMetaId": null, + "SpotifyId": "3Qw0WuniULBdYjXe2jsqCy", + "DeezerID": 1843894217, + "DeezerURL": "https://www.deezer.com/track/1843894217", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4fb563024cc0af77c382b0c92b21d279/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4fb563024cc0af77c382b0c92b21d279/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4fb563024cc0af77c382b0c92b21d279/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4fb563024cc0af77c382b0c92b21d279/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12204694", + "BPM": 0, + "Duration": 198, + "ReleaseDate": "2022-08-05", + "AlbumName": "boy", + "Explicit": false, + "Rank": 477353, + "Tags": [ + "Alternativo", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 561, + "Name": "boy", + "Artists": "The Killers", + "Color": "EE492E", + "DarkColor": "980915", + "SongMetaId": null, + "SpotifyId": "3Qw0WuniULBdYjXe2jsqCy", + "DeezerID": 1843894217, + "DeezerURL": "https://www.deezer.com/track/1843894217", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4fb563024cc0af77c382b0c92b21d279/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4fb563024cc0af77c382b0c92b21d279/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4fb563024cc0af77c382b0c92b21d279/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4fb563024cc0af77c382b0c92b21d279/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12204694", + "BPM": 0, + "Duration": 198, + "ReleaseDate": "2022-08-05", + "AlbumName": "boy", + "Explicit": false, + "Rank": 477353, + "Tags": [ + "Alternativo", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 173, + "Name": "Brawl Stars Theme", + "Artists": "Supercell", + "Color": "9C56DA", + "DarkColor": "5B31A1", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 12, + "Name": "Break Free", + "Artists": "Ariana Grande, Zedd", + "Color": "F37093", + "DarkColor": "9F2F5D", + "SongMetaId": null, + "SpotifyId": "12KUFSHFgT0XCoiSlvdQi4", + "DeezerID": 83844544, + "DeezerURL": "https://www.deezer.com/track/83844544", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b5021d5a88c44071a97416c65d4dbdd9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b5021d5a88c44071a97416c65d4dbdd9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b5021d5a88c44071a97416c65d4dbdd9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b5021d5a88c44071a97416c65d4dbdd9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71409719", + "BPM": 0, + "Duration": 214, + "ReleaseDate": "2014-08-25", + "AlbumName": "My Everything", + "Explicit": false, + "Rank": 771997, + "Tags": [ + "Pop", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 1562681, + "name": "Ariana Grande", + "role": "Main" + }, + { + "id": 1198612, + "name": "ZEDD", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 492, + "Name": "Breaking The Law", + "Artists": "Judas Priest", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": null, + "SpotifyId": "2RaA6kIcvomt77qlIgGhCT", + "DeezerID": 557625, + "DeezerURL": "https://www.deezer.com/track/557625", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/89de830c50ac44b2ed8ed096e205335e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/89de830c50ac44b2ed8ed096e205335e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/89de830c50ac44b2ed8ed096e205335e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/89de830c50ac44b2ed8ed096e205335e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBBN8000007", + "BPM": 0, + "Duration": 153, + "ReleaseDate": "1993-04-28", + "AlbumName": "Metal Works '73-'93", + "Explicit": false, + "Rank": 670957, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "short", + "year:1993" + ], + "Contributors": [ + { + "id": 533, + "name": "Judas Priest", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 492, + "Name": "Breaking The Law", + "Artists": "Judas Priest", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": null, + "SpotifyId": "2RaA6kIcvomt77qlIgGhCT", + "DeezerID": 557625, + "DeezerURL": "https://www.deezer.com/track/557625", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/89de830c50ac44b2ed8ed096e205335e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/89de830c50ac44b2ed8ed096e205335e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/89de830c50ac44b2ed8ed096e205335e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/89de830c50ac44b2ed8ed096e205335e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBBN8000007", + "BPM": 0, + "Duration": 153, + "ReleaseDate": "1993-04-28", + "AlbumName": "Metal Works '73-'93", + "Explicit": false, + "Rank": 670957, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "short", + "year:1993" + ], + "Contributors": [ + { + "id": 533, + "name": "Judas Priest", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 679, + "Name": "Bring Me To Life", + "Artists": "Evanescence", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": "5", + "SpotifyId": "0COqiPhxzoWICwFCS4eZcp", + "DeezerID": 80274512, + "DeezerURL": "https://www.deezer.com/track/80274512", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/56c02d3764f5a078ceecd27b64b7d789/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/56c02d3764f5a078ceecd27b64b7d789/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/56c02d3764f5a078ceecd27b64b7d789/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/56c02d3764f5a078ceecd27b64b7d789/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWU30200093", + "BPM": 95, + "Duration": 235, + "ReleaseDate": "2009-09-11", + "AlbumName": "Fallen", + "Explicit": false, + "Rank": 942847, + "Tags": [ + "Rock", + "bpm:95", + "medium", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 98, + "name": "Evanescence", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 679, + "Name": "Bring Me To Life", + "Artists": "Evanescence", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": "5", + "SpotifyId": "0COqiPhxzoWICwFCS4eZcp", + "DeezerID": 80274512, + "DeezerURL": "https://www.deezer.com/track/80274512", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/56c02d3764f5a078ceecd27b64b7d789/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/56c02d3764f5a078ceecd27b64b7d789/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/56c02d3764f5a078ceecd27b64b7d789/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/56c02d3764f5a078ceecd27b64b7d789/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWU30200093", + "BPM": 95, + "Duration": 235, + "ReleaseDate": "2009-09-11", + "AlbumName": "Fallen", + "Explicit": false, + "Rank": 942847, + "Tags": [ + "Rock", + "bpm:95", + "medium", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 98, + "name": "Evanescence", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 402, + "Name": "Broken Boy", + "Artists": "Cage the Elephant", + "Color": "0096AD", + "DarkColor": "1C6A86", + "SongMetaId": null, + "SpotifyId": "0RbcDELsGTciLeMGsSdJAc", + "DeezerID": 662091312, + "DeezerURL": "https://www.deezer.com/track/662091312", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c86e2bdc9ad74ab426d7f3153663520b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c86e2bdc9ad74ab426d7f3153663520b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c86e2bdc9ad74ab426d7f3153663520b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c86e2bdc9ad74ab426d7f3153663520b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11803823", + "BPM": 166.04, + "Duration": 163, + "ReleaseDate": "2019-04-19", + "AlbumName": "Social Cues", + "Explicit": false, + "Rank": 525866, + "Tags": [ + "Alternativo", + "bpm:166.04", + "short", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 214810, + "name": "Cage The Elephant", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 290, + "Name": "Brown Sugar", + "Artists": "D'Angelo", + "Color": "AB5624", + "DarkColor": "781A0A", + "SongMetaId": null, + "SpotifyId": "7rt0kEDWRg3pgTZJKuszoE", + "DeezerID": 139103999, + "DeezerURL": "https://www.deezer.com/track/139103999", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1e627aca5ceb452dbc527f06c333e1c7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1e627aca5ceb452dbc527f06c333e1c7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1e627aca5ceb452dbc527f06c333e1c7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1e627aca5ceb452dbc527f06c333e1c7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USEM39500079", + "BPM": 83.02, + "Duration": 262, + "ReleaseDate": "2000-07-17", + "AlbumName": "Brown Sugar", + "Explicit": true, + "Rank": 568901, + "Tags": [ + "R&B", + "bpm:83.02", + "medium-length", + "slow", + "year:2000" + ], + "Contributors": [ + { + "id": 5004, + "name": "D'Angelo", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 568, + "Name": "brutal", + "Artists": "Olivia Rodrigo", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "6SRsiMl7w1USE4mFqrOhHC", + "DeezerID": 1378342572, + "DeezerURL": "https://www.deezer.com/track/1378342572", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12101242", + "BPM": 0, + "Duration": 144, + "ReleaseDate": "2021-05-21", + "AlbumName": "SOUR", + "Explicit": true, + "Rank": 716439, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 11152580, + "name": "Olivia Rodrigo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 568, + "Name": "brutal", + "Artists": "Olivia Rodrigo", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "6SRsiMl7w1USE4mFqrOhHC", + "DeezerID": 1378342572, + "DeezerURL": "https://www.deezer.com/track/1378342572", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12101242", + "BPM": 0, + "Duration": 144, + "ReleaseDate": "2021-05-21", + "AlbumName": "SOUR", + "Explicit": true, + "Rank": 716439, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 11152580, + "name": "Olivia Rodrigo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 225, + "Name": "Buck Rogers", + "Artists": "Feeder", + "Color": "CC1B71", + "DarkColor": "7A1051", + "SongMetaId": null, + "SpotifyId": "4ZlI4FCdl58wfz4apzVRHE", + "DeezerID": 131233178, + "DeezerURL": "https://www.deezer.com/track/131233178", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5fa789280f4c2998f0d6d3aba8fa06d9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5fa789280f4c2998f0d6d3aba8fa06d9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5fa789280f4c2998f0d6d3aba8fa06d9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5fa789280f4c2998f0d6d3aba8fa06d9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBND0000727", + "BPM": 120.89, + "Duration": 192, + "ReleaseDate": "2013-07-26", + "AlbumName": "The Singles", + "Explicit": false, + "Rank": 393174, + "Tags": [ + "Rock", + "bpm:120.89", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 2305, + "name": "Feeder", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 225, + "Name": "Buck Rogers", + "Artists": "Feeder", + "Color": "CF2380", + "DarkColor": "922438", + "SongMetaId": null, + "SpotifyId": "4ZlI4FCdl58wfz4apzVRHE", + "DeezerID": 131233178, + "DeezerURL": "https://www.deezer.com/track/131233178", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5fa789280f4c2998f0d6d3aba8fa06d9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5fa789280f4c2998f0d6d3aba8fa06d9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5fa789280f4c2998f0d6d3aba8fa06d9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5fa789280f4c2998f0d6d3aba8fa06d9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBND0000727", + "BPM": 120.89, + "Duration": 192, + "ReleaseDate": "2013-07-26", + "AlbumName": "The Singles", + "Explicit": false, + "Rank": 393174, + "Tags": [ + "Rock", + "bpm:120.89", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 2305, + "name": "Feeder", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 457, + "Name": "Burn This House", + "Artists": "J. Worra, Little Boots", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "5FE8EbAE3ahtDj2rwnUvHm", + "DeezerID": 2080029007, + "DeezerURL": "https://www.deezer.com/track/2080029007", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a85b6a52a735930bde4eb2455ef08231/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a85b6a52a735930bde4eb2455ef08231/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a85b6a52a735930bde4eb2455ef08231/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a85b6a52a735930bde4eb2455ef08231/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2228110", + "BPM": 0, + "Duration": 215, + "ReleaseDate": "2022-04-29", + "AlbumName": "Burn This House", + "Explicit": false, + "Rank": 197000, + "Tags": [ + "Dance", + "Electro", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 7499596, + "name": "J. Worra", + "role": "Main" + }, + { + "id": 153739, + "name": "Little Boots", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 457, + "Name": "Burn This House", + "Artists": "J. Worra, Little Boots", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "5FE8EbAE3ahtDj2rwnUvHm", + "DeezerID": 2080029007, + "DeezerURL": "https://www.deezer.com/track/2080029007", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a85b6a52a735930bde4eb2455ef08231/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a85b6a52a735930bde4eb2455ef08231/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a85b6a52a735930bde4eb2455ef08231/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a85b6a52a735930bde4eb2455ef08231/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2228110", + "BPM": 0, + "Duration": 215, + "ReleaseDate": "2022-04-29", + "AlbumName": "Burn This House", + "Explicit": false, + "Rank": 197000, + "Tags": [ + "Dance", + "Electro", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 7499596, + "name": "J. Worra", + "role": "Main" + }, + { + "id": 153739, + "name": "Little Boots", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 177, + "Name": "Bury It", + "Artists": "CHVRCHES", + "Color": "D18C91", + "DarkColor": "522A39", + "SongMetaId": null, + "SpotifyId": "7cW0NGAPdJhPIwS8is2N9q", + "DeezerID": 3025869651, + "DeezerURL": "https://www.deezer.com/track/3025869651", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d412dc0db509ae7b4b8fa86b28f8f1b3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d412dc0db509ae7b4b8fa86b28f8f1b3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d412dc0db509ae7b4b8fa86b28f8f1b3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d412dc0db509ae7b4b8fa86b28f8f1b3/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBZN81500010", + "BPM": 0, + "Duration": 188, + "ReleaseDate": "2019-02-01", + "AlbumName": "Every Open Eye (Special Edition)", + "Explicit": false, + "Rank": 152280, + "Tags": [ + "Alternativo", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 4052518, + "name": "CHVRCHES", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 433, + "Name": "Busy Earnin", + "Artists": "Jungle", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "5TloYFwzd09yWy8xkRLVUu", + "DeezerID": 80884844, + "DeezerURL": "https://www.deezer.com/track/80884844", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d5e963fd21ef676d1791f819ed8087fe/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d5e963fd21ef676d1791f819ed8087fe/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d5e963fd21ef676d1791f819ed8087fe/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d5e963fd21ef676d1791f819ed8087fe/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBKS1400112", + "BPM": 0, + "Duration": 181, + "ReleaseDate": "2014-07-14", + "AlbumName": "Jungle", + "Explicit": false, + "Rank": 647349, + "Tags": [ + "Electro", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 436163, + "name": "Jungle", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 433, + "Name": "Busy Earnin", + "Artists": "Jungle", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "5TloYFwzd09yWy8xkRLVUu", + "DeezerID": 80884844, + "DeezerURL": "https://www.deezer.com/track/80884844", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d5e963fd21ef676d1791f819ed8087fe/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d5e963fd21ef676d1791f819ed8087fe/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d5e963fd21ef676d1791f819ed8087fe/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d5e963fd21ef676d1791f819ed8087fe/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBKS1400112", + "BPM": 0, + "Duration": 181, + "ReleaseDate": "2014-07-14", + "AlbumName": "Jungle", + "Explicit": false, + "Rank": 647349, + "Tags": [ + "Electro", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 436163, + "name": "Jungle", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 144, + "Name": "Cake By The Ocean", + "Artists": "DNCE", + "Color": "984F25", + "DarkColor": "852F08", + "SongMetaId": null, + "SpotifyId": "76hfruVvmfQbw0eYn1nmeC", + "DeezerID": 136341758, + "DeezerURL": "https://www.deezer.com/track/136341758", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d3380b311743baf8435f616371b95194/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d3380b311743baf8435f616371b95194/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d3380b311743baf8435f616371b95194/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d3380b311743baf8435f616371b95194/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71514637", + "BPM": 119.15, + "Duration": 218, + "ReleaseDate": "2016-11-18", + "AlbumName": "DNCE", + "Explicit": true, + "Rank": 930252, + "Tags": [ + "Pop", + "bpm:119.15", + "medium", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 8898108, + "name": "DNCE", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 144, + "Name": "Cake By The Ocean", + "Artists": "DNCE", + "Color": "984F25", + "DarkColor": "852F08", + "SongMetaId": null, + "SpotifyId": "76hfruVvmfQbw0eYn1nmeC", + "DeezerID": 136341758, + "DeezerURL": "https://www.deezer.com/track/136341758", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d3380b311743baf8435f616371b95194/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d3380b311743baf8435f616371b95194/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d3380b311743baf8435f616371b95194/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d3380b311743baf8435f616371b95194/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71514637", + "BPM": 119.15, + "Duration": 218, + "ReleaseDate": "2016-11-18", + "AlbumName": "DNCE", + "Explicit": true, + "Rank": 930252, + "Tags": [ + "Pop", + "bpm:119.15", + "medium", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 8898108, + "name": "DNCE", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 375, + "Name": "Call Me Maybe", + "Artists": "Carly Rae Jepsen", + "Color": "28AEAA", + "DarkColor": "1C6A86", + "SongMetaId": null, + "SpotifyId": "3TGRqZ0a2l1LRblBkJoaDx", + "DeezerID": 17826508, + "DeezerURL": "https://www.deezer.com/track/17826508", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d59ba2295d91292a8bcb372bad9d88be/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d59ba2295d91292a8bcb372bad9d88be/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d59ba2295d91292a8bcb372bad9d88be/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d59ba2295d91292a8bcb372bad9d88be/1000x1000-000000-80-0-0.jpg", + "ISRC": "CAB391100615", + "BPM": 119.8, + "Duration": 193, + "ReleaseDate": "2012-05-14", + "AlbumName": "Call Me Maybe", + "Explicit": false, + "Rank": 944448, + "Tags": [ + "Pop", + "bpm:119.8", + "medium", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 1002521, + "name": "Carly Rae Jepsen", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 376, + "Name": "Call On Me (Remix)", + "Artists": "Starley, Ryan Riback", + "Color": "28AEAA", + "DarkColor": "1C6A86", + "SongMetaId": null, + "SpotifyId": "2L6orAlH8tBhiFTumIfMyF", + "DeezerID": 2856175892, + "DeezerURL": "https://www.deezer.com/track/2856175892", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f0e712d94710bc847425920b906eafe9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f0e712d94710bc847425920b906eafe9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f0e712d94710bc847425920b906eafe9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f0e712d94710bc847425920b906eafe9/1000x1000-000000-80-0-0.jpg", + "ISRC": "AUUM71601079", + "BPM": 0, + "Duration": 222, + "ReleaseDate": "2020-09-25", + "AlbumName": "One of One", + "Explicit": false, + "Rank": 788402, + "Tags": [ + "Pop", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 10156246, + "name": "Starley", + "role": "Main" + }, + { + "id": 995377, + "name": "Ryan Riback", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 445, + "Name": "Can I Go Away", + "Artists": "Amor Amor", + "Color": "CC3F5D", + "DarkColor": "B42942", + "SongMetaId": null, + "SpotifyId": "4sUr5RMYLppzj139NfnWeB", + "DeezerID": 2058172887, + "DeezerURL": "https://www.deezer.com/track/2058172887", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d1d8b34ad7697adb7e29df34967dc76f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d1d8b34ad7697adb7e29df34967dc76f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d1d8b34ad7697adb7e29df34967dc76f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d1d8b34ad7697adb7e29df34967dc76f/1000x1000-000000-80-0-0.jpg", + "ISRC": "ZA0Y82300001", + "BPM": 0, + "Duration": 192, + "ReleaseDate": "2024-01-30", + "AlbumName": "Can I Go Away", + "Explicit": false, + "Rank": 50468, + "Tags": [ + "Alternativo", + "Indie Pop", + "Indie Rock", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 5950276, + "name": "Amor Amor", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Pop", + "Indie Rock" + ] + }, + { + "SongId": 445, + "Name": "Can I Go Away", + "Artists": "Amor Amor", + "Color": "CC3F5D", + "DarkColor": "B42942", + "SongMetaId": null, + "SpotifyId": "4sUr5RMYLppzj139NfnWeB", + "DeezerID": 2058172887, + "DeezerURL": "https://www.deezer.com/track/2058172887", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d1d8b34ad7697adb7e29df34967dc76f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d1d8b34ad7697adb7e29df34967dc76f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d1d8b34ad7697adb7e29df34967dc76f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d1d8b34ad7697adb7e29df34967dc76f/1000x1000-000000-80-0-0.jpg", + "ISRC": "ZA0Y82300001", + "BPM": 0, + "Duration": 192, + "ReleaseDate": "2024-01-30", + "AlbumName": "Can I Go Away", + "Explicit": false, + "Rank": 50468, + "Tags": [ + "Alternativo", + "Indie Pop", + "Indie Rock", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 5950276, + "name": "Amor Amor", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Pop", + "Indie Rock" + ] + }, + { + "SongId": 155, + "Name": "Can't Feel My Face", + "Artists": "The Weeknd", + "Color": "1A94E2", + "DarkColor": "1168C6", + "SongMetaId": null, + "SpotifyId": "22VdIZQfgXJea34mQxlt81", + "DeezerID": 106506516, + "DeezerURL": "https://www.deezer.com/track/106506516", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/eea9f7fc913300e40307a0ff70dc73cf/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/eea9f7fc913300e40307a0ff70dc73cf/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/eea9f7fc913300e40307a0ff70dc73cf/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/eea9f7fc913300e40307a0ff70dc73cf/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG11500741", + "BPM": 0, + "Duration": 215, + "ReleaseDate": "2015-08-28", + "AlbumName": "Beauty Behind The Madness", + "Explicit": false, + "Rank": 881098, + "Tags": [ + "R&B", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 4050205, + "name": "The Weeknd", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 458, + "Name": "Can't Get You Out Of My Head", + "Artists": "Kylie Minogue", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "3E7ZwUMJFqpsDOJzEkBrQ7", + "DeezerID": 3098100, + "DeezerURL": "https://www.deezer.com/track/3098100", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/786064c48201a628c6ac78028ab4d06f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/786064c48201a628c6ac78028ab4d06f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/786064c48201a628c6ac78028ab4d06f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/786064c48201a628c6ac78028ab4d06f/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE0100913", + "BPM": 126, + "Duration": 230, + "ReleaseDate": "2001-10-01", + "AlbumName": "Fever", + "Explicit": false, + "Rank": 878253, + "Tags": [ + "Rock", + "bpm:126", + "fast", + "medium-length", + "year:2001" + ], + "Contributors": [ + { + "id": 479, + "name": "Kylie Minogue", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 458, + "Name": "Can't Get You Out Of My Head", + "Artists": "Kylie Minogue", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "3E7ZwUMJFqpsDOJzEkBrQ7", + "DeezerID": 3098100, + "DeezerURL": "https://www.deezer.com/track/3098100", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/786064c48201a628c6ac78028ab4d06f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/786064c48201a628c6ac78028ab4d06f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/786064c48201a628c6ac78028ab4d06f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/786064c48201a628c6ac78028ab4d06f/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE0100913", + "BPM": 126, + "Duration": 230, + "ReleaseDate": "2001-10-01", + "AlbumName": "Fever", + "Explicit": false, + "Rank": 878253, + "Tags": [ + "Rock", + "bpm:126", + "fast", + "medium-length", + "year:2001" + ], + "Contributors": [ + { + "id": 479, + "name": "Kylie Minogue", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 176, + "Name": "Can't Hold Us", + "Artists": "Macklemore, Ryan Lewis", + "Color": "E1B47B", + "DarkColor": "97551D", + "SongMetaId": null, + "SpotifyId": "22skzmqfdWrjJylampe0kt", + "DeezerID": 61424044, + "DeezerURL": "https://www.deezer.com/track/61424044", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GMM881200002", + "BPM": 146.09, + "Duration": 258, + "ReleaseDate": "2012-10-09", + "AlbumName": "The Heist", + "Explicit": false, + "Rank": 998821, + "Tags": [ + "Rap/Hip Hop", + "bpm:146.09", + "fast", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 152291, + "name": "Macklemore", + "role": "Main" + }, + { + "id": 75247, + "name": "Ryan Lewis", + "role": "Main" + }, + { + "id": 893222, + "name": "Macklemore & Ryan Lewis", + "role": "Main" + }, + { + "id": 4868195, + "name": "Ray Dalton", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 176, + "Name": "Can't Hold Us", + "Artists": "Macklemore, Ryan Lewis", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "22skzmqfdWrjJylampe0kt", + "DeezerID": 61424044, + "DeezerURL": "https://www.deezer.com/track/61424044", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GMM881200002", + "BPM": 146.09, + "Duration": 258, + "ReleaseDate": "2012-10-09", + "AlbumName": "The Heist", + "Explicit": false, + "Rank": 998821, + "Tags": [ + "Rap/Hip Hop", + "bpm:146.09", + "fast", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 152291, + "name": "Macklemore", + "role": "Main" + }, + { + "id": 75247, + "name": "Ryan Lewis", + "role": "Main" + }, + { + "id": 893222, + "name": "Macklemore & Ryan Lewis", + "role": "Main" + }, + { + "id": 4868195, + "name": "Ray Dalton", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 86, + "Name": "Candy", + "Artists": "Cameo", + "Color": "E86730", + "DarkColor": "911A1A", + "SongMetaId": null, + "SpotifyId": "0Aj8EagrPfDoOe5OlUdrLC", + "DeezerID": 2600935, + "DeezerURL": "https://www.deezer.com/track/2600935", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9c142fb4e95eee8e074d9c5b23e17ac0/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9c142fb4e95eee8e074d9c5b23e17ac0/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9c142fb4e95eee8e074d9c5b23e17ac0/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9c142fb4e95eee8e074d9c5b23e17ac0/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMR18689013", + "BPM": 0, + "Duration": 332, + "ReleaseDate": "1986-01-01", + "AlbumName": "Word Up", + "Explicit": false, + "Rank": 495927, + "Tags": [ + "R&B", + "long", + "year:1986" + ], + "Contributors": [ + { + "id": 3533, + "name": "Cameo", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 153, + "Name": "Candy Cane Lane", + "Artists": "Sia", + "Color": "E9242E", + "DarkColor": "BB0023", + "SongMetaId": null, + "SpotifyId": "4KevTcBXEIYxXVyPE78XXm", + "DeezerID": 576178922, + "DeezerURL": "https://www.deezer.com/track/576178922", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7df325ace6ac30a49289f60240f90f35/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7df325ace6ac30a49289f60240f90f35/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7df325ace6ac30a49289f60240f90f35/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7df325ace6ac30a49289f60240f90f35/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21704211", + "BPM": 0, + "Duration": 212, + "ReleaseDate": "2017-11-17", + "AlbumName": "Everyday Is Christmas (Deluxe Edition)", + "Explicit": false, + "Rank": 462248, + "Tags": [ + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 3469, + "name": "Sia", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 166, + "Name": "Candyman", + "Artists": "Christina Aguilera", + "Color": "E4C188", + "DarkColor": "97551D", + "SongMetaId": null, + "SpotifyId": "5lUTzPuiloBHm1qEaJcJfF", + "DeezerID": 62417689, + "DeezerURL": "https://www.deezer.com/track/62417689", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3aa572afd198583c88297022bf2d9ddb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3aa572afd198583c88297022bf2d9ddb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3aa572afd198583c88297022bf2d9ddb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3aa572afd198583c88297022bf2d9ddb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC10600413", + "BPM": 86.5, + "Duration": 194, + "ReleaseDate": "2006-08-14", + "AlbumName": "Back To Basics", + "Explicit": false, + "Rank": 657034, + "Tags": [ + "Pop", + "bpm:86.5", + "medium-length", + "slow", + "year:2006" + ], + "Contributors": [ + { + "id": 116, + "name": "Christina Aguilera", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 765, + "Name": "Carmen: Overture", + "Artists": "Georges Bizet", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "5DlPv4GcCczDwftPjKLivt", + "DeezerID": 779352, + "DeezerURL": "https://www.deezer.com/track/779352", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/509dacec934c3fdb2434fdfdd3567594/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/509dacec934c3fdb2434fdfdd3567594/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/509dacec934c3fdb2434fdfdd3567594/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/509dacec934c3fdb2434fdfdd3567594/1000x1000-000000-80-0-0.jpg", + "ISRC": "FRZ208211301", + "BPM": 132.5, + "Duration": 128, + "ReleaseDate": "1990-01-01", + "AlbumName": "Bizet : Carmen [Highlights]", + "Explicit": false, + "Rank": 159243, + "Tags": [ + "Clássica", + "bpm:132.5", + "fast", + "short", + "year:1990", + "Ópera" + ], + "Contributors": [ + { + "id": 71312, + "name": "Lorin Maazel", + "role": "Main" + } + ], + "AlbumGenres": [ + "Clássica", + "Ópera" + ] + }, + { + "SongId": 162, + "Name": "Cars", + "Artists": "Gary Numan", + "Color": "23767D", + "DarkColor": "1A5559", + "SongMetaId": null, + "SpotifyId": "4QQEzkxcONBthDLfzqIh9S", + "DeezerID": 938553, + "DeezerURL": "https://www.deezer.com/track/938553", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/43a6b9dea7b51c43476a94af4c339e15/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/43a6b9dea7b51c43476a94af4c339e15/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/43a6b9dea7b51c43476a94af4c339e15/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/43a6b9dea7b51c43476a94af4c339e15/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAZP9700067", + "BPM": 0, + "Duration": 238, + "ReleaseDate": "1998-06-22", + "AlbumName": "The Pleasure Principle", + "Explicit": false, + "Rank": 641799, + "Tags": [ + "Alternativo", + "medium-length", + "year:1998" + ], + "Contributors": [ + { + "id": 2706, + "name": "Gary Numan", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 162, + "Name": "Cars", + "Artists": "Gary Numan", + "Color": "398694", + "DarkColor": "123743", + "SongMetaId": null, + "SpotifyId": "4QQEzkxcONBthDLfzqIh9S", + "DeezerID": 938553, + "DeezerURL": "https://www.deezer.com/track/938553", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/43a6b9dea7b51c43476a94af4c339e15/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/43a6b9dea7b51c43476a94af4c339e15/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/43a6b9dea7b51c43476a94af4c339e15/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/43a6b9dea7b51c43476a94af4c339e15/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAZP9700067", + "BPM": 0, + "Duration": 238, + "ReleaseDate": "1998-06-22", + "AlbumName": "The Pleasure Principle", + "Explicit": false, + "Rank": 641799, + "Tags": [ + "Alternativo", + "medium-length", + "year:1998" + ], + "Contributors": [ + { + "id": 2706, + "name": "Gary Numan", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 666, + "Name": "Castle on the Hill", + "Artists": "Ed Sheeran", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "6PCUP3dWmTjcTtXY02oFdT", + "DeezerID": 142986200, + "DeezerURL": "https://www.deezer.com/track/142986200", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/000a9228cecfcc7c2093d9cd7bb66447/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/000a9228cecfcc7c2093d9cd7bb66447/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/000a9228cecfcc7c2093d9cd7bb66447/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/000a9228cecfcc7c2093d9cd7bb66447/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS1600462", + "BPM": 135.11, + "Duration": 261, + "ReleaseDate": "2017-03-03", + "AlbumName": "÷ (Deluxe)", + "Explicit": false, + "Rank": 830996, + "Tags": [ + "Pop", + "Singer & Songwriter", + "bpm:135.11", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Singer & Songwriter" + ] + }, + { + "SongId": 666, + "Name": "Castle on the Hill", + "Artists": "Ed Sheeran", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "6PCUP3dWmTjcTtXY02oFdT", + "DeezerID": 142986200, + "DeezerURL": "https://www.deezer.com/track/142986200", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/000a9228cecfcc7c2093d9cd7bb66447/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/000a9228cecfcc7c2093d9cd7bb66447/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/000a9228cecfcc7c2093d9cd7bb66447/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/000a9228cecfcc7c2093d9cd7bb66447/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS1600462", + "BPM": 135.11, + "Duration": 261, + "ReleaseDate": "2017-03-03", + "AlbumName": "÷ (Deluxe)", + "Explicit": false, + "Rank": 830996, + "Tags": [ + "Pop", + "Singer & Songwriter", + "bpm:135.11", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Singer & Songwriter" + ] + }, + { + "SongId": 705, + "Name": "Catch-22", + "Artists": "CHAOSBAY", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "1cSZ0Khow6IzW4fHulHpnr", + "DeezerID": 1749324297, + "DeezerURL": "https://www.deezer.com/track/1749324297", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEZZ52170266", + "BPM": 0, + "Duration": 231, + "ReleaseDate": "2022-07-29", + "AlbumName": "2222", + "Explicit": false, + "Rank": 106977, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 7242032, + "name": "Chaosbay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 705, + "Name": "Catch-22", + "Artists": "CHAOSBAY", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "1cSZ0Khow6IzW4fHulHpnr", + "DeezerID": 1749324297, + "DeezerURL": "https://www.deezer.com/track/1749324297", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/445d50668f9fe4a2be7df92248cf76d6/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEZZ52170266", + "BPM": 0, + "Duration": 231, + "ReleaseDate": "2022-07-29", + "AlbumName": "2222", + "Explicit": false, + "Rank": 106977, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 7242032, + "name": "Chaosbay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 197, + "Name": "Chandelier", + "Artists": "Sia", + "Color": "516496", + "DarkColor": "2A2E63", + "SongMetaId": null, + "SpotifyId": "2s1sdSqGcKxpPr5lCl7jAV", + "DeezerID": 79587580, + "DeezerURL": "https://www.deezer.com/track/79587580", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4275db12f5e284b3c2f3e20726187b64/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4275db12f5e284b3c2f3e20726187b64/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4275db12f5e284b3c2f3e20726187b64/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4275db12f5e284b3c2f3e20726187b64/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11400498", + "BPM": 173.71, + "Duration": 216, + "ReleaseDate": "2014-07-04", + "AlbumName": "1000 Forms Of Fear", + "Explicit": false, + "Rank": 937345, + "Tags": [ + "Pop", + "Rock", + "bpm:173.71", + "medium-length", + "very-fast", + "year:2014" + ], + "Contributors": [ + { + "id": 3469, + "name": "Sia", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Rock" + ] + }, + { + "SongId": 197, + "Name": "Chandelier", + "Artists": "Sia", + "Color": "516496", + "DarkColor": "2A2E63", + "SongMetaId": null, + "SpotifyId": "2s1sdSqGcKxpPr5lCl7jAV", + "DeezerID": 79587580, + "DeezerURL": "https://www.deezer.com/track/79587580", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4275db12f5e284b3c2f3e20726187b64/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4275db12f5e284b3c2f3e20726187b64/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4275db12f5e284b3c2f3e20726187b64/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4275db12f5e284b3c2f3e20726187b64/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11400498", + "BPM": 173.71, + "Duration": 216, + "ReleaseDate": "2014-07-04", + "AlbumName": "1000 Forms Of Fear", + "Explicit": false, + "Rank": 937345, + "Tags": [ + "Pop", + "Rock", + "bpm:173.71", + "medium-length", + "very-fast", + "year:2014" + ], + "Contributors": [ + { + "id": 3469, + "name": "Sia", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Rock" + ] + }, + { + "SongId": 7, + "Name": "Cheap Thrills", + "Artists": "Sia", + "Color": "CA6271", + "DarkColor": "7A2A32", + "SongMetaId": null, + "SpotifyId": "3S4px9f4lceWdKf0gWciFu", + "DeezerID": 118195184, + "DeezerURL": "https://www.deezer.com/track/118195184", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5a86a131864e4bfdda6c45c31fdbee3d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5a86a131864e4bfdda6c45c31fdbee3d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5a86a131864e4bfdda6c45c31fdbee3d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5a86a131864e4bfdda6c45c31fdbee3d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11502935", + "BPM": 179.8, + "Duration": 210, + "ReleaseDate": "2016-01-29", + "AlbumName": "This Is Acting", + "Explicit": false, + "Rank": 865906, + "Tags": [ + "Pop", + "bpm:179.8", + "medium-length", + "very-fast", + "year:2016" + ], + "Contributors": [ + { + "id": 3469, + "name": "Sia", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 7, + "Name": "Cheap Thrills", + "Artists": "Sia", + "Color": "CA6271", + "DarkColor": "7A2A32", + "SongMetaId": null, + "SpotifyId": "3S4px9f4lceWdKf0gWciFu", + "DeezerID": 118195184, + "DeezerURL": "https://www.deezer.com/track/118195184", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5a86a131864e4bfdda6c45c31fdbee3d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5a86a131864e4bfdda6c45c31fdbee3d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5a86a131864e4bfdda6c45c31fdbee3d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5a86a131864e4bfdda6c45c31fdbee3d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11502935", + "BPM": 179.8, + "Duration": 210, + "ReleaseDate": "2016-01-29", + "AlbumName": "This Is Acting", + "Explicit": false, + "Rank": 865906, + "Tags": [ + "Pop", + "bpm:179.8", + "medium-length", + "very-fast", + "year:2016" + ], + "Contributors": [ + { + "id": 3469, + "name": "Sia", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 313, + "Name": "Chelsea Dagger", + "Artists": "The Fratellis", + "Color": "ECD599", + "DarkColor": "A5703C", + "SongMetaId": null, + "SpotifyId": "3ItzRpwvKtkDSNdRSjXu7Z", + "DeezerID": 907582, + "DeezerURL": "https://www.deezer.com/track/907582", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5e4b7cc3e633cc96e19bb25131ccc034/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5e4b7cc3e633cc96e19bb25131ccc034/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5e4b7cc3e633cc96e19bb25131ccc034/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5e4b7cc3e633cc96e19bb25131ccc034/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM70601571", + "BPM": 77.3, + "Duration": 214, + "ReleaseDate": "2007-10-22", + "AlbumName": "Xbox Soundtracks Presents...Start", + "Explicit": false, + "Rank": 414359, + "Tags": [ + "Pop", + "bpm:77.3", + "medium-length", + "slow", + "year:2007" + ], + "Contributors": [ + { + "id": 9083, + "name": "The Fratellis", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 573, + "Name": "Chemical", + "Artists": "Post Malone", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "5w40ZYhbBMAlHYNDaVJIUu", + "DeezerID": 2235565007, + "DeezerURL": "https://www.deezer.com/track/2235565007", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0fd4fd4af4831835ab92a6f49ee35311/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0fd4fd4af4831835ab92a6f49ee35311/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0fd4fd4af4831835ab92a6f49ee35311/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0fd4fd4af4831835ab92a6f49ee35311/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72305205", + "BPM": 0, + "Duration": 184, + "ReleaseDate": "2023-04-14", + "AlbumName": "Chemical", + "Explicit": true, + "Rank": 696976, + "Tags": [ + "Pop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 573, + "Name": "Chemical", + "Artists": "Post Malone", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "5w40ZYhbBMAlHYNDaVJIUu", + "DeezerID": 2235565007, + "DeezerURL": "https://www.deezer.com/track/2235565007", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0fd4fd4af4831835ab92a6f49ee35311/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0fd4fd4af4831835ab92a6f49ee35311/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0fd4fd4af4831835ab92a6f49ee35311/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0fd4fd4af4831835ab92a6f49ee35311/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72305205", + "BPM": 0, + "Duration": 184, + "ReleaseDate": "2023-04-14", + "AlbumName": "Chemical", + "Explicit": true, + "Rank": 696976, + "Tags": [ + "Pop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 158, + "Name": "Cherub Rock", + "Artists": "Smashing Pumpkins", + "Color": "D370AD", + "DarkColor": "3F2E5C", + "SongMetaId": null, + "SpotifyId": "4N4LLHDJgfkQxrYP8Cn0I7", + "DeezerID": 14738292, + "DeezerURL": "https://www.deezer.com/track/14738292", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/14fc556f659caee13ababa07f1ede592/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/14fc556f659caee13ababa07f1ede592/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/14fc556f659caee13ababa07f1ede592/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/14fc556f659caee13ababa07f1ede592/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVI21100146", + "BPM": 172.99, + "Duration": 298, + "ReleaseDate": "2011-12-02", + "AlbumName": "Siamese Dream (2011 - Remaster)", + "Explicit": false, + "Rank": 579162, + "Tags": [ + "Rock", + "bpm:172.99", + "medium-length", + "very-fast", + "year:2011" + ], + "Contributors": [ + { + "id": 193331, + "name": "The Smashing Pumpkins", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 293, + "Name": "Chocolate", + "Artists": "The 1975", + "Color": "984F25", + "DarkColor": "852F08", + "SongMetaId": null, + "SpotifyId": "44Ljlpy44mHvLJxcYUvTK0", + "DeezerID": 69941964, + "DeezerURL": "https://www.deezer.com/track/69941964", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/12bf1d03d072a79cda909372610f93cd/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/12bf1d03d072a79cda909372610f93cd/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/12bf1d03d072a79cda909372610f93cd/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/12bf1d03d072a79cda909372610f93cd/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBK3W1000164", + "BPM": 99.9, + "Duration": 223, + "ReleaseDate": "2013-09-13", + "AlbumName": "The 1975", + "Explicit": false, + "Rank": 528756, + "Tags": [ + "Alternativo", + "bpm:99.9", + "medium", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 3583591, + "name": "The 1975", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 293, + "Name": "Chocolate", + "Artists": "The 1975", + "Color": "984F25", + "DarkColor": "852F08", + "SongMetaId": null, + "SpotifyId": "44Ljlpy44mHvLJxcYUvTK0", + "DeezerID": 69941964, + "DeezerURL": "https://www.deezer.com/track/69941964", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/12bf1d03d072a79cda909372610f93cd/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/12bf1d03d072a79cda909372610f93cd/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/12bf1d03d072a79cda909372610f93cd/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/12bf1d03d072a79cda909372610f93cd/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBK3W1000164", + "BPM": 99.9, + "Duration": 223, + "ReleaseDate": "2013-09-13", + "AlbumName": "The 1975", + "Explicit": false, + "Rank": 528756, + "Tags": [ + "Alternativo", + "bpm:99.9", + "medium", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 3583591, + "name": "The 1975", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 463, + "Name": "Chrome Valley Customs Theme", + "Artists": "Powertrain, James Elsey", + "Color": "F86F0E", + "DarkColor": "921C0A", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 404, + "Name": "Chun-Li", + "Artists": "Nicki Minaj", + "Color": "DFA564", + "DarkColor": "A55E46", + "SongMetaId": null, + "SpotifyId": "1e4rwBPVI32vZtTJu7mJ4J", + "DeezerID": 541418492, + "DeezerURL": "https://www.deezer.com/track/541418492", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c2589471cf573703d56075440c2a1412/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c2589471cf573703d56075440c2a1412/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c2589471cf573703d56075440c2a1412/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c2589471cf573703d56075440c2a1412/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCM51800081", + "BPM": 97.05, + "Duration": 190, + "ReleaseDate": "2018-08-10", + "AlbumName": "Queen", + "Explicit": true, + "Rank": 587847, + "Tags": [ + "Rap/Hip Hop", + "bpm:97.05", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 382937, + "name": "Nicki Minaj", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 306, + "Name": "Cinderella Man", + "Artists": "Eminem", + "Color": "654CE8", + "DarkColor": "2115CD", + "SongMetaId": null, + "SpotifyId": "4SE4yewyGpOYfxfx59Yjc5", + "DeezerID": 6461436, + "DeezerURL": "https://www.deezer.com/track/6461436", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/be682506145061814eddee648edb7c59/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/be682506145061814eddee648edb7c59/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/be682506145061814eddee648edb7c59/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/be682506145061814eddee648edb7c59/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71015394", + "BPM": 86, + "Duration": 279, + "ReleaseDate": "2010-01-01", + "AlbumName": "Recovery", + "Explicit": true, + "Rank": 515181, + "Tags": [ + "Rap/Hip Hop", + "bpm:86", + "medium-length", + "slow", + "year:2010" + ], + "Contributors": [ + { + "id": 13, + "name": "Eminem", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 63, + "Name": "Circles", + "Artists": "Post Malone", + "Color": "398694", + "DarkColor": "123743", + "SongMetaId": null, + "SpotifyId": "21jGcNKet2qwijlDFuPiPb", + "DeezerID": 747399352, + "DeezerURL": "https://www.deezer.com/track/747399352", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4642b8e3e0a89f92a6e2bfed13d8f31c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4642b8e3e0a89f92a6e2bfed13d8f31c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4642b8e3e0a89f92a6e2bfed13d8f31c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4642b8e3e0a89f92a6e2bfed13d8f31c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71915699", + "BPM": 119.84, + "Duration": 215, + "ReleaseDate": "2019-09-06", + "AlbumName": "Hollywood's Bleeding", + "Explicit": false, + "Rank": 767242, + "Tags": [ + "Rap/Hip Hop", + "bpm:119.84", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 63, + "Name": "Circles", + "Artists": "Post Malone", + "Color": "398694", + "DarkColor": "123743", + "SongMetaId": null, + "SpotifyId": "21jGcNKet2qwijlDFuPiPb", + "DeezerID": 747399352, + "DeezerURL": "https://www.deezer.com/track/747399352", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4642b8e3e0a89f92a6e2bfed13d8f31c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4642b8e3e0a89f92a6e2bfed13d8f31c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4642b8e3e0a89f92a6e2bfed13d8f31c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4642b8e3e0a89f92a6e2bfed13d8f31c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71915699", + "BPM": 119.84, + "Duration": 215, + "ReleaseDate": "2019-09-06", + "AlbumName": "Hollywood's Bleeding", + "Explicit": false, + "Rank": 767242, + "Tags": [ + "Rap/Hip Hop", + "bpm:119.84", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 71, + "Name": "Clash of Clans Theme", + "Artists": "Supercell", + "Color": "FEA607", + "DarkColor": "EB7A03", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 179, + "Name": "Clash Royale Theme", + "Artists": "Supercell", + "Color": "2D9FCE", + "DarkColor": "222F6A", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 210, + "Name": "Clocks", + "Artists": "Coldplay", + "Color": "1E70DF", + "DarkColor": "02204C", + "SongMetaId": "6", + "SpotifyId": "0BCPKOYdS2jbQ8iyB56Zns", + "DeezerID": 3098841, + "DeezerURL": "https://www.deezer.com/track/3098841", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5ba1787e1ec36dbbca38ff01fea8fb21/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5ba1787e1ec36dbbca38ff01fea8fb21/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5ba1787e1ec36dbbca38ff01fea8fb21/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5ba1787e1ec36dbbca38ff01fea8fb21/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE0200771", + "BPM": 130.8, + "Duration": 307, + "ReleaseDate": "2002-08-08", + "AlbumName": "A Rush of Blood to the Head", + "Explicit": false, + "Rank": 944843, + "Tags": [ + "Rock", + "bpm:130.8", + "fast", + "long", + "year:2002" + ], + "Contributors": [ + { + "id": 892, + "name": "Coldplay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 747, + "Name": "Clocks", + "Artists": "Coldplay", + "Color": "1E70DF", + "DarkColor": "02204C", + "SongMetaId": "6", + "SpotifyId": "0BCPKOYdS2jbQ8iyB56Zns", + "DeezerID": 3098841, + "DeezerURL": "https://www.deezer.com/track/3098841", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5ba1787e1ec36dbbca38ff01fea8fb21/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5ba1787e1ec36dbbca38ff01fea8fb21/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5ba1787e1ec36dbbca38ff01fea8fb21/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5ba1787e1ec36dbbca38ff01fea8fb21/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE0200771", + "BPM": 130.8, + "Duration": 307, + "ReleaseDate": "2002-08-08", + "AlbumName": "A Rush of Blood to the Head", + "Explicit": false, + "Rank": 944843, + "Tags": [ + "Rock", + "bpm:130.8", + "fast", + "long", + "year:2002" + ], + "Contributors": [ + { + "id": 892, + "name": "Coldplay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 696, + "Name": "Closer", + "Artists": "The Chainsmokers, Halsey", + "Color": "EB8D69", + "DarkColor": "C27557", + "SongMetaId": null, + "SpotifyId": "7BKLCZ1jbUBVqRi2FVlTVw", + "DeezerID": 129310248, + "DeezerURL": "https://www.deezer.com/track/129310248", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0a7b86a0e2f2bd3e41515adb83e3322b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0a7b86a0e2f2bd3e41515adb83e3322b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0a7b86a0e2f2bd3e41515adb83e3322b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0a7b86a0e2f2bd3e41515adb83e3322b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX91601347", + "BPM": 0, + "Duration": 249, + "ReleaseDate": "2016-07-29", + "AlbumName": "Closer", + "Explicit": false, + "Rank": 835677, + "Tags": [ + "Alternativo", + "Dance", + "Electro", + "Indie Pop", + "Indie Rock", + "Pop", + "Techno/House", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 4104927, + "name": "The Chainsmokers", + "role": "Main" + }, + { + "id": 5292512, + "name": "Halsey", + "role": "Main" + }, + { + "id": 5292512, + "name": "Halsey", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Pop", + "Indie Rock", + "Electro", + "Techno/House", + "Dance", + "Pop" + ] + }, + { + "SongId": 696, + "Name": "Closer", + "Artists": "The Chainsmokers, Halsey", + "Color": "EB8D69", + "DarkColor": "B96E51", + "SongMetaId": null, + "SpotifyId": "7BKLCZ1jbUBVqRi2FVlTVw", + "DeezerID": 129310248, + "DeezerURL": "https://www.deezer.com/track/129310248", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0a7b86a0e2f2bd3e41515adb83e3322b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0a7b86a0e2f2bd3e41515adb83e3322b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0a7b86a0e2f2bd3e41515adb83e3322b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0a7b86a0e2f2bd3e41515adb83e3322b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX91601347", + "BPM": 0, + "Duration": 249, + "ReleaseDate": "2016-07-29", + "AlbumName": "Closer", + "Explicit": false, + "Rank": 835677, + "Tags": [ + "Alternativo", + "Dance", + "Electro", + "Indie Pop", + "Indie Rock", + "Pop", + "Techno/House", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 4104927, + "name": "The Chainsmokers", + "role": "Main" + }, + { + "id": 5292512, + "name": "Halsey", + "role": "Main" + }, + { + "id": 5292512, + "name": "Halsey", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Pop", + "Indie Rock", + "Electro", + "Techno/House", + "Dance", + "Pop" + ] + }, + { + "SongId": 311, + "Name": "Cold Heart (PNAU Remix)", + "Artists": "Elton John, Dua Lipa", + "Color": "8EC585", + "DarkColor": "1E8871", + "SongMetaId": null, + "SpotifyId": "6zSpb8dQRaw0M1dK8PBwQz", + "DeezerID": 1457025872, + "DeezerURL": "https://www.deezer.com/track/1457025872", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dd4e748c3b0ae1a553832908fee96c15/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dd4e748c3b0ae1a553832908fee96c15/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dd4e748c3b0ae1a553832908fee96c15/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dd4e748c3b0ae1a553832908fee96c15/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM72104705", + "BPM": 0, + "Duration": 203, + "ReleaseDate": "2021-08-13", + "AlbumName": "Cold Heart (PNAU Remix)", + "Explicit": false, + "Rank": 953309, + "Tags": [ + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 413, + "name": "Elton John", + "role": "Main" + }, + { + "id": 8706544, + "name": "Dua Lipa", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 547, + "Name": "Collapsar", + "Artists": "FLIPPENDO !", + "Color": "EB8D69", + "DarkColor": "C27557", + "SongMetaId": null, + "SpotifyId": "1Vlt8CmTZOaVJ8VAuo1EnQ", + "DeezerID": 2514372521, + "DeezerURL": "https://www.deezer.com/track/2514372521", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ad8a740cb3c9b9c4fc996cd20da46b03/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ad8a740cb3c9b9c4fc996cd20da46b03/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ad8a740cb3c9b9c4fc996cd20da46b03/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ad8a740cb3c9b9c4fc996cd20da46b03/1000x1000-000000-80-0-0.jpg", + "ISRC": "CAENV2389031", + "BPM": 0, + "Duration": 219, + "ReleaseDate": "2023-10-25", + "AlbumName": "Bon Voyage", + "Explicit": false, + "Rank": 22286, + "Tags": [ + "Dance", + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 239137191, + "name": "FLIPPENDO !", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 547, + "Name": "Collapsar", + "Artists": "FLIPPENDO !", + "Color": "EB8D69", + "DarkColor": "B96E51", + "SongMetaId": null, + "SpotifyId": "1Vlt8CmTZOaVJ8VAuo1EnQ", + "DeezerID": 2514372521, + "DeezerURL": "https://www.deezer.com/track/2514372521", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ad8a740cb3c9b9c4fc996cd20da46b03/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ad8a740cb3c9b9c4fc996cd20da46b03/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ad8a740cb3c9b9c4fc996cd20da46b03/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ad8a740cb3c9b9c4fc996cd20da46b03/1000x1000-000000-80-0-0.jpg", + "ISRC": "CAENV2389031", + "BPM": 0, + "Duration": 219, + "ReleaseDate": "2023-10-25", + "AlbumName": "Bon Voyage", + "Explicit": false, + "Rank": 22286, + "Tags": [ + "Dance", + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 239137191, + "name": "FLIPPENDO !", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 64, + "Name": "Come & Go", + "Artists": "Juice WRLD, Marshmello", + "Color": "FF5D7B", + "DarkColor": "C11A55", + "SongMetaId": null, + "SpotifyId": "2Y0wPrPQBrGhoLn14xRYCG", + "DeezerID": 1016968502, + "DeezerURL": "https://www.deezer.com/track/1016968502", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7a03f611f0d25cb00d19e4e01623178f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7a03f611f0d25cb00d19e4e01623178f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7a03f611f0d25cb00d19e4e01623178f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7a03f611f0d25cb00d19e4e01623178f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12001904", + "BPM": 0, + "Duration": 205, + "ReleaseDate": "2020-07-10", + "AlbumName": "Legends Never Die", + "Explicit": true, + "Rank": 682876, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 14456487, + "name": "Juice Wrld", + "role": "Main" + }, + { + "id": 7890702, + "name": "Marshmello", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 203, + "Name": "Come Get It Bae", + "Artists": "Pharrell Williams", + "Color": "FFB01F", + "DarkColor": "BF740B", + "SongMetaId": null, + "SpotifyId": "24MSdaNRlLgjp8xYeJeXwZ", + "DeezerID": 701326572, + "DeezerURL": "https://www.deezer.com/track/701326572", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/481a67e19a5d59c6dd4eab0785e7bdb7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/481a67e19a5d59c6dd4eab0785e7bdb7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/481a67e19a5d59c6dd4eab0785e7bdb7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/481a67e19a5d59c6dd4eab0785e7bdb7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM11400861", + "BPM": 120.19, + "Duration": 201, + "ReleaseDate": "2014-03-03", + "AlbumName": "G I R L", + "Explicit": false, + "Rank": 526736, + "Tags": [ + "Pop", + "bpm:120.19", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 103, + "name": "Pharrell Williams", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 644, + "Name": "COME UP", + "Artists": "Dwonji", + "Color": "A10F1A", + "DarkColor": "731D07", + "SongMetaId": null, + "SpotifyId": "6apIMVBrVJVoZs8IIfLdK0", + "DeezerID": 1733712037, + "DeezerURL": "https://www.deezer.com/track/1733712037", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/08d4790a0a1b6bd75885a81500830f5d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/08d4790a0a1b6bd75885a81500830f5d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/08d4790a0a1b6bd75885a81500830f5d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/08d4790a0a1b6bd75885a81500830f5d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD2110372", + "BPM": 0, + "Duration": 211, + "ReleaseDate": "2022-01-04", + "AlbumName": "COME UP", + "Explicit": false, + "Rank": 58764, + "Tags": [ + "Electro", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 13028441, + "name": "Dwonji", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 644, + "Name": "COME UP", + "Artists": "Dwonji", + "Color": "A10F1A", + "DarkColor": "731D07", + "SongMetaId": null, + "SpotifyId": "6apIMVBrVJVoZs8IIfLdK0", + "DeezerID": 1733712037, + "DeezerURL": "https://www.deezer.com/track/1733712037", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/08d4790a0a1b6bd75885a81500830f5d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/08d4790a0a1b6bd75885a81500830f5d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/08d4790a0a1b6bd75885a81500830f5d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/08d4790a0a1b6bd75885a81500830f5d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD2110372", + "BPM": 0, + "Duration": 211, + "ReleaseDate": "2022-01-04", + "AlbumName": "COME UP", + "Explicit": false, + "Rank": 58764, + "Tags": [ + "Electro", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 13028441, + "name": "Dwonji", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 422, + "Name": "Comin' In Hotta", + "Artists": "Halo Sol", + "Color": "D07C43", + "DarkColor": "BF4E2F", + "SongMetaId": null, + "SpotifyId": "1b1ufbb0iUczIPZQKORroP", + "DeezerID": 594828062, + "DeezerURL": "https://www.deezer.com/track/594828062", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e0f7de57603913004fef1a8cc73581f1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e0f7de57603913004fef1a8cc73581f1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e0f7de57603913004fef1a8cc73581f1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e0f7de57603913004fef1a8cc73581f1/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBHGV1700020", + "BPM": 0, + "Duration": 156, + "ReleaseDate": "2017-11-20", + "AlbumName": "Comin' in Hotta", + "Explicit": false, + "Rank": 170591, + "Tags": [ + "Dance", + "Pop", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 13588009, + "name": "Halo Sol", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 422, + "Name": "Comin' In Hotta", + "Artists": "Halo Sol", + "Color": "D07C43", + "DarkColor": "BF4E2F", + "SongMetaId": null, + "SpotifyId": "1b1ufbb0iUczIPZQKORroP", + "DeezerID": 594828062, + "DeezerURL": "https://www.deezer.com/track/594828062", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e0f7de57603913004fef1a8cc73581f1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e0f7de57603913004fef1a8cc73581f1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e0f7de57603913004fef1a8cc73581f1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e0f7de57603913004fef1a8cc73581f1/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBHGV1700020", + "BPM": 0, + "Duration": 156, + "ReleaseDate": "2017-11-20", + "AlbumName": "Comin' in Hotta", + "Explicit": false, + "Rank": 170591, + "Tags": [ + "Dance", + "Pop", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 13588009, + "name": "Halo Sol", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 708, + "Name": "Coming Undone", + "Artists": "Korn", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "3o7TMr6RmIusYH7Kkg7ujR", + "DeezerID": 1549660202, + "DeezerURL": "https://www.deezer.com/track/1549660202", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b66637d361addc24950292f91d1aae87/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b66637d361addc24950292f91d1aae87/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b66637d361addc24950292f91d1aae87/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b66637d361addc24950292f91d1aae87/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVI20500588", + "BPM": 0, + "Duration": 199, + "ReleaseDate": "2005-12-06", + "AlbumName": "See You On the Other Side", + "Explicit": false, + "Rank": 694041, + "Tags": [ + "Rock", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 1327, + "name": "KoЯn", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 708, + "Name": "Coming Undone", + "Artists": "Korn", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "3o7TMr6RmIusYH7Kkg7ujR", + "DeezerID": 1549660202, + "DeezerURL": "https://www.deezer.com/track/1549660202", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b66637d361addc24950292f91d1aae87/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b66637d361addc24950292f91d1aae87/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b66637d361addc24950292f91d1aae87/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b66637d361addc24950292f91d1aae87/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVI20500588", + "BPM": 0, + "Duration": 199, + "ReleaseDate": "2005-12-06", + "AlbumName": "See You On the Other Side", + "Explicit": false, + "Rank": 694041, + "Tags": [ + "Rock", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 1327, + "name": "KoЯn", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 117, + "Name": "Congratulations", + "Artists": "Post Malone, Quavo", + "Color": "E86730", + "DarkColor": "BE3727", + "SongMetaId": null, + "SpotifyId": "3a1lNhkSLSkpJE4MSHpDu9", + "DeezerID": 137726987, + "DeezerURL": "https://www.deezer.com/track/137726987", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/efd66ec02dc81074e5b3e7825db4c380/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/efd66ec02dc81074e5b3e7825db4c380/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/efd66ec02dc81074e5b3e7825db4c380/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/efd66ec02dc81074e5b3e7825db4c380/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71614484", + "BPM": 123.05, + "Duration": 221, + "ReleaseDate": "2016-12-09", + "AlbumName": "Stoney (Deluxe)", + "Explicit": true, + "Rank": 797305, + "Tags": [ + "Rap/Hip Hop", + "bpm:123.05", + "fast", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + }, + { + "id": 5059044, + "name": "Quavo", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 117, + "Name": "Congratulations", + "Artists": "Post Malone, Quavo", + "Color": "E86730", + "DarkColor": "BE3727", + "SongMetaId": null, + "SpotifyId": "3a1lNhkSLSkpJE4MSHpDu9", + "DeezerID": 137726987, + "DeezerURL": "https://www.deezer.com/track/137726987", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/efd66ec02dc81074e5b3e7825db4c380/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/efd66ec02dc81074e5b3e7825db4c380/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/efd66ec02dc81074e5b3e7825db4c380/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/efd66ec02dc81074e5b3e7825db4c380/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71614484", + "BPM": 123.05, + "Duration": 221, + "ReleaseDate": "2016-12-09", + "AlbumName": "Stoney (Deluxe)", + "Explicit": true, + "Rank": 797305, + "Tags": [ + "Rap/Hip Hop", + "bpm:123.05", + "fast", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + }, + { + "id": 5059044, + "name": "Quavo", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 169, + "Name": "Cool for the Summer", + "Artists": "Demi Lovato", + "Color": "8B1108", + "DarkColor": "5E1207", + "SongMetaId": null, + "SpotifyId": "3uwnnTQcHM1rDqSfA4gQNz", + "DeezerID": 109703218, + "DeezerURL": "https://www.deezer.com/track/109703218", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7e559086c775eece3bd9db9175db553d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7e559086c775eece3bd9db9175db553d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7e559086c775eece3bd9db9175db553d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7e559086c775eece3bd9db9175db553d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHR11536621", + "BPM": 113.89, + "Duration": 214, + "ReleaseDate": "2015-10-16", + "AlbumName": "Confident (Deluxe Edition)", + "Explicit": true, + "Rank": 802956, + "Tags": [ + "Pop", + "bpm:113.89", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 193875, + "name": "Demi Lovato", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 169, + "Name": "Cool for the Summer", + "Artists": "Demi Lovato", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": null, + "SpotifyId": "3uwnnTQcHM1rDqSfA4gQNz", + "DeezerID": 109703218, + "DeezerURL": "https://www.deezer.com/track/109703218", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7e559086c775eece3bd9db9175db553d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7e559086c775eece3bd9db9175db553d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7e559086c775eece3bd9db9175db553d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7e559086c775eece3bd9db9175db553d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHR11536621", + "BPM": 113.89, + "Duration": 214, + "ReleaseDate": "2015-10-16", + "AlbumName": "Confident (Deluxe Edition)", + "Explicit": true, + "Rank": 802956, + "Tags": [ + "Pop", + "bpm:113.89", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 193875, + "name": "Demi Lovato", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 698, + "Name": "Cosmic Fracture", + "Artists": "Desx", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "2vUqcsQ06aMr0nGHyPhdWf", + "DeezerID": 2328100615, + "DeezerURL": "https://www.deezer.com/track/2328100615", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2358558", + "BPM": 0, + "Duration": 209, + "ReleaseDate": "2023-07-07", + "AlbumName": "Neoluminum Vol. 2", + "Explicit": false, + "Rank": 160529, + "Tags": [ + "Dubstep", + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 50982882, + "name": "Desx", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dubstep" + ] + }, + { + "SongId": 698, + "Name": "Cosmic Fracture", + "Artists": "Desx", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "2vUqcsQ06aMr0nGHyPhdWf", + "DeezerID": 2328100615, + "DeezerURL": "https://www.deezer.com/track/2328100615", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2358558", + "BPM": 0, + "Duration": 209, + "ReleaseDate": "2023-07-07", + "AlbumName": "Neoluminum Vol. 2", + "Explicit": false, + "Rank": 160529, + "Tags": [ + "Dubstep", + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 50982882, + "name": "Desx", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dubstep" + ] + }, + { + "SongId": 562, + "Name": "Counting Stars", + "Artists": "OneRepublic", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": null, + "SpotifyId": "6sy3LkhNFjJWlaeSMNwQ62", + "DeezerID": 78527795, + "DeezerURL": "https://www.deezer.com/track/78527795", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/63bb716faf92942d967f5c053fc8720c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/63bb716faf92942d967f5c053fc8720c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/63bb716faf92942d967f5c053fc8720c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/63bb716faf92942d967f5c053fc8720c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71301306", + "BPM": 122, + "Duration": 257, + "ReleaseDate": "2014-06-02", + "AlbumName": "Native", + "Explicit": false, + "Rank": 950198, + "Tags": [ + "Pop", + "bpm:122", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 74398, + "name": "OneRepublic", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 562, + "Name": "Counting Stars", + "Artists": "OneRepublic", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": null, + "SpotifyId": "6sy3LkhNFjJWlaeSMNwQ62", + "DeezerID": 78527795, + "DeezerURL": "https://www.deezer.com/track/78527795", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/63bb716faf92942d967f5c053fc8720c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/63bb716faf92942d967f5c053fc8720c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/63bb716faf92942d967f5c053fc8720c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/63bb716faf92942d967f5c053fc8720c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71301306", + "BPM": 122, + "Duration": 257, + "ReleaseDate": "2014-06-02", + "AlbumName": "Native", + "Explicit": false, + "Rank": 950198, + "Tags": [ + "Pop", + "bpm:122", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 74398, + "name": "OneRepublic", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 370, + "Name": "Country Boy Do", + "Artists": "Nelly, Tyler Hubbard", + "Color": "BDAA8B", + "DarkColor": "453B33", + "SongMetaId": null, + "SpotifyId": "24MH7MzHl5XAYlmMdn85CF", + "DeezerID": 1473116302, + "DeezerURL": "https://www.deezer.com/track/1473116302", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c8264b44b526c9279c0100bdda3d9566/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c8264b44b526c9279c0100bdda3d9566/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c8264b44b526c9279c0100bdda3d9566/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c8264b44b526c9279c0100bdda3d9566/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX92103009", + "BPM": 0, + "Duration": 182, + "ReleaseDate": "2021-08-27", + "AlbumName": "Heartland", + "Explicit": false, + "Rank": 301076, + "Tags": [ + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 105, + "name": "Nelly", + "role": "Main" + }, + { + "id": 4434338, + "name": "Tyler Hubbard", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 357, + "Name": "Country Girl (Shake It For Me)", + "Artists": "Luke Bryan", + "Color": "AD694D", + "DarkColor": "812D23", + "SongMetaId": null, + "SpotifyId": "0JbSghVDghtFEurrSO8JrC", + "DeezerID": 1614081222, + "DeezerURL": "https://www.deezer.com/track/1614081222", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d1d775ed4aa4e9e1cb863992689451e4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d1d775ed4aa4e9e1cb863992689451e4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d1d775ed4aa4e9e1cb863992689451e4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d1d775ed4aa4e9e1cb863992689451e4/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCN11100078", + "BPM": 106.01, + "Duration": 225, + "ReleaseDate": "2022-01-13", + "AlbumName": "Country Mega Hits 2022", + "Explicit": false, + "Rank": 555635, + "Tags": [ + "bpm:106.01", + "medium", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 242132, + "name": "Luke Bryan", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 539, + "Name": "Crab Rave", + "Artists": "Noisestorm", + "Color": "336235", + "DarkColor": "153D1E", + "SongMetaId": null, + "SpotifyId": "4qDHt2ClApBBzDAvhNGWFd", + "DeezerID": 534694252, + "DeezerURL": "https://www.deezer.com/track/534694252", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4d397000de64f8bb558413f431614180/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4d397000de64f8bb558413f431614180/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4d397000de64f8bb558413f431614180/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4d397000de64f8bb558413f431614180/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D21800072", + "BPM": 124.91, + "Duration": 161, + "ReleaseDate": "2018-04-01", + "AlbumName": "Crab Rave", + "Explicit": false, + "Rank": 575450, + "Tags": [ + "Dance", + "bpm:124.91", + "fast", + "short", + "year:2018" + ], + "Contributors": [ + { + "id": 1190014, + "name": "Noisestorm", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 539, + "Name": "Crab Rave", + "Artists": "Noisestorm", + "Color": "336235", + "DarkColor": "153D1E", + "SongMetaId": null, + "SpotifyId": "4qDHt2ClApBBzDAvhNGWFd", + "DeezerID": 534694252, + "DeezerURL": "https://www.deezer.com/track/534694252", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4d397000de64f8bb558413f431614180/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4d397000de64f8bb558413f431614180/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4d397000de64f8bb558413f431614180/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4d397000de64f8bb558413f431614180/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D21800072", + "BPM": 124.91, + "Duration": 161, + "ReleaseDate": "2018-04-01", + "AlbumName": "Crab Rave", + "Explicit": false, + "Rank": 575450, + "Tags": [ + "Dance", + "bpm:124.91", + "fast", + "short", + "year:2018" + ], + "Contributors": [ + { + "id": 1190014, + "name": "Noisestorm", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 294, + "Name": "Crash", + "Artists": "The Primitives", + "Color": "263E7D", + "DarkColor": "192951", + "SongMetaId": null, + "SpotifyId": "4tPHC7YsU3LInUYcIe2UIi", + "DeezerID": 571889, + "DeezerURL": "https://www.deezer.com/track/571889", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/bc4e86d2464b9510b00896a1d55fc931/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/bc4e86d2464b9510b00896a1d55fc931/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/bc4e86d2464b9510b00896a1d55fc931/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/bc4e86d2464b9510b00896a1d55fc931/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL8800002", + "BPM": 170.1, + "Duration": 152, + "ReleaseDate": "1996-07-09", + "AlbumName": "Best Of", + "Explicit": false, + "Rank": 403773, + "Tags": [ + "Pop", + "bpm:170.1", + "short", + "very-fast", + "year:1996" + ], + "Contributors": [ + { + "id": 2979, + "name": "The Primitives", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 752, + "Name": "Crazy", + "Artists": "Gnarls Barkley", + "Color": "EEA825", + "DarkColor": "E27C09", + "SongMetaId": "7", + "SpotifyId": "1vxw6aYJls2oq3gW0DujAo", + "DeezerID": 2794160, + "DeezerURL": "https://www.deezer.com/track/2794160", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b332eee7b7a5430b352645e9a2a6afea/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b332eee7b7a5430b352645e9a2a6afea/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b332eee7b7a5430b352645e9a2a6afea/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b332eee7b7a5430b352645e9a2a6afea/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT0600202", + "BPM": 112, + "Duration": 177, + "ReleaseDate": "2006-04-24", + "AlbumName": "St. Elsewhere", + "Explicit": false, + "Rank": 927571, + "Tags": [ + "Pop", + "bpm:112", + "medium", + "short", + "year:2006" + ], + "Contributors": [ + { + "id": 3467, + "name": "Gnarls Barkley", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 292, + "Name": "Crazy", + "Artists": "Gnarls Barkley", + "Color": "EEA825", + "DarkColor": "E27C09", + "SongMetaId": "7", + "SpotifyId": "2N5zMZX7YeL1tico8oQxa9", + "DeezerID": 2794160, + "DeezerURL": "https://www.deezer.com/track/2794160", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b332eee7b7a5430b352645e9a2a6afea/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b332eee7b7a5430b352645e9a2a6afea/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b332eee7b7a5430b352645e9a2a6afea/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b332eee7b7a5430b352645e9a2a6afea/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT0600202", + "BPM": 112, + "Duration": 177, + "ReleaseDate": "2006-04-24", + "AlbumName": "St. Elsewhere", + "Explicit": false, + "Rank": 927571, + "Tags": [ + "Pop", + "bpm:112", + "medium", + "short", + "year:2006" + ], + "Contributors": [ + { + "id": 3467, + "name": "Gnarls Barkley", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 136, + "Name": "Crush", + "Artists": "Tessa Violet", + "Color": "EE6B27", + "DarkColor": "C93B02", + "SongMetaId": null, + "SpotifyId": "6MYJv37Mpj5njLLbxKWNun", + "DeezerID": 971955912, + "DeezerURL": "https://www.deezer.com/track/971955912", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c4d99c593a190328e6e761515f96b43f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c4d99c593a190328e6e761515f96b43f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c4d99c593a190328e6e761515f96b43f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c4d99c593a190328e6e761515f96b43f/1000x1000-000000-80-0-0.jpg", + "ISRC": "US3DF1813109", + "BPM": 0, + "Duration": 216, + "ReleaseDate": "2018-06-15", + "AlbumName": "Crush", + "Explicit": false, + "Rank": 443667, + "Tags": [ + "Alternativo", + "Indie Pop", + "Pop", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 5578516, + "name": "Tessa Violet", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Pop", + "Pop" + ] + }, + { + "SongId": 645, + "Name": "Cry", + "Artists": "Benson Boone", + "Color": "BD9C62", + "DarkColor": "796044", + "SongMetaId": null, + "SpotifyId": "3h76tbaYIamSeJL81X7ZwI", + "DeezerID": 2704682212, + "DeezerURL": "https://www.deezer.com/track/2704682212", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/71ca8c4c88fdb45381c4291bd4233ff6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/71ca8c4c88fdb45381c4291bd4233ff6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/71ca8c4c88fdb45381c4291bd4233ff6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/71ca8c4c88fdb45381c4291bd4233ff6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB12401092", + "BPM": 0, + "Duration": 186, + "ReleaseDate": "2024-04-05", + "AlbumName": "Fireworks & Rollerblades", + "Explicit": false, + "Rank": 989903, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 146543992, + "name": "Benson Boone", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 645, + "Name": "Cry", + "Artists": "Benson Boone", + "Color": "BD9C62", + "DarkColor": "796044", + "SongMetaId": null, + "SpotifyId": "3h76tbaYIamSeJL81X7ZwI", + "DeezerID": 2704682212, + "DeezerURL": "https://www.deezer.com/track/2704682212", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/71ca8c4c88fdb45381c4291bd4233ff6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/71ca8c4c88fdb45381c4291bd4233ff6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/71ca8c4c88fdb45381c4291bd4233ff6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/71ca8c4c88fdb45381c4291bd4233ff6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB12401092", + "BPM": 0, + "Duration": 186, + "ReleaseDate": "2024-04-05", + "AlbumName": "Fireworks & Rollerblades", + "Explicit": false, + "Rank": 989903, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 146543992, + "name": "Benson Boone", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 610, + "Name": "Crystal", + "Artists": "New Order", + "Color": "F03F35", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "2M4PVaTJGjXV91X8HAVQEx", + "DeezerID": 697318, + "DeezerURL": "https://www.deezer.com/track/697318", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/bec1b9c4975091afab65c6cefe78b43a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/bec1b9c4975091afab65c6cefe78b43a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/bec1b9c4975091afab65c6cefe78b43a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/bec1b9c4975091afab65c6cefe78b43a/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAAP0100417", + "BPM": 136, + "Duration": 410, + "ReleaseDate": "2001-06-18", + "AlbumName": "Get Ready", + "Explicit": false, + "Rank": 529402, + "Tags": [ + "Pop", + "bpm:136", + "fast", + "long", + "year:2001" + ], + "Contributors": [ + { + "id": 2016, + "name": "New Order", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 610, + "Name": "Crystal", + "Artists": "New Order", + "Color": "F03F35", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "2M4PVaTJGjXV91X8HAVQEx", + "DeezerID": 697318, + "DeezerURL": "https://www.deezer.com/track/697318", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/bec1b9c4975091afab65c6cefe78b43a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/bec1b9c4975091afab65c6cefe78b43a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/bec1b9c4975091afab65c6cefe78b43a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/bec1b9c4975091afab65c6cefe78b43a/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAAP0100417", + "BPM": 136, + "Duration": 410, + "ReleaseDate": "2001-06-18", + "AlbumName": "Get Ready", + "Explicit": false, + "Rank": 529402, + "Tags": [ + "Pop", + "bpm:136", + "fast", + "long", + "year:2001" + ], + "Contributors": [ + { + "id": 2016, + "name": "New Order", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 140, + "Name": "Crystalised", + "Artists": "The XX", + "Color": "C97B8D", + "DarkColor": "963C52", + "SongMetaId": null, + "SpotifyId": "33R3swWziWYmnDYvZqcZVS", + "DeezerID": 3787857, + "DeezerURL": "https://www.deezer.com/track/3787857", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0e6287242c26c8e469c65c47198dd4f3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0e6287242c26c8e469c65c47198dd4f3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0e6287242c26c8e469c65c47198dd4f3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0e6287242c26c8e469c65c47198dd4f3/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBKS0900025", + "BPM": 123, + "Duration": 201, + "ReleaseDate": "2009-08-16", + "AlbumName": "xx", + "Explicit": false, + "Rank": 746071, + "Tags": [ + "Alternativo", + "bpm:123", + "fast", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 261212, + "name": "The xx", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 119, + "Name": "Cupid’s Chokehold / Breakfast in America", + "Artists": "Gym Class Heroes", + "Color": "89CA0D", + "DarkColor": "3D8503", + "SongMetaId": null, + "SpotifyId": "2rjPAMYtZrvb0OX3Y9aKVR", + "DeezerID": 1286452582, + "DeezerURL": "https://www.deezer.com/track/1286452582", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9c6b270f5f2b6cb3c32221b920e2f483/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9c6b270f5f2b6cb3c32221b920e2f483/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9c6b270f5f2b6cb3c32221b920e2f483/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9c6b270f5f2b6cb3c32221b920e2f483/1000x1000-000000-80-0-0.jpg", + "ISRC": "US56V0407211", + "BPM": 157.8, + "Duration": 243, + "ReleaseDate": "2021-03-26", + "AlbumName": "Take a Look at My Girlfriend", + "Explicit": false, + "Rank": 531018, + "Tags": [ + "Pop", + "bpm:157.8", + "medium-length", + "very-fast", + "year:2021" + ], + "Contributors": [ + { + "id": 5576, + "name": "Gym Class Heroes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 119, + "Name": "Cupid’s Chokehold / Breakfast in America", + "Artists": "Gym Class Heroes", + "Color": "A2C337", + "DarkColor": "4B5A1B", + "SongMetaId": null, + "SpotifyId": "2rjPAMYtZrvb0OX3Y9aKVR", + "DeezerID": 1286452582, + "DeezerURL": "https://www.deezer.com/track/1286452582", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9c6b270f5f2b6cb3c32221b920e2f483/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9c6b270f5f2b6cb3c32221b920e2f483/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9c6b270f5f2b6cb3c32221b920e2f483/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9c6b270f5f2b6cb3c32221b920e2f483/1000x1000-000000-80-0-0.jpg", + "ISRC": "US56V0407211", + "BPM": 157.8, + "Duration": 243, + "ReleaseDate": "2021-03-26", + "AlbumName": "Take a Look at My Girlfriend", + "Explicit": false, + "Rank": 531018, + "Tags": [ + "Pop", + "bpm:157.8", + "medium-length", + "very-fast", + "year:2021" + ], + "Contributors": [ + { + "id": 5576, + "name": "Gym Class Heroes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 582, + "Name": "Damn This Feeling", + "Artists": "Chiara Nova", + "Color": "5A6FE3", + "DarkColor": "384592", + "SongMetaId": null, + "SpotifyId": "40ZsOM6TwxhkiflkpoEb3O", + "DeezerID": 2540350771, + "DeezerURL": "https://www.deezer.com/track/2540350771", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a72c412c4b620a67cbd5170ec02cc6fa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a72c412c4b620a67cbd5170ec02cc6fa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a72c412c4b620a67cbd5170ec02cc6fa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a72c412c4b620a67cbd5170ec02cc6fa/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZTBF2383349", + "BPM": 0, + "Duration": 184, + "ReleaseDate": "2023-11-15", + "AlbumName": "Damn this Feeling - ONE2WATCH Studio Sessions", + "Explicit": false, + "Rank": 16046, + "Tags": [ + "Pop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 166604437, + "name": "Chiara Nova", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 582, + "Name": "Damn This Feeling", + "Artists": "Chiara Nova", + "Color": "607BC4", + "DarkColor": "3C4784", + "SongMetaId": null, + "SpotifyId": "40ZsOM6TwxhkiflkpoEb3O", + "DeezerID": 2540350771, + "DeezerURL": "https://www.deezer.com/track/2540350771", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a72c412c4b620a67cbd5170ec02cc6fa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a72c412c4b620a67cbd5170ec02cc6fa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a72c412c4b620a67cbd5170ec02cc6fa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a72c412c4b620a67cbd5170ec02cc6fa/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZTBF2383349", + "BPM": 0, + "Duration": 184, + "ReleaseDate": "2023-11-15", + "AlbumName": "Damn this Feeling - ONE2WATCH Studio Sessions", + "Explicit": false, + "Rank": 16046, + "Tags": [ + "Pop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 166604437, + "name": "Chiara Nova", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 469, + "Name": "Dance Monkey", + "Artists": "Tones and I", + "Color": "E46988", + "DarkColor": "BF4F7C", + "SongMetaId": null, + "SpotifyId": "2XU0oxnq2qxCpomAAuJY8K", + "DeezerID": 739870792, + "DeezerURL": "https://www.deezer.com/track/739870792", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZES71982312", + "BPM": 97.97, + "Duration": 209, + "ReleaseDate": "2019-08-30", + "AlbumName": "The Kids Are Coming", + "Explicit": false, + "Rank": 912898, + "Tags": [ + "Alternativo", + "bpm:97.97", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 59070642, + "name": "Tones and I", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 469, + "Name": "Dance Monkey", + "Artists": "Tones and I", + "Color": "E46988", + "DarkColor": "BF4F7C", + "SongMetaId": null, + "SpotifyId": "2XU0oxnq2qxCpomAAuJY8K", + "DeezerID": 739870792, + "DeezerURL": "https://www.deezer.com/track/739870792", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZES71982312", + "BPM": 97.97, + "Duration": 209, + "ReleaseDate": "2019-08-30", + "AlbumName": "The Kids Are Coming", + "Explicit": false, + "Rank": 912898, + "Tags": [ + "Alternativo", + "bpm:97.97", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 59070642, + "name": "Tones and I", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 122, + "Name": "Dance, Dance", + "Artists": "Fall Out Boy", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": null, + "SpotifyId": "0a7BloCiNzLDD9qSQHh5m7", + "DeezerID": 917257, + "DeezerURL": "https://www.deezer.com/track/917257", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDJ20500174", + "BPM": 0, + "Duration": 180, + "ReleaseDate": "2006-01-01", + "AlbumName": "From Under The Cork Tree Limited Tour Edition", + "Explicit": false, + "Rank": 742573, + "Tags": [ + "Rock", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 404, + "name": "Fall Out Boy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 319, + "Name": "Dancing On My Own", + "Artists": "Robyn", + "Color": "6FCEE7", + "DarkColor": "0D9FC1", + "SongMetaId": null, + "SpotifyId": "3Rc2ajBMInxeNGVkMPC92Y", + "DeezerID": 6486786, + "DeezerURL": "https://www.deezer.com/track/6486786", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f192f68db00fbcc367a243fa2b9c3f84/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f192f68db00fbcc367a243fa2b9c3f84/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f192f68db00fbcc367a243fa2b9c3f84/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f192f68db00fbcc367a243fa2b9c3f84/1000x1000-000000-80-0-0.jpg", + "ISRC": "SEWKZ1000003", + "BPM": 117.1, + "Duration": 289, + "ReleaseDate": "2010-01-01", + "AlbumName": "Body Talk Pt. 1", + "Explicit": false, + "Rank": 646877, + "Tags": [ + "Pop", + "bpm:117.1", + "medium", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 2648, + "name": "Robyn", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 314, + "Name": "Dare", + "Artists": "Gorillaz", + "Color": "A75365", + "DarkColor": "762235", + "SongMetaId": null, + "SpotifyId": "4Hff1IjRbLGeLgFgxvHflk", + "DeezerID": 3129413, + "DeezerURL": "https://www.deezer.com/track/3129413", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3dc29a565149240729afc08e1f251b46/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3dc29a565149240729afc08e1f251b46/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3dc29a565149240729afc08e1f251b46/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3dc29a565149240729afc08e1f251b46/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE0500178", + "BPM": 120.2, + "Duration": 245, + "ReleaseDate": "2005-05-23", + "AlbumName": "Demon Days", + "Explicit": false, + "Rank": 778937, + "Tags": [ + "Rap/Hip Hop", + "bpm:120.2", + "fast", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 14, + "name": "Gorillaz", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 448, + "Name": "Dashstar*", + "Artists": "Knock2", + "Color": "E46988", + "DarkColor": "BF4F7C", + "SongMetaId": null, + "SpotifyId": "0dAfw35k2hBsnbSl74AVJF", + "DeezerID": 2094963357, + "DeezerURL": "https://www.deezer.com/track/2094963357", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d5890a711d1850d1c8431781a8a6ddb1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d5890a711d1850d1c8431781a8a6ddb1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d5890a711d1850d1c8431781a8a6ddb1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d5890a711d1850d1c8431781a8a6ddb1/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2261726", + "BPM": 0, + "Duration": 140, + "ReleaseDate": "2022-07-29", + "AlbumName": "dashstar* (VIP)", + "Explicit": false, + "Rank": 280540, + "Tags": [ + "Electro", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 7540570, + "name": "Knock2", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 448, + "Name": "Dashstar*", + "Artists": "Knock2", + "Color": "E46988", + "DarkColor": "BF4F7C", + "SongMetaId": null, + "SpotifyId": "0dAfw35k2hBsnbSl74AVJF", + "DeezerID": 2094963357, + "DeezerURL": "https://www.deezer.com/track/2094963357", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d5890a711d1850d1c8431781a8a6ddb1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d5890a711d1850d1c8431781a8a6ddb1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d5890a711d1850d1c8431781a8a6ddb1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d5890a711d1850d1c8431781a8a6ddb1/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2261726", + "BPM": 0, + "Duration": 140, + "ReleaseDate": "2022-07-29", + "AlbumName": "dashstar* (VIP)", + "Explicit": false, + "Rank": 280540, + "Tags": [ + "Electro", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 7540570, + "name": "Knock2", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 687, + "Name": "Dead", + "Artists": "Peaks!", + "Color": "F8480E", + "DarkColor": "921C0A", + "SongMetaId": null, + "SpotifyId": "51MboFAXak24qYfIAhplbF", + "DeezerID": 1725247847, + "DeezerURL": "https://www.deezer.com/track/1725247847", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3d86ed8b141cadf0b0a4abb2e11e8429/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3d86ed8b141cadf0b0a4abb2e11e8429/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3d86ed8b141cadf0b0a4abb2e11e8429/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3d86ed8b141cadf0b0a4abb2e11e8429/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZ8GX1701502", + "BPM": 0, + "Duration": 210, + "ReleaseDate": "2022-05-13", + "AlbumName": "Dead", + "Explicit": false, + "Rank": 109121, + "Tags": [ + "Alternativo", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 111611062, + "name": "PEAKS!", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 687, + "Name": "Dead", + "Artists": "Peaks!", + "Color": "F8480E", + "DarkColor": "921C0A", + "SongMetaId": null, + "SpotifyId": "51MboFAXak24qYfIAhplbF", + "DeezerID": 1725247847, + "DeezerURL": "https://www.deezer.com/track/1725247847", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3d86ed8b141cadf0b0a4abb2e11e8429/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3d86ed8b141cadf0b0a4abb2e11e8429/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3d86ed8b141cadf0b0a4abb2e11e8429/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3d86ed8b141cadf0b0a4abb2e11e8429/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZ8GX1701502", + "BPM": 0, + "Duration": 210, + "ReleaseDate": "2022-05-13", + "AlbumName": "Dead", + "Explicit": false, + "Rank": 109121, + "Tags": [ + "Alternativo", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 111611062, + "name": "PEAKS!", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 291, + "Name": "Dear Maria, Count Me In", + "Artists": "All Time Low", + "Color": "F1B500", + "DarkColor": "DC8E00", + "SongMetaId": null, + "SpotifyId": "0JJP0IS4w0fJx01EcrfkDe", + "DeezerID": 6249577, + "DeezerURL": "https://www.deezer.com/track/6249577", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/acab0eec4dca657129907a8cac083645/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/acab0eec4dca657129907a8cac083645/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/acab0eec4dca657129907a8cac083645/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/acab0eec4dca657129907a8cac083645/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHR20747017", + "BPM": 90.5, + "Duration": 182, + "ReleaseDate": "2007-09-25", + "AlbumName": "So Wrong, It's Right", + "Explicit": false, + "Rank": 678586, + "Tags": [ + "Alternativo", + "Rock", + "bpm:90.5", + "medium", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 13191, + "name": "All Time Low", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock" + ] + }, + { + "SongId": 128, + "Name": "death bed (coffee for your head)", + "Artists": "Powfu, beabadoobee", + "Color": "C9A0E4", + "DarkColor": "7165A1", + "SongMetaId": null, + "SpotifyId": "7eJMfftS33KTjuF7lTsMCx", + "DeezerID": 871124582, + "DeezerURL": "https://www.deezer.com/track/871124582", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/85380bbb010f1b675c29ac06c6e343ea/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/85380bbb010f1b675c29ac06c6e343ea/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/85380bbb010f1b675c29ac06c6e343ea/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/85380bbb010f1b675c29ac06c6e343ea/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12000925", + "BPM": 144.05, + "Duration": 173, + "ReleaseDate": "2024-12-22", + "AlbumName": "death bed (coffee for your head)", + "Explicit": false, + "Rank": 827994, + "Tags": [ + "Pop", + "R&B", + "Rap/Hip Hop", + "bpm:144.05", + "fast", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 14107147, + "name": "Powfu", + "role": "Main" + }, + { + "id": 13499081, + "name": "beabadoobee", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "Pop", + "R&B" + ] + }, + { + "SongId": 112, + "Name": "Debaser", + "Artists": "Pixies", + "Color": "2C5964", + "DarkColor": "1C323B", + "SongMetaId": null, + "SpotifyId": "5cy5IStIn7OSHDEIgXeDyq", + "DeezerID": 945378, + "DeezerURL": "https://www.deezer.com/track/945378", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ad3c04ab094d37133ccbca4b3b54a193/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ad3c04ab094d37133ccbca4b3b54a193/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ad3c04ab094d37133ccbca4b3b54a193/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ad3c04ab094d37133ccbca4b3b54a193/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAFL9700091", + "BPM": 0, + "Duration": 171, + "ReleaseDate": "1989-04-17", + "AlbumName": "Doolittle", + "Explicit": false, + "Rank": 543562, + "Tags": [ + "Alternativo", + "short", + "year:1989" + ], + "Contributors": [ + { + "id": 652, + "name": "Pixies", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 473, + "Name": "Deep Blue", + "Artists": "Beatstar Originals", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 580, + "Name": "deep cuts", + "Artists": "Luna Kills", + "Color": "984F25", + "DarkColor": "852F08", + "SongMetaId": null, + "SpotifyId": "6yEnRIZwyZnxRKaaHCrPuM", + "DeezerID": 2976010831, + "DeezerURL": "https://www.deezer.com/track/2976010831", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a5330196882c201874fd50bdc3ef9d53/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a5330196882c201874fd50bdc3ef9d53/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a5330196882c201874fd50bdc3ef9d53/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a5330196882c201874fd50bdc3ef9d53/1000x1000-000000-80-0-0.jpg", + "ISRC": "QM4TW2320185", + "BPM": 0, + "Duration": 208, + "ReleaseDate": "2023-05-05", + "AlbumName": "super sick", + "Explicit": true, + "Rank": 230786, + "Tags": [ + "Metal", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 68770512, + "name": "LUNA KILLS", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 580, + "Name": "deep cuts", + "Artists": "Luna Kills", + "Color": "984F25", + "DarkColor": "852F08", + "SongMetaId": null, + "SpotifyId": "6yEnRIZwyZnxRKaaHCrPuM", + "DeezerID": 2976010831, + "DeezerURL": "https://www.deezer.com/track/2976010831", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a5330196882c201874fd50bdc3ef9d53/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a5330196882c201874fd50bdc3ef9d53/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a5330196882c201874fd50bdc3ef9d53/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a5330196882c201874fd50bdc3ef9d53/1000x1000-000000-80-0-0.jpg", + "ISRC": "QM4TW2320185", + "BPM": 0, + "Duration": 208, + "ReleaseDate": "2023-05-05", + "AlbumName": "super sick", + "Explicit": true, + "Rank": 230786, + "Tags": [ + "Metal", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 68770512, + "name": "LUNA KILLS", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 161, + "Name": "Deeper Deeper", + "Artists": "ONE OK ROCK", + "Color": "2C314B", + "DarkColor": "1C1927", + "SongMetaId": null, + "SpotifyId": "3fSdTVHwb8ZyiYAFSE00qd", + "DeezerID": 2326151835, + "DeezerURL": "https://www.deezer.com/track/2326151835", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/82be7873aaafb8f676134686adf95621/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/82be7873aaafb8f676134686adf95621/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/82be7873aaafb8f676134686adf95621/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/82be7873aaafb8f676134686adf95621/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPJ221200395", + "BPM": 0, + "Duration": 216, + "ReleaseDate": "2013-03-06", + "AlbumName": "JINSEI KAKETE BOKU WA", + "Explicit": false, + "Rank": 372826, + "Tags": [ + "Rock", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 469713, + "name": "ONE OK ROCK", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 310, + "Name": "Dem Boy Paigon", + "Artists": "J Hus", + "Color": "940706", + "DarkColor": "4D2321", + "SongMetaId": null, + "SpotifyId": "60ByM4iRPMZ7h8b1a32Ur0", + "DeezerID": 142944646, + "DeezerURL": "https://www.deezer.com/track/142944646", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/002ad0557fb6244f0da175a847251794/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/002ad0557fb6244f0da175a847251794/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/002ad0557fb6244f0da175a847251794/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/002ad0557fb6244f0da175a847251794/1000x1000-000000-80-0-0.jpg", + "ISRC": "TCACH1545765", + "BPM": 99.86, + "Duration": 159, + "ReleaseDate": "2017-02-27", + "AlbumName": "The 15th Day", + "Explicit": true, + "Rank": 247119, + "Tags": [ + "Rap/Hip Hop", + "bpm:99.86", + "medium", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 8657430, + "name": "J Hus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 325, + "Name": "Demons", + "Artists": "Imagine Dragons", + "Color": "1E70DF", + "DarkColor": "02204C", + "SongMetaId": null, + "SpotifyId": "3LlAyCYU26dvFZBDUIMb7a", + "DeezerID": 63510361, + "DeezerURL": "https://www.deezer.com/track/63510361", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71201071", + "BPM": 89.88, + "Duration": 175, + "ReleaseDate": "2013-02-05", + "AlbumName": "Night Visions", + "Explicit": false, + "Rank": 955237, + "Tags": [ + "Alternativo", + "bpm:89.88", + "short", + "slow", + "year:2013" + ], + "Contributors": [ + { + "id": 416239, + "name": "Imagine Dragons", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 262, + "Name": "DEPARTURES", + "Artists": "globe", + "Color": "BD572B", + "DarkColor": "781A02", + "SongMetaId": null, + "SpotifyId": "1NF6koRrvqGD77tHfLQh8N", + "DeezerID": 2510265941, + "DeezerURL": "https://www.deezer.com/track/2510265941", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e27f9a9a5c4dc1423d94ae7dbcd8eded/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e27f9a9a5c4dc1423d94ae7dbcd8eded/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e27f9a9a5c4dc1423d94ae7dbcd8eded/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e27f9a9a5c4dc1423d94ae7dbcd8eded/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPB609620603", + "BPM": 0, + "Duration": 323, + "ReleaseDate": "2020-03-04", + "AlbumName": "globe カラオケ HITS supported by DAM", + "Explicit": false, + "Rank": 53081, + "Tags": [ + "J-Pop", + "Música asiática", + "long", + "year:2020" + ], + "Contributors": [ + { + "id": 1416414, + "name": "Globe", + "role": "Main" + } + ], + "AlbumGenres": [ + "Música asiática", + "J-Pop" + ] + }, + { + "SongId": 757, + "Name": "Dilemma", + "Artists": "Nelly, Kelly Rowland", + "Color": "C49454", + "DarkColor": "9C6A3B", + "SongMetaId": "8", + "SpotifyId": "0ARK753YaiJbpLUk7z5yIM", + "DeezerID": 2447443, + "DeezerURL": "https://www.deezer.com/track/2447443", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/632fa55096ecab62a0c2556fa9e958c1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/632fa55096ecab62a0c2556fa9e958c1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/632fa55096ecab62a0c2556fa9e958c1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/632fa55096ecab62a0c2556fa9e958c1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUR10200370", + "BPM": 168.1, + "Duration": 289, + "ReleaseDate": "2002-05-28", + "AlbumName": "Nellyville", + "Explicit": true, + "Rank": 861096, + "Tags": [ + "Rap/Hip Hop", + "bpm:168.1", + "medium-length", + "very-fast", + "year:2002" + ], + "Contributors": [ + { + "id": 105, + "name": "Nelly", + "role": "Main" + }, + { + "id": 13124, + "name": "Kelly Rowland", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 195, + "Name": "Dilemma", + "Artists": "Nelly, Kelly Rowland", + "Color": "C49454", + "DarkColor": "9C6A3B", + "SongMetaId": "8", + "SpotifyId": "0ARK753YaiJbpLUk7z5yIM", + "DeezerID": 2447443, + "DeezerURL": "https://www.deezer.com/track/2447443", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/632fa55096ecab62a0c2556fa9e958c1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/632fa55096ecab62a0c2556fa9e958c1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/632fa55096ecab62a0c2556fa9e958c1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/632fa55096ecab62a0c2556fa9e958c1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUR10200370", + "BPM": 168.1, + "Duration": 289, + "ReleaseDate": "2002-05-28", + "AlbumName": "Nellyville", + "Explicit": true, + "Rank": 861096, + "Tags": [ + "Rap/Hip Hop", + "bpm:168.1", + "medium-length", + "very-fast", + "year:2002" + ], + "Contributors": [ + { + "id": 105, + "name": "Nelly", + "role": "Main" + }, + { + "id": 13124, + "name": "Kelly Rowland", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 195, + "Name": "Dilemma", + "Artists": "Nelly, Kelly Rowland", + "Color": "C49454", + "DarkColor": "9C6A3B", + "SongMetaId": "8", + "SpotifyId": "0ARK753YaiJbpLUk7z5yIM", + "DeezerID": 2447443, + "DeezerURL": "https://www.deezer.com/track/2447443", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/632fa55096ecab62a0c2556fa9e958c1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/632fa55096ecab62a0c2556fa9e958c1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/632fa55096ecab62a0c2556fa9e958c1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/632fa55096ecab62a0c2556fa9e958c1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUR10200370", + "BPM": 168.1, + "Duration": 289, + "ReleaseDate": "2002-05-28", + "AlbumName": "Nellyville", + "Explicit": true, + "Rank": 861096, + "Tags": [ + "Rap/Hip Hop", + "bpm:168.1", + "medium-length", + "very-fast", + "year:2002" + ], + "Contributors": [ + { + "id": 105, + "name": "Nelly", + "role": "Main" + }, + { + "id": 13124, + "name": "Kelly Rowland", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 751, + "Name": "DNA.", + "Artists": "Kendrick Lamar", + "Color": "7B334A", + "DarkColor": "54253D", + "SongMetaId": "9", + "SpotifyId": "6HZILIRieu8S0iqY8kIKhj", + "DeezerID": 350171251, + "DeezerURL": "https://www.deezer.com/track/350171251", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71703079", + "BPM": 140.15, + "Duration": 185, + "ReleaseDate": "2017-04-14", + "AlbumName": "DAMN.", + "Explicit": true, + "Rank": 758061, + "Tags": [ + "Rap/Hip Hop", + "bpm:140.15", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 525046, + "name": "Kendrick Lamar", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 548, + "Name": "DNA.", + "Artists": "Kendrick Lamar", + "Color": "7B334A", + "DarkColor": "54253D", + "SongMetaId": "9", + "SpotifyId": "6HZILIRieu8S0iqY8kIKhj", + "DeezerID": 350171251, + "DeezerURL": "https://www.deezer.com/track/350171251", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71703079", + "BPM": 140.15, + "Duration": 185, + "ReleaseDate": "2017-04-14", + "AlbumName": "DAMN.", + "Explicit": true, + "Rank": 758061, + "Tags": [ + "Rap/Hip Hop", + "bpm:140.15", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 525046, + "name": "Kendrick Lamar", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 548, + "Name": "DNA.", + "Artists": "Kendrick Lamar", + "Color": "682A38", + "DarkColor": "321518", + "SongMetaId": "9", + "SpotifyId": "6HZILIRieu8S0iqY8kIKhj", + "DeezerID": 350171251, + "DeezerURL": "https://www.deezer.com/track/350171251", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71703079", + "BPM": 140.15, + "Duration": 185, + "ReleaseDate": "2017-04-14", + "AlbumName": "DAMN.", + "Explicit": true, + "Rank": 758061, + "Tags": [ + "Rap/Hip Hop", + "bpm:140.15", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 525046, + "name": "Kendrick Lamar", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 649, + "Name": "Doctor (Work It Out)", + "Artists": "Pharrell Williams, Miley Cyrus", + "Color": "F885A0", + "DarkColor": "E23680", + "SongMetaId": null, + "SpotifyId": "4f9wNNZET9wH7eMBgONd3d", + "DeezerID": 2678858422, + "DeezerURL": "https://www.deezer.com/track/2678858422", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6bd49eda51341ef2bde259752a6c226f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6bd49eda51341ef2bde259752a6c226f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6bd49eda51341ef2bde259752a6c226f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6bd49eda51341ef2bde259752a6c226f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12400672", + "BPM": 0, + "Duration": 182, + "ReleaseDate": "2024-03-01", + "AlbumName": "Doctor (Work It Out)", + "Explicit": false, + "Rank": 633218, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 103, + "name": "Pharrell Williams", + "role": "Main" + }, + { + "id": 12436, + "name": "Miley Cyrus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 649, + "Name": "Doctor (Work It Out)", + "Artists": "Pharrell Williams, Miley Cyrus", + "Color": "F7859F", + "DarkColor": "E23680", + "SongMetaId": null, + "SpotifyId": "4f9wNNZET9wH7eMBgONd3d", + "DeezerID": 2678858422, + "DeezerURL": "https://www.deezer.com/track/2678858422", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6bd49eda51341ef2bde259752a6c226f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6bd49eda51341ef2bde259752a6c226f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6bd49eda51341ef2bde259752a6c226f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6bd49eda51341ef2bde259752a6c226f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12400672", + "BPM": 0, + "Duration": 182, + "ReleaseDate": "2024-03-01", + "AlbumName": "Doctor (Work It Out)", + "Explicit": false, + "Rank": 633218, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 103, + "name": "Pharrell Williams", + "role": "Main" + }, + { + "id": 12436, + "name": "Miley Cyrus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 276, + "Name": "Domino", + "Artists": "Jessie J", + "Color": "77A7D8", + "DarkColor": "283E60", + "SongMetaId": null, + "SpotifyId": "6MAdEUilV2p9RQUqE5bMAK", + "DeezerID": 14405198, + "DeezerURL": "https://www.deezer.com/track/14405198", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2e830d5ee10ad8654e0d8ab70a18e54a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2e830d5ee10ad8654e0d8ab70a18e54a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2e830d5ee10ad8654e0d8ab70a18e54a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2e830d5ee10ad8654e0d8ab70a18e54a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71113573", + "BPM": 126.82, + "Duration": 234, + "ReleaseDate": "2011-11-14", + "AlbumName": "Who You Are (Platinum Edition)", + "Explicit": false, + "Rank": 822478, + "Tags": [ + "Pop", + "bpm:126.82", + "fast", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 985109, + "name": "Jessie J", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 615, + "Name": "Don't Bring Me Down", + "Artists": "Electric Light Orchestra", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "72ahyckBJfTigJCFCviVN7", + "DeezerID": 13816433, + "DeezerURL": "https://www.deezer.com/track/13816433", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ae226c95249c1c80ff2f2a835e67227b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ae226c95249c1c80ff2f2a835e67227b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ae226c95249c1c80ff2f2a835e67227b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ae226c95249c1c80ff2f2a835e67227b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM10015734", + "BPM": 0, + "Duration": 243, + "ReleaseDate": "2011-10-07", + "AlbumName": "The Essential Electric Light Orchestra", + "Explicit": false, + "Rank": 587174, + "Tags": [ + "Rock", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 207, + "name": "Electric Light Orchestra", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 615, + "Name": "Don't Bring Me Down", + "Artists": "Electric Light Orchestra", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "72ahyckBJfTigJCFCviVN7", + "DeezerID": 13816433, + "DeezerURL": "https://www.deezer.com/track/13816433", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ae226c95249c1c80ff2f2a835e67227b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ae226c95249c1c80ff2f2a835e67227b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ae226c95249c1c80ff2f2a835e67227b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ae226c95249c1c80ff2f2a835e67227b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM10015734", + "BPM": 0, + "Duration": 243, + "ReleaseDate": "2011-10-07", + "AlbumName": "The Essential Electric Light Orchestra", + "Explicit": false, + "Rank": 587174, + "Tags": [ + "Rock", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 207, + "name": "Electric Light Orchestra", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 219, + "Name": "Don't Call Me Up", + "Artists": "Mabel", + "Color": "BC3672", + "DarkColor": "571636", + "SongMetaId": null, + "SpotifyId": "5WHTFyqSii0lmT9R21abT8", + "DeezerID": 616963582, + "DeezerURL": "https://www.deezer.com/track/616963582", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cd7b09177d233e7c11bd93bcaf466e5e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cd7b09177d233e7c11bd93bcaf466e5e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cd7b09177d233e7c11bd93bcaf466e5e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cd7b09177d233e7c11bd93bcaf466e5e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71808052", + "BPM": 197.82, + "Duration": 178, + "ReleaseDate": "2019-01-18", + "AlbumName": "Ivy To Roses (Mixtape)", + "Explicit": false, + "Rank": 849104, + "Tags": [ + "Pop", + "bpm:197.82", + "short", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 103103, + "name": "Mabel", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 219, + "Name": "Don't Call Me Up", + "Artists": "Mabel", + "Color": "CF2380", + "DarkColor": "922438", + "SongMetaId": null, + "SpotifyId": "5WHTFyqSii0lmT9R21abT8", + "DeezerID": 616963582, + "DeezerURL": "https://www.deezer.com/track/616963582", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cd7b09177d233e7c11bd93bcaf466e5e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cd7b09177d233e7c11bd93bcaf466e5e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cd7b09177d233e7c11bd93bcaf466e5e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cd7b09177d233e7c11bd93bcaf466e5e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71808052", + "BPM": 197.82, + "Duration": 178, + "ReleaseDate": "2019-01-18", + "AlbumName": "Ivy To Roses (Mixtape)", + "Explicit": false, + "Rank": 849104, + "Tags": [ + "Pop", + "bpm:197.82", + "short", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 103103, + "name": "Mabel", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 55, + "Name": "Don't Cha", + "Artists": "The Pussycat Dolls", + "Color": "E4996A", + "DarkColor": "C76051", + "SongMetaId": null, + "SpotifyId": "1gZ7i4qxXkHZb1r6eioaAP", + "DeezerID": 1161005, + "DeezerURL": "https://www.deezer.com/track/1161005", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b8d29ee7cf1683a32358f9bab783df15/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b8d29ee7cf1683a32358f9bab783df15/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b8d29ee7cf1683a32358f9bab783df15/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b8d29ee7cf1683a32358f9bab783df15/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70503191", + "BPM": 119.8, + "Duration": 272, + "ReleaseDate": "2005-10-13", + "AlbumName": "PCD", + "Explicit": false, + "Rank": 837946, + "Tags": [ + "Pop", + "bpm:119.8", + "medium", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 83, + "name": "The Pussycat Dolls", + "role": "Main" + }, + { + "id": 796, + "name": "Busta Rhymes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 342, + "Name": "Don't Fear The Reaper", + "Artists": "Blue Öyster Cult", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "5QTxFnGygVM4jFQiBovmRo", + "DeezerID": 82692320, + "DeezerURL": "https://www.deezer.com/track/82692320", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d3f4cbd1d3ac37617d00e01a1367f22c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d3f4cbd1d3ac37617d00e01a1367f22c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d3f4cbd1d3ac37617d00e01a1367f22c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d3f4cbd1d3ac37617d00e01a1367f22c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM17600477", + "BPM": 141.1, + "Duration": 308, + "ReleaseDate": "2012-04-17", + "AlbumName": "The Essential Blue Öyster Cult", + "Explicit": false, + "Rank": 695815, + "Tags": [ + "Rock", + "bpm:141.1", + "fast", + "long", + "year:2012" + ], + "Contributors": [ + { + "id": 692, + "name": "Blue Öyster Cult", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 342, + "Name": "Don't Fear The Reaper", + "Artists": "Blue Öyster Cult", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "5QTxFnGygVM4jFQiBovmRo", + "DeezerID": 82692320, + "DeezerURL": "https://www.deezer.com/track/82692320", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d3f4cbd1d3ac37617d00e01a1367f22c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d3f4cbd1d3ac37617d00e01a1367f22c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d3f4cbd1d3ac37617d00e01a1367f22c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d3f4cbd1d3ac37617d00e01a1367f22c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM17600477", + "BPM": 141.1, + "Duration": 308, + "ReleaseDate": "2012-04-17", + "AlbumName": "The Essential Blue Öyster Cult", + "Explicit": false, + "Rank": 695815, + "Tags": [ + "Rock", + "bpm:141.1", + "fast", + "long", + "year:2012" + ], + "Contributors": [ + { + "id": 692, + "name": "Blue Öyster Cult", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 160, + "Name": "Don't Look Back Into The Sun", + "Artists": "The Libertines", + "Color": "F0931E", + "DarkColor": "7C3B13", + "SongMetaId": null, + "SpotifyId": "4KspXoCVJXGY1VrvEe1Hdm", + "DeezerID": 945223, + "DeezerURL": "https://www.deezer.com/track/945223", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1f721c52478681cf1019fbd1e54bc38b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1f721c52478681cf1019fbd1e54bc38b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1f721c52478681cf1019fbd1e54bc38b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1f721c52478681cf1019fbd1e54bc38b/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCVZ0300617", + "BPM": 0, + "Duration": 180, + "ReleaseDate": "2003-08-18", + "AlbumName": "Don't Look Back into the Sun", + "Explicit": false, + "Rank": 548563, + "Tags": [ + "Alternativo", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 1022, + "name": "The Libertines", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 498, + "Name": "Don't Speak", + "Artists": "No Doubt", + "Color": "0D447C", + "DarkColor": "092C4F", + "SongMetaId": null, + "SpotifyId": "6urCAbunOQI4bLhmGpX7iS", + "DeezerID": 24246391, + "DeezerURL": "https://www.deezer.com/track/24246391", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/97b81fddd1fa280adb7ebc41c5a255e6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/97b81fddd1fa280adb7ebc41c5a255e6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/97b81fddd1fa280adb7ebc41c5a255e6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/97b81fddd1fa280adb7ebc41c5a255e6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR19500279", + "BPM": 152, + "Duration": 263, + "ReleaseDate": "2003-11-25", + "AlbumName": "The Singles Collection", + "Explicit": false, + "Rank": 900953, + "Tags": [ + "Pop", + "bpm:152", + "medium-length", + "very-fast", + "year:2003" + ], + "Contributors": [ + { + "id": 79, + "name": "No Doubt", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 498, + "Name": "Don't Speak", + "Artists": "No Doubt", + "Color": "0D447C", + "DarkColor": "052240", + "SongMetaId": null, + "SpotifyId": "6urCAbunOQI4bLhmGpX7iS", + "DeezerID": 24246391, + "DeezerURL": "https://www.deezer.com/track/24246391", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/97b81fddd1fa280adb7ebc41c5a255e6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/97b81fddd1fa280adb7ebc41c5a255e6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/97b81fddd1fa280adb7ebc41c5a255e6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/97b81fddd1fa280adb7ebc41c5a255e6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR19500279", + "BPM": 152, + "Duration": 263, + "ReleaseDate": "2003-11-25", + "AlbumName": "The Singles Collection", + "Explicit": false, + "Rank": 900953, + "Tags": [ + "Pop", + "bpm:152", + "medium-length", + "very-fast", + "year:2003" + ], + "Contributors": [ + { + "id": 79, + "name": "No Doubt", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 468, + "Name": "Don't Stop The Party", + "Artists": "Drunk Girl", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "22MQaNqXOkTUdg4rawaBCg", + "DeezerID": 132829446, + "DeezerURL": "https://www.deezer.com/track/132829446", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/738d322a7434b0b5cc84671fbe0487bf/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/738d322a7434b0b5cc84671fbe0487bf/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/738d322a7434b0b5cc84671fbe0487bf/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/738d322a7434b0b5cc84671fbe0487bf/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM81610344", + "BPM": 0, + "Duration": 196, + "ReleaseDate": "2016-09-26", + "AlbumName": "Don't Stop the Party", + "Explicit": false, + "Rank": 199777, + "Tags": [ + "Dubstep", + "Electro", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 5974710, + "name": "Drunk Girl", + "role": "Main" + }, + { + "id": 1039298, + "name": "Deanna", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Electro", + "Dubstep" + ] + }, + { + "SongId": 468, + "Name": "Don't Stop The Party", + "Artists": "Drunk Girl", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "22MQaNqXOkTUdg4rawaBCg", + "DeezerID": 132829446, + "DeezerURL": "https://www.deezer.com/track/132829446", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/738d322a7434b0b5cc84671fbe0487bf/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/738d322a7434b0b5cc84671fbe0487bf/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/738d322a7434b0b5cc84671fbe0487bf/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/738d322a7434b0b5cc84671fbe0487bf/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM81610344", + "BPM": 0, + "Duration": 196, + "ReleaseDate": "2016-09-26", + "AlbumName": "Don't Stop the Party", + "Explicit": false, + "Rank": 199777, + "Tags": [ + "Dubstep", + "Electro", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 5974710, + "name": "Drunk Girl", + "role": "Main" + }, + { + "id": 1039298, + "name": "Deanna", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Electro", + "Dubstep" + ] + }, + { + "SongId": 53, + "Name": "Don't You (Forget About Me)", + "Artists": "Simple Minds", + "Color": "AD8A52", + "DarkColor": "563628", + "SongMetaId": null, + "SpotifyId": "3fH4KjXFYMmljxrcGrbPj9", + "DeezerID": 3158150, + "DeezerURL": "https://www.deezer.com/track/3158150", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ceef18218a8d3e16eccd3ce195752cd8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ceef18218a8d3e16eccd3ce195752cd8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ceef18218a8d3e16eccd3ce195752cd8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ceef18218a8d3e16eccd3ce195752cd8/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAAA0100587", + "BPM": 111.1, + "Duration": 260, + "ReleaseDate": "2008-04-28", + "AlbumName": "Driving", + "Explicit": false, + "Rank": 783411, + "Tags": [ + "Pop", + "bpm:111.1", + "medium", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 2454, + "name": "Simple Minds", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 4, + "Name": "DON'T YOU WORRY", + "Artists": "The Black Eyed Peas, Shakira, David Guetta", + "Color": "3988CE", + "DarkColor": "31436B", + "SongMetaId": null, + "SpotifyId": "0gYXw7aPoybWFfB7btQ0eM", + "DeezerID": 1790673757, + "DeezerURL": "https://www.deezer.com/track/1790673757", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5d130e59dd8619b3f07e4c695274ec2e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5d130e59dd8619b3f07e4c695274ec2e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5d130e59dd8619b3f07e4c695274ec2e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5d130e59dd8619b3f07e4c695274ec2e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12202555", + "BPM": 0, + "Duration": 196, + "ReleaseDate": "2025-02-03", + "AlbumName": "DON'T YOU WORRY", + "Explicit": false, + "Rank": 747238, + "Tags": [ + "Dance", + "Pop", + "medium-length", + "year:2025" + ], + "Contributors": [ + { + "id": 160, + "name": "Shakira", + "role": "Main" + }, + { + "id": 542, + "name": "David Guetta", + "role": "Main" + }, + { + "id": 1020109, + "name": "Black Eyed Peas", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 578, + "Name": "Down The Westside", + "Artists": "Toby Sebastian", + "Color": "2E9AAA", + "DarkColor": "257E8B", + "SongMetaId": null, + "SpotifyId": "1map7Pj5QiJsfOpNvfmDkA", + "DeezerID": 2654225652, + "DeezerURL": "https://www.deezer.com/track/2654225652", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/362604eb3de2949386fcb1795c17f980/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/362604eb3de2949386fcb1795c17f980/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/362604eb3de2949386fcb1795c17f980/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/362604eb3de2949386fcb1795c17f980/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBLFP2456105", + "BPM": 0, + "Duration": 218, + "ReleaseDate": "2024-03-08", + "AlbumName": "Down The Westside", + "Explicit": false, + "Rank": 51016, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 4349934, + "name": "Toby Sebastian", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 578, + "Name": "Down The Westside", + "Artists": "Toby Sebastian", + "Color": "2E9AAA", + "DarkColor": "1F7784", + "SongMetaId": null, + "SpotifyId": "1map7Pj5QiJsfOpNvfmDkA", + "DeezerID": 2654225652, + "DeezerURL": "https://www.deezer.com/track/2654225652", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/362604eb3de2949386fcb1795c17f980/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/362604eb3de2949386fcb1795c17f980/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/362604eb3de2949386fcb1795c17f980/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/362604eb3de2949386fcb1795c17f980/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBLFP2456105", + "BPM": 0, + "Duration": 218, + "ReleaseDate": "2024-03-08", + "AlbumName": "Down The Westside", + "Explicit": false, + "Rank": 51016, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 4349934, + "name": "Toby Sebastian", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 23, + "Name": "Down With The Sickness", + "Artists": "Disturbed", + "Color": "0C878A", + "DarkColor": "063F3C", + "SongMetaId": "10", + "SpotifyId": "40rvBMQizxkIqnjPdEWY1v", + "DeezerID": 663984, + "DeezerURL": "https://www.deezer.com/track/663984", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7380ae3d07e8c1f2683f4b1222312251/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7380ae3d07e8c1f2683f4b1222312251/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7380ae3d07e8c1f2683f4b1222312251/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7380ae3d07e8c1f2683f4b1222312251/1000x1000-000000-80-0-0.jpg", + "ISRC": "USGI19900180", + "BPM": 179.8, + "Duration": 279, + "ReleaseDate": "2000-02-25", + "AlbumName": "The Sickness", + "Explicit": true, + "Rank": 790752, + "Tags": [ + "Hard Rock", + "Rock", + "bpm:179.8", + "medium-length", + "very-fast", + "year:2000" + ], + "Contributors": [ + { + "id": 2127, + "name": "Disturbed", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock" + ] + }, + { + "SongId": 23, + "Name": "Down With The Sickness", + "Artists": "Disturbed", + "Color": "35B4A1", + "DarkColor": "2B8D7E", + "SongMetaId": "10", + "SpotifyId": "40rvBMQizxkIqnjPdEWY1v", + "DeezerID": 663984, + "DeezerURL": "https://www.deezer.com/track/663984", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7380ae3d07e8c1f2683f4b1222312251/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7380ae3d07e8c1f2683f4b1222312251/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7380ae3d07e8c1f2683f4b1222312251/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7380ae3d07e8c1f2683f4b1222312251/1000x1000-000000-80-0-0.jpg", + "ISRC": "USGI19900180", + "BPM": 179.8, + "Duration": 279, + "ReleaseDate": "2000-02-25", + "AlbumName": "The Sickness", + "Explicit": true, + "Rank": 790752, + "Tags": [ + "Hard Rock", + "Rock", + "bpm:179.8", + "medium-length", + "very-fast", + "year:2000" + ], + "Contributors": [ + { + "id": 2127, + "name": "Disturbed", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock" + ] + }, + { + "SongId": 397, + "Name": "Dreamer", + "Artists": "Livin’ Joy", + "Color": "76FF00", + "DarkColor": "005F05", + "SongMetaId": null, + "SpotifyId": "6wetvpPWooBdmAEOKnDhpo", + "DeezerID": 117106932, + "DeezerURL": "https://www.deezer.com/track/117106932", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0ef022d3d20ed7fa43500a08194768e9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0ef022d3d20ed7fa43500a08194768e9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0ef022d3d20ed7fa43500a08194768e9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0ef022d3d20ed7fa43500a08194768e9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCGZ1500102", + "BPM": 127.2, + "Duration": 225, + "ReleaseDate": "2016-01-08", + "AlbumName": "Dreamer", + "Explicit": false, + "Rank": 508387, + "Tags": [ + "Dance", + "bpm:127.2", + "fast", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 16750, + "name": "Livin' Joy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 522, + "Name": "DRIFTER", + "Artists": "THIRST, CHYL", + "Color": "358B84", + "DarkColor": "368C85", + "SongMetaId": null, + "SpotifyId": "0X0YaxmMX1foUMubg0X6YR", + "DeezerID": 2497400001, + "DeezerURL": "https://www.deezer.com/track/2497400001", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d7867e2c6ffb4aaf264e16323f672ea3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d7867e2c6ffb4aaf264e16323f672ea3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d7867e2c6ffb4aaf264e16323f672ea3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d7867e2c6ffb4aaf264e16323f672ea3/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D22300416", + "BPM": 0, + "Duration": 99, + "ReleaseDate": "2023-10-16", + "AlbumName": "DRIFTER", + "Explicit": false, + "Rank": 187672, + "Tags": [ + "Dance", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 105023, + "name": "Thirst", + "role": "Main" + }, + { + "id": 1321724, + "name": "Chyl", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 522, + "Name": "DRIFTER", + "Artists": "THIRST, CHYL", + "Color": "368C85", + "DarkColor": "225D59", + "SongMetaId": null, + "SpotifyId": "0X0YaxmMX1foUMubg0X6YR", + "DeezerID": 2497400001, + "DeezerURL": "https://www.deezer.com/track/2497400001", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d7867e2c6ffb4aaf264e16323f672ea3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d7867e2c6ffb4aaf264e16323f672ea3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d7867e2c6ffb4aaf264e16323f672ea3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d7867e2c6ffb4aaf264e16323f672ea3/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D22300416", + "BPM": 0, + "Duration": 99, + "ReleaseDate": "2023-10-16", + "AlbumName": "DRIFTER", + "Explicit": false, + "Rank": 187672, + "Tags": [ + "Dance", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 105023, + "name": "Thirst", + "role": "Main" + }, + { + "id": 1321724, + "name": "Chyl", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 619, + "Name": "Drifting Away", + "Artists": "Grum", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "2XmsZtjm0iBEXdQDns4ys2", + "DeezerID": 124638900, + "DeezerURL": "https://www.deezer.com/track/124638900", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e51331405b06e0da83d8585e76a0553e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e51331405b06e0da83d8585e76a0553e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e51331405b06e0da83d8585e76a0553e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e51331405b06e0da83d8585e76a0553e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBEWA1600250", + "BPM": 126.05, + "Duration": 354, + "ReleaseDate": "2016-05-27", + "AlbumName": "Drifting Away", + "Explicit": false, + "Rank": 67802, + "Tags": [ + "Dance", + "Electro", + "bpm:126.05", + "fast", + "long", + "year:2016" + ], + "Contributors": [ + { + "id": 169423, + "name": "Grum", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 619, + "Name": "Drifting Away", + "Artists": "Grum", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "2XmsZtjm0iBEXdQDns4ys2", + "DeezerID": 124638900, + "DeezerURL": "https://www.deezer.com/track/124638900", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e51331405b06e0da83d8585e76a0553e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e51331405b06e0da83d8585e76a0553e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e51331405b06e0da83d8585e76a0553e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e51331405b06e0da83d8585e76a0553e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBEWA1600250", + "BPM": 126.05, + "Duration": 354, + "ReleaseDate": "2016-05-27", + "AlbumName": "Drifting Away", + "Explicit": false, + "Rank": 67802, + "Tags": [ + "Dance", + "Electro", + "bpm:126.05", + "fast", + "long", + "year:2016" + ], + "Contributors": [ + { + "id": 169423, + "name": "Grum", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 550, + "Name": "Drop It Like It's Hot", + "Artists": "Snoop Dogg, Pharrell Williams", + "Color": "2A4B47", + "DarkColor": "1A302D", + "SongMetaId": "11", + "SpotifyId": "2NBQmPrOEEjA8VbeWOQGxO", + "DeezerID": 429125352, + "DeezerURL": "https://www.deezer.com/track/429125352", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b448b3ea65a447ea14a7bc0e6a0c6162/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b448b3ea65a447ea14a7bc0e6a0c6162/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b448b3ea65a447ea14a7bc0e6a0c6162/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b448b3ea65a447ea14a7bc0e6a0c6162/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC10400902", + "BPM": 92.08, + "Duration": 266, + "ReleaseDate": "2017-11-10", + "AlbumName": "Hip Hop 2000", + "Explicit": false, + "Rank": 804749, + "Tags": [ + "Rap/Hip Hop", + "bpm:92.08", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 3, + "name": "Snoop Dogg", + "role": "Main" + }, + { + "id": 103, + "name": "Pharrell Williams", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 754, + "Name": "Drop It Like It's Hot", + "Artists": "Snoop Dogg, Pharrell Williams", + "Color": "2A4B47", + "DarkColor": "1A302D", + "SongMetaId": "11", + "SpotifyId": "2NBQmPrOEEjA8VbeWOQGxO", + "DeezerID": 429125352, + "DeezerURL": "https://www.deezer.com/track/429125352", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b448b3ea65a447ea14a7bc0e6a0c6162/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b448b3ea65a447ea14a7bc0e6a0c6162/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b448b3ea65a447ea14a7bc0e6a0c6162/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b448b3ea65a447ea14a7bc0e6a0c6162/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC10400902", + "BPM": 92.08, + "Duration": 266, + "ReleaseDate": "2017-11-10", + "AlbumName": "Hip Hop 2000", + "Explicit": false, + "Rank": 804749, + "Tags": [ + "Rap/Hip Hop", + "bpm:92.08", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 3, + "name": "Snoop Dogg", + "role": "Main" + }, + { + "id": 103, + "name": "Pharrell Williams", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 550, + "Name": "Drop It Like It's Hot", + "Artists": "Snoop Dogg, Pharrell Williams", + "Color": "2A4B47", + "DarkColor": "1E3734", + "SongMetaId": "11", + "SpotifyId": "2NBQmPrOEEjA8VbeWOQGxO", + "DeezerID": 429125352, + "DeezerURL": "https://www.deezer.com/track/429125352", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b448b3ea65a447ea14a7bc0e6a0c6162/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b448b3ea65a447ea14a7bc0e6a0c6162/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b448b3ea65a447ea14a7bc0e6a0c6162/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b448b3ea65a447ea14a7bc0e6a0c6162/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC10400902", + "BPM": 92.08, + "Duration": 266, + "ReleaseDate": "2017-11-10", + "AlbumName": "Hip Hop 2000", + "Explicit": false, + "Rank": 804749, + "Tags": [ + "Rap/Hip Hop", + "bpm:92.08", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 3, + "name": "Snoop Dogg", + "role": "Main" + }, + { + "id": 103, + "name": "Pharrell Williams", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 366, + "Name": "Drunk (And I Don't Wanna Go Home)", + "Artists": "Elle King, Miranda Lambert", + "Color": "E14281", + "DarkColor": "671E3B", + "SongMetaId": null, + "SpotifyId": "0QULNNd9z5s35entfiiXoa", + "DeezerID": 1246285062, + "DeezerURL": "https://www.deezer.com/track/1246285062", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f44aaad1dd5f1727411164bbed5dfc81/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f44aaad1dd5f1727411164bbed5dfc81/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f44aaad1dd5f1727411164bbed5dfc81/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f44aaad1dd5f1727411164bbed5dfc81/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC12100003", + "BPM": 0, + "Duration": 246, + "ReleaseDate": "2021-02-26", + "AlbumName": "Drunk (And I Don't Wanna Go Home)", + "Explicit": false, + "Rank": 457643, + "Tags": [ + "Alternativo", + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 1709730, + "name": "Elle King", + "role": "Main" + }, + { + "id": 5057, + "name": "Miranda Lambert", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Pop" + ] + }, + { + "SongId": 38, + "Name": "Du hast", + "Artists": "Rammstein", + "Color": "50707C", + "DarkColor": "2D424C", + "SongMetaId": null, + "SpotifyId": "6uEvFCaOqXyEidoO8BZbyh", + "DeezerID": 630595142, + "DeezerURL": "https://www.deezer.com/track/630595142", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e24ae59ad933185bd6689d388eb0f256/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e24ae59ad933185bd6689d388eb0f256/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e24ae59ad933185bd6689d388eb0f256/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e24ae59ad933185bd6689d388eb0f256/1000x1000-000000-80-0-0.jpg", + "ISRC": "DED579704010", + "BPM": 124.91, + "Duration": 235, + "ReleaseDate": "2018-05-28", + "AlbumName": "Sehnsucht", + "Explicit": false, + "Rank": 848806, + "Tags": [ + "Metal", + "bpm:124.91", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 464, + "name": "Rammstein", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 38, + "Name": "Du hast", + "Artists": "Rammstein", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "6uEvFCaOqXyEidoO8BZbyh", + "DeezerID": 630595142, + "DeezerURL": "https://www.deezer.com/track/630595142", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e24ae59ad933185bd6689d388eb0f256/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e24ae59ad933185bd6689d388eb0f256/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e24ae59ad933185bd6689d388eb0f256/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e24ae59ad933185bd6689d388eb0f256/1000x1000-000000-80-0-0.jpg", + "ISRC": "DED579704010", + "BPM": 124.91, + "Duration": 235, + "ReleaseDate": "2018-05-28", + "AlbumName": "Sehnsucht", + "Explicit": false, + "Rank": 848806, + "Tags": [ + "Metal", + "bpm:124.91", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 464, + "name": "Rammstein", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 405, + "Name": "Duality", + "Artists": "Slipknot", + "Color": "EF323D", + "DarkColor": "3B010A", + "SongMetaId": "12", + "SpotifyId": "61mWefnWQOLf90gepjOCb3", + "DeezerID": 3819908, + "DeezerURL": "https://www.deezer.com/track/3819908", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/35b093d22fe1539003d5d18dd8f309eb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/35b093d22fe1539003d5d18dd8f309eb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/35b093d22fe1539003d5d18dd8f309eb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/35b093d22fe1539003d5d18dd8f309eb/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLA320420785", + "BPM": 146.1, + "Duration": 252, + "ReleaseDate": "2004-01-01", + "AlbumName": "Vol. 3: The Subliminal Verses", + "Explicit": false, + "Rank": 862794, + "Tags": [ + "Metal", + "bpm:146.1", + "fast", + "medium-length", + "year:2004" + ], + "Contributors": [ + { + "id": 117, + "name": "Slipknot", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 405, + "Name": "Duality", + "Artists": "Slipknot", + "Color": "EF323D", + "DarkColor": "3B010A", + "SongMetaId": "12", + "SpotifyId": "61mWefnWQOLf90gepjOCb3", + "DeezerID": 3819908, + "DeezerURL": "https://www.deezer.com/track/3819908", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/35b093d22fe1539003d5d18dd8f309eb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/35b093d22fe1539003d5d18dd8f309eb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/35b093d22fe1539003d5d18dd8f309eb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/35b093d22fe1539003d5d18dd8f309eb/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLA320420785", + "BPM": 146.1, + "Duration": 252, + "ReleaseDate": "2004-01-01", + "AlbumName": "Vol. 3: The Subliminal Verses", + "Explicit": false, + "Rank": 862794, + "Tags": [ + "Metal", + "bpm:146.1", + "fast", + "medium-length", + "year:2004" + ], + "Contributors": [ + { + "id": 117, + "name": "Slipknot", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 413, + "Name": "Easy Love", + "Artists": "Sigala", + "Color": "B58C9C", + "DarkColor": "936D7C", + "SongMetaId": null, + "SpotifyId": "5s7xgzXtmY4gMjeSlgisjy", + "DeezerID": 105977954, + "DeezerURL": "https://www.deezer.com/track/105977954", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/af544c0e561ccdff99eed5d610c7d5ac/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/af544c0e561ccdff99eed5d610c7d5ac/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/af544c0e561ccdff99eed5d610c7d5ac/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/af544c0e561ccdff99eed5d610c7d5ac/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCEN1500481", + "BPM": 124.16, + "Duration": 228, + "ReleaseDate": "2015-08-28", + "AlbumName": "Easy Love (Original Mix)", + "Explicit": false, + "Rank": 458706, + "Tags": [ + "Dance", + "Pop", + "bpm:124.16", + "fast", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 5203250, + "name": "Sigala", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 413, + "Name": "Easy Love", + "Artists": "Sigala", + "Color": "B58C9C", + "DarkColor": "936D7C", + "SongMetaId": null, + "SpotifyId": "5s7xgzXtmY4gMjeSlgisjy", + "DeezerID": 105977954, + "DeezerURL": "https://www.deezer.com/track/105977954", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/af544c0e561ccdff99eed5d610c7d5ac/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/af544c0e561ccdff99eed5d610c7d5ac/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/af544c0e561ccdff99eed5d610c7d5ac/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/af544c0e561ccdff99eed5d610c7d5ac/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCEN1500481", + "BPM": 124.16, + "Duration": 228, + "ReleaseDate": "2015-08-28", + "AlbumName": "Easy Love (Original Mix)", + "Explicit": false, + "Rank": 458706, + "Tags": [ + "Dance", + "Pop", + "bpm:124.16", + "fast", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 5203250, + "name": "Sigala", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 552, + "Name": "Egos", + "Artists": "Nate Rose", + "Color": "EB8D69", + "DarkColor": "C27557", + "SongMetaId": null, + "SpotifyId": "6BMWIPafJxYQDpfGnYBDDZ", + "DeezerID": 919266622, + "DeezerURL": "https://www.deezer.com/track/919266622", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f2a60547e1182115a78c7b22976cbc20/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f2a60547e1182115a78c7b22976cbc20/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f2a60547e1182115a78c7b22976cbc20/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f2a60547e1182115a78c7b22976cbc20/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZDA52086728", + "BPM": 0, + "Duration": 131, + "ReleaseDate": "2020-04-24", + "AlbumName": "Egos", + "Explicit": true, + "Rank": 156523, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2020" + ], + "Contributors": [ + { + "id": 10941348, + "name": "Nate Rose", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 552, + "Name": "Egos", + "Artists": "Nate Rose", + "Color": "EB8D69", + "DarkColor": "B96E51", + "SongMetaId": null, + "SpotifyId": "6BMWIPafJxYQDpfGnYBDDZ", + "DeezerID": 919266622, + "DeezerURL": "https://www.deezer.com/track/919266622", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f2a60547e1182115a78c7b22976cbc20/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f2a60547e1182115a78c7b22976cbc20/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f2a60547e1182115a78c7b22976cbc20/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f2a60547e1182115a78c7b22976cbc20/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZDA52086728", + "BPM": 0, + "Duration": 131, + "ReleaseDate": "2020-04-24", + "AlbumName": "Egos", + "Explicit": true, + "Rank": 156523, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2020" + ], + "Contributors": [ + { + "id": 10941348, + "name": "Nate Rose", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 229, + "Name": "Electric Feel", + "Artists": "MGMT", + "Color": "696BB0", + "DarkColor": "364376", + "SongMetaId": null, + "SpotifyId": "3FtYbEfBqAlGO46NUDQSAt", + "DeezerID": 536484, + "DeezerURL": "https://www.deezer.com/track/536484", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d910a6585e4a80f06e6fddce4f6f859d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d910a6585e4a80f06e6fddce4f6f859d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d910a6585e4a80f06e6fddce4f6f859d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d910a6585e4a80f06e6fddce4f6f859d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM10702131", + "BPM": 102.8, + "Duration": 229, + "ReleaseDate": "2008-02-12", + "AlbumName": "Oracular Spectacular", + "Explicit": false, + "Rank": 707151, + "Tags": [ + "Pop", + "bpm:102.8", + "medium", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 69627, + "name": "MGMT", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 229, + "Name": "Electric Feel", + "Artists": "MGMT", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "3FtYbEfBqAlGO46NUDQSAt", + "DeezerID": 536484, + "DeezerURL": "https://www.deezer.com/track/536484", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d910a6585e4a80f06e6fddce4f6f859d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d910a6585e4a80f06e6fddce4f6f859d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d910a6585e4a80f06e6fddce4f6f859d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d910a6585e4a80f06e6fddce4f6f859d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM10702131", + "BPM": 102.8, + "Duration": 229, + "ReleaseDate": "2008-02-12", + "AlbumName": "Oracular Spectacular", + "Explicit": false, + "Rank": 707151, + "Tags": [ + "Pop", + "bpm:102.8", + "medium", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 69627, + "name": "MGMT", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 78, + "Name": "Electric Worry", + "Artists": "Clutch", + "Color": "B16041", + "DarkColor": "914337", + "SongMetaId": null, + "SpotifyId": "7mQgJx5mfCuI6o8elrYCKg", + "DeezerID": 103062700, + "DeezerURL": "https://www.deezer.com/track/103062700", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d7244c0335ee86b38f11cab33e2fe949/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d7244c0335ee86b38f11cab33e2fe949/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d7244c0335ee86b38f11cab33e2fe949/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d7244c0335ee86b38f11cab33e2fe949/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPAM1000158", + "BPM": 164.06, + "Duration": 314, + "ReleaseDate": "2014-07-22", + "AlbumName": "Summer Sound Attack", + "Explicit": false, + "Rank": 306923, + "Tags": [ + "Rock", + "Rock e Roll/Rockabilly", + "bpm:164.06", + "long", + "very-fast", + "year:2014" + ], + "Contributors": [ + { + "id": 5505, + "name": "Clutch", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Rock e Roll/Rockabilly" + ] + }, + { + "SongId": 590, + "Name": "Encompass", + "Artists": "MRSHL", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "0P3wXI0u1b7j0utYoArUwD", + "DeezerID": 2328100625, + "DeezerURL": "https://www.deezer.com/track/2328100625", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2358559", + "BPM": 0, + "Duration": 262, + "ReleaseDate": "2023-07-07", + "AlbumName": "Neoluminum Vol. 2", + "Explicit": false, + "Rank": 106342, + "Tags": [ + "Dubstep", + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 178039737, + "name": "MRSHLMusic", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dubstep" + ] + }, + { + "SongId": 590, + "Name": "Encompass", + "Artists": "MRSHL", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "0P3wXI0u1b7j0utYoArUwD", + "DeezerID": 2328100625, + "DeezerURL": "https://www.deezer.com/track/2328100625", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/21ceaadb205605df93db427c940f11bc/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2358559", + "BPM": 0, + "Duration": 262, + "ReleaseDate": "2023-07-07", + "AlbumName": "Neoluminum Vol. 2", + "Explicit": false, + "Rank": 106342, + "Tags": [ + "Dubstep", + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 178039737, + "name": "MRSHLMusic", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dubstep" + ] + }, + { + "SongId": 326, + "Name": "Enemy", + "Artists": "Imagine Dragons, JID", + "Color": "B63287", + "DarkColor": "411448", + "SongMetaId": null, + "SpotifyId": "1r9xUipOqoNwggBpENDsvJ", + "DeezerID": 1535046792, + "DeezerURL": "https://www.deezer.com/track/1535046792", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/59e97030824a55b87304485e549a2451/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/59e97030824a55b87304485e549a2451/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/59e97030824a55b87304485e549a2451/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/59e97030824a55b87304485e549a2451/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72119916", + "BPM": 0, + "Duration": 173, + "ReleaseDate": "2021-10-28", + "AlbumName": "Enemy (from the series Arcane League of Legends)", + "Explicit": false, + "Rank": 958749, + "Tags": [ + "Alternativo", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 416239, + "name": "Imagine Dragons", + "role": "Main" + }, + { + "id": 8409650, + "name": "JID", + "role": "Main" + }, + { + "id": 563816, + "name": "Arcane", + "role": "Main" + }, + { + "id": 7402526, + "name": "League of Legends", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 326, + "Name": "Enemy", + "Artists": "Imagine Dragons, JID", + "Color": "A54482", + "DarkColor": "611A6E", + "SongMetaId": null, + "SpotifyId": "1r9xUipOqoNwggBpENDsvJ", + "DeezerID": 1535046792, + "DeezerURL": "https://www.deezer.com/track/1535046792", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/59e97030824a55b87304485e549a2451/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/59e97030824a55b87304485e549a2451/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/59e97030824a55b87304485e549a2451/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/59e97030824a55b87304485e549a2451/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72119916", + "BPM": 0, + "Duration": 173, + "ReleaseDate": "2021-10-28", + "AlbumName": "Enemy (from the series Arcane League of Legends)", + "Explicit": false, + "Rank": 958749, + "Tags": [ + "Alternativo", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 416239, + "name": "Imagine Dragons", + "role": "Main" + }, + { + "id": 8409650, + "name": "JID", + "role": "Main" + }, + { + "id": 563816, + "name": "Arcane", + "role": "Main" + }, + { + "id": 7402526, + "name": "League of Legends", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 459, + "Name": "Enola Gay", + "Artists": "Orchestral Manoeuvres In The Dark", + "Color": "B0C0DB", + "DarkColor": "768CAF", + "SongMetaId": null, + "SpotifyId": "7bJSbd2Upa4iYVHlbRKEJm", + "DeezerID": 3156222, + "DeezerURL": "https://www.deezer.com/track/3156222", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6da4544e6c1fa244bcde6b3e13a9eaa5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6da4544e6c1fa244bcde6b3e13a9eaa5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6da4544e6c1fa244bcde6b3e13a9eaa5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6da4544e6c1fa244bcde6b3e13a9eaa5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAAA8000002", + "BPM": 143.1, + "Duration": 209, + "ReleaseDate": "2003-03-03", + "AlbumName": "The OMD Singles", + "Explicit": false, + "Rank": 647150, + "Tags": [ + "Rock", + "bpm:143.1", + "fast", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 966, + "name": "Orchestral Manoeuvres in the Dark", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 459, + "Name": "Enola Gay", + "Artists": "Orchestral Manoeuvres In The Dark", + "Color": "B0C0DB", + "DarkColor": "768CAF", + "SongMetaId": null, + "SpotifyId": "7bJSbd2Upa4iYVHlbRKEJm", + "DeezerID": 3156222, + "DeezerURL": "https://www.deezer.com/track/3156222", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6da4544e6c1fa244bcde6b3e13a9eaa5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6da4544e6c1fa244bcde6b3e13a9eaa5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6da4544e6c1fa244bcde6b3e13a9eaa5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6da4544e6c1fa244bcde6b3e13a9eaa5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAAA8000002", + "BPM": 143.1, + "Duration": 209, + "ReleaseDate": "2003-03-03", + "AlbumName": "The OMD Singles", + "Explicit": false, + "Rank": 647150, + "Tags": [ + "Rock", + "bpm:143.1", + "fast", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 966, + "name": "Orchestral Manoeuvres in the Dark", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 630, + "Name": "Entatha Dance", + "Artists": "Shredtune", + "Color": "EE492E", + "DarkColor": "980915", + "SongMetaId": null, + "SpotifyId": "3isSrlQZMJ0EbSQ6BXh59p", + "DeezerID": 2338702585, + "DeezerURL": "https://www.deezer.com/track/2338702585", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b5d4fff36d21692a04a74688787bf4f1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b5d4fff36d21692a04a74688787bf4f1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b5d4fff36d21692a04a74688787bf4f1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b5d4fff36d21692a04a74688787bf4f1/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2362402", + "BPM": 0, + "Duration": 193, + "ReleaseDate": "2023-06-30", + "AlbumName": "PRIDE: Volume 4", + "Explicit": false, + "Rank": 18245, + "Tags": [ + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 212380937, + "name": "Shredtune", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 630, + "Name": "Entatha Dance", + "Artists": "Shredtune", + "Color": "EE492E", + "DarkColor": "980915", + "SongMetaId": null, + "SpotifyId": "3isSrlQZMJ0EbSQ6BXh59p", + "DeezerID": 2338702585, + "DeezerURL": "https://www.deezer.com/track/2338702585", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b5d4fff36d21692a04a74688787bf4f1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b5d4fff36d21692a04a74688787bf4f1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b5d4fff36d21692a04a74688787bf4f1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b5d4fff36d21692a04a74688787bf4f1/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2362402", + "BPM": 0, + "Duration": 193, + "ReleaseDate": "2023-06-30", + "AlbumName": "PRIDE: Volume 4", + "Explicit": false, + "Rank": 18245, + "Tags": [ + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 212380937, + "name": "Shredtune", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 720, + "Name": "Enter Sandman", + "Artists": "Metallica", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": "13", + "SpotifyId": "5sICkBXVmaCQk5aISGR3x1", + "DeezerID": 2114399, + "DeezerURL": "https://www.deezer.com/track/2114399", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f1c31620f0e108b707ce1a1af0954158/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f1c31620f0e108b707ce1a1af0954158/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f1c31620f0e108b707ce1a1af0954158/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f1c31620f0e108b707ce1a1af0954158/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBF089190013", + "BPM": 124.53, + "Duration": 331, + "ReleaseDate": "1991-08-12", + "AlbumName": "Metallica", + "Explicit": false, + "Rank": 896880, + "Tags": [ + "Pop", + "bpm:124.53", + "fast", + "long", + "year:1991" + ], + "Contributors": [ + { + "id": 119, + "name": "Metallica", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 419, + "Name": "Enter Sandman", + "Artists": "Metallica", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": "13", + "SpotifyId": "5sICkBXVmaCQk5aISGR3x1", + "DeezerID": 2114399, + "DeezerURL": "https://www.deezer.com/track/2114399", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f1c31620f0e108b707ce1a1af0954158/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f1c31620f0e108b707ce1a1af0954158/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f1c31620f0e108b707ce1a1af0954158/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f1c31620f0e108b707ce1a1af0954158/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBF089190013", + "BPM": 124.53, + "Duration": 331, + "ReleaseDate": "1991-08-12", + "AlbumName": "Metallica", + "Explicit": false, + "Rank": 896880, + "Tags": [ + "Pop", + "bpm:124.53", + "fast", + "long", + "year:1991" + ], + "Contributors": [ + { + "id": 119, + "name": "Metallica", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 419, + "Name": "Enter Sandman", + "Artists": "Metallica", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": "13", + "SpotifyId": "5sICkBXVmaCQk5aISGR3x1", + "DeezerID": 2114399, + "DeezerURL": "https://www.deezer.com/track/2114399", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f1c31620f0e108b707ce1a1af0954158/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f1c31620f0e108b707ce1a1af0954158/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f1c31620f0e108b707ce1a1af0954158/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f1c31620f0e108b707ce1a1af0954158/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBF089190013", + "BPM": 124.53, + "Duration": 331, + "ReleaseDate": "1991-08-12", + "AlbumName": "Metallica", + "Explicit": false, + "Rank": 896880, + "Tags": [ + "Pop", + "bpm:124.53", + "fast", + "long", + "year:1991" + ], + "Contributors": [ + { + "id": 119, + "name": "Metallica", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 577, + "Name": "Estilo Cochino", + "Artists": "Jenn Morel", + "Color": "D383B2", + "DarkColor": "905577", + "SongMetaId": null, + "SpotifyId": "6KSZID7WHo7DvKq3rUTLis", + "DeezerID": 1797790967, + "DeezerURL": "https://www.deezer.com/track/1797790967", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/34c037ff0d3f621be0e8dc63b2cc61f6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/34c037ff0d3f621be0e8dc63b2cc61f6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/34c037ff0d3f621be0e8dc63b2cc61f6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/34c037ff0d3f621be0e8dc63b2cc61f6/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBRKQ2254772", + "BPM": 0, + "Duration": 133, + "ReleaseDate": "2022-06-24", + "AlbumName": "Estilo Cochino", + "Explicit": true, + "Rank": 69922, + "Tags": [ + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 11710965, + "name": "Jenn Morel", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 577, + "Name": "Estilo Cochino", + "Artists": "Jenn Morel", + "Color": "D383B2", + "DarkColor": "8D5777", + "SongMetaId": null, + "SpotifyId": "6KSZID7WHo7DvKq3rUTLis", + "DeezerID": 1797790967, + "DeezerURL": "https://www.deezer.com/track/1797790967", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/34c037ff0d3f621be0e8dc63b2cc61f6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/34c037ff0d3f621be0e8dc63b2cc61f6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/34c037ff0d3f621be0e8dc63b2cc61f6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/34c037ff0d3f621be0e8dc63b2cc61f6/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBRKQ2254772", + "BPM": 0, + "Duration": 133, + "ReleaseDate": "2022-06-24", + "AlbumName": "Estilo Cochino", + "Explicit": true, + "Rank": 69922, + "Tags": [ + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 11710965, + "name": "Jenn Morel", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 613, + "Name": "Every Breath You Take", + "Artists": "The Police", + "Color": "019EE5", + "DarkColor": "0072A5", + "SongMetaId": null, + "SpotifyId": "1JSTJqkT5qHq8MDJnJbRE1", + "DeezerID": 2525864, + "DeezerURL": "https://www.deezer.com/track/2525864", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/316afdaed93c4a18cf730389648d03d6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/316afdaed93c4a18cf730389648d03d6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/316afdaed93c4a18cf730389648d03d6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/316afdaed93c4a18cf730389648d03d6/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAAM8300001", + "BPM": 117.5, + "Duration": 252, + "ReleaseDate": "2002-01-01", + "AlbumName": "The Very Best Of Sting And The Police", + "Explicit": false, + "Rank": 951654, + "Tags": [ + "Pop", + "bpm:117.5", + "medium", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 1981, + "name": "The Police", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 613, + "Name": "Every Breath You Take", + "Artists": "The Police", + "Color": "019EE3", + "DarkColor": "006997", + "SongMetaId": null, + "SpotifyId": "1JSTJqkT5qHq8MDJnJbRE1", + "DeezerID": 2525864, + "DeezerURL": "https://www.deezer.com/track/2525864", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/316afdaed93c4a18cf730389648d03d6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/316afdaed93c4a18cf730389648d03d6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/316afdaed93c4a18cf730389648d03d6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/316afdaed93c4a18cf730389648d03d6/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAAM8300001", + "BPM": 117.5, + "Duration": 252, + "ReleaseDate": "2002-01-01", + "AlbumName": "The Very Best Of Sting And The Police", + "Explicit": false, + "Rank": 951654, + "Tags": [ + "Pop", + "bpm:117.5", + "medium", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 1981, + "name": "The Police", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 97, + "Name": "Every You Every Me", + "Artists": "Placebo", + "Color": "F1D20F", + "DarkColor": "C27502", + "SongMetaId": null, + "SpotifyId": "2Srd8Jgif3kc6ou6Z4pSYJ", + "DeezerID": 1895560297, + "DeezerURL": "https://www.deezer.com/track/1895560297", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/704fc1d3226cbe373dfd6c00345f16f9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/704fc1d3226cbe373dfd6c00345f16f9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/704fc1d3226cbe373dfd6c00345f16f9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/704fc1d3226cbe373dfd6c00345f16f9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAAA9820460", + "BPM": 0, + "Duration": 213, + "ReleaseDate": "1998-10-12", + "AlbumName": "Without You I'm Nothing", + "Explicit": false, + "Rank": 769364, + "Tags": [ + "Alternativo", + "Rock", + "medium-length", + "year:1998" + ], + "Contributors": [ + { + "id": 8, + "name": "Placebo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock" + ] + }, + { + "SongId": 454, + "Name": "Everybody", + "Artists": "Logic", + "Color": "F0B175", + "DarkColor": "906B48", + "SongMetaId": null, + "SpotifyId": "7cGFbx7MP0H23iHZTZpqMM", + "DeezerID": 357859891, + "DeezerURL": "https://www.deezer.com/track/357859891", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ae3a9ec5d5f2b7885753b1835852ae1c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ae3a9ec5d5f2b7885753b1835852ae1c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ae3a9ec5d5f2b7885753b1835852ae1c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ae3a9ec5d5f2b7885753b1835852ae1c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71702801", + "BPM": 0, + "Duration": 162, + "ReleaseDate": "2017-05-05", + "AlbumName": "Everybody", + "Explicit": true, + "Rank": 405553, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 72660, + "name": "Logic", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 454, + "Name": "Everybody", + "Artists": "Logic", + "Color": "F0B175", + "DarkColor": "906B48", + "SongMetaId": null, + "SpotifyId": "7cGFbx7MP0H23iHZTZpqMM", + "DeezerID": 357859891, + "DeezerURL": "https://www.deezer.com/track/357859891", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ae3a9ec5d5f2b7885753b1835852ae1c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ae3a9ec5d5f2b7885753b1835852ae1c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ae3a9ec5d5f2b7885753b1835852ae1c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ae3a9ec5d5f2b7885753b1835852ae1c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71702801", + "BPM": 0, + "Duration": 162, + "ReleaseDate": "2017-05-05", + "AlbumName": "Everybody", + "Explicit": true, + "Rank": 405553, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 72660, + "name": "Logic", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 138, + "Name": "Everybody (Backstreet's Back)", + "Artists": "Backstreet Boys", + "Color": "2A4386", + "DarkColor": "19274B", + "SongMetaId": null, + "SpotifyId": "4rTeOSYqwXNz5qPR2DUTFZ", + "DeezerID": 15608663, + "DeezerURL": "https://www.deezer.com/track/15608663", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4f5bf0b5232ddc0f8453c3014c83a592/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4f5bf0b5232ddc0f8453c3014c83a592/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4f5bf0b5232ddc0f8453c3014c83a592/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4f5bf0b5232ddc0f8453c3014c83a592/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJI19710083", + "BPM": 107.9, + "Duration": 224, + "ReleaseDate": "1997-08-12", + "AlbumName": "Backstreet's Back", + "Explicit": false, + "Rank": 831535, + "Tags": [ + "Pop", + "bpm:107.9", + "medium", + "medium-length", + "year:1997" + ], + "Contributors": [ + { + "id": 330, + "name": "Backstreet Boys", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 298, + "Name": "Everybody Falls (Fall Guys Theme)", + "Artists": "Jukio Kallio & Daniel Hagström", + "Color": "E004BF", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "72uR0pYwXZM1jSsyk1YPlf", + "DeezerID": 1038150622, + "DeezerURL": "https://www.deezer.com/track/1038150622", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9875d70b4653876a9a0342d00797e7e1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9875d70b4653876a9a0342d00797e7e1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9875d70b4653876a9a0342d00797e7e1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9875d70b4653876a9a0342d00797e7e1/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZK6Q2086251", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2020-07-31", + "AlbumName": "Fall Guys (Original Soundtrack)", + "Explicit": false, + "Rank": 265907, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 9548122, + "name": "Jukio Kallio", + "role": "Main" + }, + { + "id": 14375123, + "name": "Daniel Hagström", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 231, + "Name": "Everyday", + "Artists": "Logic, Marshmello", + "Color": "E0AA03", + "DarkColor": "B57D00", + "SongMetaId": null, + "SpotifyId": "4EAV2cKiqKP5UPZmY6dejk", + "DeezerID": 467431402, + "DeezerURL": "https://www.deezer.com/track/467431402", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/647e45a14366b410a9d7572b4c7d97ba/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/647e45a14366b410a9d7572b4c7d97ba/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/647e45a14366b410a9d7572b4c7d97ba/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/647e45a14366b410a9d7572b4c7d97ba/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71802154", + "BPM": 149.8, + "Duration": 204, + "ReleaseDate": "2018-03-02", + "AlbumName": "Everyday", + "Explicit": true, + "Rank": 509368, + "Tags": [ + "Rap/Hip Hop", + "bpm:149.8", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 72660, + "name": "Logic", + "role": "Main" + }, + { + "id": 7890702, + "name": "Marshmello", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 231, + "Name": "Everyday", + "Artists": "Logic, Marshmello", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "4EAV2cKiqKP5UPZmY6dejk", + "DeezerID": 467431402, + "DeezerURL": "https://www.deezer.com/track/467431402", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/647e45a14366b410a9d7572b4c7d97ba/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/647e45a14366b410a9d7572b4c7d97ba/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/647e45a14366b410a9d7572b4c7d97ba/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/647e45a14366b410a9d7572b4c7d97ba/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71802154", + "BPM": 149.8, + "Duration": 204, + "ReleaseDate": "2018-03-02", + "AlbumName": "Everyday", + "Explicit": true, + "Rank": 509368, + "Tags": [ + "Rap/Hip Hop", + "bpm:149.8", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 72660, + "name": "Logic", + "role": "Main" + }, + { + "id": 7890702, + "name": "Marshmello", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 655, + "Name": "Evil Twin", + "Artists": "gürl, Bronnie", + "Color": "E359D8", + "DarkColor": "974190", + "SongMetaId": null, + "SpotifyId": "7eueP1kgHVo1M9XVkyojq3", + "DeezerID": 2748846921, + "DeezerURL": "https://www.deezer.com/track/2748846921", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/893382471a2a7cd5b3fdd33fcfe760ca/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/893382471a2a7cd5b3fdd33fcfe760ca/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/893382471a2a7cd5b3fdd33fcfe760ca/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/893382471a2a7cd5b3fdd33fcfe760ca/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXO12305867", + "BPM": 0, + "Duration": 176, + "ReleaseDate": "2024-05-02", + "AlbumName": "Evil Twin", + "Explicit": false, + "Rank": 39289, + "Tags": [ + "Alternativo", + "Indie Rock", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 14100685, + "name": "gürl", + "role": "Main" + }, + { + "id": 9546474, + "name": "Bronnie", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Rock" + ] + }, + { + "SongId": 655, + "Name": "Evil Twin", + "Artists": "gürl, Bronnie", + "Color": "E359D8", + "DarkColor": "9C3E94", + "SongMetaId": null, + "SpotifyId": "7eueP1kgHVo1M9XVkyojq3", + "DeezerID": 2748846921, + "DeezerURL": "https://www.deezer.com/track/2748846921", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/893382471a2a7cd5b3fdd33fcfe760ca/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/893382471a2a7cd5b3fdd33fcfe760ca/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/893382471a2a7cd5b3fdd33fcfe760ca/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/893382471a2a7cd5b3fdd33fcfe760ca/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXO12305867", + "BPM": 0, + "Duration": 176, + "ReleaseDate": "2024-05-02", + "AlbumName": "Evil Twin", + "Explicit": false, + "Rank": 39289, + "Tags": [ + "Alternativo", + "Indie Rock", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 14100685, + "name": "gürl", + "role": "Main" + }, + { + "id": 9546474, + "name": "Bronnie", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Rock" + ] + }, + { + "SongId": 678, + "Name": "Exogenesis", + "Artists": "Rogue", + "Color": "834BD8", + "DarkColor": "583292", + "SongMetaId": null, + "SpotifyId": "7yen2wC9RMc2siYegfDTBj", + "DeezerID": 68837848, + "DeezerURL": "https://www.deezer.com/track/68837848", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5d0cae17f4ec485d8c2cd36ced9dab9f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5d0cae17f4ec485d8c2cd36ced9dab9f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5d0cae17f4ec485d8c2cd36ced9dab9f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5d0cae17f4ec485d8c2cd36ced9dab9f/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D21000157", + "BPM": 0, + "Duration": 305, + "ReleaseDate": "2013-07-02", + "AlbumName": "Monstercat - Best of Dubstep, Vol. 2", + "Explicit": false, + "Rank": 37819, + "Tags": [ + "Dance", + "long", + "year:2013" + ], + "Contributors": [ + { + "id": 5080, + "name": "Vários intérpretes", + "role": "Main" + }, + { + "id": 1099768, + "name": "RoGue", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 678, + "Name": "Exogenesis", + "Artists": "Rogue", + "Color": "834BD8", + "DarkColor": "5D349C", + "SongMetaId": null, + "SpotifyId": "7yen2wC9RMc2siYegfDTBj", + "DeezerID": 68837848, + "DeezerURL": "https://www.deezer.com/track/68837848", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5d0cae17f4ec485d8c2cd36ced9dab9f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5d0cae17f4ec485d8c2cd36ced9dab9f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5d0cae17f4ec485d8c2cd36ced9dab9f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5d0cae17f4ec485d8c2cd36ced9dab9f/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D21000157", + "BPM": 0, + "Duration": 305, + "ReleaseDate": "2013-07-02", + "AlbumName": "Monstercat - Best of Dubstep, Vol. 2", + "Explicit": false, + "Rank": 37819, + "Tags": [ + "Dance", + "long", + "year:2013" + ], + "Contributors": [ + { + "id": 5080, + "name": "Vários intérpretes", + "role": "Main" + }, + { + "id": 1099768, + "name": "RoGue", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 560, + "Name": "Eye of The Tiger", + "Artists": "Survivor", + "Color": "DE9F4C", + "DarkColor": "C48145", + "SongMetaId": "14", + "SpotifyId": "2HHtWyy5CgaQbC7XSoOb0e", + "DeezerID": 576431, + "DeezerURL": "https://www.deezer.com/track/576431", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e66b5d3a40f69690c1633afb73cc590c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e66b5d3a40f69690c1633afb73cc590c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e66b5d3a40f69690c1633afb73cc590c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e66b5d3a40f69690c1633afb73cc590c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVR19600010", + "BPM": 108.8, + "Duration": 245, + "ReleaseDate": "2006-02-28", + "AlbumName": "Rocky IV", + "Explicit": false, + "Rank": 901519, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "bpm:108.8", + "medium", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 39, + "name": "Survivor", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 560, + "Name": "Eye of The Tiger", + "Artists": "Survivor", + "Color": "DE9F4C", + "DarkColor": "C48145", + "SongMetaId": "14", + "SpotifyId": "2HHtWyy5CgaQbC7XSoOb0e", + "DeezerID": 576431, + "DeezerURL": "https://www.deezer.com/track/576431", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e66b5d3a40f69690c1633afb73cc590c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e66b5d3a40f69690c1633afb73cc590c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e66b5d3a40f69690c1633afb73cc590c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e66b5d3a40f69690c1633afb73cc590c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVR19600010", + "BPM": 108.8, + "Duration": 245, + "ReleaseDate": "2006-02-28", + "AlbumName": "Rocky IV", + "Explicit": false, + "Rank": 901519, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "bpm:108.8", + "medium", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 39, + "name": "Survivor", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 553, + "Name": "Eyes Closed", + "Artists": "Ed Sheeran", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "3p7XQpdt8Dr6oMXSvRZ9bg", + "DeezerID": 2196044807, + "DeezerURL": "https://www.deezer.com/track/2196044807", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/84254ff83cd57208458a37187dc3cf17/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/84254ff83cd57208458a37187dc3cf17/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/84254ff83cd57208458a37187dc3cf17/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/84254ff83cd57208458a37187dc3cf17/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS2201304", + "BPM": 0, + "Duration": 194, + "ReleaseDate": "2023-03-24", + "AlbumName": "Eyes Closed", + "Explicit": false, + "Rank": 868718, + "Tags": [ + "Pop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 553, + "Name": "Eyes Closed", + "Artists": "Ed Sheeran", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "3p7XQpdt8Dr6oMXSvRZ9bg", + "DeezerID": 2196044807, + "DeezerURL": "https://www.deezer.com/track/2196044807", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/84254ff83cd57208458a37187dc3cf17/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/84254ff83cd57208458a37187dc3cf17/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/84254ff83cd57208458a37187dc3cf17/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/84254ff83cd57208458a37187dc3cf17/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS2201304", + "BPM": 0, + "Duration": 194, + "ReleaseDate": "2023-03-24", + "AlbumName": "Eyes Closed", + "Explicit": false, + "Rank": 868718, + "Tags": [ + "Pop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 297, + "Name": "Faded", + "Artists": "ZHU", + "Color": "E51A18", + "DarkColor": "750D0C", + "SongMetaId": null, + "SpotifyId": "2GQEM9JuHu30sGFvRYeCxz", + "DeezerID": 77542036, + "DeezerURL": "https://www.deezer.com/track/77542036", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/800a0da5dc6088afddd1c67b4355dc7e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/800a0da5dc6088afddd1c67b4355dc7e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/800a0da5dc6088afddd1c67b4355dc7e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/800a0da5dc6088afddd1c67b4355dc7e/1000x1000-000000-80-0-0.jpg", + "ISRC": "QMALR1400001", + "BPM": 124.9, + "Duration": 223, + "ReleaseDate": "2014-04-20", + "AlbumName": "THE NIGHTDAY", + "Explicit": false, + "Rank": 658130, + "Tags": [ + "Dance", + "bpm:124.9", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 351586, + "name": "Zhu", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 34, + "Name": "Fairytale of New York", + "Artists": "The Pogues, Kirsty MacColl", + "Color": "DEB28C", + "DarkColor": "D3907A", + "SongMetaId": null, + "SpotifyId": "4MsLmDuHHagdrcfA4S1Cmx", + "DeezerID": 674162, + "DeezerURL": "https://www.deezer.com/track/674162", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2fb19cfc8aeccf66fa3ebfb772a120c2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2fb19cfc8aeccf66fa3ebfb772a120c2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2fb19cfc8aeccf66fa3ebfb772a120c2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2fb19cfc8aeccf66fa3ebfb772a120c2/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT8703085", + "BPM": 119.49, + "Duration": 272, + "ReleaseDate": "1988-09-05", + "AlbumName": "If I Should Fall from Grace with God (Expanded Edition)", + "Explicit": false, + "Rank": 622211, + "Tags": [ + "Pop", + "bpm:119.49", + "medium", + "medium-length", + "year:1988" + ], + "Contributors": [ + { + "id": 1435, + "name": "The Pogues", + "role": "Main" + }, + { + "id": 173232, + "name": "Kirsty MacColl", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 631, + "Name": "Faith", + "Artists": "Tsatsamis", + "Color": "398694", + "DarkColor": "123743", + "SongMetaId": null, + "SpotifyId": "1SMbbkmy371096e60XcstR", + "DeezerID": 2670450412, + "DeezerURL": "https://www.deezer.com/track/2670450412", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/52f8c75ff2a797afcd00a2d9a9179bd5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/52f8c75ff2a797afcd00a2d9a9179bd5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/52f8c75ff2a797afcd00a2d9a9179bd5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/52f8c75ff2a797afcd00a2d9a9179bd5/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZZ972446907", + "BPM": 0, + "Duration": 220, + "ReleaseDate": "2024-04-05", + "AlbumName": "Our Shame", + "Explicit": false, + "Rank": 64599, + "Tags": [ + "Electro", + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 12469746, + "name": "Tsatsamis", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Pop" + ] + }, + { + "SongId": 631, + "Name": "Faith", + "Artists": "Tsatsamis", + "Color": "398694", + "DarkColor": "123743", + "SongMetaId": null, + "SpotifyId": "1SMbbkmy371096e60XcstR", + "DeezerID": 2670450412, + "DeezerURL": "https://www.deezer.com/track/2670450412", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/52f8c75ff2a797afcd00a2d9a9179bd5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/52f8c75ff2a797afcd00a2d9a9179bd5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/52f8c75ff2a797afcd00a2d9a9179bd5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/52f8c75ff2a797afcd00a2d9a9179bd5/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZZ972446907", + "BPM": 0, + "Duration": 220, + "ReleaseDate": "2024-04-05", + "AlbumName": "Our Shame", + "Explicit": false, + "Rank": 64599, + "Tags": [ + "Electro", + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 12469746, + "name": "Tsatsamis", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Pop" + ] + }, + { + "SongId": 703, + "Name": "Fall From Grace", + "Artists": "Drvmmer, Onyra", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": null, + "SpotifyId": "4x2gcoPJWN4IMgRPa4ZSGS", + "DeezerID": 2622895442, + "DeezerURL": "https://www.deezer.com/track/2622895442", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/bfc98f52a77744330dd2e7b3d122f406/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/bfc98f52a77744330dd2e7b3d122f406/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/bfc98f52a77744330dd2e7b3d122f406/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/bfc98f52a77744330dd2e7b3d122f406/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBEWA2307250", + "BPM": 0, + "Duration": 184, + "ReleaseDate": "2024-01-24", + "AlbumName": "Ophelia Presents: Advent Volume 8", + "Explicit": false, + "Rank": 143627, + "Tags": [ + "Dance", + "Dubstep", + "Electro", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 64549102, + "name": "Drvmmer", + "role": "Main" + }, + { + "id": 65839432, + "name": "Onyra", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dubstep", + "Dance" + ] + }, + { + "SongId": 703, + "Name": "Fall From Grace", + "Artists": "Drvmmer, Onyra", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": null, + "SpotifyId": "4x2gcoPJWN4IMgRPa4ZSGS", + "DeezerID": 2622895442, + "DeezerURL": "https://www.deezer.com/track/2622895442", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/bfc98f52a77744330dd2e7b3d122f406/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/bfc98f52a77744330dd2e7b3d122f406/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/bfc98f52a77744330dd2e7b3d122f406/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/bfc98f52a77744330dd2e7b3d122f406/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBEWA2307250", + "BPM": 0, + "Duration": 184, + "ReleaseDate": "2024-01-24", + "AlbumName": "Ophelia Presents: Advent Volume 8", + "Explicit": false, + "Rank": 143627, + "Tags": [ + "Dance", + "Dubstep", + "Electro", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 64549102, + "name": "Drvmmer", + "role": "Main" + }, + { + "id": 65839432, + "name": "Onyra", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dubstep", + "Dance" + ] + }, + { + "SongId": 356, + "Name": "Fall In Love", + "Artists": "Bailey Zimmerman", + "Color": "C9001B", + "DarkColor": "5D000B", + "SongMetaId": null, + "SpotifyId": "0rCFRyEy4WXjRXNpO80Dzs", + "DeezerID": 1635715662, + "DeezerURL": "https://www.deezer.com/track/1635715662", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f87f351d0f2d36fccd42a60efa612cc2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f87f351d0f2d36fccd42a60efa612cc2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f87f351d0f2d36fccd42a60efa612cc2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f87f351d0f2d36fccd42a60efa612cc2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB12200122", + "BPM": 0, + "Duration": 232, + "ReleaseDate": "2022-02-11", + "AlbumName": "Fall In Love", + "Explicit": false, + "Rank": 507778, + "Tags": [ + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 121545492, + "name": "Bailey Zimmerman", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 356, + "Name": "Fall In Love", + "Artists": "Bailey Zimmerman", + "Color": "AC0620", + "DarkColor": "5A0001", + "SongMetaId": null, + "SpotifyId": "0rCFRyEy4WXjRXNpO80Dzs", + "DeezerID": 1635715662, + "DeezerURL": "https://www.deezer.com/track/1635715662", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f87f351d0f2d36fccd42a60efa612cc2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f87f351d0f2d36fccd42a60efa612cc2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f87f351d0f2d36fccd42a60efa612cc2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f87f351d0f2d36fccd42a60efa612cc2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB12200122", + "BPM": 0, + "Duration": 232, + "ReleaseDate": "2022-02-11", + "AlbumName": "Fall In Love", + "Explicit": false, + "Rank": 507778, + "Tags": [ + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 121545492, + "name": "Bailey Zimmerman", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 361, + "Name": "Fancy Like", + "Artists": "Walker Hayes", + "Color": "567C89", + "DarkColor": "2C4E62", + "SongMetaId": null, + "SpotifyId": "58UKC45GPNTflCN6nwCUeF", + "DeezerID": 1483550112, + "DeezerURL": "https://www.deezer.com/track/1483550112", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2145cb4a342fb202ac69b843297e64c9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2145cb4a342fb202ac69b843297e64c9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2145cb4a342fb202ac69b843297e64c9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2145cb4a342fb202ac69b843297e64c9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX92101534", + "BPM": 0, + "Duration": 161, + "ReleaseDate": "2021-09-10", + "AlbumName": "Fancy Like (feat. Kesha)", + "Explicit": false, + "Rank": 511067, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 398476, + "name": "Walker Hayes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 361, + "Name": "Fancy Like", + "Artists": "Walker Hayes", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "58UKC45GPNTflCN6nwCUeF", + "DeezerID": 1483550112, + "DeezerURL": "https://www.deezer.com/track/1483550112", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2145cb4a342fb202ac69b843297e64c9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2145cb4a342fb202ac69b843297e64c9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2145cb4a342fb202ac69b843297e64c9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2145cb4a342fb202ac69b843297e64c9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX92101534", + "BPM": 0, + "Duration": 161, + "ReleaseDate": "2021-09-10", + "AlbumName": "Fancy Like (feat. Kesha)", + "Explicit": false, + "Rank": 511067, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 398476, + "name": "Walker Hayes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 602, + "Name": "Faster Car", + "Artists": "Loving Caliber", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "0c7o0AEDnXKGZto2FVuyGG", + "DeezerID": 638292582, + "DeezerURL": "https://www.deezer.com/track/638292582", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/314b6d8b64dc8b9f0a0050085ddd1a98/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/314b6d8b64dc8b9f0a0050085ddd1a98/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/314b6d8b64dc8b9f0a0050085ddd1a98/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/314b6d8b64dc8b9f0a0050085ddd1a98/1000x1000-000000-80-0-0.jpg", + "ISRC": "SE5Q51700756", + "BPM": 130.83, + "Duration": 227, + "ReleaseDate": "2016-02-22", + "AlbumName": "Faster Car", + "Explicit": false, + "Rank": 497522, + "Tags": [ + "Pop", + "bpm:130.83", + "fast", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 14580005, + "name": "Loving Caliber", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 602, + "Name": "Faster Car", + "Artists": "Loving Caliber", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "0c7o0AEDnXKGZto2FVuyGG", + "DeezerID": 638292582, + "DeezerURL": "https://www.deezer.com/track/638292582", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/314b6d8b64dc8b9f0a0050085ddd1a98/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/314b6d8b64dc8b9f0a0050085ddd1a98/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/314b6d8b64dc8b9f0a0050085ddd1a98/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/314b6d8b64dc8b9f0a0050085ddd1a98/1000x1000-000000-80-0-0.jpg", + "ISRC": "SE5Q51700756", + "BPM": 130.83, + "Duration": 227, + "ReleaseDate": "2016-02-22", + "AlbumName": "Faster Car", + "Explicit": false, + "Rank": 497522, + "Tags": [ + "Pop", + "bpm:130.83", + "fast", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 14580005, + "name": "Loving Caliber", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 647, + "Name": "Favelas", + "Artists": "Aquadrop, The Golden Toyz", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "3fUPecc2vSgx4efc7xwSih" + }, + { + "SongId": 647, + "Name": "Favelas", + "Artists": "Aquadrop, The Golden Toyz", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "3fUPecc2vSgx4efc7xwSih" + }, + { + "SongId": 2, + "Name": "Feel Good Inc.", + "Artists": "Gorillaz", + "Color": "6FB259", + "DarkColor": "1F6530", + "SongMetaId": null, + "SpotifyId": "0d28khcov6AiegSCpG5TuT", + "DeezerID": 3129407, + "DeezerURL": "https://www.deezer.com/track/3129407", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3dc29a565149240729afc08e1f251b46/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3dc29a565149240729afc08e1f251b46/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3dc29a565149240729afc08e1f251b46/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3dc29a565149240729afc08e1f251b46/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE0500172", + "BPM": 138.3, + "Duration": 222, + "ReleaseDate": "2005-05-23", + "AlbumName": "Demon Days", + "Explicit": false, + "Rank": 963489, + "Tags": [ + "Rap/Hip Hop", + "bpm:138.3", + "fast", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 14, + "name": "Gorillaz", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 2, + "Name": "Feel Good Inc.", + "Artists": "Gorillaz", + "Color": "6FB259", + "DarkColor": "1F6530", + "SongMetaId": null, + "SpotifyId": "0d28khcov6AiegSCpG5TuT", + "DeezerID": 3129407, + "DeezerURL": "https://www.deezer.com/track/3129407", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3dc29a565149240729afc08e1f251b46/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3dc29a565149240729afc08e1f251b46/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3dc29a565149240729afc08e1f251b46/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3dc29a565149240729afc08e1f251b46/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE0500172", + "BPM": 138.3, + "Duration": 222, + "ReleaseDate": "2005-05-23", + "AlbumName": "Demon Days", + "Explicit": false, + "Rank": 963489, + "Tags": [ + "Rap/Hip Hop", + "bpm:138.3", + "fast", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 14, + "name": "Gorillaz", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 31, + "Name": "Feel It Still", + "Artists": "Portugal. The Man", + "Color": "FB9423", + "DarkColor": "F25501", + "SongMetaId": null, + "SpotifyId": "6QgjcU0zLnzq5OrUoSZ3OK", + "DeezerID": 371593461, + "DeezerURL": "https://www.deezer.com/track/371593461", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c088a8e43543bd7995f40cde3c174ab3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c088a8e43543bd7995f40cde3c174ab3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c088a8e43543bd7995f40cde3c174ab3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c088a8e43543bd7995f40cde3c174ab3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21700437", + "BPM": 158.41, + "Duration": 163, + "ReleaseDate": "2017-06-16", + "AlbumName": "Woodstock", + "Explicit": false, + "Rank": 942569, + "Tags": [ + "Alternativo", + "bpm:158.41", + "short", + "very-fast", + "year:2017" + ], + "Contributors": [ + { + "id": 181878, + "name": "Portugal. The Man", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 31, + "Name": "Feel It Still", + "Artists": "Portugal. The Man", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "6QgjcU0zLnzq5OrUoSZ3OK", + "DeezerID": 371593461, + "DeezerURL": "https://www.deezer.com/track/371593461", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c088a8e43543bd7995f40cde3c174ab3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c088a8e43543bd7995f40cde3c174ab3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c088a8e43543bd7995f40cde3c174ab3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c088a8e43543bd7995f40cde3c174ab3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21700437", + "BPM": 158.41, + "Duration": 163, + "ReleaseDate": "2017-06-16", + "AlbumName": "Woodstock", + "Explicit": false, + "Rank": 942569, + "Tags": [ + "Alternativo", + "bpm:158.41", + "short", + "very-fast", + "year:2017" + ], + "Contributors": [ + { + "id": 181878, + "name": "Portugal. The Man", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 40, + "Name": "Fell In love With a Girl", + "Artists": "The White Stripes", + "Color": "D21F24", + "DarkColor": "76050B", + "SongMetaId": null, + "SpotifyId": "21Qsj3cMVCx2xF2EVVNbEu", + "DeezerID": 1409714902, + "DeezerURL": "https://www.deezer.com/track/1409714902", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/aaab9b09e238e498268b07890cd2d91c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/aaab9b09e238e498268b07890cd2d91c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/aaab9b09e238e498268b07890cd2d91c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/aaab9b09e238e498268b07890cd2d91c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBKS0100352", + "BPM": 0, + "Duration": 110, + "ReleaseDate": "2021-06-25", + "AlbumName": "White Blood Cells (Deluxe)", + "Explicit": false, + "Rank": 603293, + "Tags": [ + "Alternativo", + "Rock", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 636, + "name": "The White Stripes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock" + ] + }, + { + "SongId": 121, + "Name": "Figure It Out", + "Artists": "Royal Blood", + "Color": "1E70DF", + "DarkColor": "02204C", + "SongMetaId": null, + "SpotifyId": "6V0A3jkb9ntudO0kmcJ1xd", + "DeezerID": 82917990, + "DeezerURL": "https://www.deezer.com/track/82917990", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ab13b0a6a8b6290d4873967ae7d45885/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ab13b0a6a8b6290d4873967ae7d45885/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ab13b0a6a8b6290d4873967ae7d45885/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ab13b0a6a8b6290d4873967ae7d45885/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT1400222", + "BPM": 107.95, + "Duration": 183, + "ReleaseDate": "2014-08-22", + "AlbumName": "Royal Blood", + "Explicit": false, + "Rank": 687809, + "Tags": [ + "Alternativo", + "bpm:107.95", + "medium", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 1035806, + "name": "Royal Blood", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 189, + "Name": "Fireflies", + "Artists": "Owl City", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "3DamFFqW32WihKkTVlwTYQ", + "DeezerID": 4188437, + "DeezerURL": "https://www.deezer.com/track/4188437", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c923db2cb6698897426be066e01086c3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c923db2cb6698897426be066e01086c3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c923db2cb6698897426be066e01086c3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c923db2cb6698897426be066e01086c3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70972068", + "BPM": 0, + "Duration": 228, + "ReleaseDate": "2009-07-28", + "AlbumName": "Ocean Eyes", + "Explicit": false, + "Rank": 802847, + "Tags": [ + "Electro", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 183201, + "name": "Owl City", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 14, + "Name": "Firestarter", + "Artists": "The Prodigy", + "Color": "A52501", + "DarkColor": "430000", + "SongMetaId": null, + "SpotifyId": "1auX4gkGe7hbrOH0BXdpV4", + "DeezerID": 62126191, + "DeezerURL": "https://www.deezer.com/track/62126191", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/566d28d32080a6d82a2d4d145ea5ea7e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/566d28d32080a6d82a2d4d145ea5ea7e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/566d28d32080a6d82a2d4d145ea5ea7e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/566d28d32080a6d82a2d4d145ea5ea7e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBKS9700080", + "BPM": 141.6, + "Duration": 279, + "ReleaseDate": "2012-12-03", + "AlbumName": "The Fat of the Land - Expanded Edition", + "Explicit": false, + "Rank": 648994, + "Tags": [ + "Electro", + "bpm:141.6", + "fast", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 85, + "name": "The Prodigy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 14, + "Name": "Firestarter", + "Artists": "The Prodigy", + "Color": "A52501", + "DarkColor": "430000", + "SongMetaId": null, + "SpotifyId": "1auX4gkGe7hbrOH0BXdpV4", + "DeezerID": 62126191, + "DeezerURL": "https://www.deezer.com/track/62126191", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/566d28d32080a6d82a2d4d145ea5ea7e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/566d28d32080a6d82a2d4d145ea5ea7e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/566d28d32080a6d82a2d4d145ea5ea7e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/566d28d32080a6d82a2d4d145ea5ea7e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBKS9700080", + "BPM": 141.6, + "Duration": 279, + "ReleaseDate": "2012-12-03", + "AlbumName": "The Fat of the Land - Expanded Edition", + "Explicit": false, + "Rank": 648994, + "Tags": [ + "Electro", + "bpm:141.6", + "fast", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 85, + "name": "The Prodigy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 489, + "Name": "Flamingo", + "Artists": "Kero Kero Bonito", + "Color": "F381B5", + "DarkColor": "E23680", + "SongMetaId": null, + "SpotifyId": "34TufQ4EFzmDIFXJ3A8Yau", + "DeezerID": 1858722027, + "DeezerURL": "https://www.deezer.com/track/1858722027", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/377abd92cd1b0f4fbfa02a2bb5d7410a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/377abd92cd1b0f4fbfa02a2bb5d7410a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/377abd92cd1b0f4fbfa02a2bb5d7410a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/377abd92cd1b0f4fbfa02a2bb5d7410a/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBKPL1522424", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2014-09-23", + "AlbumName": "Flamingo", + "Explicit": false, + "Rank": 331739, + "Tags": [ + "Dance", + "Pop", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 4673985, + "name": "Kero Kero Bonito", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 489, + "Name": "Flamingo", + "Artists": "Kero Kero Bonito", + "Color": "F381B5", + "DarkColor": "E23680", + "SongMetaId": null, + "SpotifyId": "34TufQ4EFzmDIFXJ3A8Yau", + "DeezerID": 1858722027, + "DeezerURL": "https://www.deezer.com/track/1858722027", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/377abd92cd1b0f4fbfa02a2bb5d7410a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/377abd92cd1b0f4fbfa02a2bb5d7410a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/377abd92cd1b0f4fbfa02a2bb5d7410a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/377abd92cd1b0f4fbfa02a2bb5d7410a/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBKPL1522424", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2014-09-23", + "AlbumName": "Flamingo", + "Explicit": false, + "Rank": 331739, + "Tags": [ + "Dance", + "Pop", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 4673985, + "name": "Kero Kero Bonito", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 252, + "Name": "Flash Pose", + "Artists": "Pabllo Vittar, Charli XCX", + "Color": "E44A8C", + "DarkColor": "C52066", + "SongMetaId": null, + "SpotifyId": "5GsJcnO3rgpZFOrzL2EISO", + "DeezerID": 710628192, + "DeezerURL": "https://www.deezer.com/track/710628192", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/22377c3ba2ec68f94e042c3149977188/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/22377c3ba2ec68f94e042c3149977188/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/22377c3ba2ec68f94e042c3149977188/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/22377c3ba2ec68f94e042c3149977188/1000x1000-000000-80-0-0.jpg", + "ISRC": "BR6RI1900018", + "BPM": 0, + "Duration": 152, + "ReleaseDate": "2019-07-25", + "AlbumName": "Flash Pose", + "Explicit": false, + "Rank": 408145, + "Tags": [ + "Pop", + "Pop Latino", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 11301722, + "name": "Pabllo Vittar", + "role": "Main" + }, + { + "id": 1462230, + "name": "Charli xcx", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Pop Latino" + ] + }, + { + "SongId": 269, + "Name": "Flesh without Blood", + "Artists": "Grimes", + "Color": "1E7CBF", + "DarkColor": "034B95", + "SongMetaId": null, + "SpotifyId": "62jc4VA6WPoANaL9Duu8db", + "DeezerID": 138546543, + "DeezerURL": "https://www.deezer.com/track/138546543", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6a7fbeeb7632c81774d13d2bd0cc0f0b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6a7fbeeb7632c81774d13d2bd0cc0f0b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6a7fbeeb7632c81774d13d2bd0cc0f0b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6a7fbeeb7632c81774d13d2bd0cc0f0b/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAFL1500147", + "BPM": 0, + "Duration": 264, + "ReleaseDate": "2015-11-06", + "AlbumName": "Art Angels", + "Explicit": false, + "Rank": 407527, + "Tags": [ + "Electro", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 807493, + "name": "Grimes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 635, + "Name": "Flowers", + "Artists": "Miley Cyrus", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "7DSAEUvxU8FajXtRloy8M0", + "DeezerID": 2105158337, + "DeezerURL": "https://www.deezer.com/track/2105158337", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/98610629a40996b61b3d24bd5ab8c2e1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/98610629a40996b61b3d24bd5ab8c2e1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/98610629a40996b61b3d24bd5ab8c2e1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/98610629a40996b61b3d24bd5ab8c2e1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12209777", + "BPM": 0, + "Duration": 200, + "ReleaseDate": "2023-01-13", + "AlbumName": "Flowers", + "Explicit": false, + "Rank": 996931, + "Tags": [ + "Pop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 12436, + "name": "Miley Cyrus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 635, + "Name": "Flowers", + "Artists": "Miley Cyrus", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "7DSAEUvxU8FajXtRloy8M0", + "DeezerID": 2105158337, + "DeezerURL": "https://www.deezer.com/track/2105158337", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/98610629a40996b61b3d24bd5ab8c2e1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/98610629a40996b61b3d24bd5ab8c2e1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/98610629a40996b61b3d24bd5ab8c2e1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/98610629a40996b61b3d24bd5ab8c2e1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12209777", + "BPM": 0, + "Duration": 200, + "ReleaseDate": "2023-01-13", + "AlbumName": "Flowers", + "Explicit": false, + "Rank": 996931, + "Tags": [ + "Pop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 12436, + "name": "Miley Cyrus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 381, + "Name": "Fogo", + "Artists": "Garmiani, Julimar Santos", + "Color": "D18552", + "DarkColor": "A64E40", + "SongMetaId": null, + "SpotifyId": "7uKjjI2a4Ia8nHKzgdya1y", + "DeezerID": 461012632, + "DeezerURL": "https://www.deezer.com/track/461012632", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e9c0e078583578832d88a1f864a59eec/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e9c0e078583578832d88a1f864a59eec/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e9c0e078583578832d88a1f864a59eec/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e9c0e078583578832d88a1f864a59eec/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLZ541701059", + "BPM": 128, + "Duration": 148, + "ReleaseDate": "2017-08-18", + "AlbumName": "Fogo (feat. Julimar Santos)", + "Explicit": false, + "Rank": 445337, + "Tags": [ + "Dance", + "bpm:128", + "fast", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 2968101, + "name": "Garmiani", + "role": "Main" + }, + { + "id": 4443980, + "name": "Julimar Santos", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 125, + "Name": "Free - Mood II Swing Radio Edit", + "Artists": "Ultra Nate", + "Color": "E51A18", + "DarkColor": "750D0C", + "SongMetaId": null, + "SpotifyId": "2mkdZTHKimOJ86Hg0RWSKc", + "DeezerID": 2246965617, + "DeezerURL": "https://www.deezer.com/track/2246965617", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4e7e13d6ed6747782494c59fd7d196aa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4e7e13d6ed6747782494c59fd7d196aa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4e7e13d6ed6747782494c59fd7d196aa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4e7e13d6ed6747782494c59fd7d196aa/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSR39751201", + "BPM": 0, + "Duration": 233, + "ReleaseDate": "2023-04-28", + "AlbumName": "Free - The Strictly Collection", + "Explicit": false, + "Rank": 706126, + "Tags": [ + "Dance", + "Electro", + "Techno/House", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 9099, + "name": "Ultra Naté", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House", + "Dance" + ] + }, + { + "SongId": 351, + "Name": "Freestyler", + "Artists": "Bomfunk MC's", + "Color": "1467A1", + "DarkColor": "00254C", + "SongMetaId": null, + "SpotifyId": "2xaFtNhCw5Q4hn1EKsrkLv", + "DeezerID": 5363024, + "DeezerURL": "https://www.deezer.com/track/5363024", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/693d6472f1c44dd5a55432acef70d193/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/693d6472f1c44dd5a55432acef70d193/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/693d6472f1c44dd5a55432acef70d193/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/693d6472f1c44dd5a55432acef70d193/1000x1000-000000-80-0-0.jpg", + "ISRC": "FISME9900023", + "BPM": 164.1, + "Duration": 306, + "ReleaseDate": "2000-02-15", + "AlbumName": "Freestyler", + "Explicit": false, + "Rank": 652703, + "Tags": [ + "Pop", + "bpm:164.1", + "long", + "very-fast", + "year:2000" + ], + "Contributors": [ + { + "id": 1006, + "name": "Bomfunk MC's", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 351, + "Name": "Freestyler", + "Artists": "Bomfunk MC's", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "2xaFtNhCw5Q4hn1EKsrkLv", + "DeezerID": 5363024, + "DeezerURL": "https://www.deezer.com/track/5363024", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/693d6472f1c44dd5a55432acef70d193/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/693d6472f1c44dd5a55432acef70d193/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/693d6472f1c44dd5a55432acef70d193/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/693d6472f1c44dd5a55432acef70d193/1000x1000-000000-80-0-0.jpg", + "ISRC": "FISME9900023", + "BPM": 164.1, + "Duration": 306, + "ReleaseDate": "2000-02-15", + "AlbumName": "Freestyler", + "Explicit": false, + "Rank": 652703, + "Tags": [ + "Pop", + "bpm:164.1", + "long", + "very-fast", + "year:2000" + ], + "Contributors": [ + { + "id": 1006, + "name": "Bomfunk MC's", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 305, + "Name": "From The D 2 The LBC", + "Artists": "Eminem, Snoop Dogg", + "Color": "FB9423", + "DarkColor": "F25501", + "SongMetaId": null, + "SpotifyId": "7My9ca9QEIR8MvIOdIrTWA", + "DeezerID": 1802344997, + "DeezerURL": "https://www.deezer.com/track/1802344997", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4d6412c92ddc00a3ce49599727ade79c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4d6412c92ddc00a3ce49599727ade79c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4d6412c92ddc00a3ce49599727ade79c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4d6412c92ddc00a3ce49599727ade79c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12204350", + "BPM": 0, + "Duration": 215, + "ReleaseDate": "2022-06-24", + "AlbumName": "From The D 2 The LBC", + "Explicit": true, + "Rank": 550295, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 13, + "name": "Eminem", + "role": "Main" + }, + { + "id": 3, + "name": "Snoop Dogg", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 412, + "Name": "Funky Town", + "Artists": "Lipps Inc.", + "Color": "F381B5", + "DarkColor": "E23680", + "SongMetaId": null, + "SpotifyId": "0KQh7AuuZvpTKWhcJa8Pbr", + "DeezerID": 906566, + "DeezerURL": "https://www.deezer.com/track/906566", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e993fe7d2c6e0a4fe259485d940aa7a5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e993fe7d2c6e0a4fe259485d940aa7a5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e993fe7d2c6e0a4fe259485d940aa7a5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e993fe7d2c6e0a4fe259485d940aa7a5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPR37902457", + "BPM": 122.3, + "Duration": 237, + "ReleaseDate": "2007-09-10", + "AlbumName": "Dance #1's", + "Explicit": false, + "Rank": 772106, + "Tags": [ + "Dance", + "bpm:122.3", + "fast", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 160511, + "name": "Lipps Inc.", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 412, + "Name": "Funky Town", + "Artists": "Lipps Inc.", + "Color": "F381B5", + "DarkColor": "E23680", + "SongMetaId": null, + "SpotifyId": "0KQh7AuuZvpTKWhcJa8Pbr", + "DeezerID": 906566, + "DeezerURL": "https://www.deezer.com/track/906566", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e993fe7d2c6e0a4fe259485d940aa7a5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e993fe7d2c6e0a4fe259485d940aa7a5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e993fe7d2c6e0a4fe259485d940aa7a5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e993fe7d2c6e0a4fe259485d940aa7a5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPR37902457", + "BPM": 122.3, + "Duration": 237, + "ReleaseDate": "2007-09-10", + "AlbumName": "Dance #1's", + "Explicit": false, + "Rank": 772106, + "Tags": [ + "Dance", + "bpm:122.3", + "fast", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 160511, + "name": "Lipps Inc.", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 776, + "Name": "Für Elise", + "Artists": "Ludwig van Beethoven", + "Color": "D0AB64", + "DarkColor": "7D5B3E", + "SongMetaId": null, + "SpotifyId": "4WhXi5eJvq2DTu3M0A4nuM", + "DeezerID": 4538913, + "DeezerURL": "https://www.deezer.com/track/4538913", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f7b774a90778e1e7915dd012cda5d7e0/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f7b774a90778e1e7915dd012cda5d7e0/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f7b774a90778e1e7915dd012cda5d7e0/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f7b774a90778e1e7915dd012cda5d7e0/1000x1000-000000-80-0-0.jpg", + "ISRC": "USA560970798", + "BPM": 145.1, + "Duration": 173, + "ReleaseDate": "2009-06-01", + "AlbumName": "Classical Best Of", + "Explicit": false, + "Rank": 524868, + "Tags": [ + "bpm:145.1", + "fast", + "short", + "year:2009" + ], + "Contributors": [ + { + "id": 6144, + "name": "Ludwig van Beethoven", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 18, + "Name": "Gangnam Style", + "Artists": "Psy", + "Color": "336235", + "DarkColor": "153D1E", + "SongMetaId": null, + "SpotifyId": "03UrZgTINDqvnUMbbIMhql", + "DeezerID": 60726278, + "DeezerURL": "https://www.deezer.com/track/60726278", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/45e4493fcc15997085491debddcf049e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/45e4493fcc15997085491debddcf049e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/45e4493fcc15997085491debddcf049e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/45e4493fcc15997085491debddcf049e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71210283", + "BPM": 0, + "Duration": 219, + "ReleaseDate": "2012-09-06", + "AlbumName": "Gangnam Style (강남스타일)", + "Explicit": false, + "Rank": 777739, + "Tags": [ + "Pop", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 398073, + "name": "Psy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 18, + "Name": "Gangnam Style", + "Artists": "Psy", + "Color": "336235", + "DarkColor": "153D1E", + "SongMetaId": null, + "SpotifyId": "03UrZgTINDqvnUMbbIMhql", + "DeezerID": 60726278, + "DeezerURL": "https://www.deezer.com/track/60726278", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/45e4493fcc15997085491debddcf049e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/45e4493fcc15997085491debddcf049e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/45e4493fcc15997085491debddcf049e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/45e4493fcc15997085491debddcf049e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71210283", + "BPM": 0, + "Duration": 219, + "ReleaseDate": "2012-09-06", + "AlbumName": "Gangnam Style (강남스타일)", + "Explicit": false, + "Rank": 777739, + "Tags": [ + "Pop", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 398073, + "name": "Psy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 355, + "Name": "Gecko (Overdrive)", + "Artists": "Oliver Heldens, Becky Hill", + "Color": "52935F", + "DarkColor": "1C5A26", + "SongMetaId": null, + "SpotifyId": "483XiZ5o13Cc1zoWV7jGml", + "DeezerID": 78974349, + "DeezerURL": "https://www.deezer.com/track/78974349", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/215ce468f012e22bc7694996e617839a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/215ce468f012e22bc7694996e617839a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/215ce468f012e22bc7694996e617839a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/215ce468f012e22bc7694996e617839a/1000x1000-000000-80-0-0.jpg", + "ISRC": "CYA111400063", + "BPM": 124.9, + "Duration": 165, + "ReleaseDate": "2014-06-03", + "AlbumName": "Gecko (Overdrive) (Radio Edit)", + "Explicit": false, + "Rank": 600733, + "Tags": [ + "Dance", + "bpm:124.9", + "fast", + "short", + "year:2014" + ], + "Contributors": [ + { + "id": 4777520, + "name": "Oliver Heldens", + "role": "Main" + }, + { + "id": 2699221, + "name": "Becky Hill", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 511, + "Name": "Genius", + "Artists": "Labyrinth, Sia, Diplo", + "Color": "4FB6FA", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "4TlbZgqxhJ6uN3tpVyjw90", + "DeezerID": 495851152, + "DeezerURL": "https://www.deezer.com/track/495851152", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6704dccfc405f8f840fc9498124ea8b8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6704dccfc405f8f840fc9498124ea8b8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6704dccfc405f8f840fc9498124ea8b8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6704dccfc405f8f840fc9498124ea8b8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX91800836", + "BPM": 159.01, + "Duration": 213, + "ReleaseDate": "2018-05-03", + "AlbumName": "Genius (feat. Sia, Diplo & Labrinth)", + "Explicit": false, + "Rank": 782349, + "Tags": [ + "Pop", + "bpm:159.01", + "medium-length", + "very-fast", + "year:2018" + ], + "Contributors": [ + { + "id": 14720447, + "name": "LSD", + "role": "Main" + }, + { + "id": 3469, + "name": "Sia", + "role": "Featured" + }, + { + "id": 1846, + "name": "Diplo", + "role": "Featured" + }, + { + "id": 794548, + "name": "Labrinth", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 511, + "Name": "Genius", + "Artists": "Labyrinth, Sia, Diplo", + "Color": "55BAF8", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "4TlbZgqxhJ6uN3tpVyjw90", + "DeezerID": 495851152, + "DeezerURL": "https://www.deezer.com/track/495851152", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6704dccfc405f8f840fc9498124ea8b8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6704dccfc405f8f840fc9498124ea8b8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6704dccfc405f8f840fc9498124ea8b8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6704dccfc405f8f840fc9498124ea8b8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX91800836", + "BPM": 159.01, + "Duration": 213, + "ReleaseDate": "2018-05-03", + "AlbumName": "Genius (feat. Sia, Diplo & Labrinth)", + "Explicit": false, + "Rank": 782349, + "Tags": [ + "Pop", + "bpm:159.01", + "medium-length", + "very-fast", + "year:2018" + ], + "Contributors": [ + { + "id": 14720447, + "name": "LSD", + "role": "Main" + }, + { + "id": 3469, + "name": "Sia", + "role": "Featured" + }, + { + "id": 1846, + "name": "Diplo", + "role": "Featured" + }, + { + "id": 794548, + "name": "Labrinth", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 330, + "Name": "Get Ready 2013", + "Artists": "2 Unlimited", + "Color": "925CAC", + "DarkColor": "602046", + "SongMetaId": null, + "SpotifyId": "4tvOVmc2jorV20Z2hFDtDg", + "DeezerID": 70422966, + "DeezerURL": "https://www.deezer.com/track/70422966", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d72f67a74c0d7a47ec3cb77e631df648/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d72f67a74c0d7a47ec3cb77e631df648/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d72f67a74c0d7a47ec3cb77e631df648/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d72f67a74c0d7a47ec3cb77e631df648/1000x1000-000000-80-0-0.jpg", + "ISRC": "BEAA11301322", + "BPM": 128, + "Duration": 261, + "ReleaseDate": "2013-10-28", + "AlbumName": "Get Ready (including Steve Aoki Remixes)", + "Explicit": false, + "Rank": 430217, + "Tags": [ + "Dance", + "Pop", + "bpm:128", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 1163, + "name": "2 Unlimited", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 330, + "Name": "Get Ready 2013", + "Artists": "2 Unlimited", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "4tvOVmc2jorV20Z2hFDtDg", + "DeezerID": 70422966, + "DeezerURL": "https://www.deezer.com/track/70422966", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d72f67a74c0d7a47ec3cb77e631df648/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d72f67a74c0d7a47ec3cb77e631df648/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d72f67a74c0d7a47ec3cb77e631df648/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d72f67a74c0d7a47ec3cb77e631df648/1000x1000-000000-80-0-0.jpg", + "ISRC": "BEAA11301322", + "BPM": 128, + "Duration": 261, + "ReleaseDate": "2013-10-28", + "AlbumName": "Get Ready (including Steve Aoki Remixes)", + "Explicit": false, + "Rank": 430217, + "Tags": [ + "Dance", + "Pop", + "bpm:128", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 1163, + "name": "2 Unlimited", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 20, + "Name": "Get the Party Started", + "Artists": "P!nk", + "Color": "D57A9D", + "DarkColor": "B93359", + "SongMetaId": null, + "SpotifyId": "02jcEwywffn3Tsb48fXmlW", + "DeezerID": 655356162, + "DeezerURL": "https://www.deezer.com/track/655356162", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f76b7f5766941d1ed591ebab07ac459d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f76b7f5766941d1ed591ebab07ac459d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f76b7f5766941d1ed591ebab07ac459d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f76b7f5766941d1ed591ebab07ac459d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR10100717", + "BPM": 128.8, + "Duration": 191, + "ReleaseDate": "2001-11-20", + "AlbumName": "M!ssundaztood (Expanded Edition)", + "Explicit": false, + "Rank": 716636, + "Tags": [ + "Pop", + "bpm:128.8", + "fast", + "medium-length", + "year:2001" + ], + "Contributors": [ + { + "id": 69925, + "name": "P!nk", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 352, + "Name": "Getaway", + "Artists": "Saint Motel", + "Color": "C47B66", + "DarkColor": "812D23", + "SongMetaId": null, + "SpotifyId": "0g7UEpNuvLg5NNpwT4eq7n", + "DeezerID": 134522402, + "DeezerURL": "https://www.deezer.com/track/134522402", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/da317b80da64ceec614e7735ab2f8359/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/da317b80da64ceec614e7735ab2f8359/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/da317b80da64ceec614e7735ab2f8359/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/da317b80da64ceec614e7735ab2f8359/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21602336", + "BPM": 119.84, + "Duration": 181, + "ReleaseDate": "2016-10-21", + "AlbumName": "saintmotelevision", + "Explicit": false, + "Rank": 314214, + "Tags": [ + "Alternativo", + "bpm:119.84", + "medium", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 522224, + "name": "Saint Motel", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 591, + "Name": "gettin' hott", + "Artists": "Knock2", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": null, + "SpotifyId": "5GEAKD9oEgIMaxJSAfxwNB", + "DeezerID": 1716935617, + "DeezerURL": "https://www.deezer.com/track/1716935617", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c55606c458f7b329a0533d59a6089a64/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c55606c458f7b329a0533d59a6089a64/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c55606c458f7b329a0533d59a6089a64/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c55606c458f7b329a0533d59a6089a64/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2231603", + "BPM": 0, + "Duration": 224, + "ReleaseDate": "2022-04-29", + "AlbumName": "gettin' hott", + "Explicit": false, + "Rank": 218204, + "Tags": [ + "Electro", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 7540570, + "name": "Knock2", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 591, + "Name": "gettin' hott", + "Artists": "Knock2", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": null, + "SpotifyId": "5GEAKD9oEgIMaxJSAfxwNB", + "DeezerID": 1716935617, + "DeezerURL": "https://www.deezer.com/track/1716935617", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c55606c458f7b329a0533d59a6089a64/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c55606c458f7b329a0533d59a6089a64/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c55606c458f7b329a0533d59a6089a64/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c55606c458f7b329a0533d59a6089a64/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2231603", + "BPM": 0, + "Duration": 224, + "ReleaseDate": "2022-04-29", + "AlbumName": "gettin' hott", + "Explicit": false, + "Rank": 218204, + "Tags": [ + "Electro", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 7540570, + "name": "Knock2", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 499, + "Name": "Ghost In The Mirror", + "Artists": "Mallory Knox", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "2sxVGe2awPj7emt2btYnp1", + "DeezerID": 82099786, + "DeezerURL": "https://www.deezer.com/track/82099786", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/732d23426422cafbfe734758c9331744/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/732d23426422cafbfe734758c9331744/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/732d23426422cafbfe734758c9331744/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/732d23426422cafbfe734758c9331744/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL1400772", + "BPM": 173.7, + "Duration": 216, + "ReleaseDate": "2014-08-15", + "AlbumName": "Ghost in the Mirror", + "Explicit": false, + "Rank": 208721, + "Tags": [ + "Rock", + "bpm:173.7", + "medium-length", + "very-fast", + "year:2014" + ], + "Contributors": [ + { + "id": 632970, + "name": "Mallory Knox", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 499, + "Name": "Ghost In The Mirror", + "Artists": "Mallory Knox", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "2sxVGe2awPj7emt2btYnp1", + "DeezerID": 82099786, + "DeezerURL": "https://www.deezer.com/track/82099786", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/732d23426422cafbfe734758c9331744/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/732d23426422cafbfe734758c9331744/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/732d23426422cafbfe734758c9331744/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/732d23426422cafbfe734758c9331744/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL1400772", + "BPM": 173.7, + "Duration": 216, + "ReleaseDate": "2014-08-15", + "AlbumName": "Ghost in the Mirror", + "Explicit": false, + "Rank": 208721, + "Tags": [ + "Rock", + "bpm:173.7", + "medium-length", + "very-fast", + "year:2014" + ], + "Contributors": [ + { + "id": 632970, + "name": "Mallory Knox", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 76, + "Name": "Ghosts", + "Artists": "Presets", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "0Q40MMjMXHPxLGfylep5a5", + "DeezerID": 71080035, + "DeezerURL": "https://www.deezer.com/track/71080035", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3de078d8348bb893822228399f2f0812/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3de078d8348bb893822228399f2f0812/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3de078d8348bb893822228399f2f0812/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3de078d8348bb893822228399f2f0812/1000x1000-000000-80-0-0.jpg", + "ISRC": "AUUM71200401", + "BPM": 140.2, + "Duration": 209, + "ReleaseDate": "2013-10-13", + "AlbumName": "Pacifica (Deluxe)", + "Explicit": false, + "Rank": 260322, + "Tags": [ + "Electro", + "bpm:140.2", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 9164, + "name": "The Presets", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 29, + "Name": "Gimme chocolate!!", + "Artists": "BABYMETAL", + "Color": "C9001B", + "DarkColor": "5D000B", + "SongMetaId": null, + "SpotifyId": "16D5bGymrzpi9ZlnYXB5ql", + "DeezerID": 1360318172, + "DeezerURL": "https://www.deezer.com/track/1360318172", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f23447e456aadffa1ffe05ca0a0cda7a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f23447e456aadffa1ffe05ca0a0cda7a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f23447e456aadffa1ffe05ca0a0cda7a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f23447e456aadffa1ffe05ca0a0cda7a/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPTF01401401", + "BPM": 0, + "Duration": 230, + "ReleaseDate": "2015-05-11", + "AlbumName": "BABYMETAL", + "Explicit": false, + "Rank": 479428, + "Tags": [ + "Rock", + "Rock e Roll/Rockabilly", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 7805012, + "name": "BABYMETAL", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Rock e Roll/Rockabilly" + ] + }, + { + "SongId": 29, + "Name": "Gimme chocolate!!", + "Artists": "BABYMETAL", + "Color": "AC0620", + "DarkColor": "5A0001", + "SongMetaId": null, + "SpotifyId": "16D5bGymrzpi9ZlnYXB5ql", + "DeezerID": 1360318172, + "DeezerURL": "https://www.deezer.com/track/1360318172", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f23447e456aadffa1ffe05ca0a0cda7a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f23447e456aadffa1ffe05ca0a0cda7a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f23447e456aadffa1ffe05ca0a0cda7a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f23447e456aadffa1ffe05ca0a0cda7a/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPTF01401401", + "BPM": 0, + "Duration": 230, + "ReleaseDate": "2015-05-11", + "AlbumName": "BABYMETAL", + "Explicit": false, + "Rank": 479428, + "Tags": [ + "Rock", + "Rock e Roll/Rockabilly", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 7805012, + "name": "BABYMETAL", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Rock e Roll/Rockabilly" + ] + }, + { + "SongId": 481, + "Name": "Gimme Some More", + "Artists": "Busta Rhymes", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": null, + "SpotifyId": "47wZfF4OdME3xkIPhhpSSF", + "DeezerID": 71684844, + "DeezerURL": "https://www.deezer.com/track/71684844", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dcdc8436cad148d85fe506a13dd72213/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dcdc8436cad148d85fe506a13dd72213/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dcdc8436cad148d85fe506a13dd72213/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dcdc8436cad148d85fe506a13dd72213/1000x1000-000000-80-0-0.jpg", + "ISRC": "USEE19800288", + "BPM": 136.4, + "Duration": 158, + "ReleaseDate": "2008-03-03", + "AlbumName": "The Best of Busta Rhymes", + "Explicit": true, + "Rank": 489698, + "Tags": [ + "Rap/Hip Hop", + "bpm:136.4", + "fast", + "short", + "year:2008" + ], + "Contributors": [ + { + "id": 796, + "name": "Busta Rhymes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 481, + "Name": "Gimme Some More", + "Artists": "Busta Rhymes", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": null, + "SpotifyId": "47wZfF4OdME3xkIPhhpSSF", + "DeezerID": 71684844, + "DeezerURL": "https://www.deezer.com/track/71684844", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dcdc8436cad148d85fe506a13dd72213/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dcdc8436cad148d85fe506a13dd72213/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dcdc8436cad148d85fe506a13dd72213/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dcdc8436cad148d85fe506a13dd72213/1000x1000-000000-80-0-0.jpg", + "ISRC": "USEE19800288", + "BPM": 136.4, + "Duration": 158, + "ReleaseDate": "2008-03-03", + "AlbumName": "The Best of Busta Rhymes", + "Explicit": true, + "Rank": 489698, + "Tags": [ + "Rap/Hip Hop", + "bpm:136.4", + "fast", + "short", + "year:2008" + ], + "Contributors": [ + { + "id": 796, + "name": "Busta Rhymes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 379, + "Name": "Give it away", + "Artists": "Red Hot Chili Peppers", + "Color": "DB352C", + "DarkColor": "9E1E23", + "SongMetaId": null, + "SpotifyId": "0uppYCG86ajpV2hSR3dJJ0", + "DeezerID": 725837, + "DeezerURL": "https://www.deezer.com/track/725837", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5d7af03204d679ef877b9033d279d8bd/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5d7af03204d679ef877b9033d279d8bd/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5d7af03204d679ef877b9033d279d8bd/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5d7af03204d679ef877b9033d279d8bd/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB19901574", + "BPM": 182.94, + "Duration": 282, + "ReleaseDate": "1991-09-24", + "AlbumName": "Blood Sugar Sex Magik (Deluxe Edition)", + "Explicit": false, + "Rank": 763800, + "Tags": [ + "Alternativo", + "bpm:182.94", + "medium-length", + "very-fast", + "year:1991" + ], + "Contributors": [ + { + "id": 182, + "name": "Red Hot Chili Peppers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 554, + "Name": "Give It To Me", + "Artists": "Cesqeaux, Tisoki", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "5J5lXkB6oycwehvBJBmaUc", + "DeezerID": 2171908177, + "DeezerURL": "https://www.deezer.com/track/2171908177", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4c33d0c00d063939cc2152b42222a0d8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4c33d0c00d063939cc2152b42222a0d8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4c33d0c00d063939cc2152b42222a0d8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4c33d0c00d063939cc2152b42222a0d8/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD2310071", + "BPM": 0, + "Duration": 166, + "ReleaseDate": "2023-03-17", + "AlbumName": "Give It To Me", + "Explicit": false, + "Rank": 105736, + "Tags": [ + "Electro", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 6764829, + "name": "Cesqeaux", + "role": "Main" + }, + { + "id": 2767951, + "name": "Tisoki", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 554, + "Name": "Give It To Me", + "Artists": "Cesqeaux, Tisoki", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "5J5lXkB6oycwehvBJBmaUc", + "DeezerID": 2171908177, + "DeezerURL": "https://www.deezer.com/track/2171908177", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4c33d0c00d063939cc2152b42222a0d8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4c33d0c00d063939cc2152b42222a0d8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4c33d0c00d063939cc2152b42222a0d8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4c33d0c00d063939cc2152b42222a0d8/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD2310071", + "BPM": 0, + "Duration": 166, + "ReleaseDate": "2023-03-17", + "AlbumName": "Give It To Me", + "Explicit": false, + "Rank": 105736, + "Tags": [ + "Electro", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 6764829, + "name": "Cesqeaux", + "role": "Main" + }, + { + "id": 2767951, + "name": "Tisoki", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 516, + "Name": "Glue", + "Artists": "Fickle Friends", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "7dMU1llpBZRrAwi5he68Kq", + "DeezerID": 470736312, + "DeezerURL": "https://www.deezer.com/track/470736312", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/59593dd8bc7c1b2a2cb26006c6ee0e4b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/59593dd8bc7c1b2a2cb26006c6ee0e4b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/59593dd8bc7c1b2a2cb26006c6ee0e4b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/59593dd8bc7c1b2a2cb26006c6ee0e4b/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71702474", + "BPM": 116.13, + "Duration": 188, + "ReleaseDate": "2018-03-16", + "AlbumName": "You Are Someone Else", + "Explicit": false, + "Rank": 196234, + "Tags": [ + "Pop", + "bpm:116.13", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 5427320, + "name": "Fickle Friends", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 516, + "Name": "Glue", + "Artists": "Fickle Friends", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "7dMU1llpBZRrAwi5he68Kq", + "DeezerID": 470736312, + "DeezerURL": "https://www.deezer.com/track/470736312", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/59593dd8bc7c1b2a2cb26006c6ee0e4b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/59593dd8bc7c1b2a2cb26006c6ee0e4b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/59593dd8bc7c1b2a2cb26006c6ee0e4b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/59593dd8bc7c1b2a2cb26006c6ee0e4b/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71702474", + "BPM": 116.13, + "Duration": 188, + "ReleaseDate": "2018-03-16", + "AlbumName": "You Are Someone Else", + "Explicit": false, + "Rank": 196234, + "Tags": [ + "Pop", + "bpm:116.13", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 5427320, + "name": "Fickle Friends", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 572, + "Name": "Gluttony", + "Artists": "Theraphosa", + "Color": "ADA183", + "DarkColor": "81775C", + "SongMetaId": null, + "SpotifyId": "5Lb4V4hzjSLtht1umgFdfa", + "DeezerID": 2486092751, + "DeezerURL": "https://www.deezer.com/track/2486092751", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/88b4d447f10ed29f6960bf32afd32d22/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/88b4d447f10ed29f6960bf32afd32d22/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/88b4d447f10ed29f6960bf32afd32d22/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/88b4d447f10ed29f6960bf32afd32d22/1000x1000-000000-80-0-0.jpg", + "ISRC": "FR9W12245234", + "BPM": 0, + "Duration": 217, + "ReleaseDate": "2024-02-02", + "AlbumName": "Inferno", + "Explicit": false, + "Rank": 109986, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 1269047, + "name": "Theraphosa", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 572, + "Name": "Gluttony", + "Artists": "Theraphosa", + "Color": "ADA183", + "DarkColor": "A59C84", + "SongMetaId": null, + "SpotifyId": "5Lb4V4hzjSLtht1umgFdfa", + "DeezerID": 2486092751, + "DeezerURL": "https://www.deezer.com/track/2486092751", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/88b4d447f10ed29f6960bf32afd32d22/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/88b4d447f10ed29f6960bf32afd32d22/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/88b4d447f10ed29f6960bf32afd32d22/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/88b4d447f10ed29f6960bf32afd32d22/1000x1000-000000-80-0-0.jpg", + "ISRC": "FR9W12245234", + "BPM": 0, + "Duration": 217, + "ReleaseDate": "2024-02-02", + "AlbumName": "Inferno", + "Explicit": false, + "Rank": 109986, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 1269047, + "name": "Theraphosa", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 32, + "Name": "Go", + "Artists": "The Chemical Brothers", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "2Xhd1kYKj2aee7JR3nIlRe", + "DeezerID": 103480110, + "DeezerURL": "https://www.deezer.com/track/103480110", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/673a0ccd9005245dead1afd78589307a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/673a0ccd9005245dead1afd78589307a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/673a0ccd9005245dead1afd78589307a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/673a0ccd9005245dead1afd78589307a/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71502365", + "BPM": 119.84, + "Duration": 261, + "ReleaseDate": "2015-07-17", + "AlbumName": "Born In The Echoes", + "Explicit": true, + "Rank": 567265, + "Tags": [ + "Electro", + "bpm:119.84", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 81, + "name": "The Chemical Brothers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 151, + "Name": "Go With The Flow", + "Artists": "Queens of the Stone Age", + "Color": "E12223", + "DarkColor": "79000F", + "SongMetaId": null, + "SpotifyId": "45DElIx0dXqUH4A88yQFdE", + "DeezerID": 7179764, + "DeezerURL": "https://www.deezer.com/track/7179764", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ace9490e8fe0c7468b102aa5145fb766/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ace9490e8fe0c7468b102aa5145fb766/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ace9490e8fe0c7468b102aa5145fb766/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ace9490e8fe0c7468b102aa5145fb766/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR10211290", + "BPM": 159.6, + "Duration": 187, + "ReleaseDate": "2002-08-21", + "AlbumName": "Songs For The Deaf", + "Explicit": false, + "Rank": 732071, + "Tags": [ + "Pop", + "bpm:159.6", + "medium-length", + "very-fast", + "year:2002" + ], + "Contributors": [ + { + "id": 1177, + "name": "Queens of the Stone Age", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 742, + "Name": "Go Your Own Way", + "Artists": "Fleetwood Mac", + "Color": "ADA183", + "DarkColor": "81775C", + "SongMetaId": "15", + "SpotifyId": "15rjQH7nTcTomKwfVMd4xl", + "DeezerID": 63480990, + "DeezerURL": "https://www.deezer.com/track/63480990", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9732751ce91d786dcf30069853697078/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9732751ce91d786dcf30069853697078/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9732751ce91d786dcf30069853697078/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9732751ce91d786dcf30069853697078/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB10400050", + "BPM": 135.1, + "Duration": 223, + "ReleaseDate": "1977-02-04", + "AlbumName": "Rumours", + "Explicit": false, + "Rank": 793557, + "Tags": [ + "Rock", + "bpm:135.1", + "fast", + "medium-length", + "year:1977" + ], + "Contributors": [ + { + "id": 169, + "name": "Fleetwood Mac", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 462, + "Name": "Go Your Own Way", + "Artists": "Fleetwood Mac", + "Color": "ADA183", + "DarkColor": "81775C", + "SongMetaId": "15", + "SpotifyId": "15rjQH7nTcTomKwfVMd4xl", + "DeezerID": 63480990, + "DeezerURL": "https://www.deezer.com/track/63480990", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9732751ce91d786dcf30069853697078/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9732751ce91d786dcf30069853697078/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9732751ce91d786dcf30069853697078/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9732751ce91d786dcf30069853697078/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB10400050", + "BPM": 135.1, + "Duration": 223, + "ReleaseDate": "1977-02-04", + "AlbumName": "Rumours", + "Explicit": false, + "Rank": 793557, + "Tags": [ + "Rock", + "bpm:135.1", + "fast", + "medium-length", + "year:1977" + ], + "Contributors": [ + { + "id": 169, + "name": "Fleetwood Mac", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 462, + "Name": "Go Your Own Way", + "Artists": "Fleetwood Mac", + "Color": "ADA183", + "DarkColor": "A59C84", + "SongMetaId": "15", + "SpotifyId": "15rjQH7nTcTomKwfVMd4xl", + "DeezerID": 63480990, + "DeezerURL": "https://www.deezer.com/track/63480990", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9732751ce91d786dcf30069853697078/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9732751ce91d786dcf30069853697078/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9732751ce91d786dcf30069853697078/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9732751ce91d786dcf30069853697078/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB10400050", + "BPM": 135.1, + "Duration": 223, + "ReleaseDate": "1977-02-04", + "AlbumName": "Rumours", + "Explicit": false, + "Rank": 793557, + "Tags": [ + "Rock", + "bpm:135.1", + "fast", + "medium-length", + "year:1977" + ], + "Contributors": [ + { + "id": 169, + "name": "Fleetwood Mac", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 329, + "Name": "Godzilla", + "Artists": "Eminem, Juice WRLD", + "Color": "E51A18", + "DarkColor": "750D0C", + "SongMetaId": "16", + "SpotifyId": "6qBffi4yVR6ZpfPOo6TaGc", + "DeezerID": 854914322, + "DeezerURL": "https://www.deezer.com/track/854914322", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4d00a7848dc8af475973ff1761ad828d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4d00a7848dc8af475973ff1761ad828d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4d00a7848dc8af475973ff1761ad828d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4d00a7848dc8af475973ff1761ad828d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72000788", + "BPM": 166.04, + "Duration": 211, + "ReleaseDate": "2020-01-17", + "AlbumName": "Music To Be Murdered By", + "Explicit": true, + "Rank": 874674, + "Tags": [ + "Rap/Hip Hop", + "bpm:166.04", + "medium-length", + "very-fast", + "year:2020" + ], + "Contributors": [ + { + "id": 13, + "name": "Eminem", + "role": "Main" + }, + { + "id": 14456487, + "name": "Juice Wrld", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 750, + "Name": "Godzilla", + "Artists": "Eminem, Juice WRLD", + "Color": "E51A18", + "DarkColor": "750D0C", + "SongMetaId": "16", + "SpotifyId": "6qBffi4yVR6ZpfPOo6TaGc", + "DeezerID": 854914322, + "DeezerURL": "https://www.deezer.com/track/854914322", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4d00a7848dc8af475973ff1761ad828d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4d00a7848dc8af475973ff1761ad828d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4d00a7848dc8af475973ff1761ad828d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4d00a7848dc8af475973ff1761ad828d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72000788", + "BPM": 166.04, + "Duration": 211, + "ReleaseDate": "2020-01-17", + "AlbumName": "Music To Be Murdered By", + "Explicit": true, + "Rank": 874674, + "Tags": [ + "Rap/Hip Hop", + "bpm:166.04", + "medium-length", + "very-fast", + "year:2020" + ], + "Contributors": [ + { + "id": 13, + "name": "Eminem", + "role": "Main" + }, + { + "id": 14456487, + "name": "Juice Wrld", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 329, + "Name": "Godzilla", + "Artists": "Eminem, Juice WRLD", + "Color": "E51A18", + "DarkColor": "750D0C", + "SongMetaId": "16", + "SpotifyId": "6qBffi4yVR6ZpfPOo6TaGc", + "DeezerID": 854914322, + "DeezerURL": "https://www.deezer.com/track/854914322", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4d00a7848dc8af475973ff1761ad828d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4d00a7848dc8af475973ff1761ad828d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4d00a7848dc8af475973ff1761ad828d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4d00a7848dc8af475973ff1761ad828d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72000788", + "BPM": 166.04, + "Duration": 211, + "ReleaseDate": "2020-01-17", + "AlbumName": "Music To Be Murdered By", + "Explicit": true, + "Rank": 874674, + "Tags": [ + "Rap/Hip Hop", + "bpm:166.04", + "medium-length", + "very-fast", + "year:2020" + ], + "Contributors": [ + { + "id": 13, + "name": "Eminem", + "role": "Main" + }, + { + "id": 14456487, + "name": "Juice Wrld", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 710, + "Name": "Goin Goin Gone", + "Artists": "Hippies and Cowboys", + "Color": "D0AB64", + "DarkColor": "7D5B3E", + "SongMetaId": null, + "SpotifyId": "0wlc1uH3J4C4cy6oLCaCYE", + "DeezerID": 2956293851, + "DeezerURL": "https://www.deezer.com/track/2956293851", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7567d850e167bdd0a1c2b741a1826deb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7567d850e167bdd0a1c2b741a1826deb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7567d850e167bdd0a1c2b741a1826deb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7567d850e167bdd0a1c2b741a1826deb/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZTB82403942", + "BPM": 0, + "Duration": 260, + "ReleaseDate": "2024-08-21", + "AlbumName": "Fork In The Road", + "Explicit": true, + "Rank": 119042, + "Tags": [ + "Rock", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 157850242, + "name": "Hippies And Cowboys", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 710, + "Name": "Goin Goin Gone", + "Artists": "Hippies and Cowboys", + "Color": "D0AB64", + "DarkColor": "7D5B3E", + "SongMetaId": null, + "SpotifyId": "0wlc1uH3J4C4cy6oLCaCYE", + "DeezerID": 2956293851, + "DeezerURL": "https://www.deezer.com/track/2956293851", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7567d850e167bdd0a1c2b741a1826deb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7567d850e167bdd0a1c2b741a1826deb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7567d850e167bdd0a1c2b741a1826deb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7567d850e167bdd0a1c2b741a1826deb/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZTB82403942", + "BPM": 0, + "Duration": 260, + "ReleaseDate": "2024-08-21", + "AlbumName": "Fork In The Road", + "Explicit": true, + "Rank": 119042, + "Tags": [ + "Rock", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 157850242, + "name": "Hippies And Cowboys", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 256, + "Name": "Gold Dust", + "Artists": "DJ Fresh, CECILE", + "Color": "53DFE5", + "DarkColor": "1B6D90", + "SongMetaId": null, + "SpotifyId": "3uIGef7OSXkFdqxjFWn2o6" + }, + { + "SongId": 383, + "Name": "golden hour", + "Artists": "JVKE", + "Color": "EEFC45", + "DarkColor": "203A12", + "SongMetaId": null, + "SpotifyId": "4yNk9iz9WVJikRFle3XEvn", + "DeezerID": 1898901177, + "DeezerURL": "https://www.deezer.com/track/1898901177", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/845eff477946539849c7291510d61daf/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/845eff477946539849c7291510d61daf/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/845eff477946539849c7291510d61daf/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/845eff477946539849c7291510d61daf/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBKPL2204171", + "BPM": 0, + "Duration": 209, + "ReleaseDate": "2022-07-15", + "AlbumName": "golden hour", + "Explicit": false, + "Rank": 822350, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 14486481, + "name": "Jvke", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 383, + "Name": "golden hour", + "Artists": "JVKE", + "Color": "DDB83D", + "DarkColor": "AA8C29", + "SongMetaId": null, + "SpotifyId": "4yNk9iz9WVJikRFle3XEvn", + "DeezerID": 1898901177, + "DeezerURL": "https://www.deezer.com/track/1898901177", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/845eff477946539849c7291510d61daf/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/845eff477946539849c7291510d61daf/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/845eff477946539849c7291510d61daf/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/845eff477946539849c7291510d61daf/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBKPL2204171", + "BPM": 0, + "Duration": 209, + "ReleaseDate": "2022-07-15", + "AlbumName": "golden hour", + "Explicit": false, + "Rank": 822350, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 14486481, + "name": "Jvke", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 659, + "Name": "Golden Sands", + "Artists": "Beatstar Originals", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "" + }, + { + "SongId": 505, + "Name": "Golden Skans", + "Artists": "Klaxons", + "Color": "E26336", + "DarkColor": "CE4913", + "SongMetaId": null, + "SpotifyId": "6BqWhxll86CGGE6WxgdRqG", + "DeezerID": 1142763, + "DeezerURL": "https://www.deezer.com/track/1142763", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/547e0a517fdefe2cf693a9571a6d7f9e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/547e0a517fdefe2cf693a9571a6d7f9e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/547e0a517fdefe2cf693a9571a6d7f9e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/547e0a517fdefe2cf693a9571a6d7f9e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM70605901", + "BPM": 142.1, + "Duration": 165, + "ReleaseDate": "2007-02-19", + "AlbumName": "Golden Skans", + "Explicit": false, + "Rank": 503372, + "Tags": [ + "Electro", + "bpm:142.1", + "fast", + "short", + "year:2007" + ], + "Contributors": [ + { + "id": 5912, + "name": "Klaxons", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 505, + "Name": "Golden Skans", + "Artists": "Klaxons", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "6BqWhxll86CGGE6WxgdRqG", + "DeezerID": 1142763, + "DeezerURL": "https://www.deezer.com/track/1142763", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/547e0a517fdefe2cf693a9571a6d7f9e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/547e0a517fdefe2cf693a9571a6d7f9e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/547e0a517fdefe2cf693a9571a6d7f9e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/547e0a517fdefe2cf693a9571a6d7f9e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM70605901", + "BPM": 142.1, + "Duration": 165, + "ReleaseDate": "2007-02-19", + "AlbumName": "Golden Skans", + "Explicit": false, + "Rank": 503372, + "Tags": [ + "Electro", + "bpm:142.1", + "fast", + "short", + "year:2007" + ], + "Contributors": [ + { + "id": 5912, + "name": "Klaxons", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 567, + "Name": "good 4 u", + "Artists": "Olivia Rodrigo", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "4ZtFanR9U6ndgddUvNcjcG", + "DeezerID": 1378342622, + "DeezerURL": "https://www.deezer.com/track/1378342622", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12101245", + "BPM": 0, + "Duration": 178, + "ReleaseDate": "2021-05-21", + "AlbumName": "SOUR", + "Explicit": true, + "Rank": 898019, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 11152580, + "name": "Olivia Rodrigo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 567, + "Name": "good 4 u", + "Artists": "Olivia Rodrigo", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "4ZtFanR9U6ndgddUvNcjcG", + "DeezerID": 1378342622, + "DeezerURL": "https://www.deezer.com/track/1378342622", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e68da86fd7976135c2d2d1715afaef7c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12101245", + "BPM": 0, + "Duration": 178, + "ReleaseDate": "2021-05-21", + "AlbumName": "SOUR", + "Explicit": true, + "Rank": 898019, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 11152580, + "name": "Olivia Rodrigo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 677, + "Name": "GOOD FEELiNGS", + "Artists": "Coldplay, Ayra Starr", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "65wzicJctsW9GwnTnLWxQO", + "DeezerID": 3024257771, + "DeezerURL": "https://www.deezer.com/track/3024257771", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8f63a01593c329798544895109f36f8c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8f63a01593c329798544895109f36f8c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8f63a01593c329798544895109f36f8c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8f63a01593c329798544895109f36f8c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE2400682", + "BPM": 0, + "Duration": 217, + "ReleaseDate": "2024-10-04", + "AlbumName": "Moon Music", + "Explicit": false, + "Rank": 895355, + "Tags": [ + "Alternativo", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 892, + "name": "Coldplay", + "role": "Main" + }, + { + "id": 110616822, + "name": "Ayra Starr", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 677, + "Name": "GOOD FEELiNGS", + "Artists": "Coldplay, Ayra Starr", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "65wzicJctsW9GwnTnLWxQO", + "DeezerID": 3024257771, + "DeezerURL": "https://www.deezer.com/track/3024257771", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8f63a01593c329798544895109f36f8c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8f63a01593c329798544895109f36f8c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8f63a01593c329798544895109f36f8c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8f63a01593c329798544895109f36f8c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE2400682", + "BPM": 0, + "Duration": 217, + "ReleaseDate": "2024-10-04", + "AlbumName": "Moon Music", + "Explicit": false, + "Rank": 895355, + "Tags": [ + "Alternativo", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 892, + "name": "Coldplay", + "role": "Main" + }, + { + "id": 110616822, + "name": "Ayra Starr", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 183, + "Name": "Good Time", + "Artists": "Owl City, Carly Rae Jepsen", + "Color": "0C878A", + "DarkColor": "063F3C", + "SongMetaId": null, + "SpotifyId": "1kPpge9JDLpcj15qgrPbYX", + "DeezerID": 53825251, + "DeezerURL": "https://www.deezer.com/track/53825251", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7e6ddcd830f7a041f606d7b29864be2e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7e6ddcd830f7a041f606d7b29864be2e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7e6ddcd830f7a041f606d7b29864be2e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7e6ddcd830f7a041f606d7b29864be2e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71206288", + "BPM": 126.05, + "Duration": 205, + "ReleaseDate": "2012-01-01", + "AlbumName": "The Midsummer Station", + "Explicit": false, + "Rank": 804759, + "Tags": [ + "Pop", + "bpm:126.05", + "fast", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 183201, + "name": "Owl City", + "role": "Main" + }, + { + "id": 1002521, + "name": "Carly Rae Jepsen", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 183, + "Name": "Good Time", + "Artists": "Owl City, Carly Rae Jepsen", + "Color": "0C878A", + "DarkColor": "063F3C", + "SongMetaId": null, + "SpotifyId": "1kPpge9JDLpcj15qgrPbYX", + "DeezerID": 53825251, + "DeezerURL": "https://www.deezer.com/track/53825251", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7e6ddcd830f7a041f606d7b29864be2e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7e6ddcd830f7a041f606d7b29864be2e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7e6ddcd830f7a041f606d7b29864be2e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7e6ddcd830f7a041f606d7b29864be2e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71206288", + "BPM": 126.05, + "Duration": 205, + "ReleaseDate": "2012-01-01", + "AlbumName": "The Midsummer Station", + "Explicit": false, + "Rank": 804759, + "Tags": [ + "Pop", + "bpm:126.05", + "fast", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 183201, + "name": "Owl City", + "role": "Main" + }, + { + "id": 1002521, + "name": "Carly Rae Jepsen", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 335, + "Name": "Goodies", + "Artists": "Ciara, Petey Pablo", + "Color": "B8286A", + "DarkColor": "511137", + "SongMetaId": null, + "SpotifyId": "3dFwpxh2yH7C7p9BGEKLVB", + "DeezerID": 569217, + "DeezerURL": "https://www.deezer.com/track/569217", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6617b0742476083a5d507097b1f15534/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6617b0742476083a5d507097b1f15534/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6617b0742476083a5d507097b1f15534/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6617b0742476083a5d507097b1f15534/1000x1000-000000-80-0-0.jpg", + "ISRC": "USLF20400041", + "BPM": 102.1, + "Duration": 223, + "ReleaseDate": "2005-01-22", + "AlbumName": "Goodies", + "Explicit": false, + "Rank": 648513, + "Tags": [ + "Pop", + "bpm:102.1", + "medium", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 2619, + "name": "Ciara", + "role": "Main" + }, + { + "id": 3826, + "name": "Petey Pablo", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 685, + "Name": "Graveyard Groove", + "Artists": "Beatstar Originals", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "" + }, + { + "SongId": 642, + "Name": "greedy", + "Artists": "Tate McRae", + "Color": "C47B66", + "DarkColor": "812D23", + "SongMetaId": null, + "SpotifyId": "3rUGC1vUpkDG9CZFHMur1t", + "DeezerID": 2444176345, + "DeezerURL": "https://www.deezer.com/track/2444176345", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ef25b6bec265332a059879f45d33cd7e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ef25b6bec265332a059879f45d33cd7e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ef25b6bec265332a059879f45d33cd7e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ef25b6bec265332a059879f45d33cd7e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC12301932", + "BPM": 0, + "Duration": 131, + "ReleaseDate": "2023-09-15", + "AlbumName": "greedy", + "Explicit": true, + "Rank": 962288, + "Tags": [ + "Alternativo", + "Pop", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 13817211, + "name": "Tate McRae", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Pop" + ] + }, + { + "SongId": 642, + "Name": "greedy", + "Artists": "Tate McRae", + "Color": "C47B66", + "DarkColor": "812D23", + "SongMetaId": null, + "SpotifyId": "3rUGC1vUpkDG9CZFHMur1t", + "DeezerID": 2444176345, + "DeezerURL": "https://www.deezer.com/track/2444176345", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ef25b6bec265332a059879f45d33cd7e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ef25b6bec265332a059879f45d33cd7e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ef25b6bec265332a059879f45d33cd7e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ef25b6bec265332a059879f45d33cd7e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC12301932", + "BPM": 0, + "Duration": 131, + "ReleaseDate": "2023-09-15", + "AlbumName": "greedy", + "Explicit": true, + "Rank": 962288, + "Tags": [ + "Alternativo", + "Pop", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 13817211, + "name": "Tate McRae", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Pop" + ] + }, + { + "SongId": 531, + "Name": "Green Green Grass", + "Artists": "George Ezra", + "Color": "52935F", + "DarkColor": "1C5A26", + "SongMetaId": null, + "SpotifyId": "4N5s8lPTsjI9EGP7K4SXzB", + "DeezerID": 1692393067, + "DeezerURL": "https://www.deezer.com/track/1692393067", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1aeac7e7a925c23f95d57e062d2e0dab/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1aeac7e7a925c23f95d57e062d2e0dab/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1aeac7e7a925c23f95d57e062d2e0dab/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1aeac7e7a925c23f95d57e062d2e0dab/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL2200008", + "BPM": 0, + "Duration": 167, + "ReleaseDate": "2025-01-06", + "AlbumName": "Green Green Grass", + "Explicit": false, + "Rank": 669606, + "Tags": [ + "Singer & Songwriter", + "short", + "year:2025" + ], + "Contributors": [ + { + "id": 5241932, + "name": "George Ezra", + "role": "Main" + } + ], + "AlbumGenres": [ + "Singer & Songwriter" + ] + }, + { + "SongId": 531, + "Name": "Green Green Grass", + "Artists": "George Ezra", + "Color": "52935F", + "DarkColor": "1C5A26", + "SongMetaId": null, + "SpotifyId": "4N5s8lPTsjI9EGP7K4SXzB", + "DeezerID": 1692393067, + "DeezerURL": "https://www.deezer.com/track/1692393067", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1aeac7e7a925c23f95d57e062d2e0dab/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1aeac7e7a925c23f95d57e062d2e0dab/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1aeac7e7a925c23f95d57e062d2e0dab/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1aeac7e7a925c23f95d57e062d2e0dab/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL2200008", + "BPM": 0, + "Duration": 167, + "ReleaseDate": "2025-01-06", + "AlbumName": "Green Green Grass", + "Explicit": false, + "Rank": 669606, + "Tags": [ + "Singer & Songwriter", + "short", + "year:2025" + ], + "Contributors": [ + { + "id": 5241932, + "name": "George Ezra", + "role": "Main" + } + ], + "AlbumGenres": [ + "Singer & Songwriter" + ] + }, + { + "SongId": 646, + "Name": "Grifo", + "Artists": "Tipa Tipo", + "Color": "F46277", + "DarkColor": "842D42", + "SongMetaId": null, + "SpotifyId": "5jBrq5ygLZGMtVN9ZW6sw4", + "DeezerID": 2503131551, + "DeezerURL": "https://www.deezer.com/track/2503131551", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b525d0d4857f54e34abbf0a0aa87a00f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b525d0d4857f54e34abbf0a0aa87a00f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b525d0d4857f54e34abbf0a0aa87a00f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b525d0d4857f54e34abbf0a0aa87a00f/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZWV32381465", + "BPM": 0, + "Duration": 217, + "ReleaseDate": "2023-11-15", + "AlbumName": "Grifo", + "Explicit": false, + "Rank": 20514, + "Tags": [ + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 121383552, + "name": "Tipa Tipo", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 646, + "Name": "Grifo", + "Artists": "Tipa Tipo", + "Color": "F4657B", + "DarkColor": "842D42", + "SongMetaId": null, + "SpotifyId": "5jBrq5ygLZGMtVN9ZW6sw4", + "DeezerID": 2503131551, + "DeezerURL": "https://www.deezer.com/track/2503131551", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b525d0d4857f54e34abbf0a0aa87a00f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b525d0d4857f54e34abbf0a0aa87a00f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b525d0d4857f54e34abbf0a0aa87a00f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b525d0d4857f54e34abbf0a0aa87a00f/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZWV32381465", + "BPM": 0, + "Duration": 217, + "ReleaseDate": "2023-11-15", + "AlbumName": "Grifo", + "Explicit": false, + "Rank": 20514, + "Tags": [ + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 121383552, + "name": "Tipa Tipo", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 671, + "Name": "Groove Is In The Heart", + "Artists": "Deee-Lite", + "Color": "E44A8C", + "DarkColor": "E44A8C", + "SongMetaId": null, + "SpotifyId": "2He3NOyqtLNE3RQPpeDdSb", + "DeezerID": 75070408, + "DeezerURL": "https://www.deezer.com/track/75070408", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0dafdb48361921d684fdafde72e13409/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0dafdb48361921d684fdafde72e13409/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0dafdb48361921d684fdafde72e13409/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0dafdb48361921d684fdafde72e13409/1000x1000-000000-80-0-0.jpg", + "ISRC": "USEE11200805", + "BPM": 121.6, + "Duration": 234, + "ReleaseDate": "2014-01-21", + "AlbumName": "Groove Is in the Heart", + "Explicit": false, + "Rank": 716901, + "Tags": [ + "Pop", + "bpm:121.6", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 1014, + "name": "Deee-Lite", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 671, + "Name": "Groove Is In The Heart", + "Artists": "Deee-Lite", + "Color": "E44A8C", + "DarkColor": "E44A8C", + "SongMetaId": null, + "SpotifyId": "2He3NOyqtLNE3RQPpeDdSb", + "DeezerID": 75070408, + "DeezerURL": "https://www.deezer.com/track/75070408", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0dafdb48361921d684fdafde72e13409/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0dafdb48361921d684fdafde72e13409/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0dafdb48361921d684fdafde72e13409/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0dafdb48361921d684fdafde72e13409/1000x1000-000000-80-0-0.jpg", + "ISRC": "USEE11200805", + "BPM": 121.6, + "Duration": 234, + "ReleaseDate": "2014-01-21", + "AlbumName": "Groove Is in the Heart", + "Explicit": false, + "Rank": 716901, + "Tags": [ + "Pop", + "bpm:121.6", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 1014, + "name": "Deee-Lite", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 191, + "Name": "Habits (Stay High)", + "Artists": "Tove Lo", + "Color": "B83564", + "DarkColor": "6E184D", + "SongMetaId": null, + "SpotifyId": "14OxJlLdcHNpgsm4DRwDOB", + "DeezerID": 84669141, + "DeezerURL": "https://www.deezer.com/track/84669141", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/bca07a0bfaaf112657e078b3cbc48d82/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/bca07a0bfaaf112657e078b3cbc48d82/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/bca07a0bfaaf112657e078b3cbc48d82/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/bca07a0bfaaf112657e078b3cbc48d82/1000x1000-000000-80-0-0.jpg", + "ISRC": "SE3NM1300101", + "BPM": 110, + "Duration": 208, + "ReleaseDate": "2014-09-29", + "AlbumName": "Queen Of The Clouds", + "Explicit": false, + "Rank": 900207, + "Tags": [ + "Alternativo", + "bpm:110", + "medium", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 4103977, + "name": "Tove Lo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 472, + "Name": "Hallowed Be Thy Name", + "Artists": "Iron Maiden", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "1iGXvUsVVkYBas0Cniw6NB", + "DeezerID": 585704662, + "DeezerURL": "https://www.deezer.com/track/585704662", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7ed7d6130119c3a0afa60499ae8e9599/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7ed7d6130119c3a0afa60499ae8e9599/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7ed7d6130119c3a0afa60499ae8e9599/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7ed7d6130119c3a0afa60499ae8e9599/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCHB1800027", + "BPM": 103.62, + "Duration": 431, + "ReleaseDate": "2015-04-06", + "AlbumName": "The Number of the Beast (2015 Remaster)", + "Explicit": false, + "Rank": 689645, + "Tags": [ + "Rock", + "bpm:103.62", + "long", + "medium", + "year:2015" + ], + "Contributors": [ + { + "id": 931, + "name": "Iron Maiden", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 472, + "Name": "Hallowed Be Thy Name", + "Artists": "Iron Maiden", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "1iGXvUsVVkYBas0Cniw6NB", + "DeezerID": 585704662, + "DeezerURL": "https://www.deezer.com/track/585704662", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7ed7d6130119c3a0afa60499ae8e9599/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7ed7d6130119c3a0afa60499ae8e9599/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7ed7d6130119c3a0afa60499ae8e9599/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7ed7d6130119c3a0afa60499ae8e9599/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCHB1800027", + "BPM": 103.62, + "Duration": 431, + "ReleaseDate": "2015-04-06", + "AlbumName": "The Number of the Beast (2015 Remaster)", + "Explicit": false, + "Rank": 689645, + "Tags": [ + "Rock", + "bpm:103.62", + "long", + "medium", + "year:2015" + ], + "Contributors": [ + { + "id": 931, + "name": "Iron Maiden", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 54, + "Name": "Happier", + "Artists": "Marshmello, Bastille", + "Color": "F1B500", + "DarkColor": "DC8E00", + "SongMetaId": null, + "SpotifyId": "7BqHUALzNBTanL6OvsqmC1", + "DeezerID": 2441318935, + "DeezerURL": "https://www.deezer.com/track/2441318935", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/28d79ed4bdb8a267f6eb83b18414043a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/28d79ed4bdb8a267f6eb83b18414043a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/28d79ed4bdb8a267f6eb83b18414043a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/28d79ed4bdb8a267f6eb83b18414043a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG11801651", + "BPM": 0, + "Duration": 214, + "ReleaseDate": "2018-08-17", + "AlbumName": "Happier", + "Explicit": false, + "Rank": 775987, + "Tags": [ + "Dance", + "Electro", + "Pop", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 7890702, + "name": "Marshmello", + "role": "Main" + }, + { + "id": 1352097, + "name": "Bastille", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance", + "Pop" + ] + }, + { + "SongId": 54, + "Name": "Happier", + "Artists": "Marshmello, Bastille", + "Color": "F1B500", + "DarkColor": "DC8E00", + "SongMetaId": null, + "SpotifyId": "7BqHUALzNBTanL6OvsqmC1", + "DeezerID": 2441318935, + "DeezerURL": "https://www.deezer.com/track/2441318935", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/28d79ed4bdb8a267f6eb83b18414043a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/28d79ed4bdb8a267f6eb83b18414043a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/28d79ed4bdb8a267f6eb83b18414043a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/28d79ed4bdb8a267f6eb83b18414043a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG11801651", + "BPM": 0, + "Duration": 214, + "ReleaseDate": "2018-08-17", + "AlbumName": "Happier", + "Explicit": false, + "Rank": 775987, + "Tags": [ + "Dance", + "Electro", + "Pop", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 7890702, + "name": "Marshmello", + "role": "Main" + }, + { + "id": 1352097, + "name": "Bastille", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance", + "Pop" + ] + }, + { + "SongId": 72, + "Name": "Happy Now", + "Artists": "Kygo, Sandro Cavazza", + "Color": "CA9284", + "DarkColor": "A8655B", + "SongMetaId": null, + "SpotifyId": "14sOS5L36385FJ3OL8hew4", + "DeezerID": 563375222, + "DeezerURL": "https://www.deezer.com/track/563375222", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e618f14512c08285831a9a47ea7b8f3d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e618f14512c08285831a9a47ea7b8f3d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e618f14512c08285831a9a47ea7b8f3d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e618f14512c08285831a9a47ea7b8f3d/1000x1000-000000-80-0-0.jpg", + "ISRC": "SEBGA1803418", + "BPM": 118.12, + "Duration": 211, + "ReleaseDate": "2018-10-26", + "AlbumName": "Happy Now", + "Explicit": false, + "Rank": 609114, + "Tags": [ + "Dance", + "Electro", + "Techno/House", + "bpm:118.12", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 4768753, + "name": "Kygo", + "role": "Main" + }, + { + "id": 10349386, + "name": "Sandro Cavazza", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House", + "Dance" + ] + }, + { + "SongId": 701, + "Name": "Happy Xmas (War Is Over)", + "Artists": "John Lennon, Yoko Ono", + "Color": "AD2429", + "DarkColor": "6E0C00", + "SongMetaId": null, + "SpotifyId": "781dudpYngdoNKFEqWC9W2", + "DeezerID": 7163389, + "DeezerURL": "https://www.deezer.com/track/7163389", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7c89db5249da1843f557174df2df1006/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7c89db5249da1843f557174df2df1006/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7c89db5249da1843f557174df2df1006/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7c89db5249da1843f557174df2df1006/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE1000862", + "BPM": 145.6, + "Duration": 216, + "ReleaseDate": "2010-10-01", + "AlbumName": "Signature Box", + "Explicit": false, + "Rank": 547499, + "Tags": [ + "Rock", + "bpm:145.6", + "fast", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 226, + "name": "John Lennon", + "role": "Main" + }, + { + "id": 174087, + "name": "Yoko Ono", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 701, + "Name": "Happy Xmas (War Is Over)", + "Artists": "John Lennon, Yoko Ono", + "Color": "AC0620", + "DarkColor": "5A0001", + "SongMetaId": null, + "SpotifyId": "781dudpYngdoNKFEqWC9W2", + "DeezerID": 7163389, + "DeezerURL": "https://www.deezer.com/track/7163389", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7c89db5249da1843f557174df2df1006/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7c89db5249da1843f557174df2df1006/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7c89db5249da1843f557174df2df1006/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7c89db5249da1843f557174df2df1006/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE1000862", + "BPM": 145.6, + "Duration": 216, + "ReleaseDate": "2010-10-01", + "AlbumName": "Signature Box", + "Explicit": false, + "Rank": 547499, + "Tags": [ + "Rock", + "bpm:145.6", + "fast", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 226, + "name": "John Lennon", + "role": "Main" + }, + { + "id": 174087, + "name": "Yoko Ono", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 387, + "Name": "Hard Times", + "Artists": "Paramore", + "Color": "FFC6D3", + "DarkColor": "E581B7", + "SongMetaId": null, + "SpotifyId": "0w5Bdu51Ka25Pf3hojsKHh", + "DeezerID": 351553511, + "DeezerURL": "https://www.deezer.com/track/351553511", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b43c1a8f1be9a9ee3654562e5a949426/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b43c1a8f1be9a9ee3654562e5a949426/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b43c1a8f1be9a9ee3654562e5a949426/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b43c1a8f1be9a9ee3654562e5a949426/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21700948", + "BPM": 119.84, + "Duration": 182, + "ReleaseDate": "2017-04-19", + "AlbumName": "Hard Times", + "Explicit": false, + "Rank": 841882, + "Tags": [ + "Alternativo", + "bpm:119.84", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 10977, + "name": "Paramore", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 199, + "Name": "Hay Day Theme", + "Artists": "Supercell", + "Color": "89CA0D", + "DarkColor": "3D8503", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 295, + "Name": "He's The Greatest Dancer", + "Artists": "Sister Sledge", + "Color": "E86730", + "DarkColor": "911A1A", + "SongMetaId": null, + "SpotifyId": "22toRuGCw6ApFZaS9jquED", + "DeezerID": 691615, + "DeezerURL": "https://www.deezer.com/track/691615", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/51ddf42b745f8fa6e7f321ad9718a03c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/51ddf42b745f8fa6e7f321ad9718a03c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/51ddf42b745f8fa6e7f321ad9718a03c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/51ddf42b745f8fa6e7f321ad9718a03c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT20616083", + "BPM": 113.6, + "Duration": 374, + "ReleaseDate": "2007-02-05", + "AlbumName": "Definitive Groove: Sister Sledge", + "Explicit": false, + "Rank": 559630, + "Tags": [ + "R&B", + "bpm:113.6", + "long", + "medium", + "year:2007" + ], + "Contributors": [ + { + "id": 2397, + "name": "Sister Sledge", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 190, + "Name": "Headlights", + "Artists": "Alok & Alan Walker, Kiddo", + "Color": "2CE7EC", + "DarkColor": "104A60", + "SongMetaId": null, + "SpotifyId": "7BhmwvCdQZNwuQXSHw5TzP", + "DeezerID": 1630030192, + "DeezerURL": "https://www.deezer.com/track/1630030192", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/91c6e7843662296b45fd1711eb658fdc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/91c6e7843662296b45fd1711eb658fdc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/91c6e7843662296b45fd1711eb658fdc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/91c6e7843662296b45fd1711eb658fdc/1000x1000-000000-80-0-0.jpg", + "ISRC": "BCCNG2200023", + "BPM": 0, + "Duration": 158, + "ReleaseDate": "2022-02-18", + "AlbumName": "Headlights (feat. KIDDO)", + "Explicit": false, + "Rank": 625462, + "Tags": [ + "Dance", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 1429841, + "name": "Alok", + "role": "Main" + }, + { + "id": 4999707, + "name": "Alan Walker", + "role": "Main" + }, + { + "id": 78449482, + "name": "KIDDO", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 362, + "Name": "Heads Explode", + "Artists": "Monster Magnet", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "4N5XgWtVBRmQoa0uIyepSI", + "DeezerID": 2514172771, + "DeezerURL": "https://www.deezer.com/track/2514172771", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2ec9ce596768fa58ecc8775fc94eaef0/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2ec9ce596768fa58ecc8775fc94eaef0/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2ec9ce596768fa58ecc8775fc94eaef0/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2ec9ce596768fa58ecc8775fc94eaef0/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAM10000110", + "BPM": 0, + "Duration": 229, + "ReleaseDate": "2003-01-01", + "AlbumName": "Greatest Hits", + "Explicit": true, + "Rank": 206828, + "Tags": [ + "Rock", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 3095, + "name": "Monster Magnet", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 362, + "Name": "Heads Explode", + "Artists": "Monster Magnet", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "4N5XgWtVBRmQoa0uIyepSI", + "DeezerID": 2514172771, + "DeezerURL": "https://www.deezer.com/track/2514172771", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2ec9ce596768fa58ecc8775fc94eaef0/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2ec9ce596768fa58ecc8775fc94eaef0/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2ec9ce596768fa58ecc8775fc94eaef0/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2ec9ce596768fa58ecc8775fc94eaef0/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAM10000110", + "BPM": 0, + "Duration": 229, + "ReleaseDate": "2003-01-01", + "AlbumName": "Greatest Hits", + "Explicit": true, + "Rank": 206828, + "Tags": [ + "Rock", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 3095, + "name": "Monster Magnet", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 26, + "Name": "Heads Will Roll", + "Artists": "Yeah Yeah Yeahs", + "Color": "FFA90A", + "DarkColor": "E66F1D", + "SongMetaId": null, + "SpotifyId": "18oWEPapjNt32E6sCM6VLb", + "DeezerID": 2925107, + "DeezerURL": "https://www.deezer.com/track/2925107", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7f6ae5b6c57b1c2c07477a63e3ac64df/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7f6ae5b6c57b1c2c07477a63e3ac64df/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7f6ae5b6c57b1c2c07477a63e3ac64df/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7f6ae5b6c57b1c2c07477a63e3ac64df/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM70900924", + "BPM": 132.1, + "Duration": 221, + "ReleaseDate": "2009-01-01", + "AlbumName": "It's Blitz! (Standard Digital Album)", + "Explicit": false, + "Rank": 839982, + "Tags": [ + "Alternativo", + "Rock", + "bpm:132.1", + "fast", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 964, + "name": "Yeah Yeah Yeahs", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock" + ] + }, + { + "SongId": 149, + "Name": "Healing Lies", + "Artists": "Brawl Stars, Bad Randoms", + "Color": "FA0089", + "DarkColor": "AD005E", + "SongMetaId": null, + "SpotifyId": "3xWQMIaGXtJrD96qS0mpzR", + "DeezerID": 1604926302, + "DeezerURL": "https://www.deezer.com/track/1604926302", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7101fde1dc0dd501518992b774f7266d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7101fde1dc0dd501518992b774f7266d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7101fde1dc0dd501518992b774f7266d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7101fde1dc0dd501518992b774f7266d/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZTAU2136053", + "BPM": 0, + "Duration": 193, + "ReleaseDate": "2022-07-26", + "AlbumName": "Healing Lies", + "Explicit": false, + "Rank": 523295, + "Tags": [ + "Alternativo", + "Indie Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 142401022, + "name": "Brawl Stars", + "role": "Main" + }, + { + "id": 142401032, + "name": "Bad Randoms", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Rock" + ] + }, + { + "SongId": 611, + "Name": "Heart Frequencies", + "Artists": "S Y Z Y G Y X", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "5q997EKVGSECk7HedH3Hhw", + "DeezerID": 614720992, + "DeezerURL": "https://www.deezer.com/track/614720992", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/94a320b4097754e26db7dbfbc195abe6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/94a320b4097754e26db7dbfbc195abe6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/94a320b4097754e26db7dbfbc195abe6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/94a320b4097754e26db7dbfbc195abe6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCGH1909783", + "BPM": 0, + "Duration": 252, + "ReleaseDate": "2019-01-26", + "AlbumName": "Is That All There Is", + "Explicit": false, + "Rank": 72739, + "Tags": [ + "Pop", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 14487291, + "name": "S Y Z Y G Y X", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 611, + "Name": "Heart Frequencies", + "Artists": "S Y Z Y G Y X", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "5q997EKVGSECk7HedH3Hhw", + "DeezerID": 614720992, + "DeezerURL": "https://www.deezer.com/track/614720992", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/94a320b4097754e26db7dbfbc195abe6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/94a320b4097754e26db7dbfbc195abe6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/94a320b4097754e26db7dbfbc195abe6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/94a320b4097754e26db7dbfbc195abe6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCGH1909783", + "BPM": 0, + "Duration": 252, + "ReleaseDate": "2019-01-26", + "AlbumName": "Is That All There Is", + "Explicit": false, + "Rank": 72739, + "Tags": [ + "Pop", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 14487291, + "name": "S Y Z Y G Y X", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 340, + "Name": "Heart Of Glass", + "Artists": "Blondie", + "Color": "960019", + "DarkColor": "300505", + "SongMetaId": null, + "SpotifyId": "4v2rkl1mC3zVAz0nXMx9r4", + "DeezerID": 3121608, + "DeezerURL": "https://www.deezer.com/track/3121608", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d9f6c0324453c6b0cbbc88960ffaafbc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d9f6c0324453c6b0cbbc88960ffaafbc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d9f6c0324453c6b0cbbc88960ffaafbc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d9f6c0324453c6b0cbbc88960ffaafbc/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCH39800018", + "BPM": 114.53, + "Duration": 251, + "ReleaseDate": "2005-07-05", + "AlbumName": "Heart Of Glass", + "Explicit": false, + "Rank": 804584, + "Tags": [ + "Pop", + "bpm:114.53", + "medium", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 425, + "name": "Blondie", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 340, + "Name": "Heart Of Glass", + "Artists": "Blondie", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "4v2rkl1mC3zVAz0nXMx9r4", + "DeezerID": 3121608, + "DeezerURL": "https://www.deezer.com/track/3121608", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d9f6c0324453c6b0cbbc88960ffaafbc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d9f6c0324453c6b0cbbc88960ffaafbc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d9f6c0324453c6b0cbbc88960ffaafbc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d9f6c0324453c6b0cbbc88960ffaafbc/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCH39800018", + "BPM": 114.53, + "Duration": 251, + "ReleaseDate": "2005-07-05", + "AlbumName": "Heart Of Glass", + "Explicit": false, + "Rank": 804584, + "Tags": [ + "Pop", + "bpm:114.53", + "medium", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 425, + "name": "Blondie", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 259, + "Name": "Heat Waves", + "Artists": "Glass Animals", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "3USxtqRwSYz57Ewm6wWRMp", + "DeezerID": 1040154662, + "DeezerURL": "https://www.deezer.com/track/1040154662", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/04ea51c6eb90a6208f2e47da861cf1a5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/04ea51c6eb90a6208f2e47da861cf1a5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/04ea51c6eb90a6208f2e47da861cf1a5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/04ea51c6eb90a6208f2e47da861cf1a5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM72000433", + "BPM": 0, + "Duration": 239, + "ReleaseDate": "2020-08-07", + "AlbumName": "Dreamland", + "Explicit": false, + "Rank": 960209, + "Tags": [ + "Pop", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 2489131, + "name": "Glass Animals", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 259, + "Name": "Heat Waves", + "Artists": "Glass Animals", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "3USxtqRwSYz57Ewm6wWRMp", + "DeezerID": 1040154662, + "DeezerURL": "https://www.deezer.com/track/1040154662", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/04ea51c6eb90a6208f2e47da861cf1a5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/04ea51c6eb90a6208f2e47da861cf1a5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/04ea51c6eb90a6208f2e47da861cf1a5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/04ea51c6eb90a6208f2e47da861cf1a5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM72000433", + "BPM": 0, + "Duration": 239, + "ReleaseDate": "2020-08-07", + "AlbumName": "Dreamland", + "Explicit": false, + "Rank": 960209, + "Tags": [ + "Pop", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 2489131, + "name": "Glass Animals", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 257, + "Name": "Heavy Cross", + "Artists": "Gossip", + "Color": "E44A8C", + "DarkColor": "E44A8C", + "SongMetaId": null, + "SpotifyId": "428Dl0NOBojmUS98R2pDHr", + "DeezerID": 3056960, + "DeezerURL": "https://www.deezer.com/track/3056960", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/40926286a839b50ec3edf7a8ca6cf74a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/40926286a839b50ec3edf7a8ca6cf74a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/40926286a839b50ec3edf7a8ca6cf74a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/40926286a839b50ec3edf7a8ca6cf74a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM10902231", + "BPM": 120.2, + "Duration": 242, + "ReleaseDate": "2009-04-24", + "AlbumName": "Heavy Cross", + "Explicit": false, + "Rank": 875585, + "Tags": [ + "Pop", + "bpm:120.2", + "fast", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 3759, + "name": "Gossip", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 495, + "Name": "Heavy Shadows", + "Artists": "Aphyxion, IMMERSE", + "Color": "C49454", + "DarkColor": "9C6A3B", + "SongMetaId": null, + "SpotifyId": "3xXlcUpmRzL0aih0sEkZwV", + "DeezerID": 1966386057, + "DeezerURL": "https://www.deezer.com/track/1966386057", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXO52210376", + "BPM": 0, + "Duration": 214, + "ReleaseDate": "2023-02-10", + "AlbumName": "Ad Astra", + "Explicit": false, + "Rank": 118640, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 5866635, + "name": "Aphyxion", + "role": "Main" + }, + { + "id": 6905487, + "name": "Immerse", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 495, + "Name": "Heavy Shadows", + "Artists": "Aphyxion, IMMERSE", + "Color": "C49454", + "DarkColor": "9C6A3B", + "SongMetaId": null, + "SpotifyId": "3xXlcUpmRzL0aih0sEkZwV", + "DeezerID": 1966386057, + "DeezerURL": "https://www.deezer.com/track/1966386057", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3b570df381d66f93a1b0ebb4e83eced5/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXO52210376", + "BPM": 0, + "Duration": 214, + "ReleaseDate": "2023-02-10", + "AlbumName": "Ad Astra", + "Explicit": false, + "Rank": 118640, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 5866635, + "name": "Aphyxion", + "role": "Main" + }, + { + "id": 6905487, + "name": "Immerse", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 353, + "Name": "Here It Goes Again", + "Artists": "OK Go", + "Color": "E45942", + "DarkColor": "9A3421", + "SongMetaId": null, + "SpotifyId": "1pHP4JeQV9wDx87D6qH9hD", + "DeezerID": 3093100, + "DeezerURL": "https://www.deezer.com/track/3093100", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b5534faf0398c8784ae0c83b407a68a8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b5534faf0398c8784ae0c83b407a68a8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b5534faf0398c8784ae0c83b407a68a8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b5534faf0398c8784ae0c83b407a68a8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA20500270", + "BPM": 146.1, + "Duration": 162, + "ReleaseDate": "2005-08-30", + "AlbumName": "Oh No", + "Explicit": false, + "Rank": 580929, + "Tags": [ + "Alternativo", + "bpm:146.1", + "fast", + "short", + "year:2005" + ], + "Contributors": [ + { + "id": 1279, + "name": "OK Go", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 688, + "Name": "Hey There Delilah", + "Artists": "The Plain White T's", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "4RCWB3V8V0dignt99LZ8vH", + "DeezerID": 921959412, + "DeezerURL": "https://www.deezer.com/track/921959412", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/eb229001b53f091320e511094279ab65/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/eb229001b53f091320e511094279ab65/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/eb229001b53f091320e511094279ab65/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/eb229001b53f091320e511094279ab65/1000x1000-000000-80-0-0.jpg", + "ISRC": "US5260507213", + "BPM": 0, + "Duration": 232, + "ReleaseDate": "2020-04-10", + "AlbumName": "All That We Needed (Deluxe Edition)", + "Explicit": false, + "Rank": 836659, + "Tags": [ + "Alternativo", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 959, + "name": "Plain White T's", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 688, + "Name": "Hey There Delilah", + "Artists": "The Plain White T's", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "4RCWB3V8V0dignt99LZ8vH", + "DeezerID": 921959412, + "DeezerURL": "https://www.deezer.com/track/921959412", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/eb229001b53f091320e511094279ab65/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/eb229001b53f091320e511094279ab65/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/eb229001b53f091320e511094279ab65/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/eb229001b53f091320e511094279ab65/1000x1000-000000-80-0-0.jpg", + "ISRC": "US5260507213", + "BPM": 0, + "Duration": 232, + "ReleaseDate": "2020-04-10", + "AlbumName": "All That We Needed (Deluxe Edition)", + "Explicit": false, + "Rank": 836659, + "Tags": [ + "Alternativo", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 959, + "name": "Plain White T's", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 753, + "Name": "Hey Ya!", + "Artists": "OutKast", + "Color": "78C0E6", + "DarkColor": "1F327A", + "SongMetaId": "17", + "SpotifyId": "2PpruBYCo4H7WOBJ7Q2EwM", + "DeezerID": 628266, + "DeezerURL": "https://www.deezer.com/track/628266", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR10300924", + "BPM": 0, + "Duration": 235, + "ReleaseDate": "2002-12-10", + "AlbumName": "Speakerboxxx/The Love Below", + "Explicit": true, + "Rank": 905050, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 9, + "name": "Outkast", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 215, + "Name": "Hey Ya!", + "Artists": "OutKast", + "Color": "78C0E6", + "DarkColor": "1F327A", + "SongMetaId": "17", + "SpotifyId": "2PpruBYCo4H7WOBJ7Q2EwM", + "DeezerID": 628266, + "DeezerURL": "https://www.deezer.com/track/628266", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR10300924", + "BPM": 0, + "Duration": 235, + "ReleaseDate": "2002-12-10", + "AlbumName": "Speakerboxxx/The Love Below", + "Explicit": true, + "Rank": 905050, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 9, + "name": "Outkast", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 215, + "Name": "Hey Ya!", + "Artists": "OutKast", + "Color": "78C0E6", + "DarkColor": "1F327A", + "SongMetaId": "17", + "SpotifyId": "2PpruBYCo4H7WOBJ7Q2EwM", + "DeezerID": 628266, + "DeezerURL": "https://www.deezer.com/track/628266", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR10300924", + "BPM": 0, + "Duration": 235, + "ReleaseDate": "2002-12-10", + "AlbumName": "Speakerboxxx/The Love Below", + "Explicit": true, + "Rank": 905050, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 9, + "name": "Outkast", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 214, + "Name": "Hey, Soul Sister", + "Artists": "Train", + "Color": "94CCDF", + "DarkColor": "428284", + "SongMetaId": null, + "SpotifyId": "4HlFJV71xXKIGcU3kRyttv", + "DeezerID": 563683852, + "DeezerURL": "https://www.deezer.com/track/563683852", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/90989ab8998af9d5957b43bae748788d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/90989ab8998af9d5957b43bae748788d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/90989ab8998af9d5957b43bae748788d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/90989ab8998af9d5957b43bae748788d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM10904113", + "BPM": 97.05, + "Duration": 216, + "ReleaseDate": "2010-12-01", + "AlbumName": "Save Me, San Francisco (Golden Gate Edition)", + "Explicit": false, + "Rank": 861501, + "Tags": [ + "Pop", + "bpm:97.05", + "medium", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 685, + "name": "Train", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 214, + "Name": "Hey, Soul Sister", + "Artists": "Train", + "Color": "94CCDF", + "DarkColor": "428284", + "SongMetaId": null, + "SpotifyId": "4HlFJV71xXKIGcU3kRyttv", + "DeezerID": 563683852, + "DeezerURL": "https://www.deezer.com/track/563683852", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/90989ab8998af9d5957b43bae748788d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/90989ab8998af9d5957b43bae748788d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/90989ab8998af9d5957b43bae748788d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/90989ab8998af9d5957b43bae748788d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM10904113", + "BPM": 97.05, + "Duration": 216, + "ReleaseDate": "2010-12-01", + "AlbumName": "Save Me, San Francisco (Golden Gate Edition)", + "Explicit": false, + "Rank": 861501, + "Tags": [ + "Pop", + "bpm:97.05", + "medium", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 685, + "name": "Train", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 373, + "Name": "High Hopes", + "Artists": "Panic! At The Disco", + "Color": "32868D", + "DarkColor": "144D51", + "SongMetaId": null, + "SpotifyId": "1rqqCSm0Qe4I9rUvWncaom", + "DeezerID": 516351532, + "DeezerURL": "https://www.deezer.com/track/516351532", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/61a2e3b5a084305f503ea641e2841ecb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/61a2e3b5a084305f503ea641e2841ecb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/61a2e3b5a084305f503ea641e2841ecb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/61a2e3b5a084305f503ea641e2841ecb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21801174", + "BPM": 164.06, + "Duration": 190, + "ReleaseDate": "2018-06-22", + "AlbumName": "Pray for the Wicked", + "Explicit": false, + "Rank": 855958, + "Tags": [ + "Alternativo", + "bpm:164.06", + "medium-length", + "very-fast", + "year:2018" + ], + "Contributors": [ + { + "id": 402, + "name": "Panic! At the Disco", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 494, + "Name": "High Status", + "Artists": "Lex Da Funk", + "Color": "CC3F5D", + "DarkColor": "B42942", + "SongMetaId": null, + "SpotifyId": "0DOI9YeeJf8kApa1yQUxij", + "DeezerID": 1475113612, + "DeezerURL": "https://www.deezer.com/track/1475113612", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e511ce27415b65e0c2f88a1ab3e01c02/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e511ce27415b65e0c2f88a1ab3e01c02/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e511ce27415b65e0c2f88a1ab3e01c02/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e511ce27415b65e0c2f88a1ab3e01c02/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM92137156", + "BPM": 0, + "Duration": 173, + "ReleaseDate": "2021-08-21", + "AlbumName": "High Status", + "Explicit": false, + "Rank": 38273, + "Tags": [ + "Dance", + "Electro", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 477342, + "name": "Lex Da Funk", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 494, + "Name": "High Status", + "Artists": "Lex Da Funk", + "Color": "CC3F5D", + "DarkColor": "B42942", + "SongMetaId": null, + "SpotifyId": "0DOI9YeeJf8kApa1yQUxij", + "DeezerID": 1475113612, + "DeezerURL": "https://www.deezer.com/track/1475113612", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e511ce27415b65e0c2f88a1ab3e01c02/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e511ce27415b65e0c2f88a1ab3e01c02/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e511ce27415b65e0c2f88a1ab3e01c02/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e511ce27415b65e0c2f88a1ab3e01c02/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM92137156", + "BPM": 0, + "Duration": 173, + "ReleaseDate": "2021-08-21", + "AlbumName": "High Status", + "Explicit": false, + "Rank": 38273, + "Tags": [ + "Dance", + "Electro", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 477342, + "name": "Lex Da Funk", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 442, + "Name": "Higher Power", + "Artists": "Coldplay", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "0939D7aT18uBDS2MTjWzct", + "DeezerID": 1518077822, + "DeezerURL": "https://www.deezer.com/track/1518077822", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1abb9a47ab25986493537b08f00c57d3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1abb9a47ab25986493537b08f00c57d3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1abb9a47ab25986493537b08f00c57d3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1abb9a47ab25986493537b08f00c57d3/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE2100379", + "BPM": 0, + "Duration": 206, + "ReleaseDate": "2021-10-15", + "AlbumName": "Music Of The Spheres", + "Explicit": false, + "Rank": 750139, + "Tags": [ + "Alternativo", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 892, + "name": "Coldplay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 442, + "Name": "Higher Power", + "Artists": "Coldplay", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "0939D7aT18uBDS2MTjWzct", + "DeezerID": 1518077822, + "DeezerURL": "https://www.deezer.com/track/1518077822", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1abb9a47ab25986493537b08f00c57d3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1abb9a47ab25986493537b08f00c57d3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1abb9a47ab25986493537b08f00c57d3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1abb9a47ab25986493537b08f00c57d3/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE2100379", + "BPM": 0, + "Duration": 206, + "ReleaseDate": "2021-10-15", + "AlbumName": "Music Of The Spheres", + "Explicit": false, + "Rank": 750139, + "Tags": [ + "Alternativo", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 892, + "name": "Coldplay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 268, + "Name": "Hit 'Em Up Style (Oops!)", + "Artists": "Blu Cantrell", + "Color": "B8286A", + "DarkColor": "511137", + "SongMetaId": null, + "SpotifyId": "4zYTZvtcww7OWKie7fxA9E", + "DeezerID": 13146847, + "DeezerURL": "https://www.deezer.com/track/13146847", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/00a62b246780c710483007767549a642/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/00a62b246780c710483007767549a642/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/00a62b246780c710483007767549a642/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/00a62b246780c710483007767549a642/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR10100443", + "BPM": 89.9, + "Duration": 252, + "ReleaseDate": "2003-06-11", + "AlbumName": "Bittersweet", + "Explicit": false, + "Rank": 670611, + "Tags": [ + "Pop", + "bpm:89.9", + "medium-length", + "slow", + "year:2003" + ], + "Contributors": [ + { + "id": 223, + "name": "Blu Cantrell", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 268, + "Name": "Hit 'Em Up Style (Oops!)", + "Artists": "Blu Cantrell", + "Color": "B8286A", + "DarkColor": "511137", + "SongMetaId": null, + "SpotifyId": "4zYTZvtcww7OWKie7fxA9E", + "DeezerID": 13146847, + "DeezerURL": "https://www.deezer.com/track/13146847", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/00a62b246780c710483007767549a642/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/00a62b246780c710483007767549a642/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/00a62b246780c710483007767549a642/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/00a62b246780c710483007767549a642/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR10100443", + "BPM": 89.9, + "Duration": 252, + "ReleaseDate": "2003-06-11", + "AlbumName": "Bittersweet", + "Explicit": false, + "Rank": 670611, + "Tags": [ + "Pop", + "bpm:89.9", + "medium-length", + "slow", + "year:2003" + ], + "Contributors": [ + { + "id": 223, + "name": "Blu Cantrell", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 407, + "Name": "Hold Me Closer", + "Artists": "Elton John, Britney Spears", + "Color": "F1A9C9", + "DarkColor": "8C4564", + "SongMetaId": null, + "SpotifyId": "72yP0DUlWPyH8P7IoxskwN", + "DeezerID": 1879746947, + "DeezerURL": "https://www.deezer.com/track/1879746947", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e899057a79bfe5b111c79159cf89b821/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e899057a79bfe5b111c79159cf89b821/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e899057a79bfe5b111c79159cf89b821/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e899057a79bfe5b111c79159cf89b821/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM72205030", + "BPM": 0, + "Duration": 202, + "ReleaseDate": "2022-08-26", + "AlbumName": "Hold Me Closer", + "Explicit": false, + "Rank": 859094, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 413, + "name": "Elton John", + "role": "Main" + }, + { + "id": 483, + "name": "Britney Spears", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 407, + "Name": "Hold Me Closer", + "Artists": "Elton John, Britney Spears", + "Color": "F1A9C9", + "DarkColor": "8C4564", + "SongMetaId": null, + "SpotifyId": "72yP0DUlWPyH8P7IoxskwN", + "DeezerID": 1879746947, + "DeezerURL": "https://www.deezer.com/track/1879746947", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e899057a79bfe5b111c79159cf89b821/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e899057a79bfe5b111c79159cf89b821/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e899057a79bfe5b111c79159cf89b821/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e899057a79bfe5b111c79159cf89b821/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM72205030", + "BPM": 0, + "Duration": 202, + "ReleaseDate": "2022-08-26", + "AlbumName": "Hold Me Closer", + "Explicit": false, + "Rank": 859094, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 413, + "name": "Elton John", + "role": "Main" + }, + { + "id": 483, + "name": "Britney Spears", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 518, + "Name": "Hold My Hand", + "Artists": "Jess Glynne", + "Color": "F1A9C9", + "DarkColor": "8C4564", + "SongMetaId": null, + "SpotifyId": "1i1rNVtxbE7rdFfpHuNq2j", + "DeezerID": 95973024, + "DeezerURL": "https://www.deezer.com/track/95973024", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/44ee6418d019c866919a952e7fec7df0/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/44ee6418d019c866919a952e7fec7df0/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/44ee6418d019c866919a952e7fec7df0/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/44ee6418d019c866919a952e7fec7df0/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS1500049", + "BPM": 123, + "Duration": 227, + "ReleaseDate": "2015-02-24", + "AlbumName": "Hold My Hand", + "Explicit": false, + "Rank": 618880, + "Tags": [ + "Pop", + "bpm:123", + "fast", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 5245171, + "name": "Jess Glynne", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 518, + "Name": "Hold My Hand", + "Artists": "Jess Glynne", + "Color": "F1A9C9", + "DarkColor": "8C4564", + "SongMetaId": null, + "SpotifyId": "1i1rNVtxbE7rdFfpHuNq2j", + "DeezerID": 95973024, + "DeezerURL": "https://www.deezer.com/track/95973024", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/44ee6418d019c866919a952e7fec7df0/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/44ee6418d019c866919a952e7fec7df0/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/44ee6418d019c866919a952e7fec7df0/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/44ee6418d019c866919a952e7fec7df0/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS1500049", + "BPM": 123, + "Duration": 227, + "ReleaseDate": "2015-02-24", + "AlbumName": "Hold My Hand", + "Explicit": false, + "Rank": 618880, + "Tags": [ + "Pop", + "bpm:123", + "fast", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 5245171, + "name": "Jess Glynne", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 188, + "Name": "Home", + "Artists": "Edward Sharpe & The Magnetic Zeros", + "Color": "D08343", + "DarkColor": "7B390E", + "SongMetaId": null, + "SpotifyId": "56nmnMzaT44l8RmzPLkpdJ", + "DeezerID": 29093801, + "DeezerURL": "https://www.deezer.com/track/29093801", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0905bc0314ac80a9a21eb649332b02e3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0905bc0314ac80a9a21eb649332b02e3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0905bc0314ac80a9a21eb649332b02e3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0905bc0314ac80a9a21eb649332b02e3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVR90954206", + "BPM": 112.35, + "Duration": 303, + "ReleaseDate": "2012-05-15", + "AlbumName": "What To Expect When You're Expecting Soundtrack", + "Explicit": false, + "Rank": 827400, + "Tags": [ + "Pop", + "bpm:112.35", + "long", + "medium", + "year:2012" + ], + "Contributors": [ + { + "id": 248102, + "name": "Edward Sharpe & The Magnetic Zeros", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 371, + "Name": "Honey, I'm Good", + "Artists": "Andy Grammer", + "Color": "7B334A", + "DarkColor": "54253D", + "SongMetaId": null, + "SpotifyId": "4Tt6GiWS2V9sQjZjS2xjp2", + "DeezerID": 418374462, + "DeezerURL": "https://www.deezer.com/track/418374462", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/677c0ae07740e134d1987b7b2eb7e762/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/677c0ae07740e134d1987b7b2eb7e762/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/677c0ae07740e134d1987b7b2eb7e762/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/677c0ae07740e134d1987b7b2eb7e762/1000x1000-000000-80-0-0.jpg", + "ISRC": "USZXT1400267", + "BPM": 121.96, + "Duration": 199, + "ReleaseDate": "2014-08-05", + "AlbumName": "Magazines Or Novels", + "Explicit": false, + "Rank": 612371, + "Tags": [ + "Pop", + "bpm:121.96", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 864595, + "name": "Andy Grammer", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 709, + "Name": "HOT SHOT", + "Artists": "Tokyo Machine", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": null, + "SpotifyId": "3W4Kg9woGNvTG0TpR9gJs2", + "DeezerID": 2799097542, + "DeezerURL": "https://www.deezer.com/track/2799097542", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a3dc4613f06196872f65630c30c4615d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a3dc4613f06196872f65630c30c4615d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a3dc4613f06196872f65630c30c4615d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a3dc4613f06196872f65630c30c4615d/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D22400162", + "BPM": 0, + "Duration": 227, + "ReleaseDate": "2024-05-17", + "AlbumName": "HOT SHOT", + "Explicit": true, + "Rank": 139191, + "Tags": [ + "Dance", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 10705001, + "name": "Tokyo Machine", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 709, + "Name": "HOT SHOT", + "Artists": "Tokyo Machine", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": null, + "SpotifyId": "3W4Kg9woGNvTG0TpR9gJs2", + "DeezerID": 2799097542, + "DeezerURL": "https://www.deezer.com/track/2799097542", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a3dc4613f06196872f65630c30c4615d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a3dc4613f06196872f65630c30c4615d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a3dc4613f06196872f65630c30c4615d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a3dc4613f06196872f65630c30c4615d/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D22400162", + "BPM": 0, + "Duration": 227, + "ReleaseDate": "2024-05-17", + "AlbumName": "HOT SHOT", + "Explicit": true, + "Rank": 139191, + "Tags": [ + "Dance", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 10705001, + "name": "Tokyo Machine", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 694, + "Name": "HOT TO GO!", + "Artists": "Chappell Roan", + "Color": "2E9AAA", + "DarkColor": "257E8B", + "SongMetaId": null, + "SpotifyId": "4xdBrk0nFZaP54vvZj0yx7", + "DeezerID": 2454854795, + "DeezerURL": "https://www.deezer.com/track/2454854795", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/71486ce8b24f612c4887efa0f79a9f66/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/71486ce8b24f612c4887efa0f79a9f66/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/71486ce8b24f612c4887efa0f79a9f66/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/71486ce8b24f612c4887efa0f79a9f66/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12305911", + "BPM": 0, + "Duration": 184, + "ReleaseDate": "2023-09-22", + "AlbumName": "The Rise and Fall of a Midwest Princess", + "Explicit": false, + "Rank": 858911, + "Tags": [ + "Pop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 12945219, + "name": "Chappell Roan", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 694, + "Name": "HOT TO GO!", + "Artists": "Chappell Roan", + "Color": "2E9AAA", + "DarkColor": "1F7784", + "SongMetaId": null, + "SpotifyId": "4xdBrk0nFZaP54vvZj0yx7", + "DeezerID": 2454854795, + "DeezerURL": "https://www.deezer.com/track/2454854795", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/71486ce8b24f612c4887efa0f79a9f66/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/71486ce8b24f612c4887efa0f79a9f66/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/71486ce8b24f612c4887efa0f79a9f66/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/71486ce8b24f612c4887efa0f79a9f66/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12305911", + "BPM": 0, + "Duration": 184, + "ReleaseDate": "2023-09-22", + "AlbumName": "The Rise and Fall of a Midwest Princess", + "Explicit": false, + "Rank": 858911, + "Tags": [ + "Pop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 12945219, + "name": "Chappell Roan", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 303, + "Name": "Hotshot (Hot Lap League Theme)", + "Artists": "Ultimate Studio, Tim Spicer, Yahor Milkota", + "Color": "E6333A", + "DarkColor": "81051D", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 170, + "Name": "House of Jealous Lovers", + "Artists": "The Rapture", + "Color": "3D51CD", + "DarkColor": "1D1EA1", + "SongMetaId": null, + "SpotifyId": "1bKffBd9glU944RMrWjjky", + "DeezerID": 2622365322, + "DeezerURL": "https://www.deezer.com/track/2622365322", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6000a694c6ecc6ca62e8b781f617b1bf/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6000a694c6ecc6ca62e8b781f617b1bf/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6000a694c6ecc6ca62e8b781f617b1bf/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6000a694c6ecc6ca62e8b781f617b1bf/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBF080300283", + "BPM": 0, + "Duration": 305, + "ReleaseDate": "2003-08-31", + "AlbumName": "Echoes", + "Explicit": false, + "Rank": 232174, + "Tags": [ + "Alternativo", + "Indie Rock", + "long", + "year:2003" + ], + "Contributors": [ + { + "id": 5163152, + "name": "The Rapture", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Rock" + ] + }, + { + "SongId": 89, + "Name": "House Work", + "Artists": "Jax Jones, Mike Dunn, MNEK", + "Color": "E1473A", + "DarkColor": "C22826", + "SongMetaId": null, + "SpotifyId": "6VcVJ7YddkP6elt9Ym8c50", + "DeezerID": 127673411, + "DeezerURL": "https://www.deezer.com/track/127673411", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4ca9b8da6ca91d80b912d7ef6f5bd884/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4ca9b8da6ca91d80b912d7ef6f5bd884/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4ca9b8da6ca91d80b912d7ef6f5bd884/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4ca9b8da6ca91d80b912d7ef6f5bd884/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71603226", + "BPM": 124.16, + "Duration": 157, + "ReleaseDate": "2016-07-01", + "AlbumName": "House Work", + "Explicit": false, + "Rank": 433040, + "Tags": [ + "Dance", + "bpm:124.16", + "fast", + "short", + "year:2016" + ], + "Contributors": [ + { + "id": 5462679, + "name": "Jax Jones", + "role": "Main" + }, + { + "id": 179482, + "name": "Mike Dunn", + "role": "Featured" + }, + { + "id": 1454125, + "name": "MNEK", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 707, + "Name": "Housetop Jingle", + "Artists": "Beatstar Originals", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 236, + "Name": "How Do You Sleep?", + "Artists": "Sam Smith", + "Color": "F86F0E", + "DarkColor": "921C0A", + "SongMetaId": null, + "SpotifyId": "6b2RcmUt1g9N9mQ3CbjX2Y" + }, + { + "SongId": 595, + "Name": "HOW DOES IT FEEL?", + "Artists": "Nathan Fouts", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "5a78yyRgqyum8lq7PVpFVf" + }, + { + "SongId": 595, + "Name": "HOW DOES IT FEEL?", + "Artists": "Nathan Fouts", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "5a78yyRgqyum8lq7PVpFVf" + }, + { + "SongId": 441, + "Name": "How Long", + "Artists": "Charlie Puth", + "Color": "A10F1A", + "DarkColor": "731D07", + "SongMetaId": null, + "SpotifyId": "6wmAHw1szh5RCKSRjiXhPe", + "DeezerID": 413468802, + "DeezerURL": "https://www.deezer.com/track/413468802", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e8a3333f8b5382b07190a415e16248b4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e8a3333f8b5382b07190a415e16248b4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e8a3333f8b5382b07190a415e16248b4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e8a3333f8b5382b07190a415e16248b4/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21702278", + "BPM": 109.96, + "Duration": 198, + "ReleaseDate": "2017-10-05", + "AlbumName": "How Long", + "Explicit": false, + "Rank": 726973, + "Tags": [ + "Pop", + "bpm:109.96", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 1362735, + "name": "Charlie Puth", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 441, + "Name": "How Long", + "Artists": "Charlie Puth", + "Color": "A10F1A", + "DarkColor": "731D07", + "SongMetaId": null, + "SpotifyId": "6wmAHw1szh5RCKSRjiXhPe", + "DeezerID": 413468802, + "DeezerURL": "https://www.deezer.com/track/413468802", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e8a3333f8b5382b07190a415e16248b4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e8a3333f8b5382b07190a415e16248b4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e8a3333f8b5382b07190a415e16248b4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e8a3333f8b5382b07190a415e16248b4/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21702278", + "BPM": 109.96, + "Duration": 198, + "ReleaseDate": "2017-10-05", + "AlbumName": "How Long", + "Explicit": false, + "Rank": 726973, + "Tags": [ + "Pop", + "bpm:109.96", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 1362735, + "name": "Charlie Puth", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 634, + "Name": "How We Win", + "Artists": "FWLR", + "Color": "F1A9C9", + "DarkColor": "8C4564", + "SongMetaId": null, + "SpotifyId": "0WcD4kWCZeAWkQI6KmU8L8", + "DeezerID": 541609532, + "DeezerURL": "https://www.deezer.com/track/541609532", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/342ff76e628a31e08baf09f1f2d2bb78/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/342ff76e628a31e08baf09f1f2d2bb78/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/342ff76e628a31e08baf09f1f2d2bb78/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/342ff76e628a31e08baf09f1f2d2bb78/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D21800204", + "BPM": 126.05, + "Duration": 215, + "ReleaseDate": "2018-08-20", + "AlbumName": "How We Win", + "Explicit": false, + "Rank": 143128, + "Tags": [ + "Dance", + "Electro", + "bpm:126.05", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 8982886, + "name": "FWLR", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 634, + "Name": "How We Win", + "Artists": "FWLR", + "Color": "F1A9C9", + "DarkColor": "8C4564", + "SongMetaId": null, + "SpotifyId": "0WcD4kWCZeAWkQI6KmU8L8", + "DeezerID": 541609532, + "DeezerURL": "https://www.deezer.com/track/541609532", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/342ff76e628a31e08baf09f1f2d2bb78/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/342ff76e628a31e08baf09f1f2d2bb78/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/342ff76e628a31e08baf09f1f2d2bb78/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/342ff76e628a31e08baf09f1f2d2bb78/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D21800204", + "BPM": 126.05, + "Duration": 215, + "ReleaseDate": "2018-08-20", + "AlbumName": "How We Win", + "Explicit": false, + "Rank": 143128, + "Tags": [ + "Dance", + "Electro", + "bpm:126.05", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 8982886, + "name": "FWLR", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 343, + "Name": "Hrs and Hrs", + "Artists": "Muni Long", + "Color": "AB5624", + "DarkColor": "781A0A", + "SongMetaId": null, + "SpotifyId": "3ncmoWTwJgx63LwMTyBCXf", + "DeezerID": 1915382797, + "DeezerURL": "https://www.deezer.com/track/1915382797", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/27c619482d520286995e62c680d17e9c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/27c619482d520286995e62c680d17e9c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/27c619482d520286995e62c680d17e9c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/27c619482d520286995e62c680d17e9c/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZAKB2136210", + "BPM": 0, + "Duration": 204, + "ReleaseDate": "2022-09-23", + "AlbumName": "Public Displays Of Affection: The Album", + "Explicit": true, + "Rank": 693246, + "Tags": [ + "R&B", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 230831685, + "name": "Muni Long", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 388, + "Name": "HUMBLE.", + "Artists": "Kendrick Lamar", + "Color": "9F5567", + "DarkColor": "592830", + "SongMetaId": null, + "SpotifyId": "7KXjTSCq5nL1LoYtL7XAwS", + "DeezerID": 350171311, + "DeezerURL": "https://www.deezer.com/track/350171311", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71703085", + "BPM": 149.8, + "Duration": 177, + "ReleaseDate": "2017-04-14", + "AlbumName": "DAMN.", + "Explicit": true, + "Rank": 910634, + "Tags": [ + "Rap/Hip Hop", + "bpm:149.8", + "fast", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 525046, + "name": "Kendrick Lamar", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 388, + "Name": "HUMBLE.", + "Artists": "Kendrick Lamar", + "Color": "682A38", + "DarkColor": "321518", + "SongMetaId": null, + "SpotifyId": "7KXjTSCq5nL1LoYtL7XAwS", + "DeezerID": 350171311, + "DeezerURL": "https://www.deezer.com/track/350171311", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7ce6b8452fae425557067db6e6a1cad5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71703085", + "BPM": 149.8, + "Duration": 177, + "ReleaseDate": "2017-04-14", + "AlbumName": "DAMN.", + "Explicit": true, + "Rank": 910634, + "Tags": [ + "Rap/Hip Hop", + "bpm:149.8", + "fast", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 525046, + "name": "Kendrick Lamar", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 360, + "Name": "Hurricane", + "Artists": "Luke Combs", + "Color": "8EC585", + "DarkColor": "1E8871", + "SongMetaId": null, + "SpotifyId": "6xHI9KjUjYT0FPtGO8Mxa1", + "DeezerID": 366449191, + "DeezerURL": "https://www.deezer.com/track/366449191", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/604a0c257b0c9257baea25999eed142f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/604a0c257b0c9257baea25999eed142f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/604a0c257b0c9257baea25999eed142f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/604a0c257b0c9257baea25999eed142f/1000x1000-000000-80-0-0.jpg", + "ISRC": "TCACJ1540988", + "BPM": 152, + "Duration": 223, + "ReleaseDate": "2017-06-02", + "AlbumName": "This One's for You", + "Explicit": false, + "Rank": 567815, + "Tags": [ + "Pop", + "bpm:152", + "medium-length", + "very-fast", + "year:2017" + ], + "Contributors": [ + { + "id": 9626504, + "name": "Luke Combs", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 279, + "Name": "Hysteria", + "Artists": "Muse", + "Color": "50849E", + "DarkColor": "003348", + "SongMetaId": null, + "SpotifyId": "0knbMPVHpFbsx38pLoYSRs", + "DeezerID": 2538019231, + "DeezerURL": "https://www.deezer.com/track/2538019231", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fc1237878aab62be8ff624f575961e68/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fc1237878aab62be8ff624f575961e68/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fc1237878aab62be8ff624f575961e68/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fc1237878aab62be8ff624f575961e68/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT1901186", + "BPM": 0, + "Duration": 227, + "ReleaseDate": "2023-11-17", + "AlbumName": "Absolution XX Anniversary", + "Explicit": false, + "Rank": 842127, + "Tags": [ + "Alternativo", + "Indie rock/Rock pop", + "Rock", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 705, + "name": "Muse", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock", + "Indie rock/Rock pop" + ] + }, + { + "SongId": 279, + "Name": "Hysteria", + "Artists": "Muse", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "0knbMPVHpFbsx38pLoYSRs", + "DeezerID": 2538019231, + "DeezerURL": "https://www.deezer.com/track/2538019231", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fc1237878aab62be8ff624f575961e68/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fc1237878aab62be8ff624f575961e68/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fc1237878aab62be8ff624f575961e68/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fc1237878aab62be8ff624f575961e68/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT1901186", + "BPM": 0, + "Duration": 227, + "ReleaseDate": "2023-11-17", + "AlbumName": "Absolution XX Anniversary", + "Explicit": false, + "Rank": 842127, + "Tags": [ + "Alternativo", + "Indie rock/Rock pop", + "Rock", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 705, + "name": "Muse", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock", + "Indie rock/Rock pop" + ] + }, + { + "SongId": 444, + "Name": "I Ain't Worried", + "Artists": "OneRepublic", + "Color": "D0AB64", + "DarkColor": "7D5B3E", + "SongMetaId": null, + "SpotifyId": "4h9wh7iOZ0GGn8QVp4RAOB", + "DeezerID": 1764283667, + "DeezerURL": "https://www.deezer.com/track/1764283667", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c86f870a3ea8782da239a9dd10315cdc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c86f870a3ea8782da239a9dd10315cdc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c86f870a3ea8782da239a9dd10315cdc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c86f870a3ea8782da239a9dd10315cdc/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72206227", + "BPM": 0, + "Duration": 148, + "ReleaseDate": "2022-05-27", + "AlbumName": "Top Gun: Maverick (Music From The Motion Picture)", + "Explicit": false, + "Rank": 957405, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 74398, + "name": "OneRepublic", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 444, + "Name": "I Ain't Worried", + "Artists": "OneRepublic", + "Color": "D0AB64", + "DarkColor": "7D5B3E", + "SongMetaId": null, + "SpotifyId": "4h9wh7iOZ0GGn8QVp4RAOB", + "DeezerID": 1764283667, + "DeezerURL": "https://www.deezer.com/track/1764283667", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c86f870a3ea8782da239a9dd10315cdc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c86f870a3ea8782da239a9dd10315cdc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c86f870a3ea8782da239a9dd10315cdc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c86f870a3ea8782da239a9dd10315cdc/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72206227", + "BPM": 0, + "Duration": 148, + "ReleaseDate": "2022-05-27", + "AlbumName": "Top Gun: Maverick (Music From The Motion Picture)", + "Explicit": false, + "Rank": 957405, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 74398, + "name": "OneRepublic", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 242, + "Name": "I AM WOMAN", + "Artists": "Emmy Meli", + "Color": "D15C3F", + "DarkColor": "CE3C29", + "SongMetaId": null, + "SpotifyId": "3nOz1U41SZZ0N3fuUWr9nb", + "DeezerID": 1557766142, + "DeezerURL": "https://www.deezer.com/track/1557766142", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ae3030312cac4bffc4fd4d490c7fb0d6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ae3030312cac4bffc4fd4d490c7fb0d6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ae3030312cac4bffc4fd4d490c7fb0d6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ae3030312cac4bffc4fd4d490c7fb0d6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR12100239", + "BPM": 0, + "Duration": 232, + "ReleaseDate": "2021-11-19", + "AlbumName": "I AM WOMAN", + "Explicit": true, + "Rank": 739760, + "Tags": [ + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 101023822, + "name": "Emmy Meli", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 389, + "Name": "I Believe In A Thing Called Love", + "Artists": "The Darkness", + "Color": "594D87", + "DarkColor": "331A36", + "SongMetaId": null, + "SpotifyId": "756CJtQRFSxEx9jV4P9hpA", + "DeezerID": 3868470, + "DeezerURL": "https://www.deezer.com/track/3868470", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4bc843e4700c1049f159ddb8f00a6aa7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4bc843e4700c1049f159ddb8f00a6aa7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4bc843e4700c1049f159ddb8f00a6aa7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4bc843e4700c1049f159ddb8f00a6aa7/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS0300635", + "BPM": 0, + "Duration": 216, + "ReleaseDate": "2003-07-07", + "AlbumName": "Permission to Land", + "Explicit": false, + "Rank": 707671, + "Tags": [ + "Rock", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 6147, + "name": "The Darkness", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 477, + "Name": "I Got You", + "Artists": "Jaylon Ashaun", + "Color": "F0B175", + "DarkColor": "906B48", + "SongMetaId": null, + "SpotifyId": "0sp39yqzCM8wTQuI3kqXCh", + "DeezerID": 485802242, + "DeezerURL": "https://www.deezer.com/track/485802242", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d046e7f07a2ef50ac9a02469795705de/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d046e7f07a2ef50ac9a02469795705de/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d046e7f07a2ef50ac9a02469795705de/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d046e7f07a2ef50ac9a02469795705de/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDY41802180", + "BPM": 0, + "Duration": 194, + "ReleaseDate": "2018-04-20", + "AlbumName": "I Got You", + "Explicit": false, + "Rank": 63858, + "Tags": [ + "R&B", + "Rap/Hip Hop", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 9058938, + "name": "Jaylon Ashaun", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "R&B" + ] + }, + { + "SongId": 477, + "Name": "I Got You", + "Artists": "Jaylon Ashaun", + "Color": "F0B175", + "DarkColor": "906B48", + "SongMetaId": null, + "SpotifyId": "0sp39yqzCM8wTQuI3kqXCh", + "DeezerID": 485802242, + "DeezerURL": "https://www.deezer.com/track/485802242", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d046e7f07a2ef50ac9a02469795705de/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d046e7f07a2ef50ac9a02469795705de/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d046e7f07a2ef50ac9a02469795705de/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d046e7f07a2ef50ac9a02469795705de/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDY41802180", + "BPM": 0, + "Duration": 194, + "ReleaseDate": "2018-04-20", + "AlbumName": "I Got You", + "Explicit": false, + "Rank": 63858, + "Tags": [ + "R&B", + "Rap/Hip Hop", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 9058938, + "name": "Jaylon Ashaun", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "R&B" + ] + }, + { + "SongId": 145, + "Name": "I Gotta Feeling", + "Artists": "The Black Eyed Peas", + "Color": "68FA4E", + "DarkColor": "275D19", + "SongMetaId": null, + "SpotifyId": "2H1047e0oMSj10dgp7p2VG", + "DeezerID": 4124656, + "DeezerURL": "https://www.deezer.com/track/4124656", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e7b7bc4819d341650cbfff6796cdc7aa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e7b7bc4819d341650cbfff6796cdc7aa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e7b7bc4819d341650cbfff6796cdc7aa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e7b7bc4819d341650cbfff6796cdc7aa/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70969621", + "BPM": 128, + "Duration": 245, + "ReleaseDate": "2010-02-16", + "AlbumName": "I Gotta Feeling", + "Explicit": false, + "Rank": 745950, + "Tags": [ + "Pop", + "bpm:128", + "fast", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 1020109, + "name": "Black Eyed Peas", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 656, + "Name": "I Had Some Help", + "Artists": "Post Malone, Morgan Wallen", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "7221xIgOnuakPdLqT0F3nP", + "DeezerID": 2780753191, + "DeezerURL": "https://www.deezer.com/track/2780753191", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b9c8cc4fd597a9bc516445e6573501cf/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b9c8cc4fd597a9bc516445e6573501cf/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b9c8cc4fd597a9bc516445e6573501cf/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b9c8cc4fd597a9bc516445e6573501cf/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72404990", + "BPM": 0, + "Duration": 178, + "ReleaseDate": "2024-05-10", + "AlbumName": "I Had Some Help", + "Explicit": true, + "Rank": 848789, + "Tags": [ + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + }, + { + "id": 7188840, + "name": "Morgan Wallen", + "role": "Featured" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 656, + "Name": "I Had Some Help", + "Artists": "Post Malone, Morgan Wallen", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "7221xIgOnuakPdLqT0F3nP", + "DeezerID": 2780753191, + "DeezerURL": "https://www.deezer.com/track/2780753191", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b9c8cc4fd597a9bc516445e6573501cf/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b9c8cc4fd597a9bc516445e6573501cf/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b9c8cc4fd597a9bc516445e6573501cf/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b9c8cc4fd597a9bc516445e6573501cf/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72404990", + "BPM": 0, + "Duration": 178, + "ReleaseDate": "2024-05-10", + "AlbumName": "I Had Some Help", + "Explicit": true, + "Rank": 848789, + "Tags": [ + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + }, + { + "id": 7188840, + "name": "Morgan Wallen", + "role": "Featured" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 588, + "Name": "I KNOW ?", + "Artists": "Travis Scott", + "Color": "984F25", + "DarkColor": "852F08", + "SongMetaId": null, + "SpotifyId": "6wsqVwoiVH2kde4k4KKAFU" + }, + { + "SongId": 588, + "Name": "I KNOW ?", + "Artists": "Travis Scott", + "Color": "984F25", + "DarkColor": "852F08", + "SongMetaId": null, + "SpotifyId": "6wsqVwoiVH2kde4k4KKAFU" + }, + { + "SongId": 426, + "Name": "I Know A Little", + "Artists": "Lynyrd Skynyrd", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "2vLhb34HqnPwNCKx0atimx", + "DeezerID": 540089232, + "DeezerURL": "https://www.deezer.com/track/540089232", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c7763b06696bf2bf60f806fb094e7f35/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c7763b06696bf2bf60f806fb094e7f35/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c7763b06696bf2bf60f806fb094e7f35/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c7763b06696bf2bf60f806fb094e7f35/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC17706824", + "BPM": 196.88, + "Duration": 206, + "ReleaseDate": "2001-01-01", + "AlbumName": "Street Survivors", + "Explicit": false, + "Rank": 341768, + "Tags": [ + "Rock", + "bpm:196.88", + "medium-length", + "very-fast", + "year:2001" + ], + "Contributors": [ + { + "id": 816, + "name": "Lynyrd Skynyrd", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 426, + "Name": "I Know A Little", + "Artists": "Lynyrd Skynyrd", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "2vLhb34HqnPwNCKx0atimx", + "DeezerID": 540089232, + "DeezerURL": "https://www.deezer.com/track/540089232", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c7763b06696bf2bf60f806fb094e7f35/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c7763b06696bf2bf60f806fb094e7f35/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c7763b06696bf2bf60f806fb094e7f35/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c7763b06696bf2bf60f806fb094e7f35/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC17706824", + "BPM": 196.88, + "Duration": 206, + "ReleaseDate": "2001-01-01", + "AlbumName": "Street Survivors", + "Explicit": false, + "Rank": 341768, + "Tags": [ + "Rock", + "bpm:196.88", + "medium-length", + "very-fast", + "year:2001" + ], + "Contributors": [ + { + "id": 816, + "name": "Lynyrd Skynyrd", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 168, + "Name": "I Like Him", + "Artists": "Princess Nokia", + "Color": "FD5D8C", + "DarkColor": "BF4F7C", + "SongMetaId": null, + "SpotifyId": "68UU9oaQtMDnh6PRlW842H", + "DeezerID": 877462672, + "DeezerURL": "https://www.deezer.com/track/877462672", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6c0896a624a20d94d97e74a0b077ade7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6c0896a624a20d94d97e74a0b077ade7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6c0896a624a20d94d97e74a0b077ade7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6c0896a624a20d94d97e74a0b077ade7/1000x1000-000000-80-0-0.jpg", + "ISRC": "US23A1502010", + "BPM": 0, + "Duration": 132, + "ReleaseDate": "2020-02-26", + "AlbumName": "Everything Sucks", + "Explicit": true, + "Rank": 489242, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2020" + ], + "Contributors": [ + { + "id": 5899243, + "name": "Princess Nokia", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 226, + "Name": "I Like Me Better", + "Artists": "Lauv", + "Color": "1E70DF", + "DarkColor": "02204C", + "SongMetaId": null, + "SpotifyId": "0EcQcdcbQeVJn9fknj44Be", + "DeezerID": 3025895871, + "DeezerURL": "https://www.deezer.com/track/3025895871", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3db7eca4ee1a2effa0d353289b4b2bba/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3db7eca4ee1a2effa0d353289b4b2bba/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3db7eca4ee1a2effa0d353289b4b2bba/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3db7eca4ee1a2effa0d353289b4b2bba/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBWWP1702907", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2017-05-19", + "AlbumName": "I Like Me Better", + "Explicit": false, + "Rank": 855073, + "Tags": [ + "Pop", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 4677655, + "name": "Lauv", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 336, + "Name": "I Like To Move It", + "Artists": "Reel 2 Real, The Mad Stuntman", + "Color": "FA6E11", + "DarkColor": "E23000", + "SongMetaId": null, + "SpotifyId": "4l2ljvyXOCVNbD5ff7NpM7", + "DeezerID": 86835023, + "DeezerURL": "https://www.deezer.com/track/86835023", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0be608d1c37e6690ed9bd146467fc4c0/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0be608d1c37e6690ed9bd146467fc4c0/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0be608d1c37e6690ed9bd146467fc4c0/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0be608d1c37e6690ed9bd146467fc4c0/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSR39319202", + "BPM": 123.05, + "Duration": 223, + "ReleaseDate": "2007-02-12", + "AlbumName": "I Like To Move It (feat. The Mad Stuntman)", + "Explicit": false, + "Rank": 656096, + "Tags": [ + "Dance", + "bpm:123.05", + "fast", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 998, + "name": "Reel 2 Real", + "role": "Main" + }, + { + "id": 4769359, + "name": "The Mad Stuntman", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 164, + "Name": "I Love U", + "Artists": "The Chainsmokers", + "Color": "D4B9B5", + "DarkColor": "A3817C", + "SongMetaId": null, + "SpotifyId": "2FqkTu4FhwDWn9hzEaWWCE", + "DeezerID": 1852000297, + "DeezerURL": "https://www.deezer.com/track/1852000297", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1b4e4a497a2104607f54711162f4baa8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1b4e4a497a2104607f54711162f4baa8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1b4e4a497a2104607f54711162f4baa8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1b4e4a497a2104607f54711162f4baa8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX92105841", + "BPM": 0, + "Duration": 185, + "ReleaseDate": "2022-06-08", + "AlbumName": "So Far So Good", + "Explicit": false, + "Rank": 365044, + "Tags": [ + "Dance", + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 4104927, + "name": "The Chainsmokers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 617, + "Name": "I Still Haven't Found What I'm Looking For", + "Artists": "U2", + "Color": "C4973E", + "DarkColor": "C48145", + "SongMetaId": null, + "SpotifyId": "6wpGqhRvJGNNXwWlPmkMyO", + "DeezerID": 912481, + "DeezerURL": "https://www.deezer.com/track/912481", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b255afa51b3c1af7872acb56da319c2d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b255afa51b3c1af7872acb56da319c2d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b255afa51b3c1af7872acb56da319c2d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b255afa51b3c1af7872acb56da319c2d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM70709783", + "BPM": 100.8, + "Duration": 277, + "ReleaseDate": "2007-11-20", + "AlbumName": "The Joshua Tree", + "Explicit": false, + "Rank": 864214, + "Tags": [ + "Rock", + "bpm:100.8", + "medium", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 163, + "name": "U2", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 617, + "Name": "I Still Haven't Found What I'm Looking For", + "Artists": "U2", + "Color": "B59040", + "DarkColor": "C48145", + "SongMetaId": null, + "SpotifyId": "6wpGqhRvJGNNXwWlPmkMyO", + "DeezerID": 912481, + "DeezerURL": "https://www.deezer.com/track/912481", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b255afa51b3c1af7872acb56da319c2d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b255afa51b3c1af7872acb56da319c2d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b255afa51b3c1af7872acb56da319c2d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b255afa51b3c1af7872acb56da319c2d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM70709783", + "BPM": 100.8, + "Duration": 277, + "ReleaseDate": "2007-11-20", + "AlbumName": "The Joshua Tree", + "Explicit": false, + "Rank": 864214, + "Tags": [ + "Rock", + "bpm:100.8", + "medium", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 163, + "name": "U2", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 261, + "Name": "I Think I'm OKAY", + "Artists": "Machine Gun Kelly, YUNGBLUD, Travis Barker", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "2gTdDMpNxIRFSiu7HutMCg", + "DeezerID": 705273532, + "DeezerURL": "https://www.deezer.com/track/705273532", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/48271d73f991932ad509bf1ed24d38ea/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/48271d73f991932ad509bf1ed24d38ea/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/48271d73f991932ad509bf1ed24d38ea/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/48271d73f991932ad509bf1ed24d38ea/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71909845", + "BPM": 119.84, + "Duration": 170, + "ReleaseDate": "2019-07-05", + "AlbumName": "Hotel Diablo", + "Explicit": true, + "Rank": 602332, + "Tags": [ + "Rap/Hip Hop", + "bpm:119.84", + "medium", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 12133088, + "name": "YUNGBLUD", + "role": "Main" + }, + { + "id": 428675, + "name": "mgk", + "role": "Main" + }, + { + "id": 891621, + "name": "Travis Barker", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 628, + "Name": "I Wanna Dance With Somebody (Who Loves Me)", + "Artists": "Whitney Houston", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "2tUBqZG2AbRi7Q0BIrVrEj", + "DeezerID": 75981528, + "DeezerURL": "https://www.deezer.com/track/75981528", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/26b5030b971a5fd363f82cad8cff7453/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/26b5030b971a5fd363f82cad8cff7453/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/26b5030b971a5fd363f82cad8cff7453/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/26b5030b971a5fd363f82cad8cff7453/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR18700121", + "BPM": 118.8, + "Duration": 293, + "ReleaseDate": "1987-12-16", + "AlbumName": "Whitney", + "Explicit": false, + "Rank": 894369, + "Tags": [ + "Pop", + "R&B", + "bpm:118.8", + "medium", + "medium-length", + "year:1987" + ], + "Contributors": [ + { + "id": 174, + "name": "Whitney Houston", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "R&B" + ] + }, + { + "SongId": 628, + "Name": "I Wanna Dance With Somebody (Who Loves Me)", + "Artists": "Whitney Houston", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "2tUBqZG2AbRi7Q0BIrVrEj", + "DeezerID": 75981528, + "DeezerURL": "https://www.deezer.com/track/75981528", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/26b5030b971a5fd363f82cad8cff7453/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/26b5030b971a5fd363f82cad8cff7453/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/26b5030b971a5fd363f82cad8cff7453/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/26b5030b971a5fd363f82cad8cff7453/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR18700121", + "BPM": 118.8, + "Duration": 293, + "ReleaseDate": "1987-12-16", + "AlbumName": "Whitney", + "Explicit": false, + "Rank": 894369, + "Tags": [ + "Pop", + "R&B", + "bpm:118.8", + "medium", + "medium-length", + "year:1987" + ], + "Contributors": [ + { + "id": 174, + "name": "Whitney Houston", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "R&B" + ] + }, + { + "SongId": 222, + "Name": "I Want It That Way", + "Artists": "Backstreet Boys", + "Color": "756599", + "DarkColor": "4C3E6C", + "SongMetaId": null, + "SpotifyId": "47BBI51FKFwOMlIiX6m8ya", + "DeezerID": 13141170, + "DeezerURL": "https://www.deezer.com/track/13141170", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d61eaad8f321ea876a5f5c7219aae892/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d61eaad8f321ea876a5f5c7219aae892/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d61eaad8f321ea876a5f5c7219aae892/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d61eaad8f321ea876a5f5c7219aae892/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJI19910614", + "BPM": 98.9, + "Duration": 214, + "ReleaseDate": "1999-05-18", + "AlbumName": "Millennium", + "Explicit": false, + "Rank": 844636, + "Tags": [ + "Pop", + "bpm:98.9", + "medium", + "medium-length", + "year:1999" + ], + "Contributors": [ + { + "id": 330, + "name": "Backstreet Boys", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 222, + "Name": "I Want It That Way", + "Artists": "Backstreet Boys", + "Color": "AF81BA", + "DarkColor": "734C8B", + "SongMetaId": null, + "SpotifyId": "47BBI51FKFwOMlIiX6m8ya", + "DeezerID": 13141170, + "DeezerURL": "https://www.deezer.com/track/13141170", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d61eaad8f321ea876a5f5c7219aae892/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d61eaad8f321ea876a5f5c7219aae892/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d61eaad8f321ea876a5f5c7219aae892/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d61eaad8f321ea876a5f5c7219aae892/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJI19910614", + "BPM": 98.9, + "Duration": 214, + "ReleaseDate": "1999-05-18", + "AlbumName": "Millennium", + "Explicit": false, + "Rank": 844636, + "Tags": [ + "Pop", + "bpm:98.9", + "medium", + "medium-length", + "year:1999" + ], + "Contributors": [ + { + "id": 330, + "name": "Backstreet Boys", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 517, + "Name": "I Write Sins Not Tragedies", + "Artists": "Panic! At The Disco", + "Color": "960019", + "DarkColor": "300505", + "SongMetaId": "18", + "SpotifyId": "4bPQs0PHn4xbipzdPfn6du", + "DeezerID": 5094040, + "DeezerURL": "https://www.deezer.com/track/5094040", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/12f418509c1f4fecca36b80c1432019a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/12f418509c1f4fecca36b80c1432019a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/12f418509c1f4fecca36b80c1432019a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/12f418509c1f4fecca36b80c1432019a/1000x1000-000000-80-0-0.jpg", + "ISRC": "US56V0507710", + "BPM": 170.1, + "Duration": 187, + "ReleaseDate": "2005-09-27", + "AlbumName": "A Fever You Can't Sweat Out", + "Explicit": true, + "Rank": 712386, + "Tags": [ + "Rock", + "bpm:170.1", + "medium-length", + "very-fast", + "year:2005" + ], + "Contributors": [ + { + "id": 402, + "name": "Panic! At the Disco", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 718, + "Name": "I Write Sins Not Tragedies", + "Artists": "Panic! At The Disco", + "Color": "960019", + "DarkColor": "300505", + "SongMetaId": "18", + "SpotifyId": "4bPQs0PHn4xbipzdPfn6du", + "DeezerID": 5094040, + "DeezerURL": "https://www.deezer.com/track/5094040", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/12f418509c1f4fecca36b80c1432019a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/12f418509c1f4fecca36b80c1432019a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/12f418509c1f4fecca36b80c1432019a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/12f418509c1f4fecca36b80c1432019a/1000x1000-000000-80-0-0.jpg", + "ISRC": "US56V0507710", + "BPM": 170.1, + "Duration": 187, + "ReleaseDate": "2005-09-27", + "AlbumName": "A Fever You Can't Sweat Out", + "Explicit": true, + "Rank": 712386, + "Tags": [ + "Rock", + "bpm:170.1", + "medium-length", + "very-fast", + "year:2005" + ], + "Contributors": [ + { + "id": 402, + "name": "Panic! At the Disco", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 517, + "Name": "I Write Sins Not Tragedies", + "Artists": "Panic! At The Disco", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": "18", + "SpotifyId": "4bPQs0PHn4xbipzdPfn6du", + "DeezerID": 5094040, + "DeezerURL": "https://www.deezer.com/track/5094040", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/12f418509c1f4fecca36b80c1432019a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/12f418509c1f4fecca36b80c1432019a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/12f418509c1f4fecca36b80c1432019a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/12f418509c1f4fecca36b80c1432019a/1000x1000-000000-80-0-0.jpg", + "ISRC": "US56V0507710", + "BPM": 170.1, + "Duration": 187, + "ReleaseDate": "2005-09-27", + "AlbumName": "A Fever You Can't Sweat Out", + "Explicit": true, + "Rank": 712386, + "Tags": [ + "Rock", + "bpm:170.1", + "medium-length", + "very-fast", + "year:2005" + ], + "Contributors": [ + { + "id": 402, + "name": "Panic! At the Disco", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 315, + "Name": "I'm Gonna Be (500 Miles)", + "Artists": "The Proclaimers", + "Color": "00AEEB", + "DarkColor": "08658D", + "SongMetaId": null, + "SpotifyId": "67iAlVNDDdddxqSD2EZhFs", + "DeezerID": 3109247, + "DeezerURL": "https://www.deezer.com/track/3109247", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f22a178ac1d33dc7abe7564f0404a6c8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f22a178ac1d33dc7abe7564f0404a6c8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f22a178ac1d33dc7abe7564f0404a6c8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f22a178ac1d33dc7abe7564f0404a6c8/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYK8800055", + "BPM": 131.7, + "Duration": 219, + "ReleaseDate": "2002-05-13", + "AlbumName": "The Best Of", + "Explicit": false, + "Rank": 751903, + "Tags": [ + "Pop", + "bpm:131.7", + "fast", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 2887, + "name": "The Proclaimers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 73, + "Name": "I'm Yours", + "Artists": "Jason Mraz", + "Color": "1E70DF", + "DarkColor": "02204C", + "SongMetaId": null, + "SpotifyId": "1EzrEOXmMH3G43AXT1y7pA", + "DeezerID": 2686140, + "DeezerURL": "https://www.deezer.com/track/2686140", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/14afa8e767482283a4bd57ceae31eb80/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/14afa8e767482283a4bd57ceae31eb80/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/14afa8e767482283a4bd57ceae31eb80/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/14afa8e767482283a4bd57ceae31eb80/1000x1000-000000-80-0-0.jpg", + "ISRC": "USEE10800667", + "BPM": 0, + "Duration": 242, + "ReleaseDate": "2008-05-01", + "AlbumName": "We Sing. We Dance. We Steal Things. (Bonus Tracks Version)", + "Explicit": false, + "Rank": 841376, + "Tags": [ + "Pop", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 4011, + "name": "Jason Mraz", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 740, + "Name": "Imagine", + "Artists": "John Lennon", + "Color": "6F8376", + "DarkColor": "45544A", + "SongMetaId": null, + "SpotifyId": "6Sysl8Qz8Sw8p4yM6LWIhk", + "DeezerID": 7193834, + "DeezerURL": "https://www.deezer.com/track/7193834", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2675a9277dfabb74c32b7a3b2c9b0170/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2675a9277dfabb74c32b7a3b2c9b0170/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2675a9277dfabb74c32b7a3b2c9b0170/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2675a9277dfabb74c32b7a3b2c9b0170/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE1000769", + "BPM": 151.4, + "Duration": 184, + "ReleaseDate": "2010-10-01", + "AlbumName": "Imagine", + "Explicit": false, + "Rank": 892964, + "Tags": [ + "Rock", + "bpm:151.4", + "medium-length", + "very-fast", + "year:2010" + ], + "Contributors": [ + { + "id": 226, + "name": "John Lennon", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 681, + "Name": "In The End", + "Artists": "Linkin Park", + "Color": "99392A", + "DarkColor": "432423", + "SongMetaId": "19", + "SpotifyId": "60a0Rd6pjrkxjPbaKzXjfq", + "DeezerID": 676183, + "DeezerURL": "https://www.deezer.com/track/676183", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/033a271b5ec10842c287827c39244fb5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/033a271b5ec10842c287827c39244fb5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/033a271b5ec10842c287827c39244fb5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/033a271b5ec10842c287827c39244fb5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB10002407", + "BPM": 105.2, + "Duration": 216, + "ReleaseDate": "2000-10-24", + "AlbumName": "Hybrid Theory (Bonus Edition)", + "Explicit": false, + "Rank": 984072, + "Tags": [ + "Alternativo", + "bpm:105.2", + "medium", + "medium-length", + "year:2000" + ], + "Contributors": [ + { + "id": 92, + "name": "Linkin Park", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 721, + "Name": "In The End", + "Artists": "Linkin Park", + "Color": "99392A", + "DarkColor": "432423", + "SongMetaId": "19", + "SpotifyId": "60a0Rd6pjrkxjPbaKzXjfq", + "DeezerID": 676183, + "DeezerURL": "https://www.deezer.com/track/676183", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/033a271b5ec10842c287827c39244fb5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/033a271b5ec10842c287827c39244fb5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/033a271b5ec10842c287827c39244fb5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/033a271b5ec10842c287827c39244fb5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB10002407", + "BPM": 105.2, + "Duration": 216, + "ReleaseDate": "2000-10-24", + "AlbumName": "Hybrid Theory (Bonus Edition)", + "Explicit": false, + "Rank": 984072, + "Tags": [ + "Alternativo", + "bpm:105.2", + "medium", + "medium-length", + "year:2000" + ], + "Contributors": [ + { + "id": 92, + "name": "Linkin Park", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 681, + "Name": "In The End", + "Artists": "Linkin Park", + "Color": "99392A", + "DarkColor": "432423", + "SongMetaId": "19", + "SpotifyId": "60a0Rd6pjrkxjPbaKzXjfq", + "DeezerID": 676183, + "DeezerURL": "https://www.deezer.com/track/676183", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/033a271b5ec10842c287827c39244fb5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/033a271b5ec10842c287827c39244fb5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/033a271b5ec10842c287827c39244fb5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/033a271b5ec10842c287827c39244fb5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB10002407", + "BPM": 105.2, + "Duration": 216, + "ReleaseDate": "2000-10-24", + "AlbumName": "Hybrid Theory (Bonus Edition)", + "Explicit": false, + "Rank": 984072, + "Tags": [ + "Alternativo", + "bpm:105.2", + "medium", + "medium-length", + "year:2000" + ], + "Contributors": [ + { + "id": 92, + "name": "Linkin Park", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 84, + "Name": "In the Morning", + "Artists": "Jaded", + "Color": "F7BEB5", + "DarkColor": "CE717B", + "SongMetaId": null, + "SpotifyId": "3Xp9VqusQqyWGLGSGWcBEC", + "DeezerID": 391690002, + "DeezerURL": "https://www.deezer.com/track/391690002", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4571fc283e52350fb93aaa7ca37bced9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4571fc283e52350fb93aaa7ca37bced9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4571fc283e52350fb93aaa7ca37bced9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4571fc283e52350fb93aaa7ca37bced9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL1601555", + "BPM": 124.16, + "Duration": 195, + "ReleaseDate": "2017-08-25", + "AlbumName": "In the Morning (Remixes)", + "Explicit": false, + "Rank": 461741, + "Tags": [ + "Dance", + "Electro", + "Techno/House", + "bpm:124.16", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 393033, + "name": "Jaded", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House", + "Dance" + ] + }, + { + "SongId": 663, + "Name": "In Your Hands", + "Artists": "Craig David", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "39EqqKlqMBvmG6I9ZhaHbk", + "DeezerID": 2915376771, + "DeezerURL": "https://www.deezer.com/track/2915376771", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2bdb31aa50fa59ebef1d1f403b15899f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2bdb31aa50fa59ebef1d1f403b15899f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2bdb31aa50fa59ebef1d1f403b15899f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2bdb31aa50fa59ebef1d1f403b15899f/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB45A2400180", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2024-09-27", + "AlbumName": "In Your Hands", + "Explicit": false, + "Rank": 317491, + "Tags": [ + "Pop", + "R&B", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 110, + "name": "Craig David", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "R&B" + ] + }, + { + "SongId": 663, + "Name": "In Your Hands", + "Artists": "Craig David", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "39EqqKlqMBvmG6I9ZhaHbk", + "DeezerID": 2915376771, + "DeezerURL": "https://www.deezer.com/track/2915376771", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2bdb31aa50fa59ebef1d1f403b15899f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2bdb31aa50fa59ebef1d1f403b15899f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2bdb31aa50fa59ebef1d1f403b15899f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2bdb31aa50fa59ebef1d1f403b15899f/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB45A2400180", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2024-09-27", + "AlbumName": "In Your Hands", + "Explicit": false, + "Rank": 317491, + "Tags": [ + "Pop", + "R&B", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 110, + "name": "Craig David", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "R&B" + ] + }, + { + "SongId": 5, + "Name": "Indigo", + "Artists": "88rising, NIKI", + "Color": "F86F0E", + "DarkColor": "921C0A", + "SongMetaId": null, + "SpotifyId": "6y0WlFecBZMaIlitqe9bNg", + "DeezerID": 2613173232, + "DeezerURL": "https://www.deezer.com/track/2613173232", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/28aeea0a18458309de3004f0bb3cda59/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/28aeea0a18458309de3004f0bb3cda59/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/28aeea0a18458309de3004f0bb3cda59/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/28aeea0a18458309de3004f0bb3cda59/1000x1000-000000-80-0-0.jpg", + "ISRC": "ZZOPM1901214", + "BPM": 0, + "Duration": 173, + "ReleaseDate": "2019-08-13", + "AlbumName": "Indigo", + "Explicit": false, + "Rank": 317387, + "Tags": [ + "R&B", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 14980207, + "name": "88rising", + "role": "Main" + }, + { + "id": 506832, + "name": "NIKI", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 152, + "Name": "Inferno", + "Artists": "Mrs.GREEN APPLE", + "Color": "FF5E01", + "DarkColor": "8F1F19", + "SongMetaId": null, + "SpotifyId": "3VtnlGpRuSlEBAu5VVaNlQ", + "DeezerID": 711676642, + "DeezerURL": "https://www.deezer.com/track/711676642", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2f97161210a72aab926bc8544aa49b4c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2f97161210a72aab926bc8544aa49b4c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2f97161210a72aab926bc8544aa49b4c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2f97161210a72aab926bc8544aa49b4c/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPPO01902850", + "BPM": 184.57, + "Duration": 212, + "ReleaseDate": "2019-07-18", + "AlbumName": "Inferno", + "Explicit": false, + "Rank": 630186, + "Tags": [ + "Rock", + "bpm:184.57", + "medium-length", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 8152202, + "name": "Mrs. Green Apple", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 434, + "Name": "Informer", + "Artists": "Snow", + "Color": "F8480E", + "DarkColor": "921C0A", + "SongMetaId": null, + "SpotifyId": "2LjiPAQOVazT8sRyXL3XRs", + "DeezerID": 3884974, + "DeezerURL": "https://www.deezer.com/track/3884974", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/899fb38ed8057501e6275319f9c78599/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/899fb38ed8057501e6275319f9c78599/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/899fb38ed8057501e6275319f9c78599/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/899fb38ed8057501e6275319f9c78599/1000x1000-000000-80-0-0.jpg", + "ISRC": "USEW19300006", + "BPM": 98.2, + "Duration": 268, + "ReleaseDate": "1992-12-29", + "AlbumName": "12 Inches Of Snow", + "Explicit": false, + "Rank": 543312, + "Tags": [ + "Rap/Hip Hop", + "bpm:98.2", + "medium", + "medium-length", + "year:1992" + ], + "Contributors": [ + { + "id": 4055, + "name": "SNoW", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 434, + "Name": "Informer", + "Artists": "Snow", + "Color": "F8480E", + "DarkColor": "921C0A", + "SongMetaId": null, + "SpotifyId": "2LjiPAQOVazT8sRyXL3XRs", + "DeezerID": 3884974, + "DeezerURL": "https://www.deezer.com/track/3884974", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/899fb38ed8057501e6275319f9c78599/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/899fb38ed8057501e6275319f9c78599/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/899fb38ed8057501e6275319f9c78599/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/899fb38ed8057501e6275319f9c78599/1000x1000-000000-80-0-0.jpg", + "ISRC": "USEW19300006", + "BPM": 98.2, + "Duration": 268, + "ReleaseDate": "1992-12-29", + "AlbumName": "12 Inches Of Snow", + "Explicit": false, + "Rank": 543312, + "Tags": [ + "Rap/Hip Hop", + "bpm:98.2", + "medium", + "medium-length", + "year:1992" + ], + "Contributors": [ + { + "id": 4055, + "name": "SNoW", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 106, + "Name": "Insane In The Brain", + "Artists": "Cypress Hill", + "Color": "C49454", + "DarkColor": "9C6A3B", + "SongMetaId": null, + "SpotifyId": "1oTHteQbmJw15rPxPVXUTv", + "DeezerID": 1015862, + "DeezerURL": "https://www.deezer.com/track/1015862", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ff3a4fbb250a131f8cf3f413814eb29a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ff3a4fbb250a131f8cf3f413814eb29a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ff3a4fbb250a131f8cf3f413814eb29a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ff3a4fbb250a131f8cf3f413814eb29a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19303133", + "BPM": 102.1, + "Duration": 213, + "ReleaseDate": "2004-11-01", + "AlbumName": "Black Sunday", + "Explicit": true, + "Rank": 727899, + "Tags": [ + "Rap/Hip Hop", + "bpm:102.1", + "medium", + "medium-length", + "year:2004" + ], + "Contributors": [ + { + "id": 1222, + "name": "Cypress Hill", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 105, + "Name": "Intentions", + "Artists": "Justin Bieber, Quavo", + "Color": "E6333A", + "DarkColor": "81051D", + "SongMetaId": null, + "SpotifyId": "364dI1bYnvamSnBJ8JcNzN", + "DeezerID": 870979432, + "DeezerURL": "https://www.deezer.com/track/870979432", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8d54ffac647e9e40cd91686c8a906de6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8d54ffac647e9e40cd91686c8a906de6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8d54ffac647e9e40cd91686c8a906de6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8d54ffac647e9e40cd91686c8a906de6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72001302", + "BPM": 148.19, + "Duration": 212, + "ReleaseDate": "2020-02-07", + "AlbumName": "Intentions", + "Explicit": false, + "Rank": 669351, + "Tags": [ + "Pop", + "bpm:148.19", + "fast", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 288166, + "name": "Justin Bieber", + "role": "Main" + }, + { + "id": 5059044, + "name": "Quavo", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 465, + "Name": "Intergalactic", + "Artists": "Beastie Boys", + "Color": "4C9979", + "DarkColor": "224C55", + "SongMetaId": null, + "SpotifyId": "0rVd7bTGtrQUW34xSLzozd", + "DeezerID": 4013664, + "DeezerURL": "https://www.deezer.com/track/4013664", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7fa82a968ce539bef38a45bcf82a23c6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7fa82a968ce539bef38a45bcf82a23c6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7fa82a968ce539bef38a45bcf82a23c6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7fa82a968ce539bef38a45bcf82a23c6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA20903764", + "BPM": 0, + "Duration": 231, + "ReleaseDate": "2009-08-25", + "AlbumName": "Hello Nasty (Deluxe Edition/Remastered)", + "Explicit": false, + "Rank": 625405, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 194746, + "name": "Beastie Boys", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 465, + "Name": "Intergalactic", + "Artists": "Beastie Boys", + "Color": "4C9979", + "DarkColor": "224C55", + "SongMetaId": null, + "SpotifyId": "0rVd7bTGtrQUW34xSLzozd", + "DeezerID": 4013664, + "DeezerURL": "https://www.deezer.com/track/4013664", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7fa82a968ce539bef38a45bcf82a23c6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7fa82a968ce539bef38a45bcf82a23c6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7fa82a968ce539bef38a45bcf82a23c6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7fa82a968ce539bef38a45bcf82a23c6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA20903764", + "BPM": 0, + "Duration": 231, + "ReleaseDate": "2009-08-25", + "AlbumName": "Hello Nasty (Deluxe Edition/Remastered)", + "Explicit": false, + "Rank": 625405, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 194746, + "name": "Beastie Boys", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 241, + "Name": "Into You", + "Artists": "Ariana Grande", + "Color": "DE9AA1", + "DarkColor": "A96E78", + "SongMetaId": null, + "SpotifyId": "63y6xWR4gXz7bnUGOk8iI6", + "DeezerID": 1375215242, + "DeezerURL": "https://www.deezer.com/track/1375215242", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1a8f399e9ddbb8ec2530232c0dfd953f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1a8f399e9ddbb8ec2530232c0dfd953f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1a8f399e9ddbb8ec2530232c0dfd953f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1a8f399e9ddbb8ec2530232c0dfd953f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71601827", + "BPM": 0, + "Duration": 244, + "ReleaseDate": "2021-05-20", + "AlbumName": "Dangerous Woman", + "Explicit": false, + "Rank": 791832, + "Tags": [ + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 1562681, + "name": "Ariana Grande", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 204, + "Name": "Is This Love", + "Artists": "Bob Marley & The Wailers", + "Color": "83B713", + "DarkColor": "32770D", + "SongMetaId": "20", + "SpotifyId": "6JRLFiX9NJSoRRKxowlBYr", + "DeezerID": 2293791, + "DeezerURL": "https://www.deezer.com/track/2293791", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6367879e2e914efb1a5e546c7492ca0f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6367879e2e914efb1a5e546c7492ca0f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6367879e2e914efb1a5e546c7492ca0f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6367879e2e914efb1a5e546c7492ca0f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR27800259", + "BPM": 122, + "Duration": 233, + "ReleaseDate": "2001-08-06", + "AlbumName": "Kaya", + "Explicit": false, + "Rank": 886052, + "Tags": [ + "Reggae", + "bpm:122", + "fast", + "medium-length", + "year:2001" + ], + "Contributors": [ + { + "id": 719, + "name": "Bob Marley & The Wailers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Reggae" + ] + }, + { + "SongId": 744, + "Name": "Is This Love", + "Artists": "Bob Marley & The Wailers", + "Color": "83B713", + "DarkColor": "32770D", + "SongMetaId": "20", + "SpotifyId": "6JRLFiX9NJSoRRKxowlBYr", + "DeezerID": 2293791, + "DeezerURL": "https://www.deezer.com/track/2293791", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6367879e2e914efb1a5e546c7492ca0f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6367879e2e914efb1a5e546c7492ca0f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6367879e2e914efb1a5e546c7492ca0f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6367879e2e914efb1a5e546c7492ca0f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR27800259", + "BPM": 122, + "Duration": 233, + "ReleaseDate": "2001-08-06", + "AlbumName": "Kaya", + "Explicit": false, + "Rank": 886052, + "Tags": [ + "Reggae", + "bpm:122", + "fast", + "medium-length", + "year:2001" + ], + "Contributors": [ + { + "id": 719, + "name": "Bob Marley & The Wailers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Reggae" + ] + }, + { + "SongId": 513, + "Name": "Is You Rollin'", + "Artists": "Mobdiva", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "6bqjwTa6VXxOAfMd3hXimR", + "DeezerID": 125727874, + "DeezerURL": "https://www.deezer.com/track/125727874", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/92cb49dcfd7e63365ce6d7dcb0838b66/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/92cb49dcfd7e63365ce6d7dcb0838b66/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/92cb49dcfd7e63365ce6d7dcb0838b66/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/92cb49dcfd7e63365ce6d7dcb0838b66/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDY41621540", + "BPM": 0, + "Duration": 140, + "ReleaseDate": "2016-05-02", + "AlbumName": "Is You Rollin'", + "Explicit": false, + "Rank": 13394, + "Tags": [ + "Pop", + "Rap/Hip Hop", + "short", + "year:2016" + ], + "Contributors": [ + { + "id": 10448950, + "name": "Mobdiva", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "Pop" + ] + }, + { + "SongId": 513, + "Name": "Is You Rollin'", + "Artists": "Mobdiva", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "6bqjwTa6VXxOAfMd3hXimR", + "DeezerID": 125727874, + "DeezerURL": "https://www.deezer.com/track/125727874", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/92cb49dcfd7e63365ce6d7dcb0838b66/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/92cb49dcfd7e63365ce6d7dcb0838b66/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/92cb49dcfd7e63365ce6d7dcb0838b66/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/92cb49dcfd7e63365ce6d7dcb0838b66/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDY41621540", + "BPM": 0, + "Duration": 140, + "ReleaseDate": "2016-05-02", + "AlbumName": "Is You Rollin'", + "Explicit": false, + "Rank": 13394, + "Tags": [ + "Pop", + "Rap/Hip Hop", + "short", + "year:2016" + ], + "Contributors": [ + { + "id": 10448950, + "name": "Mobdiva", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "Pop" + ] + }, + { + "SongId": 186, + "Name": "Issues", + "Artists": "Julia Michaels", + "Color": "EBB0A5", + "DarkColor": "D3817A", + "SongMetaId": null, + "SpotifyId": "7vu0JkJh0ldukEYbTVcqd0", + "DeezerID": 139874527, + "DeezerURL": "https://www.deezer.com/track/139874527", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8f5109f8902b35c2d88a1ac6c14b3fe1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8f5109f8902b35c2d88a1ac6c14b3fe1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8f5109f8902b35c2d88a1ac6c14b3fe1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8f5109f8902b35c2d88a1ac6c14b3fe1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71615691", + "BPM": 0, + "Duration": 176, + "ReleaseDate": "2017-01-13", + "AlbumName": "Issues", + "Explicit": false, + "Rank": 805230, + "Tags": [ + "Pop", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 2110321, + "name": "Julia Michaels", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 533, + "Name": "It Must Be Love", + "Artists": "Madness", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "11V471elPwt3VuAshE1nKN", + "DeezerID": 3066859601, + "DeezerURL": "https://www.deezer.com/track/3066859601", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/35ef6f7e0cd0b5f82e987a52f097c8aa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/35ef6f7e0cd0b5f82e987a52f097c8aa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/35ef6f7e0cd0b5f82e987a52f097c8aa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/35ef6f7e0cd0b5f82e987a52f097c8aa/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB7GZ0900018", + "BPM": 0, + "Duration": 206, + "ReleaseDate": "2010-04-12", + "AlbumName": "7", + "Explicit": false, + "Rank": 361737, + "Tags": [ + "Pop", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 1825, + "name": "Madness", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 533, + "Name": "It Must Be Love", + "Artists": "Madness", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "11V471elPwt3VuAshE1nKN", + "DeezerID": 3066859601, + "DeezerURL": "https://www.deezer.com/track/3066859601", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/35ef6f7e0cd0b5f82e987a52f097c8aa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/35ef6f7e0cd0b5f82e987a52f097c8aa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/35ef6f7e0cd0b5f82e987a52f097c8aa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/35ef6f7e0cd0b5f82e987a52f097c8aa/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB7GZ0900018", + "BPM": 0, + "Duration": 206, + "ReleaseDate": "2010-04-12", + "AlbumName": "7", + "Explicit": false, + "Rank": 361737, + "Tags": [ + "Pop", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 1825, + "name": "Madness", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 674, + "Name": "IT'S ABOUT TIME", + "Artists": "LINK", + "Color": "0D447C", + "DarkColor": "092C4F", + "SongMetaId": null, + "SpotifyId": "4sdaqqmpeGmMF01kAehNa2", + "DeezerID": 2478214231, + "DeezerURL": "https://www.deezer.com/track/2478214231", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/074f047eeb65dad7934134d68b313d84/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/074f047eeb65dad7934134d68b313d84/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/074f047eeb65dad7934134d68b313d84/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/074f047eeb65dad7934134d68b313d84/1000x1000-000000-80-0-0.jpg", + "ISRC": "NL8RL2326947", + "BPM": 0, + "Duration": 245, + "ReleaseDate": "2023-11-03", + "AlbumName": "CHAIN REACTION", + "Explicit": true, + "Rank": 68224, + "Tags": [ + "Dance", + "Hard Rock", + "Rock", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 293756, + "name": "Link", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Rock", + "Hard Rock" + ] + }, + { + "SongId": 674, + "Name": "IT'S ABOUT TIME", + "Artists": "LINK", + "Color": "0D447C", + "DarkColor": "052240", + "SongMetaId": null, + "SpotifyId": "4sdaqqmpeGmMF01kAehNa2", + "DeezerID": 2478214231, + "DeezerURL": "https://www.deezer.com/track/2478214231", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/074f047eeb65dad7934134d68b313d84/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/074f047eeb65dad7934134d68b313d84/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/074f047eeb65dad7934134d68b313d84/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/074f047eeb65dad7934134d68b313d84/1000x1000-000000-80-0-0.jpg", + "ISRC": "NL8RL2326947", + "BPM": 0, + "Duration": 245, + "ReleaseDate": "2023-11-03", + "AlbumName": "CHAIN REACTION", + "Explicit": true, + "Rank": 68224, + "Tags": [ + "Dance", + "Hard Rock", + "Rock", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 293756, + "name": "Link", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Rock", + "Hard Rock" + ] + }, + { + "SongId": 147, + "Name": "It's Tricky", + "Artists": "Run-D.M.C.", + "Color": "9C56DA", + "DarkColor": "5B31A1", + "SongMetaId": null, + "SpotifyId": "6jBCehpNMkwFVF3dz4nLIW", + "DeezerID": 994699, + "DeezerURL": "https://www.deezer.com/track/994699", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR18600005", + "BPM": 127.6, + "Duration": 183, + "ReleaseDate": "2002-01-01", + "AlbumName": "RUN DMC \"High Profile: The Original Rhymes\"", + "Explicit": false, + "Rank": 617680, + "Tags": [ + "Rap/Hip Hop", + "bpm:127.6", + "fast", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 79236, + "name": "Run-DMC", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 147, + "Name": "It's Tricky", + "Artists": "Run-D.M.C.", + "Color": "9C56DA", + "DarkColor": "5B31A1", + "SongMetaId": null, + "SpotifyId": "6jBCehpNMkwFVF3dz4nLIW", + "DeezerID": 994699, + "DeezerURL": "https://www.deezer.com/track/994699", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR18600005", + "BPM": 127.6, + "Duration": 183, + "ReleaseDate": "2002-01-01", + "AlbumName": "RUN DMC \"High Profile: The Original Rhymes\"", + "Explicit": false, + "Rank": 617680, + "Tags": [ + "Rap/Hip Hop", + "bpm:127.6", + "fast", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 79236, + "name": "Run-DMC", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 763, + "Name": "Italian Concerto in F Major", + "Artists": "Johann Sebastian Bach", + "Color": "AD8A52", + "DarkColor": "563628", + "SongMetaId": null, + "SpotifyId": "49r74YsWHnxrYktbyZ0Pw1", + "DeezerID": 141820875, + "DeezerURL": "https://www.deezer.com/track/141820875", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/67e68138404b6b0eaf9f588c826c8f84/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/67e68138404b6b0eaf9f588c826c8f84/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/67e68138404b6b0eaf9f588c826c8f84/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/67e68138404b6b0eaf9f588c826c8f84/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEN961502122", + "BPM": 123.05, + "Duration": 296, + "ReleaseDate": "2017-02-10", + "AlbumName": "Johann Sebastian Bach", + "Explicit": false, + "Rank": 202976, + "Tags": [ + "Clássica", + "bpm:123.05", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 153407602, + "name": "Rafał Blechacz", + "role": "Main" + }, + { + "id": 1900, + "name": "Johann Sebastian Bach", + "role": "Main" + } + ], + "AlbumGenres": [ + "Clássica" + ] + }, + { + "SongId": 65, + "Name": "Jerusalema", + "Artists": "Master KG, Nomcebo Zikode", + "Color": "9C000D", + "DarkColor": "3B010A", + "SongMetaId": null, + "SpotifyId": "2MlOUXmcofMackX3bxfSwi", + "DeezerID": 1015793062, + "DeezerURL": "https://www.deezer.com/track/1015793062", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a25a261bbf9aa8eef230d9e3a7c0ccc6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a25a261bbf9aa8eef230d9e3a7c0ccc6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a25a261bbf9aa8eef230d9e3a7c0ccc6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a25a261bbf9aa8eef230d9e3a7c0ccc6/1000x1000-000000-80-0-0.jpg", + "ISRC": "ZA82Y1900130", + "BPM": 0, + "Duration": 342, + "ReleaseDate": "2020-01-24", + "AlbumName": "Jerusalema", + "Explicit": false, + "Rank": 919922, + "Tags": [ + "Dance", + "long", + "year:2020" + ], + "Contributors": [ + { + "id": 15216967, + "name": "Master KG", + "role": "Main" + }, + { + "id": 60344202, + "name": "Nomcebo Zikode", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 549, + "Name": "Jingle Jam (Deck The Halls)", + "Artists": "Beatstar Originals", + "Color": "68A802", + "DarkColor": "487500", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 358, + "Name": "Jolene", + "Artists": "Dolly Parton", + "Color": "B77C4C", + "DarkColor": "764234", + "SongMetaId": null, + "SpotifyId": "2SpEHTbUuebeLkgs9QB7Ue", + "DeezerID": 114422238, + "DeezerURL": "https://www.deezer.com/track/114422238", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d47fc7a27a0d40cc2a8c119ed2bc53b7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d47fc7a27a0d40cc2a8c119ed2bc53b7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d47fc7a27a0d40cc2a8c119ed2bc53b7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d47fc7a27a0d40cc2a8c119ed2bc53b7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRN19600096", + "BPM": 110, + "Duration": 160, + "ReleaseDate": "1974-02-04", + "AlbumName": "Jolene", + "Explicit": false, + "Rank": 858338, + "Tags": [ + "bpm:110", + "medium", + "short", + "year:1974" + ], + "Contributors": [ + { + "id": 8741, + "name": "Dolly Parton", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 70, + "Name": "Judas", + "Artists": "Lady Gaga", + "Color": "98001C", + "DarkColor": "3F0A0E", + "SongMetaId": null, + "SpotifyId": "0QkWikH5Z3U0f79T9iuF6c", + "DeezerID": 11747933, + "DeezerURL": "https://www.deezer.com/track/11747933", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0f256c4bebac58a7c4122e0e639303a8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0f256c4bebac58a7c4122e0e639303a8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0f256c4bebac58a7c4122e0e639303a8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0f256c4bebac58a7c4122e0e639303a8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71104998", + "BPM": 130.8, + "Duration": 249, + "ReleaseDate": "2011-05-23", + "AlbumName": "Born This Way (International Special Edition Version)", + "Explicit": false, + "Rank": 867385, + "Tags": [ + "Pop", + "bpm:130.8", + "fast", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 75491, + "name": "Lady Gaga", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 70, + "Name": "Judas", + "Artists": "Lady Gaga", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "0QkWikH5Z3U0f79T9iuF6c", + "DeezerID": 11747933, + "DeezerURL": "https://www.deezer.com/track/11747933", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0f256c4bebac58a7c4122e0e639303a8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0f256c4bebac58a7c4122e0e639303a8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0f256c4bebac58a7c4122e0e639303a8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0f256c4bebac58a7c4122e0e639303a8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71104998", + "BPM": 130.8, + "Duration": 249, + "ReleaseDate": "2011-05-23", + "AlbumName": "Born This Way (International Special Edition Version)", + "Explicit": false, + "Rank": 867385, + "Tags": [ + "Pop", + "bpm:130.8", + "fast", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 75491, + "name": "Lady Gaga", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 142, + "Name": "Juicy", + "Artists": "Doja Cat, Tyga", + "Color": "E8947B", + "DarkColor": "BF544E", + "SongMetaId": null, + "SpotifyId": "7f5trao56t7sB7f14QDTmp", + "DeezerID": 637121542, + "DeezerURL": "https://www.deezer.com/track/637121542", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fb6e9456cd3c6556e81c90926b1a45fa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fb6e9456cd3c6556e81c90926b1a45fa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fb6e9456cd3c6556e81c90926b1a45fa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fb6e9456cd3c6556e81c90926b1a45fa/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11900150", + "BPM": 170.14, + "Duration": 198, + "ReleaseDate": "2019-03-01", + "AlbumName": "Amala (Deluxe Version)", + "Explicit": true, + "Rank": 631965, + "Tags": [ + "R&B", + "bpm:170.14", + "medium-length", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 5578942, + "name": "Doja Cat", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 337, + "Name": "Just a Girl", + "Artists": "No Doubt", + "Color": "1467A1", + "DarkColor": "00254C", + "SongMetaId": null, + "SpotifyId": "5lWRaa0fBxDE5yU91npPq7", + "DeezerID": 24246271, + "DeezerURL": "https://www.deezer.com/track/24246271", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/97b81fddd1fa280adb7ebc41c5a255e6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/97b81fddd1fa280adb7ebc41c5a255e6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/97b81fddd1fa280adb7ebc41c5a255e6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/97b81fddd1fa280adb7ebc41c5a255e6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR19500272", + "BPM": 107.9, + "Duration": 209, + "ReleaseDate": "2003-11-25", + "AlbumName": "The Singles Collection", + "Explicit": false, + "Rank": 824329, + "Tags": [ + "Pop", + "bpm:107.9", + "medium", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 79, + "name": "No Doubt", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 565, + "Name": "Just Can't Get Enough", + "Artists": "Depeche Mode", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "0qi4b1l0eT3jpzeNHeFXDT", + "DeezerID": 68513610, + "DeezerURL": "https://www.deezer.com/track/68513610", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/55972109f7c4049deb78402a94ee3b7b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/55972109f7c4049deb78402a94ee3b7b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/55972109f7c4049deb78402a94ee3b7b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/55972109f7c4049deb78402a94ee3b7b/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAJH0602196", + "BPM": 128, + "Duration": 220, + "ReleaseDate": "2006-11-08", + "AlbumName": "The Best of Depeche Mode, Vol. 1 (Deluxe)", + "Explicit": false, + "Rank": 823914, + "Tags": [ + "Rock", + "bpm:128", + "fast", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 545, + "name": "Depeche Mode", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 565, + "Name": "Just Can't Get Enough", + "Artists": "Depeche Mode", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "0qi4b1l0eT3jpzeNHeFXDT", + "DeezerID": 68513610, + "DeezerURL": "https://www.deezer.com/track/68513610", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/55972109f7c4049deb78402a94ee3b7b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/55972109f7c4049deb78402a94ee3b7b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/55972109f7c4049deb78402a94ee3b7b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/55972109f7c4049deb78402a94ee3b7b/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAJH0602196", + "BPM": 128, + "Duration": 220, + "ReleaseDate": "2006-11-08", + "AlbumName": "The Best of Depeche Mode, Vol. 1 (Deluxe)", + "Explicit": false, + "Rank": 823914, + "Tags": [ + "Rock", + "bpm:128", + "fast", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 545, + "name": "Depeche Mode", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 50, + "Name": "Just Dance", + "Artists": "Lady Gaga", + "Color": "DE9AA1", + "DarkColor": "A96E78", + "SongMetaId": null, + "SpotifyId": "2x7MyWybabEz6Y6wvHuwGE", + "DeezerID": 4709947, + "DeezerURL": "https://www.deezer.com/track/4709947", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/62f368993ddb68c5364cd03221d07ac6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/62f368993ddb68c5364cd03221d07ac6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/62f368993ddb68c5364cd03221d07ac6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/62f368993ddb68c5364cd03221d07ac6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70807646", + "BPM": 119.1, + "Duration": 244, + "ReleaseDate": "2009-01-01", + "AlbumName": "The Fame Monster (International Deluxe)", + "Explicit": false, + "Rank": 906493, + "Tags": [ + "Pop", + "bpm:119.1", + "medium", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 75491, + "name": "Lady Gaga", + "role": "Main" + }, + { + "id": 75438, + "name": "Colby O'Donis", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 691, + "Name": "Just Like You", + "Artists": "Kelsey Coockson", + "Color": "C47B66", + "DarkColor": "812D23", + "SongMetaId": null, + "SpotifyId": "7rSchsXucMSzeTUHkQDe45", + "DeezerID": 2058014897, + "DeezerURL": "https://www.deezer.com/track/2058014897", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e3f9d14c71cbf28127656852fed5822a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e3f9d14c71cbf28127656852fed5822a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e3f9d14c71cbf28127656852fed5822a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e3f9d14c71cbf28127656852fed5822a/1000x1000-000000-80-0-0.jpg", + "ISRC": "NL1SK2200002", + "BPM": 0, + "Duration": 206, + "ReleaseDate": "2022-12-16", + "AlbumName": "The Me You Knew", + "Explicit": false, + "Rank": 1317, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 61111642, + "name": "Kelsey Coockson", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 691, + "Name": "Just Like You", + "Artists": "Kelsey Coockson", + "Color": "C47B66", + "DarkColor": "812D23", + "SongMetaId": null, + "SpotifyId": "7rSchsXucMSzeTUHkQDe45", + "DeezerID": 2058014897, + "DeezerURL": "https://www.deezer.com/track/2058014897", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e3f9d14c71cbf28127656852fed5822a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e3f9d14c71cbf28127656852fed5822a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e3f9d14c71cbf28127656852fed5822a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e3f9d14c71cbf28127656852fed5822a/1000x1000-000000-80-0-0.jpg", + "ISRC": "NL1SK2200002", + "BPM": 0, + "Duration": 206, + "ReleaseDate": "2022-12-16", + "AlbumName": "The Me You Knew", + "Explicit": false, + "Rank": 1317, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 61111642, + "name": "Kelsey Coockson", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 638, + "Name": "Karma", + "Artists": "Never Back Down", + "Color": "BD9C62", + "DarkColor": "796044", + "SongMetaId": null, + "SpotifyId": "3YKf3y0djvwttHUbKOmNkF", + "DeezerID": 2450154565, + "DeezerURL": "https://www.deezer.com/track/2450154565", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b005ac3d85e0849ff1e0c013ac7bea0b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b005ac3d85e0849ff1e0c013ac7bea0b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b005ac3d85e0849ff1e0c013ac7bea0b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b005ac3d85e0849ff1e0c013ac7bea0b/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZNWW2260542", + "BPM": 0, + "Duration": 196, + "ReleaseDate": "2022-10-07", + "AlbumName": "Downfall", + "Explicit": false, + "Rank": 75303, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 6757865, + "name": "Never Back Down", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 638, + "Name": "Karma", + "Artists": "Never Back Down", + "Color": "BD9C62", + "DarkColor": "796044", + "SongMetaId": null, + "SpotifyId": "3YKf3y0djvwttHUbKOmNkF", + "DeezerID": 2450154565, + "DeezerURL": "https://www.deezer.com/track/2450154565", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b005ac3d85e0849ff1e0c013ac7bea0b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b005ac3d85e0849ff1e0c013ac7bea0b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b005ac3d85e0849ff1e0c013ac7bea0b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b005ac3d85e0849ff1e0c013ac7bea0b/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZNWW2260542", + "BPM": 0, + "Duration": 196, + "ReleaseDate": "2022-10-07", + "AlbumName": "Downfall", + "Explicit": false, + "Rank": 75303, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 6757865, + "name": "Never Back Down", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 597, + "Name": "Kill Bill", + "Artists": "SZA", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "3OHfY25tqY28d16oZczHc8", + "DeezerID": 2055292027, + "DeezerURL": "https://www.deezer.com/track/2055292027", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC12204584", + "BPM": 0, + "Duration": 153, + "ReleaseDate": "2022-12-09", + "AlbumName": "SOS", + "Explicit": false, + "Rank": 877508, + "Tags": [ + "R&B", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 5531258, + "name": "SZA", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 597, + "Name": "Kill Bill", + "Artists": "SZA", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "3OHfY25tqY28d16oZczHc8", + "DeezerID": 2055292027, + "DeezerURL": "https://www.deezer.com/track/2055292027", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC12204584", + "BPM": 0, + "Duration": 153, + "ReleaseDate": "2022-12-09", + "AlbumName": "SOS", + "Explicit": false, + "Rank": 877508, + "Tags": [ + "R&B", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 5531258, + "name": "SZA", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 61, + "Name": "Kill V. Maim", + "Artists": "Grimes", + "Color": "2D9FCE", + "DarkColor": "222F6A", + "SongMetaId": null, + "SpotifyId": "3WXhshrs1fzwF3rQE399Gq", + "DeezerID": 138546547, + "DeezerURL": "https://www.deezer.com/track/138546547", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6a7fbeeb7632c81774d13d2bd0cc0f0b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6a7fbeeb7632c81774d13d2bd0cc0f0b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6a7fbeeb7632c81774d13d2bd0cc0f0b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6a7fbeeb7632c81774d13d2bd0cc0f0b/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAFL1500150", + "BPM": 0, + "Duration": 246, + "ReleaseDate": "2015-11-06", + "AlbumName": "Art Angels", + "Explicit": false, + "Rank": 499439, + "Tags": [ + "Electro", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 807493, + "name": "Grimes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 61, + "Name": "Kill V. Maim", + "Artists": "Grimes", + "Color": "2D9FCE", + "DarkColor": "222F6A", + "SongMetaId": null, + "SpotifyId": "3WXhshrs1fzwF3rQE399Gq", + "DeezerID": 138546547, + "DeezerURL": "https://www.deezer.com/track/138546547", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6a7fbeeb7632c81774d13d2bd0cc0f0b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6a7fbeeb7632c81774d13d2bd0cc0f0b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6a7fbeeb7632c81774d13d2bd0cc0f0b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6a7fbeeb7632c81774d13d2bd0cc0f0b/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAFL1500150", + "BPM": 0, + "Duration": 246, + "ReleaseDate": "2015-11-06", + "AlbumName": "Art Angels", + "Explicit": false, + "Rank": 499439, + "Tags": [ + "Electro", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 807493, + "name": "Grimes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 255, + "Name": "King", + "Artists": "Years & Years", + "Color": "8CDB68", + "DarkColor": "2C9969", + "SongMetaId": null, + "SpotifyId": "3AeicLnm55RqcXGBKYQolM", + "DeezerID": 120307594, + "DeezerURL": "https://www.deezer.com/track/120307594", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c40aaac2fb76f4b95a8623aa460f59c5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c40aaac2fb76f4b95a8623aa460f59c5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c40aaac2fb76f4b95a8623aa460f59c5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c40aaac2fb76f4b95a8623aa460f59c5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71406892", + "BPM": 119.84, + "Duration": 213, + "ReleaseDate": "2016-03-04", + "AlbumName": "Communion (Deluxe)", + "Explicit": false, + "Rank": 857850, + "Tags": [ + "Pop", + "bpm:119.84", + "medium", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 4023815, + "name": "Olly Alexander (Years & Years)", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 667, + "Name": "Kiss from a Rose", + "Artists": "Seal", + "Color": "F1A9C9", + "DarkColor": "8C4564", + "SongMetaId": null, + "SpotifyId": "3YKptz29AsOlm7WAVnztBh", + "DeezerID": 4688230, + "DeezerURL": "https://www.deezer.com/track/4688230", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4a3e132b6f72670141257286a4a63c5c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4a3e132b6f72670141257286a4a63c5c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4a3e132b6f72670141257286a4a63c5c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4a3e132b6f72670141257286a4a63c5c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB10904559", + "BPM": 131.7, + "Duration": 288, + "ReleaseDate": "2009-11-27", + "AlbumName": "Hits", + "Explicit": false, + "Rank": 651730, + "Tags": [ + "Pop", + "bpm:131.7", + "fast", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 1444, + "name": "Seal", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 667, + "Name": "Kiss from a Rose", + "Artists": "Seal", + "Color": "F1A9C9", + "DarkColor": "8C4564", + "SongMetaId": null, + "SpotifyId": "3YKptz29AsOlm7WAVnztBh", + "DeezerID": 4688230, + "DeezerURL": "https://www.deezer.com/track/4688230", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4a3e132b6f72670141257286a4a63c5c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4a3e132b6f72670141257286a4a63c5c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4a3e132b6f72670141257286a4a63c5c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4a3e132b6f72670141257286a4a63c5c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB10904559", + "BPM": 131.7, + "Duration": 288, + "ReleaseDate": "2009-11-27", + "AlbumName": "Hits", + "Explicit": false, + "Rank": 651730, + "Tags": [ + "Pop", + "bpm:131.7", + "fast", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 1444, + "name": "Seal", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 775, + "Name": "Korobeiniki", + "Artists": "Nikolai Nekrasov", + "Color": "EB8D69", + "DarkColor": "C27557", + "SongMetaId": null, + "SpotifyId": "5n99KxLUUkCh5A7CXjepAt", + "DeezerID": 2792707822, + "DeezerURL": "https://www.deezer.com/track/2792707822", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/770b906b8c2e1745963aa8adaba59bd7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/770b906b8c2e1745963aa8adaba59bd7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/770b906b8c2e1745963aa8adaba59bd7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/770b906b8c2e1745963aa8adaba59bd7/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCKG1100382", + "BPM": 168.1, + "Duration": 202, + "ReleaseDate": "2012-02-07", + "AlbumName": "Russia's Most Beautiful Tunes: The Stars of St. Petersburg", + "Explicit": false, + "Rank": 215609, + "Tags": [ + "bpm:168.1", + "medium-length", + "very-fast", + "year:2012" + ], + "Contributors": [ + { + "id": 1617859, + "name": "Stars of St. Petersburg", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 283, + "Name": "Kryptonite", + "Artists": "3 Doors Down", + "Color": "7D6F4A", + "DarkColor": "5B430F", + "SongMetaId": null, + "SpotifyId": "6ZOBP3NvffbU4SZcrnt1k6", + "DeezerID": 2511224, + "DeezerURL": "https://www.deezer.com/track/2511224", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e075197e5985cd4269f829f1ea217cad/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e075197e5985cd4269f829f1ea217cad/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e075197e5985cd4269f829f1ea217cad/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e075197e5985cd4269f829f1ea217cad/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUR19980187", + "BPM": 98.91, + "Duration": 234, + "ReleaseDate": "2000-05-26", + "AlbumName": "The Better Life", + "Explicit": false, + "Rank": 783717, + "Tags": [ + "Pop", + "bpm:98.91", + "medium", + "medium-length", + "year:2000" + ], + "Contributors": [ + { + "id": 340, + "name": "3 Doors Down", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 251, + "Name": "Lalala", + "Artists": "Y2K, bbno$", + "Color": "F5537A", + "DarkColor": "C03152", + "SongMetaId": null, + "SpotifyId": "51Fjme0JiitpyXKuyQiCDo", + "DeezerID": 703842302, + "DeezerURL": "https://www.deezer.com/track/703842302", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/57f9e0aa71f8831dc2150fa8e281496f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/57f9e0aa71f8831dc2150fa8e281496f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/57f9e0aa71f8831dc2150fa8e281496f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/57f9e0aa71f8831dc2150fa8e281496f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM11904230", + "BPM": 0, + "Duration": 161, + "ReleaseDate": "2025-01-11", + "AlbumName": "Lalala", + "Explicit": true, + "Rank": 785214, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2025" + ], + "Contributors": [ + { + "id": 999832, + "name": "Y2K", + "role": "Main" + }, + { + "id": 11136812, + "name": "Bbno$", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 251, + "Name": "Lalala", + "Artists": "Y2K, bbno$", + "Color": "F5537A", + "DarkColor": "C03152", + "SongMetaId": null, + "SpotifyId": "51Fjme0JiitpyXKuyQiCDo", + "DeezerID": 703842302, + "DeezerURL": "https://www.deezer.com/track/703842302", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/57f9e0aa71f8831dc2150fa8e281496f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/57f9e0aa71f8831dc2150fa8e281496f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/57f9e0aa71f8831dc2150fa8e281496f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/57f9e0aa71f8831dc2150fa8e281496f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM11904230", + "BPM": 0, + "Duration": 161, + "ReleaseDate": "2025-01-11", + "AlbumName": "Lalala", + "Explicit": true, + "Rank": 785214, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2025" + ], + "Contributors": [ + { + "id": 999832, + "name": "Y2K", + "role": "Main" + }, + { + "id": 11136812, + "name": "Bbno$", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 443, + "Name": "Last Night", + "Artists": "Morgan Wallen", + "Color": "E6BF85", + "DarkColor": "90633A", + "SongMetaId": null, + "SpotifyId": "59uQI0PADDKeE6UZDTJEe8", + "DeezerID": 2130543897, + "DeezerURL": "https://www.deezer.com/track/2130543897", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8d78b845f9d4e20ab5acd8238d85d84e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8d78b845f9d4e20ab5acd8238d85d84e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8d78b845f9d4e20ab5acd8238d85d84e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8d78b845f9d4e20ab5acd8238d85d84e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12300802", + "BPM": 0, + "Duration": 163, + "ReleaseDate": "2023-01-31", + "AlbumName": "3 Songs At A Time Sampler", + "Explicit": true, + "Rank": 648097, + "Tags": [ + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 7188840, + "name": "Morgan Wallen", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 223, + "Name": "Last Resort", + "Artists": "Papa Roach", + "Color": "D33643", + "DarkColor": "7F1436", + "SongMetaId": null, + "SpotifyId": "5W8YXBz9MTIDyrpYaCg2Ky", + "DeezerID": 6435662, + "DeezerURL": "https://www.deezer.com/track/6435662", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/70328b4823ca8bd1975a04c2c21327d7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/70328b4823ca8bd1975a04c2c21327d7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/70328b4823ca8bd1975a04c2c21327d7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/70328b4823ca8bd1975a04c2c21327d7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDW10021712", + "BPM": 90.5, + "Duration": 199, + "ReleaseDate": "2010-06-29", + "AlbumName": "To Be Loved: The Best Of Papa Roach (Explicit Version)", + "Explicit": true, + "Rank": 835510, + "Tags": [ + "Rock", + "bpm:90.5", + "medium", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 89, + "name": "Papa Roach", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 223, + "Name": "Last Resort", + "Artists": "Papa Roach", + "Color": "EB8D69", + "DarkColor": "B96E51", + "SongMetaId": null, + "SpotifyId": "5W8YXBz9MTIDyrpYaCg2Ky", + "DeezerID": 6435662, + "DeezerURL": "https://www.deezer.com/track/6435662", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/70328b4823ca8bd1975a04c2c21327d7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/70328b4823ca8bd1975a04c2c21327d7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/70328b4823ca8bd1975a04c2c21327d7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/70328b4823ca8bd1975a04c2c21327d7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDW10021712", + "BPM": 90.5, + "Duration": 199, + "ReleaseDate": "2010-06-29", + "AlbumName": "To Be Loved: The Best Of Papa Roach (Explicit Version)", + "Explicit": true, + "Rank": 835510, + "Tags": [ + "Rock", + "bpm:90.5", + "medium", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 89, + "name": "Papa Roach", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 9, + "Name": "Latch", + "Artists": "Disclosure, Sam Smith", + "Color": "682A38", + "DarkColor": "321518", + "SongMetaId": null, + "SpotifyId": "1DunhgeZSEgWiIYbHqXl0c", + "DeezerID": 75526535, + "DeezerURL": "https://www.deezer.com/track/75526535", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e44468007c45f2523d056a0b19eed80a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e44468007c45f2523d056a0b19eed80a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e44468007c45f2523d056a0b19eed80a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e44468007c45f2523d056a0b19eed80a/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71302810", + "BPM": 122, + "Duration": 257, + "ReleaseDate": "2014-01-01", + "AlbumName": "Settle (Special Edition)", + "Explicit": false, + "Rank": 846705, + "Tags": [ + "Electro", + "bpm:122", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 409796, + "name": "Disclosure", + "role": "Main" + }, + { + "id": 1097709, + "name": "Sam Smith", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 9, + "Name": "Latch", + "Artists": "Disclosure, Sam Smith", + "Color": "682A38", + "DarkColor": "321518", + "SongMetaId": null, + "SpotifyId": "1DunhgeZSEgWiIYbHqXl0c", + "DeezerID": 75526535, + "DeezerURL": "https://www.deezer.com/track/75526535", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e44468007c45f2523d056a0b19eed80a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e44468007c45f2523d056a0b19eed80a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e44468007c45f2523d056a0b19eed80a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e44468007c45f2523d056a0b19eed80a/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71302810", + "BPM": 122, + "Duration": 257, + "ReleaseDate": "2014-01-01", + "AlbumName": "Settle (Special Edition)", + "Explicit": false, + "Rank": 846705, + "Tags": [ + "Electro", + "bpm:122", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 409796, + "name": "Disclosure", + "role": "Main" + }, + { + "id": 1097709, + "name": "Sam Smith", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 427, + "Name": "Late Night Talking", + "Artists": "Harry Styles", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "1qEmFfgcLObUfQm0j1W2CK", + "DeezerID": 1756569577, + "DeezerURL": "https://www.deezer.com/track/1756569577", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b0e936124f59e669ddba02ebe5893f95/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b0e936124f59e669ddba02ebe5893f95/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b0e936124f59e669ddba02ebe5893f95/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b0e936124f59e669ddba02ebe5893f95/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12200610", + "BPM": 0, + "Duration": 177, + "ReleaseDate": "2022-05-20", + "AlbumName": "Harry's House", + "Explicit": false, + "Rank": 866137, + "Tags": [ + "Pop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 5313805, + "name": "Harry Styles", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 427, + "Name": "Late Night Talking", + "Artists": "Harry Styles", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "1qEmFfgcLObUfQm0j1W2CK", + "DeezerID": 1756569577, + "DeezerURL": "https://www.deezer.com/track/1756569577", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b0e936124f59e669ddba02ebe5893f95/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b0e936124f59e669ddba02ebe5893f95/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b0e936124f59e669ddba02ebe5893f95/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b0e936124f59e669ddba02ebe5893f95/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12200610", + "BPM": 0, + "Duration": 177, + "ReleaseDate": "2022-05-20", + "AlbumName": "Harry's House", + "Explicit": false, + "Rank": 866137, + "Tags": [ + "Pop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 5313805, + "name": "Harry Styles", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 604, + "Name": "Lay Low", + "Artists": "Tiesto", + "Color": "AD2429", + "DarkColor": "6E0C00", + "SongMetaId": null, + "SpotifyId": "3IhM5Mber8KA0NaRNpK2px", + "DeezerID": 2048795977, + "DeezerURL": "https://www.deezer.com/track/2048795977", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/12171e10c47d0f8caa6b54c4135d9762/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/12171e10c47d0f8caa6b54c4135d9762/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/12171e10c47d0f8caa6b54c4135d9762/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/12171e10c47d0f8caa6b54c4135d9762/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLZ542202348", + "BPM": 0, + "Duration": 153, + "ReleaseDate": "2023-01-06", + "AlbumName": "Lay Low", + "Explicit": false, + "Rank": 784862, + "Tags": [ + "Dance", + "Trance", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 434, + "name": "Tiësto", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Trance" + ] + }, + { + "SongId": 604, + "Name": "Lay Low", + "Artists": "Tiesto", + "Color": "AC0620", + "DarkColor": "5A0001", + "SongMetaId": null, + "SpotifyId": "3IhM5Mber8KA0NaRNpK2px", + "DeezerID": 2048795977, + "DeezerURL": "https://www.deezer.com/track/2048795977", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/12171e10c47d0f8caa6b54c4135d9762/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/12171e10c47d0f8caa6b54c4135d9762/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/12171e10c47d0f8caa6b54c4135d9762/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/12171e10c47d0f8caa6b54c4135d9762/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLZ542202348", + "BPM": 0, + "Duration": 153, + "ReleaseDate": "2023-01-06", + "AlbumName": "Lay Low", + "Explicit": false, + "Rank": 784862, + "Tags": [ + "Dance", + "Trance", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 434, + "name": "Tiësto", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Trance" + ] + }, + { + "SongId": 239, + "Name": "Leave A Trace", + "Artists": "CHVRCHES", + "Color": "DB789A", + "DarkColor": "B03E77", + "SongMetaId": null, + "SpotifyId": "5HTBPhN9b2GMp5YXAGV6lT", + "DeezerID": 3025869571, + "DeezerURL": "https://www.deezer.com/track/3025869571", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d412dc0db509ae7b4b8fa86b28f8f1b3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d412dc0db509ae7b4b8fa86b28f8f1b3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d412dc0db509ae7b4b8fa86b28f8f1b3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d412dc0db509ae7b4b8fa86b28f8f1b3/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBZN81500001", + "BPM": 0, + "Duration": 237, + "ReleaseDate": "2019-02-01", + "AlbumName": "Every Open Eye (Special Edition)", + "Explicit": false, + "Rank": 287882, + "Tags": [ + "Alternativo", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 4052518, + "name": "CHVRCHES", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 484, + "Name": "Leave Me Alone", + "Artists": "Flipp Dinero", + "Color": "F0931E", + "DarkColor": "7C3B13", + "SongMetaId": null, + "SpotifyId": "6V7g6qM8wheMivMWrzbPTM", + "DeezerID": 550291942, + "DeezerURL": "https://www.deezer.com/track/550291942", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7f4298fa03ae58e593b99b0202008613/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7f4298fa03ae58e593b99b0202008613/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7f4298fa03ae58e593b99b0202008613/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7f4298fa03ae58e593b99b0202008613/1000x1000-000000-80-0-0.jpg", + "ISRC": "QMKSC1800039", + "BPM": 149.8, + "Duration": 196, + "ReleaseDate": "2018-09-04", + "AlbumName": "Leave Me Alone", + "Explicit": true, + "Rank": 622188, + "Tags": [ + "R&B", + "Rap/Hip Hop", + "bpm:149.8", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 11711231, + "name": "Flipp Dinero", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "R&B" + ] + }, + { + "SongId": 484, + "Name": "Leave Me Alone", + "Artists": "Flipp Dinero", + "Color": "F0931E", + "DarkColor": "7C3B13", + "SongMetaId": null, + "SpotifyId": "6V7g6qM8wheMivMWrzbPTM", + "DeezerID": 550291942, + "DeezerURL": "https://www.deezer.com/track/550291942", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7f4298fa03ae58e593b99b0202008613/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7f4298fa03ae58e593b99b0202008613/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7f4298fa03ae58e593b99b0202008613/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7f4298fa03ae58e593b99b0202008613/1000x1000-000000-80-0-0.jpg", + "ISRC": "QMKSC1800039", + "BPM": 149.8, + "Duration": 196, + "ReleaseDate": "2018-09-04", + "AlbumName": "Leave Me Alone", + "Explicit": true, + "Rank": 622188, + "Tags": [ + "R&B", + "Rap/Hip Hop", + "bpm:149.8", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 11711231, + "name": "Flipp Dinero", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "R&B" + ] + }, + { + "SongId": 275, + "Name": "Left and Right", + "Artists": "Charlie Puth, Jung Kook of BTS", + "Color": "FA0089", + "DarkColor": "AD005E", + "SongMetaId": null, + "SpotifyId": "5Odq8ohlgIbQKMZivbWkEo", + "DeezerID": 1795254937, + "DeezerURL": "https://www.deezer.com/track/1795254937", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/35a4d0f2d14ee902dfab94e04a817303/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/35a4d0f2d14ee902dfab94e04a817303/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/35a4d0f2d14ee902dfab94e04a817303/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/35a4d0f2d14ee902dfab94e04a817303/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT22207717", + "BPM": 0, + "Duration": 154, + "ReleaseDate": "2022-06-24", + "AlbumName": "Left and Right (Feat. Jung Kook of BTS)", + "Explicit": false, + "Rank": 705244, + "Tags": [ + "Pop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 1362735, + "name": "Charlie Puth", + "role": "Main" + }, + { + "id": 9172904, + "name": "Jungkook", + "role": "Main" + }, + { + "id": 6982223, + "name": "BTS", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 410, + "Name": "Let Me Love You", + "Artists": "Mario", + "Color": "2291BC", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "3ibKnFDaa3GhpPGlOUj7ff", + "DeezerID": 597166, + "DeezerURL": "https://www.deezer.com/track/597166", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4b0c634703838fa3e7caac51fcf1940d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4b0c634703838fa3e7caac51fcf1940d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4b0c634703838fa3e7caac51fcf1940d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4b0c634703838fa3e7caac51fcf1940d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJAY0400348", + "BPM": 94.4, + "Duration": 249, + "ReleaseDate": "2004-12-07", + "AlbumName": "Turning Point", + "Explicit": false, + "Rank": 823599, + "Tags": [ + "R&B", + "bpm:94.4", + "medium", + "medium-length", + "year:2004" + ], + "Contributors": [ + { + "id": 465, + "name": "Mario", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 410, + "Name": "Let Me Love You", + "Artists": "Mario", + "Color": "2291BC", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "3ibKnFDaa3GhpPGlOUj7ff", + "DeezerID": 597166, + "DeezerURL": "https://www.deezer.com/track/597166", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4b0c634703838fa3e7caac51fcf1940d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4b0c634703838fa3e7caac51fcf1940d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4b0c634703838fa3e7caac51fcf1940d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4b0c634703838fa3e7caac51fcf1940d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJAY0400348", + "BPM": 94.4, + "Duration": 249, + "ReleaseDate": "2004-12-07", + "AlbumName": "Turning Point", + "Explicit": false, + "Rank": 823599, + "Tags": [ + "R&B", + "bpm:94.4", + "medium", + "medium-length", + "year:2004" + ], + "Contributors": [ + { + "id": 465, + "name": "Mario", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 620, + "Name": "Let UwU Go ", + "Artists": "Panteros 666", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "3QSBy7qDcKaBCCLxNCvSRe", + "DeezerID": 2498245291, + "DeezerURL": "https://www.deezer.com/track/2498245291", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ccf98d563f729f7e856883795e574dcc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ccf98d563f729f7e856883795e574dcc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ccf98d563f729f7e856883795e574dcc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ccf98d563f729f7e856883795e574dcc/1000x1000-000000-80-0-0.jpg", + "ISRC": "NL8RL2328192", + "BPM": 0, + "Duration": 175, + "ReleaseDate": "2023-11-17", + "AlbumName": "Let UwU Go", + "Explicit": false, + "Rank": 304188, + "Tags": [ + "Dance", + "Electro", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 1028124, + "name": "Panteros666", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 620, + "Name": "Let UwU Go ", + "Artists": "Panteros 666", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "3QSBy7qDcKaBCCLxNCvSRe", + "DeezerID": 2498245291, + "DeezerURL": "https://www.deezer.com/track/2498245291", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ccf98d563f729f7e856883795e574dcc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ccf98d563f729f7e856883795e574dcc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ccf98d563f729f7e856883795e574dcc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ccf98d563f729f7e856883795e574dcc/1000x1000-000000-80-0-0.jpg", + "ISRC": "NL8RL2328192", + "BPM": 0, + "Duration": 175, + "ReleaseDate": "2023-11-17", + "AlbumName": "Let UwU Go", + "Explicit": false, + "Rank": 304188, + "Tags": [ + "Dance", + "Electro", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 1028124, + "name": "Panteros666", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 558, + "Name": "Let You Love Me", + "Artists": "Rita Ora", + "Color": "B58C9C", + "DarkColor": "936D7C", + "SongMetaId": null, + "SpotifyId": "5Fla3zyOCcIRqrDoKLU0DP", + "DeezerID": 556352852, + "DeezerURL": "https://www.deezer.com/track/556352852", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/78b27cf165dc6e52424ef13994dafa30/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/78b27cf165dc6e52424ef13994dafa30/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/78b27cf165dc6e52424ef13994dafa30/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/78b27cf165dc6e52424ef13994dafa30/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS1800674", + "BPM": 95.93, + "Duration": 190, + "ReleaseDate": "2018-09-21", + "AlbumName": "Let You Love Me", + "Explicit": false, + "Rank": 666474, + "Tags": [ + "Pop", + "bpm:95.93", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 1678249, + "name": "Rita Ora", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 558, + "Name": "Let You Love Me", + "Artists": "Rita Ora", + "Color": "B58C9C", + "DarkColor": "936D7C", + "SongMetaId": null, + "SpotifyId": "5Fla3zyOCcIRqrDoKLU0DP", + "DeezerID": 556352852, + "DeezerURL": "https://www.deezer.com/track/556352852", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/78b27cf165dc6e52424ef13994dafa30/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/78b27cf165dc6e52424ef13994dafa30/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/78b27cf165dc6e52424ef13994dafa30/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/78b27cf165dc6e52424ef13994dafa30/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS1800674", + "BPM": 95.93, + "Duration": 190, + "ReleaseDate": "2018-09-21", + "AlbumName": "Let You Love Me", + "Explicit": false, + "Rank": 666474, + "Tags": [ + "Pop", + "bpm:95.93", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 1678249, + "name": "Rita Ora", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 603, + "Name": "Let's Play", + "Artists": "MADZI", + "Color": "682A38", + "DarkColor": "321518", + "SongMetaId": null, + "SpotifyId": "4XoTO4jKYPdvGyfj0cUqVP", + "DeezerID": 2124217047, + "DeezerURL": "https://www.deezer.com/track/2124217047", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/03bca6c69d8402fd0e506114266a266c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/03bca6c69d8402fd0e506114266a266c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/03bca6c69d8402fd0e506114266a266c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/03bca6c69d8402fd0e506114266a266c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD2310021", + "BPM": 0, + "Duration": 152, + "ReleaseDate": "2023-03-03", + "AlbumName": "Let's Play", + "Explicit": false, + "Rank": 119801, + "Tags": [ + "Electro", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 140955992, + "name": "MADZI", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 603, + "Name": "Let's Play", + "Artists": "MADZI", + "Color": "682A38", + "DarkColor": "321518", + "SongMetaId": null, + "SpotifyId": "4XoTO4jKYPdvGyfj0cUqVP", + "DeezerID": 2124217047, + "DeezerURL": "https://www.deezer.com/track/2124217047", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/03bca6c69d8402fd0e506114266a266c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/03bca6c69d8402fd0e506114266a266c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/03bca6c69d8402fd0e506114266a266c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/03bca6c69d8402fd0e506114266a266c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD2310021", + "BPM": 0, + "Duration": 152, + "ReleaseDate": "2023-03-03", + "AlbumName": "Let's Play", + "Explicit": false, + "Rank": 119801, + "Tags": [ + "Electro", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 140955992, + "name": "MADZI", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 391, + "Name": "Level Up!", + "Artists": "Beatstar Originals", + "Color": "A74BB8", + "DarkColor": "321779", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 100, + "Name": "Levels", + "Artists": "Avicii", + "Color": "FFA90A", + "DarkColor": "E66F1D", + "SongMetaId": null, + "SpotifyId": "5UqCQaDshqbIk3pkhy4Pjg", + "DeezerID": 14383880, + "DeezerURL": "https://www.deezer.com/track/14383880", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/30bc3d8c348ddddb00c44f28d3120ac5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/30bc3d8c348ddddb00c44f28d3120ac5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/30bc3d8c348ddddb00c44f28d3120ac5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/30bc3d8c348ddddb00c44f28d3120ac5/1000x1000-000000-80-0-0.jpg", + "ISRC": "SEUM71100962", + "BPM": 126, + "Duration": 199, + "ReleaseDate": "2011-10-31", + "AlbumName": "Levels", + "Explicit": false, + "Rank": 893824, + "Tags": [ + "Dance", + "bpm:126", + "fast", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 293585, + "name": "Avicii", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 100, + "Name": "Levels", + "Artists": "Avicii", + "Color": "DDB83D", + "DarkColor": "AA8C29", + "SongMetaId": null, + "SpotifyId": "5UqCQaDshqbIk3pkhy4Pjg", + "DeezerID": 14383880, + "DeezerURL": "https://www.deezer.com/track/14383880", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/30bc3d8c348ddddb00c44f28d3120ac5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/30bc3d8c348ddddb00c44f28d3120ac5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/30bc3d8c348ddddb00c44f28d3120ac5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/30bc3d8c348ddddb00c44f28d3120ac5/1000x1000-000000-80-0-0.jpg", + "ISRC": "SEUM71100962", + "BPM": 126, + "Duration": 199, + "ReleaseDate": "2011-10-31", + "AlbumName": "Levels", + "Explicit": false, + "Rank": 893824, + "Tags": [ + "Dance", + "bpm:126", + "fast", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 293585, + "name": "Avicii", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 350, + "Name": "Light Switch", + "Artists": "Charlie Puth", + "Color": "DA9770", + "DarkColor": "541B14", + "SongMetaId": null, + "SpotifyId": "1jEBSDN5vYViJQr78W7jr2", + "DeezerID": 1622528782, + "DeezerURL": "https://www.deezer.com/track/1622528782", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d632fc9cfbfc294984bdecf0dc6f9d16/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d632fc9cfbfc294984bdecf0dc6f9d16/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d632fc9cfbfc294984bdecf0dc6f9d16/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d632fc9cfbfc294984bdecf0dc6f9d16/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT22107359", + "BPM": 0, + "Duration": 185, + "ReleaseDate": "2022-01-20", + "AlbumName": "Light Switch", + "Explicit": false, + "Rank": 712687, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 1362735, + "name": "Charlie Puth", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 48, + "Name": "Lithium", + "Artists": "Nirvana", + "Color": "0097C1", + "DarkColor": "005E98", + "SongMetaId": null, + "SpotifyId": "2YodwKJnbPyNKe8XXSE9V7", + "DeezerID": 13791934, + "DeezerURL": "https://www.deezer.com/track/13791934", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f0282817b697279e56df13909962a54a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f0282817b697279e56df13909962a54a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f0282817b697279e56df13909962a54a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f0282817b697279e56df13909962a54a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USGF19942505", + "BPM": 123, + "Duration": 255, + "ReleaseDate": "2011-09-23", + "AlbumName": "Nevermind (Remastered)", + "Explicit": false, + "Rank": 858497, + "Tags": [ + "Rock", + "bpm:123", + "fast", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 415, + "name": "Nirvana", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 6, + "Name": "Little Talks", + "Artists": "Of Monsters and Men", + "Color": "D89FAD", + "DarkColor": "8C4557", + "SongMetaId": null, + "SpotifyId": "2ihCaVdNZmnHZWt0fvAM7B", + "DeezerID": 17615568, + "DeezerURL": "https://www.deezer.com/track/17615568", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fd269461cb1125e4d74abfc21ba39e6e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fd269461cb1125e4d74abfc21ba39e6e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fd269461cb1125e4d74abfc21ba39e6e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fd269461cb1125e4d74abfc21ba39e6e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71119106", + "BPM": 0, + "Duration": 266, + "ReleaseDate": "2012-04-03", + "AlbumName": "My Head Is An Animal", + "Explicit": false, + "Rank": 799066, + "Tags": [ + "Alternativo", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 1581786, + "name": "Of Monsters And Men", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 6, + "Name": "Little Talks", + "Artists": "Of Monsters and Men", + "Color": "D89FAD", + "DarkColor": "8C4557", + "SongMetaId": null, + "SpotifyId": "2ihCaVdNZmnHZWt0fvAM7B", + "DeezerID": 17615568, + "DeezerURL": "https://www.deezer.com/track/17615568", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fd269461cb1125e4d74abfc21ba39e6e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fd269461cb1125e4d74abfc21ba39e6e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fd269461cb1125e4d74abfc21ba39e6e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fd269461cb1125e4d74abfc21ba39e6e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71119106", + "BPM": 0, + "Duration": 266, + "ReleaseDate": "2012-04-03", + "AlbumName": "My Head Is An Animal", + "Explicit": false, + "Rank": 799066, + "Tags": [ + "Alternativo", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 1581786, + "name": "Of Monsters And Men", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 148, + "Name": "Livin' On A Prayer", + "Artists": "Bon Jovi", + "Color": "E6333A", + "DarkColor": "81051D", + "SongMetaId": null, + "SpotifyId": "37ZJ0p5Jm13JPevGcx4SkF", + "DeezerID": 538660022, + "DeezerURL": "https://www.deezer.com/track/538660022", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1f0365311a9d03c267f175e0ef79f40c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1f0365311a9d03c267f175e0ef79f40c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1f0365311a9d03c267f175e0ef79f40c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1f0365311a9d03c267f175e0ef79f40c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPR38619998", + "BPM": 122.32, + "Duration": 249, + "ReleaseDate": "1998-09-21", + "AlbumName": "Slippery When Wet", + "Explicit": false, + "Rank": 965445, + "Tags": [ + "Rock", + "bpm:122.32", + "fast", + "medium-length", + "year:1998" + ], + "Contributors": [ + { + "id": 637, + "name": "Bon Jovi", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 148, + "Name": "Livin' On A Prayer", + "Artists": "Bon Jovi", + "Color": "E6333A", + "DarkColor": "81051D", + "SongMetaId": null, + "SpotifyId": "37ZJ0p5Jm13JPevGcx4SkF", + "DeezerID": 538660022, + "DeezerURL": "https://www.deezer.com/track/538660022", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1f0365311a9d03c267f175e0ef79f40c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1f0365311a9d03c267f175e0ef79f40c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1f0365311a9d03c267f175e0ef79f40c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1f0365311a9d03c267f175e0ef79f40c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPR38619998", + "BPM": 122.32, + "Duration": 249, + "ReleaseDate": "1998-09-21", + "AlbumName": "Slippery When Wet", + "Explicit": false, + "Rank": 965445, + "Tags": [ + "Rock", + "bpm:122.32", + "fast", + "medium-length", + "year:1998" + ], + "Contributors": [ + { + "id": 637, + "name": "Bon Jovi", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 624, + "Name": "London Is Lonely", + "Artists": "Holly Humberstone", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "5dXiKFepHXZktud7z5635H", + "DeezerID": 1620889952, + "DeezerURL": "https://www.deezer.com/track/1620889952", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dade9d72886440ae7dba35a7666b6c81/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dade9d72886440ae7dba35a7666b6c81/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dade9d72886440ae7dba35a7666b6c81/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dade9d72886440ae7dba35a7666b6c81/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM72109008", + "BPM": 0, + "Duration": 234, + "ReleaseDate": "2022-01-20", + "AlbumName": "London Is Lonely", + "Explicit": false, + "Rank": 296221, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 83527112, + "name": "Holly Humberstone", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 624, + "Name": "London Is Lonely", + "Artists": "Holly Humberstone", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "5dXiKFepHXZktud7z5635H", + "DeezerID": 1620889952, + "DeezerURL": "https://www.deezer.com/track/1620889952", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dade9d72886440ae7dba35a7666b6c81/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dade9d72886440ae7dba35a7666b6c81/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dade9d72886440ae7dba35a7666b6c81/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dade9d72886440ae7dba35a7666b6c81/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM72109008", + "BPM": 0, + "Duration": 234, + "ReleaseDate": "2022-01-20", + "AlbumName": "London Is Lonely", + "Explicit": false, + "Rank": 296221, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 83527112, + "name": "Holly Humberstone", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 651, + "Name": "Lose Control ", + "Artists": "Teddy Swims", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "17phhZDn6oGtzMe56NuWvj", + "DeezerID": 2951450831, + "DeezerURL": "https://www.deezer.com/track/2951450831", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2b9b889985f5317d343285dcbbf1fda2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2b9b889985f5317d343285dcbbf1fda2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2b9b889985f5317d343285dcbbf1fda2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2b9b889985f5317d343285dcbbf1fda2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB12403638", + "BPM": 0, + "Duration": 210, + "ReleaseDate": "2024-08-23", + "AlbumName": "Lose Control (The Village Sessions)", + "Explicit": false, + "Rank": 909364, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 64927672, + "name": "Teddy Swims", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 651, + "Name": "Lose Control ", + "Artists": "Teddy Swims", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "17phhZDn6oGtzMe56NuWvj", + "DeezerID": 2951450831, + "DeezerURL": "https://www.deezer.com/track/2951450831", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2b9b889985f5317d343285dcbbf1fda2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2b9b889985f5317d343285dcbbf1fda2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2b9b889985f5317d343285dcbbf1fda2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2b9b889985f5317d343285dcbbf1fda2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB12403638", + "BPM": 0, + "Duration": 210, + "ReleaseDate": "2024-08-23", + "AlbumName": "Lose Control (The Village Sessions)", + "Explicit": false, + "Rank": 909364, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 64927672, + "name": "Teddy Swims", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 670, + "Name": "Losing My Religion", + "Artists": "R.E.M.", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "31AOj9sFz2gM0O3hMARRBx", + "DeezerID": 136334560, + "DeezerURL": "https://www.deezer.com/track/136334560", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a968ed3814acb2ef8f3929b1bebcb42d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a968ed3814acb2ef8f3929b1bebcb42d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a968ed3814acb2ef8f3929b1bebcb42d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a968ed3814acb2ef8f3929b1bebcb42d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USC4R1605373", + "BPM": 125.66, + "Duration": 266, + "ReleaseDate": "1991-01-01", + "AlbumName": "Out Of Time", + "Explicit": false, + "Rank": 973774, + "Tags": [ + "Alternativo", + "bpm:125.66", + "fast", + "medium-length", + "year:1991" + ], + "Contributors": [ + { + "id": 129, + "name": "R.E.M.", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 670, + "Name": "Losing My Religion", + "Artists": "R.E.M.", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "31AOj9sFz2gM0O3hMARRBx", + "DeezerID": 136334560, + "DeezerURL": "https://www.deezer.com/track/136334560", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a968ed3814acb2ef8f3929b1bebcb42d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a968ed3814acb2ef8f3929b1bebcb42d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a968ed3814acb2ef8f3929b1bebcb42d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a968ed3814acb2ef8f3929b1bebcb42d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USC4R1605373", + "BPM": 125.66, + "Duration": 266, + "ReleaseDate": "1991-01-01", + "AlbumName": "Out Of Time", + "Explicit": false, + "Rank": 973774, + "Tags": [ + "Alternativo", + "bpm:125.66", + "fast", + "medium-length", + "year:1991" + ], + "Contributors": [ + { + "id": 129, + "name": "R.E.M.", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 453, + "Name": "Lost", + "Artists": "Linkin Park", + "Color": "4C9987", + "DarkColor": "224C55", + "SongMetaId": null, + "SpotifyId": "52XG0nlyl8eeD9bvrSAI0y", + "DeezerID": 2127426277, + "DeezerURL": "https://www.deezer.com/track/2127426277", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8e5d31f1e81142ef1637ab722d9abe29/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8e5d31f1e81142ef1637ab722d9abe29/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8e5d31f1e81142ef1637ab722d9abe29/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8e5d31f1e81142ef1637ab722d9abe29/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB12206229", + "BPM": 0, + "Duration": 199, + "ReleaseDate": "2023-02-10", + "AlbumName": "Lost", + "Explicit": false, + "Rank": 867998, + "Tags": [ + "Alternativo", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 92, + "name": "Linkin Park", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 673, + "Name": "Lost Lately (Machinedrum Remix)", + "Artists": "San Holo", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "7yuJiANXFpNrjEZGyJVCRA", + "DeezerID": 2144210727, + "DeezerURL": "https://www.deezer.com/track/2144210727", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f5daa6bf99c0022772b56535d099aa69/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f5daa6bf99c0022772b56535d099aa69/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f5daa6bf99c0022772b56535d099aa69/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f5daa6bf99c0022772b56535d099aa69/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLRD51632343", + "BPM": 0, + "Duration": 217, + "ReleaseDate": "2019-09-12", + "AlbumName": "Lost Lately (very nice remixes)", + "Explicit": false, + "Rank": 1036, + "Tags": [ + "Electro", + "Techno/House", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 5696423, + "name": "San Holo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House" + ] + }, + { + "SongId": 673, + "Name": "Lost Lately (Machinedrum Remix)", + "Artists": "San Holo", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "7yuJiANXFpNrjEZGyJVCRA", + "DeezerID": 2144210727, + "DeezerURL": "https://www.deezer.com/track/2144210727", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f5daa6bf99c0022772b56535d099aa69/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f5daa6bf99c0022772b56535d099aa69/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f5daa6bf99c0022772b56535d099aa69/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f5daa6bf99c0022772b56535d099aa69/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLRD51632343", + "BPM": 0, + "Duration": 217, + "ReleaseDate": "2019-09-12", + "AlbumName": "Lost Lately (very nice remixes)", + "Explicit": false, + "Rank": 1036, + "Tags": [ + "Electro", + "Techno/House", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 5696423, + "name": "San Holo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House" + ] + }, + { + "SongId": 207, + "Name": "Love it if we made it", + "Artists": "The 1975", + "Color": "AE449F", + "DarkColor": "6F1E6F", + "SongMetaId": null, + "SpotifyId": "6WmIyn2fx1PKQ0XDpYj4VR", + "DeezerID": 593688912, + "DeezerURL": "https://www.deezer.com/track/593688912", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/bb46fb170ee3b428e14e2b247bc0a23c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/bb46fb170ee3b428e14e2b247bc0a23c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/bb46fb170ee3b428e14e2b247bc0a23c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/bb46fb170ee3b428e14e2b247bc0a23c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBK3W1800771", + "BPM": 179.76, + "Duration": 252, + "ReleaseDate": "2018-11-30", + "AlbumName": "A Brief Inquiry Into Online Relationships", + "Explicit": true, + "Rank": 516973, + "Tags": [ + "Alternativo", + "bpm:179.76", + "medium-length", + "very-fast", + "year:2018" + ], + "Contributors": [ + { + "id": 3583591, + "name": "The 1975", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 96, + "Name": "Love Me Like You Do", + "Artists": "Ellie Goulding", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "0Cy7wt6IlRfBPHXXjmZbcP", + "DeezerID": 94664184, + "DeezerURL": "https://www.deezer.com/track/94664184", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/68753cbcc25b895096edf665bab00f65/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/68753cbcc25b895096edf665bab00f65/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/68753cbcc25b895096edf665bab00f65/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/68753cbcc25b895096edf665bab00f65/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71406823", + "BPM": 0, + "Duration": 252, + "ReleaseDate": "2015-02-09", + "AlbumName": "Fifty Shades Of Grey (Original Motion Picture Soundtrack)", + "Explicit": false, + "Rank": 874121, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 311820, + "name": "Ellie Goulding", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 113, + "Name": "love nwantiti (ah ah ah)", + "Artists": "CKay", + "Color": "4F4EFA", + "DarkColor": "2115CD", + "SongMetaId": null, + "SpotifyId": "2Xr1dTzJee307rmrkt8c0g", + "DeezerID": 752155092, + "DeezerURL": "https://www.deezer.com/track/752155092", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ed3944c139089af1359c26d78843d435/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ed3944c139089af1359c26d78843d435/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ed3944c139089af1359c26d78843d435/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ed3944c139089af1359c26d78843d435/1000x1000-000000-80-0-0.jpg", + "ISRC": "QMEU31910213", + "BPM": 0, + "Duration": 145, + "ReleaseDate": "2019-08-30", + "AlbumName": "CKay The First", + "Explicit": true, + "Rank": 808609, + "Tags": [ + "Música Africana", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 903536, + "name": "CKay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Música Africana" + ] + }, + { + "SongId": 113, + "Name": "love nwantiti (ah ah ah)", + "Artists": "CKay", + "Color": "4F4EFA", + "DarkColor": "2115CD", + "SongMetaId": null, + "SpotifyId": "2Xr1dTzJee307rmrkt8c0g", + "DeezerID": 752155092, + "DeezerURL": "https://www.deezer.com/track/752155092", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ed3944c139089af1359c26d78843d435/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ed3944c139089af1359c26d78843d435/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ed3944c139089af1359c26d78843d435/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ed3944c139089af1359c26d78843d435/1000x1000-000000-80-0-0.jpg", + "ISRC": "QMEU31910213", + "BPM": 0, + "Duration": 145, + "ReleaseDate": "2019-08-30", + "AlbumName": "CKay The First", + "Explicit": true, + "Rank": 808609, + "Tags": [ + "Música Africana", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 903536, + "name": "CKay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Música Africana" + ] + }, + { + "SongId": 109, + "Name": "Love Sosa", + "Artists": "Chief Keef", + "Color": "EEB122", + "DarkColor": "A26D13", + "SongMetaId": null, + "SpotifyId": "01Lr5YepbgjXAWR9iOEyH1", + "DeezerID": 62892170, + "DeezerURL": "https://www.deezer.com/track/62892170", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/867266ef5195999154c518fd8cf2aea5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/867266ef5195999154c518fd8cf2aea5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/867266ef5195999154c518fd8cf2aea5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/867266ef5195999154c518fd8cf2aea5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71214600", + "BPM": 132.1, + "Duration": 246, + "ReleaseDate": "2012-12-18", + "AlbumName": "Finally Rich", + "Explicit": true, + "Rank": 764032, + "Tags": [ + "Rap/Hip Hop", + "bpm:132.1", + "fast", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 2934901, + "name": "Chief Keef", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 109, + "Name": "Love Sosa", + "Artists": "Chief Keef", + "Color": "FCBC4D", + "DarkColor": "CA7F04", + "SongMetaId": null, + "SpotifyId": "01Lr5YepbgjXAWR9iOEyH1", + "DeezerID": 62892170, + "DeezerURL": "https://www.deezer.com/track/62892170", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/867266ef5195999154c518fd8cf2aea5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/867266ef5195999154c518fd8cf2aea5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/867266ef5195999154c518fd8cf2aea5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/867266ef5195999154c518fd8cf2aea5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71214600", + "BPM": 132.1, + "Duration": 246, + "ReleaseDate": "2012-12-18", + "AlbumName": "Finally Rich", + "Explicit": true, + "Rank": 764032, + "Tags": [ + "Rap/Hip Hop", + "bpm:132.1", + "fast", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 2934901, + "name": "Chief Keef", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 307, + "Name": "Love The Way You Lie", + "Artists": "Eminem, Rihanna", + "Color": "952992", + "DarkColor": "300461", + "SongMetaId": null, + "SpotifyId": "15JINEqzVMv3SvJTAXAKED", + "DeezerID": 6461440, + "DeezerURL": "https://www.deezer.com/track/6461440", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/be682506145061814eddee648edb7c59/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/be682506145061814eddee648edb7c59/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/be682506145061814eddee648edb7c59/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/be682506145061814eddee648edb7c59/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71015397", + "BPM": 173.7, + "Duration": 263, + "ReleaseDate": "2010-01-01", + "AlbumName": "Recovery", + "Explicit": true, + "Rank": 935805, + "Tags": [ + "Rap/Hip Hop", + "bpm:173.7", + "medium-length", + "very-fast", + "year:2010" + ], + "Contributors": [ + { + "id": 13, + "name": "Eminem", + "role": "Main" + }, + { + "id": 564, + "name": "Rihanna", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 307, + "Name": "Love The Way You Lie", + "Artists": "Eminem, Rihanna", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "15JINEqzVMv3SvJTAXAKED", + "DeezerID": 6461440, + "DeezerURL": "https://www.deezer.com/track/6461440", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/be682506145061814eddee648edb7c59/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/be682506145061814eddee648edb7c59/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/be682506145061814eddee648edb7c59/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/be682506145061814eddee648edb7c59/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71015397", + "BPM": 173.7, + "Duration": 263, + "ReleaseDate": "2010-01-01", + "AlbumName": "Recovery", + "Explicit": true, + "Rank": 935805, + "Tags": [ + "Rap/Hip Hop", + "bpm:173.7", + "medium-length", + "very-fast", + "year:2010" + ], + "Contributors": [ + { + "id": 13, + "name": "Eminem", + "role": "Main" + }, + { + "id": 564, + "name": "Rihanna", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 19, + "Name": "Love You Like That", + "Artists": "Dagny", + "Color": "E7B208", + "DarkColor": "CE820A", + "SongMetaId": null, + "SpotifyId": "2IClzYyvgwrsmVVipYsx5T", + "DeezerID": 414893952, + "DeezerURL": "https://www.deezer.com/track/414893952", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/42f94b06aead6f0ff3c5f05a6df72d3a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/42f94b06aead6f0ff3c5f05a6df72d3a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/42f94b06aead6f0ff3c5f05a6df72d3a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/42f94b06aead6f0ff3c5f05a6df72d3a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71711393", + "BPM": 0, + "Duration": 177, + "ReleaseDate": "2017-10-13", + "AlbumName": "Love You Like That", + "Explicit": false, + "Rank": 365105, + "Tags": [ + "Pop", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 4086636, + "name": "Dagny", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 500, + "Name": "Love Yourself", + "Artists": "Justin Bieber", + "Color": "F1A9C9", + "DarkColor": "8C4564", + "SongMetaId": null, + "SpotifyId": "50kpGaPAhYJ3sGmk6vplg0", + "DeezerID": 112662368, + "DeezerURL": "https://www.deezer.com/track/112662368", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71516761", + "BPM": 99.86, + "Duration": 234, + "ReleaseDate": "2015-11-13", + "AlbumName": "Purpose (Deluxe)", + "Explicit": false, + "Rank": 847677, + "Tags": [ + "Pop", + "bpm:99.86", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 288166, + "name": "Justin Bieber", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 500, + "Name": "Love Yourself", + "Artists": "Justin Bieber", + "Color": "F1A9C9", + "DarkColor": "8C4564", + "SongMetaId": null, + "SpotifyId": "50kpGaPAhYJ3sGmk6vplg0", + "DeezerID": 112662368, + "DeezerURL": "https://www.deezer.com/track/112662368", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71516761", + "BPM": 99.86, + "Duration": 234, + "ReleaseDate": "2015-11-13", + "AlbumName": "Purpose (Deluxe)", + "Explicit": false, + "Rank": 847677, + "Tags": [ + "Pop", + "bpm:99.86", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 288166, + "name": "Justin Bieber", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 240, + "Name": "Love$ick", + "Artists": "Mura Masa, A$AP Rocky", + "Color": "E4C188", + "DarkColor": "97551D", + "SongMetaId": null, + "SpotifyId": "6nAQE9VatYS3fjJVsVh4uX", + "DeezerID": 361105211, + "DeezerURL": "https://www.deezer.com/track/361105211", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/eac4f72824045143d6333800017d0c1b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/eac4f72824045143d6333800017d0c1b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/eac4f72824045143d6333800017d0c1b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/eac4f72824045143d6333800017d0c1b/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71605141", + "BPM": 178.21, + "Duration": 192, + "ReleaseDate": "2017-05-19", + "AlbumName": "Love$ick", + "Explicit": true, + "Rank": 665778, + "Tags": [ + "Electro", + "bpm:178.21", + "medium-length", + "very-fast", + "year:2017" + ], + "Contributors": [ + { + "id": 6087776, + "name": "Mura Masa", + "role": "Main" + }, + { + "id": 1518490, + "name": "A$AP Rocky", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 3, + "Name": "Lovefool", + "Artists": "The Cardigans", + "Color": "C49274", + "DarkColor": "8C5B50", + "SongMetaId": null, + "SpotifyId": "7aQjPecQdIuNd1sz3KCDhD", + "DeezerID": 910474, + "DeezerURL": "https://www.deezer.com/track/910474", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c7dcdea2a0d4f52f2a9fae5610194653/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c7dcdea2a0d4f52f2a9fae5610194653/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c7dcdea2a0d4f52f2a9fae5610194653/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c7dcdea2a0d4f52f2a9fae5610194653/1000x1000-000000-80-0-0.jpg", + "ISRC": "SEBKB9629380", + "BPM": 111.4, + "Duration": 193, + "ReleaseDate": "2008-01-01", + "AlbumName": "Best Of", + "Explicit": false, + "Rank": 889846, + "Tags": [ + "Pop", + "bpm:111.4", + "medium", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 1851, + "name": "The Cardigans", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 178, + "Name": "Lullaby", + "Artists": "Sigala, Paloma Faith", + "Color": "FEA607", + "DarkColor": "EB7A03", + "SongMetaId": null, + "SpotifyId": "5xzCzOAOfRi4DOttSzvznR", + "DeezerID": 461393722, + "DeezerURL": "https://www.deezer.com/track/461393722", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/60026ed465b013bfdcd996025d559c92/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/60026ed465b013bfdcd996025d559c92/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/60026ed465b013bfdcd996025d559c92/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/60026ed465b013bfdcd996025d559c92/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCEN1700257", + "BPM": 119.84, + "Duration": 204, + "ReleaseDate": "2018-02-23", + "AlbumName": "Lullaby", + "Explicit": false, + "Rank": 575819, + "Tags": [ + "Dance", + "Pop", + "R&B", + "bpm:119.84", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 5203250, + "name": "Sigala", + "role": "Main" + }, + { + "id": 259131, + "name": "Paloma Faith", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop", + "R&B" + ] + }, + { + "SongId": 676, + "Name": "LUNCH", + "Artists": "Billie Eilish", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "629DixmZGHc7ILtEntuiWE", + "DeezerID": 2801558032, + "DeezerURL": "https://www.deezer.com/track/2801558032", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5d284b31cb9ddeb1a0c79aede5a94e1c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5d284b31cb9ddeb1a0c79aede5a94e1c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5d284b31cb9ddeb1a0c79aede5a94e1c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5d284b31cb9ddeb1a0c79aede5a94e1c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72401991", + "BPM": 0, + "Duration": 180, + "ReleaseDate": "2024-05-17", + "AlbumName": "HIT ME HARD AND SOFT", + "Explicit": false, + "Rank": 968668, + "Tags": [ + "Alternativo", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 9635624, + "name": "Billie Eilish", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 676, + "Name": "LUNCH", + "Artists": "Billie Eilish", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "629DixmZGHc7ILtEntuiWE", + "DeezerID": 2801558032, + "DeezerURL": "https://www.deezer.com/track/2801558032", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5d284b31cb9ddeb1a0c79aede5a94e1c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5d284b31cb9ddeb1a0c79aede5a94e1c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5d284b31cb9ddeb1a0c79aede5a94e1c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5d284b31cb9ddeb1a0c79aede5a94e1c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72401991", + "BPM": 0, + "Duration": 180, + "ReleaseDate": "2024-05-17", + "AlbumName": "HIT ME HARD AND SOFT", + "Explicit": false, + "Rank": 968668, + "Tags": [ + "Alternativo", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 9635624, + "name": "Billie Eilish", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 439, + "Name": "Māchina Vibes", + "Artists": "Nemesy", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "5SzoDkxjFahw5tJOHkmNo2", + "DeezerID": 2501373691, + "DeezerURL": "https://www.deezer.com/track/2501373691", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dd1681e9acbca1430ba7acfc4f12d848/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dd1681e9acbca1430ba7acfc4f12d848/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dd1681e9acbca1430ba7acfc4f12d848/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dd1681e9acbca1430ba7acfc4f12d848/1000x1000-000000-80-0-0.jpg", + "ISRC": "TCAFS2134394", + "BPM": 0, + "Duration": 194, + "ReleaseDate": "2021-09-27", + "AlbumName": "Māchina Vibes", + "Explicit": false, + "Rank": 53544, + "Tags": [ + "Dance", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 11648685, + "name": "Nemesy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 439, + "Name": "Māchina Vibes", + "Artists": "Nemesy", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "5SzoDkxjFahw5tJOHkmNo2", + "DeezerID": 2501373691, + "DeezerURL": "https://www.deezer.com/track/2501373691", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dd1681e9acbca1430ba7acfc4f12d848/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dd1681e9acbca1430ba7acfc4f12d848/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dd1681e9acbca1430ba7acfc4f12d848/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dd1681e9acbca1430ba7acfc4f12d848/1000x1000-000000-80-0-0.jpg", + "ISRC": "TCAFS2134394", + "BPM": 0, + "Duration": 194, + "ReleaseDate": "2021-09-27", + "AlbumName": "Māchina Vibes", + "Explicit": false, + "Rank": 53544, + "Tags": [ + "Dance", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 11648685, + "name": "Nemesy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 384, + "Name": "Made You Look", + "Artists": "Meghan Trainor", + "Color": "F5537A", + "DarkColor": "C03152", + "SongMetaId": null, + "SpotifyId": "0QHEIqNKsMoOY5urbzN48u", + "DeezerID": 1965249667, + "DeezerURL": "https://www.deezer.com/track/1965249667", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/13e4f791dd0402dc5d9a63b18b062514/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/13e4f791dd0402dc5d9a63b18b062514/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/13e4f791dd0402dc5d9a63b18b062514/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/13e4f791dd0402dc5d9a63b18b062514/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12204574", + "BPM": 0, + "Duration": 134, + "ReleaseDate": "2022-10-21", + "AlbumName": "Takin' It Back", + "Explicit": false, + "Rank": 801692, + "Tags": [ + "Pop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 1181430, + "name": "Meghan Trainor", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 593, + "Name": "Make You Mine", + "Artists": "Madison Beer", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "48vIfHaK7by6x0T6ucpODL", + "DeezerID": 2652032112, + "DeezerURL": "https://www.deezer.com/track/2652032112", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f86d3f4568027fbdd9766f3369eed26e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f86d3f4568027fbdd9766f3369eed26e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f86d3f4568027fbdd9766f3369eed26e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f86d3f4568027fbdd9766f3369eed26e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12400758", + "BPM": 0, + "Duration": 220, + "ReleaseDate": "2024-02-09", + "AlbumName": "Make You Mine", + "Explicit": false, + "Rank": 829881, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 5130634, + "name": "Madison Beer", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 593, + "Name": "Make You Mine", + "Artists": "Madison Beer", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "48vIfHaK7by6x0T6ucpODL", + "DeezerID": 2652032112, + "DeezerURL": "https://www.deezer.com/track/2652032112", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f86d3f4568027fbdd9766f3369eed26e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f86d3f4568027fbdd9766f3369eed26e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f86d3f4568027fbdd9766f3369eed26e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f86d3f4568027fbdd9766f3369eed26e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12400758", + "BPM": 0, + "Duration": 220, + "ReleaseDate": "2024-02-09", + "AlbumName": "Make You Mine", + "Explicit": false, + "Rank": 829881, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 5130634, + "name": "Madison Beer", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 488, + "Name": "Malibu", + "Artists": "Miley Cyrus", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "1UZOjK1BwmwWU14Erba9CZ", + "DeezerID": 410107152, + "DeezerURL": "https://www.deezer.com/track/410107152", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/83d1f8d6460ec92a0c030e1cb201bd2d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/83d1f8d6460ec92a0c030e1cb201bd2d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/83d1f8d6460ec92a0c030e1cb201bd2d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/83d1f8d6460ec92a0c030e1cb201bd2d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11700814", + "BPM": 140.15, + "Duration": 232, + "ReleaseDate": "2017-09-29", + "AlbumName": "Younger Now", + "Explicit": false, + "Rank": 744954, + "Tags": [ + "Pop", + "bpm:140.15", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 12436, + "name": "Miley Cyrus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 488, + "Name": "Malibu", + "Artists": "Miley Cyrus", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "1UZOjK1BwmwWU14Erba9CZ", + "DeezerID": 410107152, + "DeezerURL": "https://www.deezer.com/track/410107152", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/83d1f8d6460ec92a0c030e1cb201bd2d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/83d1f8d6460ec92a0c030e1cb201bd2d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/83d1f8d6460ec92a0c030e1cb201bd2d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/83d1f8d6460ec92a0c030e1cb201bd2d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11700814", + "BPM": 140.15, + "Duration": 232, + "ReleaseDate": "2017-09-29", + "AlbumName": "Younger Now", + "Explicit": false, + "Rank": 744954, + "Tags": [ + "Pop", + "bpm:140.15", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 12436, + "name": "Miley Cyrus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 365, + "Name": "Man! I Feel Like A Woman", + "Artists": "Shania Twain", + "Color": "E8775C", + "DarkColor": "D1403E", + "SongMetaId": null, + "SpotifyId": "2mqaYmF0XmV8egZB6jQOtN", + "DeezerID": 731732392, + "DeezerURL": "https://www.deezer.com/track/731732392", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f8d3b60f0f8bd40daa41935b21896d96/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f8d3b60f0f8bd40daa41935b21896d96/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f8d3b60f0f8bd40daa41935b21896d96/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f8d3b60f0f8bd40daa41935b21896d96/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMR19887508", + "BPM": 124.91, + "Duration": 234, + "ReleaseDate": "2019-08-20", + "AlbumName": "Come On Over (International Version)", + "Explicit": false, + "Rank": 808185, + "Tags": [ + "bpm:124.91", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 3134, + "name": "Shania Twain", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 764, + "Name": "Mandolin Concerto in C Major", + "Artists": "Antonio Vivaldi", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "3gMJyiOUIR9dtM1ALCNIae", + "DeezerID": 95965110, + "DeezerURL": "https://www.deezer.com/track/95965110", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/249ce6de568e99f7a690450fa9626d34/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/249ce6de568e99f7a690450fa9626d34/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/249ce6de568e99f7a690450fa9626d34/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/249ce6de568e99f7a690450fa9626d34/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEN961403411", + "BPM": 194.1, + "Duration": 165, + "ReleaseDate": "2015-02-24", + "AlbumName": "Vivaldi", + "Explicit": false, + "Rank": 485288, + "Tags": [ + "Clássica", + "bpm:194.1", + "short", + "very-fast", + "year:2015" + ], + "Contributors": [ + { + "id": 1052587, + "name": "Avi Avital", + "role": "Main" + }, + { + "id": 522534, + "name": "Venice Baroque Orchestra", + "role": "Main" + }, + { + "id": 4081, + "name": "Antonio Vivaldi", + "role": "Main" + } + ], + "AlbumGenres": [ + "Clássica" + ] + }, + { + "SongId": 248, + "Name": "MANTRA", + "Artists": "Bring Me The Horizon", + "Color": "1C6543", + "DarkColor": "0E402E", + "SongMetaId": null, + "SpotifyId": "060RNnzoMay3wKJek1faPc", + "DeezerID": 618526912, + "DeezerURL": "https://www.deezer.com/track/618526912", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3a69565903e367f0670ad1d42acb22db/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3a69565903e367f0670ad1d42acb22db/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3a69565903e367f0670ad1d42acb22db/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3a69565903e367f0670ad1d42acb22db/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL1801065", + "BPM": 179.76, + "Duration": 233, + "ReleaseDate": "2019-01-25", + "AlbumName": "amo", + "Explicit": true, + "Rank": 589365, + "Tags": [ + "Rock", + "bpm:179.76", + "medium-length", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 12874, + "name": "Bring Me the Horizon", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 248, + "Name": "MANTRA", + "Artists": "Bring Me The Horizon", + "Color": "1C6543", + "DarkColor": "0E402E", + "SongMetaId": null, + "SpotifyId": "060RNnzoMay3wKJek1faPc", + "DeezerID": 618526912, + "DeezerURL": "https://www.deezer.com/track/618526912", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3a69565903e367f0670ad1d42acb22db/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3a69565903e367f0670ad1d42acb22db/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3a69565903e367f0670ad1d42acb22db/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3a69565903e367f0670ad1d42acb22db/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL1801065", + "BPM": 179.76, + "Duration": 233, + "ReleaseDate": "2019-01-25", + "AlbumName": "amo", + "Explicit": true, + "Rank": 589365, + "Tags": [ + "Rock", + "bpm:179.76", + "medium-length", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 12874, + "name": "Bring Me the Horizon", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 101, + "Name": "MEGITSUNE", + "Artists": "BABYMETAL", + "Color": "C9001B", + "DarkColor": "4C0109", + "SongMetaId": null, + "SpotifyId": "4pUNH4rWiabtBxj2UiGCKN", + "DeezerID": 1341597072, + "DeezerURL": "https://www.deezer.com/track/1341597072", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c3159d680c4185cbe87c617b96af17f5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c3159d680c4185cbe87c617b96af17f5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c3159d680c4185cbe87c617b96af17f5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c3159d680c4185cbe87c617b96af17f5/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPTF01306901", + "BPM": 0, + "Duration": 248, + "ReleaseDate": "2021-04-23", + "AlbumName": "10 BABYMETAL YEARS", + "Explicit": false, + "Rank": 431324, + "Tags": [ + "Metal", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 7805012, + "name": "BABYMETAL", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 101, + "Name": "MEGITSUNE", + "Artists": "BABYMETAL", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "4pUNH4rWiabtBxj2UiGCKN", + "DeezerID": 1341597072, + "DeezerURL": "https://www.deezer.com/track/1341597072", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c3159d680c4185cbe87c617b96af17f5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c3159d680c4185cbe87c617b96af17f5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c3159d680c4185cbe87c617b96af17f5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c3159d680c4185cbe87c617b96af17f5/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPTF01306901", + "BPM": 0, + "Duration": 248, + "ReleaseDate": "2021-04-23", + "AlbumName": "10 BABYMETAL YEARS", + "Explicit": false, + "Rank": 431324, + "Tags": [ + "Metal", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 7805012, + "name": "BABYMETAL", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 669, + "Name": "Mess It Up", + "Artists": "The Rolling Stones", + "Color": "CC3F5D", + "DarkColor": "B42942", + "SongMetaId": null, + "SpotifyId": "0Ag6LNrSfJVKRhGzD7ArDq", + "DeezerID": 2503447011, + "DeezerURL": "https://www.deezer.com/track/2503447011", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9fc7a7726c21ff3e1b9316de2f8f8255/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9fc7a7726c21ff3e1b9316de2f8f8255/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9fc7a7726c21ff3e1b9316de2f8f8255/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9fc7a7726c21ff3e1b9316de2f8f8255/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM72302311", + "BPM": 0, + "Duration": 244, + "ReleaseDate": "2023-10-20", + "AlbumName": "Hackney Diamonds", + "Explicit": false, + "Rank": 547240, + "Tags": [ + "Rock", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 11, + "name": "The Rolling Stones", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 669, + "Name": "Mess It Up", + "Artists": "The Rolling Stones", + "Color": "CC3F5D", + "DarkColor": "B42942", + "SongMetaId": null, + "SpotifyId": "0Ag6LNrSfJVKRhGzD7ArDq", + "DeezerID": 2503447011, + "DeezerURL": "https://www.deezer.com/track/2503447011", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9fc7a7726c21ff3e1b9316de2f8f8255/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9fc7a7726c21ff3e1b9316de2f8f8255/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9fc7a7726c21ff3e1b9316de2f8f8255/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9fc7a7726c21ff3e1b9316de2f8f8255/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM72302311", + "BPM": 0, + "Duration": 244, + "ReleaseDate": "2023-10-20", + "AlbumName": "Hackney Diamonds", + "Explicit": false, + "Rank": 547240, + "Tags": [ + "Rock", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 11, + "name": "The Rolling Stones", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 57, + "Name": "Milkshake", + "Artists": "Kelis", + "Color": "C47B66", + "DarkColor": "812D23", + "SongMetaId": null, + "SpotifyId": "4LmzPJDil70LpiApWfOI6O", + "DeezerID": 2279314797, + "DeezerURL": "https://www.deezer.com/track/2279314797", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/67a5745ba45c22ac7c8063108b55e33c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/67a5745ba45c22ac7c8063108b55e33c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/67a5745ba45c22ac7c8063108b55e33c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/67a5745ba45c22ac7c8063108b55e33c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR10301131", + "BPM": 0, + "Duration": 184, + "ReleaseDate": "2008-01-01", + "AlbumName": "The Hits", + "Explicit": false, + "Rank": 711518, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 2514, + "name": "Kelis", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 57, + "Name": "Milkshake", + "Artists": "Kelis", + "Color": "C47B66", + "DarkColor": "812D23", + "SongMetaId": null, + "SpotifyId": "4LmzPJDil70LpiApWfOI6O", + "DeezerID": 2279314797, + "DeezerURL": "https://www.deezer.com/track/2279314797", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/67a5745ba45c22ac7c8063108b55e33c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/67a5745ba45c22ac7c8063108b55e33c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/67a5745ba45c22ac7c8063108b55e33c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/67a5745ba45c22ac7c8063108b55e33c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR10301131", + "BPM": 0, + "Duration": 184, + "ReleaseDate": "2008-01-01", + "AlbumName": "The Hits", + "Explicit": false, + "Rank": 711518, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 2514, + "name": "Kelis", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 741, + "Name": "Mind Games", + "Artists": "John Lennon", + "Color": "35B4A1", + "DarkColor": "2B8D7E", + "SongMetaId": null, + "SpotifyId": "4iL5reGSTy39GSpe1yd833", + "DeezerID": 7163164, + "DeezerURL": "https://www.deezer.com/track/7163164", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6ac1a93542403e02c491083ae987518e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6ac1a93542403e02c491083ae987518e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6ac1a93542403e02c491083ae987518e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6ac1a93542403e02c491083ae987518e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE1000811", + "BPM": 132.5, + "Duration": 252, + "ReleaseDate": "2010-10-01", + "AlbumName": "Mind Games", + "Explicit": false, + "Rank": 482413, + "Tags": [ + "Rock", + "bpm:132.5", + "fast", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 226, + "name": "John Lennon", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 196, + "Name": "Mine", + "Artists": "Bazzi", + "Color": "FFB01F", + "DarkColor": "BF740B", + "SongMetaId": null, + "SpotifyId": "7uzmGiiJyRfuViKKK3lVmR", + "DeezerID": 415370102, + "DeezerURL": "https://www.deezer.com/track/415370102", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ae5084aaf778ffcd83df999c84f8bd16/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ae5084aaf778ffcd83df999c84f8bd16/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ae5084aaf778ffcd83df999c84f8bd16/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ae5084aaf778ffcd83df999c84f8bd16/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21704227", + "BPM": 143.06, + "Duration": 133, + "ReleaseDate": "2017-10-12", + "AlbumName": "Mine", + "Explicit": true, + "Rank": 671071, + "Tags": [ + "Pop", + "bpm:143.06", + "fast", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 5484712, + "name": "Bazzi", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 60, + "Name": "Misery Business", + "Artists": "Paramore", + "Color": "EB923A", + "DarkColor": "992F00", + "SongMetaId": "21", + "SpotifyId": "6SpLc7EXZIPpy0sVko0aoU", + "DeezerID": 3829140, + "DeezerURL": "https://www.deezer.com/track/3829140", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1a48b36fe9dd29b2bef2f5058cbe0c25/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1a48b36fe9dd29b2bef2f5058cbe0c25/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1a48b36fe9dd29b2bef2f5058cbe0c25/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1a48b36fe9dd29b2bef2f5058cbe0c25/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT20702617", + "BPM": 173, + "Duration": 211, + "ReleaseDate": "2007-06-11", + "AlbumName": "Riot!", + "Explicit": false, + "Rank": 733640, + "Tags": [ + "Alternativo", + "bpm:173", + "medium-length", + "very-fast", + "year:2007" + ], + "Contributors": [ + { + "id": 10977, + "name": "Paramore", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 714, + "Name": "Misery Business", + "Artists": "Paramore", + "Color": "EB923A", + "DarkColor": "992F00", + "SongMetaId": "21", + "SpotifyId": "3l9CW99AHtExIRV4hW2N5m", + "DeezerID": 3829140, + "DeezerURL": "https://www.deezer.com/track/3829140", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1a48b36fe9dd29b2bef2f5058cbe0c25/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1a48b36fe9dd29b2bef2f5058cbe0c25/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1a48b36fe9dd29b2bef2f5058cbe0c25/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1a48b36fe9dd29b2bef2f5058cbe0c25/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT20702617", + "BPM": 173, + "Duration": 211, + "ReleaseDate": "2007-06-11", + "AlbumName": "Riot!", + "Explicit": false, + "Rank": 733640, + "Tags": [ + "Alternativo", + "bpm:173", + "medium-length", + "very-fast", + "year:2007" + ], + "Contributors": [ + { + "id": 10977, + "name": "Paramore", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 60, + "Name": "Misery Business", + "Artists": "Paramore", + "Color": "D07C43", + "DarkColor": "BF4E2F", + "SongMetaId": "21", + "SpotifyId": "6SpLc7EXZIPpy0sVko0aoU", + "DeezerID": 3829140, + "DeezerURL": "https://www.deezer.com/track/3829140", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1a48b36fe9dd29b2bef2f5058cbe0c25/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1a48b36fe9dd29b2bef2f5058cbe0c25/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1a48b36fe9dd29b2bef2f5058cbe0c25/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1a48b36fe9dd29b2bef2f5058cbe0c25/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT20702617", + "BPM": 173, + "Duration": 211, + "ReleaseDate": "2007-06-11", + "AlbumName": "Riot!", + "Explicit": false, + "Rank": 733640, + "Tags": [ + "Alternativo", + "bpm:173", + "medium-length", + "very-fast", + "year:2007" + ], + "Contributors": [ + { + "id": 10977, + "name": "Paramore", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 201, + "Name": "Miss Independent", + "Artists": "Ne-Yo", + "Color": "E3B88B", + "DarkColor": "A36D3B", + "SongMetaId": null, + "SpotifyId": "34ceTg8ChN5HjrqiIYCn9Q", + "DeezerID": 2124371, + "DeezerURL": "https://www.deezer.com/track/2124371", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e3e95eca074ea06bbfcd7647f0c757c6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e3e95eca074ea06bbfcd7647f0c757c6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e3e95eca074ea06bbfcd7647f0c757c6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e3e95eca074ea06bbfcd7647f0c757c6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70826981", + "BPM": 172.27, + "Duration": 232, + "ReleaseDate": "2008-01-01", + "AlbumName": "Year Of The Gentleman", + "Explicit": false, + "Rank": 793741, + "Tags": [ + "R&B", + "bpm:172.27", + "medium-length", + "very-fast", + "year:2008" + ], + "Contributors": [ + { + "id": 104, + "name": "Ne-Yo", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 143, + "Name": "Mistletoe", + "Artists": "Justin Bieber", + "Color": "AD2429", + "DarkColor": "6E0C00", + "SongMetaId": null, + "SpotifyId": "7xapw9Oy21WpfEcib2ErSA", + "DeezerID": 14309710, + "DeezerURL": "https://www.deezer.com/track/14309710", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4d12bf5941634bb201858ac4e0a3a08e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4d12bf5941634bb201858ac4e0a3a08e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4d12bf5941634bb201858ac4e0a3a08e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4d12bf5941634bb201858ac4e0a3a08e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71116290", + "BPM": 162.13, + "Duration": 182, + "ReleaseDate": "2011-11-01", + "AlbumName": "Under The Mistletoe (Deluxe Edition)", + "Explicit": false, + "Rank": 609427, + "Tags": [ + "bpm:162.13", + "medium-length", + "very-fast", + "year:2011" + ], + "Contributors": [ + { + "id": 288166, + "name": "Justin Bieber", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 287, + "Name": "Money", + "Artists": "Leikeli47", + "Color": "E20A14", + "DarkColor": "830011", + "SongMetaId": null, + "SpotifyId": "7wfQfnNFGWLD0BzcDngCRg", + "DeezerID": 130918936, + "DeezerURL": "https://www.deezer.com/track/130918936", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b6e1956176fccee0478a697b631cd408/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b6e1956176fccee0478a697b631cd408/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b6e1956176fccee0478a697b631cd408/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b6e1956176fccee0478a697b631cd408/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11601434", + "BPM": 99.86, + "Duration": 176, + "ReleaseDate": "2025-02-01", + "AlbumName": "Money", + "Explicit": true, + "Rank": 269161, + "Tags": [ + "Rap/Hip Hop", + "bpm:99.86", + "medium", + "short", + "year:2025" + ], + "Contributors": [ + { + "id": 5463220, + "name": "Leikeli47", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 653, + "Name": "MONEY", + "Artists": "CHAOSBAY, We Are PIGS", + "Color": "607BC4", + "DarkColor": "3C4784", + "SongMetaId": null, + "SpotifyId": "16n7ZHMhd3m4wMa5wyKhY8", + "DeezerID": 2678047512, + "DeezerURL": "https://www.deezer.com/track/2678047512", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b609de0294df16ac8e43d2027ebb168d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b609de0294df16ac8e43d2027ebb168d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b609de0294df16ac8e43d2027ebb168d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b609de0294df16ac8e43d2027ebb168d/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXO42388233", + "BPM": 0, + "Duration": 206, + "ReleaseDate": "2024-03-14", + "AlbumName": "MONEY", + "Explicit": false, + "Rank": 147459, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 7242032, + "name": "Chaosbay", + "role": "Main" + }, + { + "id": 117232942, + "name": "We Are PIGS", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 653, + "Name": "MONEY", + "Artists": "CHAOSBAY, We Are PIGS", + "Color": "607BC4", + "DarkColor": "3C4784", + "SongMetaId": null, + "SpotifyId": "16n7ZHMhd3m4wMa5wyKhY8", + "DeezerID": 2678047512, + "DeezerURL": "https://www.deezer.com/track/2678047512", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b609de0294df16ac8e43d2027ebb168d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b609de0294df16ac8e43d2027ebb168d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b609de0294df16ac8e43d2027ebb168d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b609de0294df16ac8e43d2027ebb168d/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEXO42388233", + "BPM": 0, + "Duration": 206, + "ReleaseDate": "2024-03-14", + "AlbumName": "MONEY", + "Explicit": false, + "Rank": 147459, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 7242032, + "name": "Chaosbay", + "role": "Main" + }, + { + "id": 117232942, + "name": "We Are PIGS", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 608, + "Name": "Money For Nothing", + "Artists": "Dire Straits", + "Color": "7DA5D9", + "DarkColor": "506D92", + "SongMetaId": null, + "SpotifyId": "4yqtwO7MQIIXqoiRBPHAgR", + "DeezerID": 2514681, + "DeezerURL": "https://www.deezer.com/track/2514681", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0aeeab7a9ef9dcc03e3c6490f9bf822d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0aeeab7a9ef9dcc03e3c6490f9bf822d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0aeeab7a9ef9dcc03e3c6490f9bf822d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0aeeab7a9ef9dcc03e3c6490f9bf822d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBF088500674", + "BPM": 134.2, + "Duration": 505, + "ReleaseDate": "2005-11-07", + "AlbumName": "The Best Of Dire Straits & Mark Knopfler - Private Investigations", + "Explicit": false, + "Rank": 904705, + "Tags": [ + "Rock", + "bpm:134.2", + "fast", + "long", + "year:2005" + ], + "Contributors": [ + { + "id": 176, + "name": "Dire Straits", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 608, + "Name": "Money For Nothing", + "Artists": "Dire Straits", + "Color": "7DA5D9", + "DarkColor": "536A89", + "SongMetaId": null, + "SpotifyId": "4yqtwO7MQIIXqoiRBPHAgR", + "DeezerID": 2514681, + "DeezerURL": "https://www.deezer.com/track/2514681", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0aeeab7a9ef9dcc03e3c6490f9bf822d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0aeeab7a9ef9dcc03e3c6490f9bf822d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0aeeab7a9ef9dcc03e3c6490f9bf822d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0aeeab7a9ef9dcc03e3c6490f9bf822d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBF088500674", + "BPM": 134.2, + "Duration": 505, + "ReleaseDate": "2005-11-07", + "AlbumName": "The Best Of Dire Straits & Mark Knopfler - Private Investigations", + "Explicit": false, + "Rank": 904705, + "Tags": [ + "Rock", + "bpm:134.2", + "fast", + "long", + "year:2005" + ], + "Contributors": [ + { + "id": 176, + "name": "Dire Straits", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 755, + "Name": "Montero (Call Me By Your Name)", + "Artists": "Lil Nas X", + "Color": "37CACE", + "DarkColor": "284E6A", + "SongMetaId": "22", + "SpotifyId": "1SC5rEoYDGUK4NfG82494W", + "DeezerID": 1283264142, + "DeezerURL": "https://www.deezer.com/track/1283264142", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fc939e4030254f80bd90b616f2a1d0a6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fc939e4030254f80bd90b616f2a1d0a6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fc939e4030254f80bd90b616f2a1d0a6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fc939e4030254f80bd90b616f2a1d0a6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12100531", + "BPM": 0, + "Duration": 137, + "ReleaseDate": "2021-03-26", + "AlbumName": "MONTERO (Call Me By Your Name)", + "Explicit": true, + "Rank": 820048, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 15166511, + "name": "Lil Nas X", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 258, + "Name": "Montero (Call Me By Your Name)", + "Artists": "Lil Nas X", + "Color": "37CACE", + "DarkColor": "284E6A", + "SongMetaId": "22", + "SpotifyId": "1SC5rEoYDGUK4NfG82494W", + "DeezerID": 1283264142, + "DeezerURL": "https://www.deezer.com/track/1283264142", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fc939e4030254f80bd90b616f2a1d0a6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fc939e4030254f80bd90b616f2a1d0a6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fc939e4030254f80bd90b616f2a1d0a6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fc939e4030254f80bd90b616f2a1d0a6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12100531", + "BPM": 0, + "Duration": 137, + "ReleaseDate": "2021-03-26", + "AlbumName": "MONTERO (Call Me By Your Name)", + "Explicit": true, + "Rank": 820048, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 15166511, + "name": "Lil Nas X", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 258, + "Name": "Montero (Call Me By Your Name)", + "Artists": "Lil Nas X", + "Color": "2E9AAA", + "DarkColor": "1F7784", + "SongMetaId": "22", + "SpotifyId": "1SC5rEoYDGUK4NfG82494W", + "DeezerID": 1283264142, + "DeezerURL": "https://www.deezer.com/track/1283264142", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fc939e4030254f80bd90b616f2a1d0a6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fc939e4030254f80bd90b616f2a1d0a6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fc939e4030254f80bd90b616f2a1d0a6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fc939e4030254f80bd90b616f2a1d0a6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12100531", + "BPM": 0, + "Duration": 137, + "ReleaseDate": "2021-03-26", + "AlbumName": "MONTERO (Call Me By Your Name)", + "Explicit": true, + "Rank": 820048, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 15166511, + "name": "Lil Nas X", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 99, + "Name": "Mood", + "Artists": "24kGoldn, Iann Dior", + "Color": "AB5624", + "DarkColor": "781A0A", + "SongMetaId": null, + "SpotifyId": "4jPy3l0RUwlUI9T5XHBW2m", + "DeezerID": 1283264632, + "DeezerURL": "https://www.deezer.com/track/1283264632", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2bc3ee63eaf3e5515a100a4a13a64d1d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2bc3ee63eaf3e5515a100a4a13a64d1d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2bc3ee63eaf3e5515a100a4a13a64d1d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2bc3ee63eaf3e5515a100a4a13a64d1d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX92003025", + "BPM": 0, + "Duration": 140, + "ReleaseDate": "2021-03-24", + "AlbumName": "El Dorado", + "Explicit": true, + "Rank": 835848, + "Tags": [ + "Alternativo", + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 13878655, + "name": "24kgoldn", + "role": "Main" + }, + { + "id": 59936352, + "name": "Iann Dior", + "role": "Main" + }, + { + "id": 59936352, + "name": "Iann Dior", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Alternativo", + "Pop" + ] + }, + { + "SongId": 616, + "Name": "Moonlight", + "Artists": "Kali Uchis", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": null, + "SpotifyId": "2i2gDpKKWjvnRTOZRhaPh2", + "DeezerID": 2153937637, + "DeezerURL": "https://www.deezer.com/track/2153937637", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cf805439d1ee0cde545c8fb068cffe6a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cf805439d1ee0cde545c8fb068cffe6a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cf805439d1ee0cde545c8fb068cffe6a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cf805439d1ee0cde545c8fb068cffe6a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72219486", + "BPM": 0, + "Duration": 191, + "ReleaseDate": "2023-02-24", + "AlbumName": "Moonlight", + "Explicit": false, + "Rank": 839622, + "Tags": [ + "R&B", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 6043160, + "name": "Kali Uchis", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 616, + "Name": "Moonlight", + "Artists": "Kali Uchis", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": null, + "SpotifyId": "2i2gDpKKWjvnRTOZRhaPh2", + "DeezerID": 2153937637, + "DeezerURL": "https://www.deezer.com/track/2153937637", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cf805439d1ee0cde545c8fb068cffe6a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cf805439d1ee0cde545c8fb068cffe6a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cf805439d1ee0cde545c8fb068cffe6a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cf805439d1ee0cde545c8fb068cffe6a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72219486", + "BPM": 0, + "Duration": 191, + "ReleaseDate": "2023-02-24", + "AlbumName": "Moonlight", + "Explicit": false, + "Rank": 839622, + "Tags": [ + "R&B", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 6043160, + "name": "Kali Uchis", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 643, + "Name": "MORE", + "Artists": "The Warning", + "Color": "BC0E0E", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "2uqCJn5VFTf3sZEDJZvvX0", + "DeezerID": 2857516702, + "DeezerURL": "https://www.deezer.com/track/2857516702", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fec4f5e59403168725e9805a4ef9d90b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fec4f5e59403168725e9805a4ef9d90b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fec4f5e59403168725e9805a4ef9d90b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fec4f5e59403168725e9805a4ef9d90b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72306520", + "BPM": 0, + "Duration": 187, + "ReleaseDate": "2024-06-28", + "AlbumName": "Keep Me Fed", + "Explicit": false, + "Rank": 563205, + "Tags": [ + "Alternativo", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 7716640, + "name": "The Warning", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 643, + "Name": "MORE", + "Artists": "The Warning", + "Color": "BB0D0D", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "2uqCJn5VFTf3sZEDJZvvX0", + "DeezerID": 2857516702, + "DeezerURL": "https://www.deezer.com/track/2857516702", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fec4f5e59403168725e9805a4ef9d90b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fec4f5e59403168725e9805a4ef9d90b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fec4f5e59403168725e9805a4ef9d90b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fec4f5e59403168725e9805a4ef9d90b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72306520", + "BPM": 0, + "Duration": 187, + "ReleaseDate": "2024-06-28", + "AlbumName": "Keep Me Fed", + "Explicit": false, + "Rank": 563205, + "Tags": [ + "Alternativo", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 7716640, + "name": "The Warning", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 748, + "Name": "More Than A Feeling", + "Artists": "Boston", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": "23", + "SpotifyId": "1QEEqeFIZktqIpPI4jSVSF", + "DeezerID": 1037414, + "DeezerURL": "https://www.deezer.com/track/1037414", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a25d41d718d5b81ba26cabe333049e6f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a25d41d718d5b81ba26cabe333049e6f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a25d41d718d5b81ba26cabe333049e6f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a25d41d718d5b81ba26cabe333049e6f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM17600047", + "BPM": 109.4, + "Duration": 285, + "ReleaseDate": "1996-07-23", + "AlbumName": "Greatest Hits", + "Explicit": false, + "Rank": 679192, + "Tags": [ + "Pop", + "bpm:109.4", + "medium", + "medium-length", + "year:1996" + ], + "Contributors": [ + { + "id": 3339, + "name": "Boston", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 451, + "Name": "More Than A Feeling", + "Artists": "Boston", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": "23", + "SpotifyId": "1QEEqeFIZktqIpPI4jSVSF", + "DeezerID": 1037414, + "DeezerURL": "https://www.deezer.com/track/1037414", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a25d41d718d5b81ba26cabe333049e6f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a25d41d718d5b81ba26cabe333049e6f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a25d41d718d5b81ba26cabe333049e6f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a25d41d718d5b81ba26cabe333049e6f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM17600047", + "BPM": 109.4, + "Duration": 285, + "ReleaseDate": "1996-07-23", + "AlbumName": "Greatest Hits", + "Explicit": false, + "Rank": 679192, + "Tags": [ + "Pop", + "bpm:109.4", + "medium", + "medium-length", + "year:1996" + ], + "Contributors": [ + { + "id": 3339, + "name": "Boston", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 451, + "Name": "More Than A Feeling", + "Artists": "Boston", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": "23", + "SpotifyId": "1QEEqeFIZktqIpPI4jSVSF", + "DeezerID": 1037414, + "DeezerURL": "https://www.deezer.com/track/1037414", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a25d41d718d5b81ba26cabe333049e6f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a25d41d718d5b81ba26cabe333049e6f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a25d41d718d5b81ba26cabe333049e6f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a25d41d718d5b81ba26cabe333049e6f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM17600047", + "BPM": 109.4, + "Duration": 285, + "ReleaseDate": "1996-07-23", + "AlbumName": "Greatest Hits", + "Explicit": false, + "Rank": 679192, + "Tags": [ + "Pop", + "bpm:109.4", + "medium", + "medium-length", + "year:1996" + ], + "Contributors": [ + { + "id": 3339, + "name": "Boston", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 167, + "Name": "Mortis Game", + "Artists": "Brawl Stars, Bad Randoms", + "Color": "4854A0", + "DarkColor": "2B3372", + "SongMetaId": null, + "SpotifyId": "61nFtmbCsaND1HZXGpieb0", + "DeezerID": 1604436162, + "DeezerURL": "https://www.deezer.com/track/1604436162", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e5f8ac8f8d4ed198ab1b01960d5eed10/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e5f8ac8f8d4ed198ab1b01960d5eed10/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e5f8ac8f8d4ed198ab1b01960d5eed10/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e5f8ac8f8d4ed198ab1b01960d5eed10/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZTAU2122978", + "BPM": 0, + "Duration": 252, + "ReleaseDate": "2022-01-03", + "AlbumName": "Mortis Game", + "Explicit": false, + "Rank": 453533, + "Tags": [ + "Alternativo", + "Indie Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 142401022, + "name": "Brawl Stars", + "role": "Main" + }, + { + "id": 142401032, + "name": "Bad Randoms", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Rock" + ] + }, + { + "SongId": 486, + "Name": "Move on", + "Artists": "Luxar, Delfy", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "1dNAnlqxbJQlyvcumXqVhF", + "DeezerID": 692856162, + "DeezerURL": "https://www.deezer.com/track/692856162", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/75053c781f2e186879ea0eb96f21dc0c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/75053c781f2e186879ea0eb96f21dc0c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/75053c781f2e186879ea0eb96f21dc0c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/75053c781f2e186879ea0eb96f21dc0c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM21935969", + "BPM": 116.13, + "Duration": 243, + "ReleaseDate": "2019-06-28", + "AlbumName": "Scenes", + "Explicit": false, + "Rank": 75603, + "Tags": [ + "bpm:116.13", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 6661002, + "name": "Luxar", + "role": "Main" + }, + { + "id": 13255625, + "name": "Dēlfy", + "role": "Featured" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 486, + "Name": "Move on", + "Artists": "Luxar, Delfy", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "1dNAnlqxbJQlyvcumXqVhF", + "DeezerID": 692856162, + "DeezerURL": "https://www.deezer.com/track/692856162", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/75053c781f2e186879ea0eb96f21dc0c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/75053c781f2e186879ea0eb96f21dc0c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/75053c781f2e186879ea0eb96f21dc0c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/75053c781f2e186879ea0eb96f21dc0c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM21935969", + "BPM": 116.13, + "Duration": 243, + "ReleaseDate": "2019-06-28", + "AlbumName": "Scenes", + "Explicit": false, + "Rank": 75603, + "Tags": [ + "bpm:116.13", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 6661002, + "name": "Luxar", + "role": "Main" + }, + { + "id": 13255625, + "name": "Dēlfy", + "role": "Featured" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 16, + "Name": "Move On Up", + "Artists": "Curtis Mayfield", + "Color": "FAB670", + "DarkColor": "F78A5A", + "SongMetaId": null, + "SpotifyId": "2qrOktpT4UcQKldz0QRCmD", + "DeezerID": 903466, + "DeezerURL": "https://www.deezer.com/track/903466", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9ce399fb0bf7249d453964334f8811c7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9ce399fb0bf7249d453964334f8811c7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9ce399fb0bf7249d453964334f8811c7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9ce399fb0bf7249d453964334f8811c7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRH10401528", + "BPM": 137.8, + "Duration": 535, + "ReleaseDate": "2000-08-04", + "AlbumName": "Curtis (Expanded Edition)", + "Explicit": false, + "Rank": 674296, + "Tags": [ + "R&B", + "bpm:137.8", + "fast", + "long", + "year:2000" + ], + "Contributors": [ + { + "id": 2027, + "name": "Curtis Mayfield", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 288, + "Name": "Move Your Body", + "Artists": "Öwnboss, Sevek", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "6GomT970rCOkKAyyrwJeZi", + "DeezerID": 1514340882, + "DeezerURL": "https://www.deezer.com/track/1514340882", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e38209b158e3a9a5eb63e5a799bf6da8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e38209b158e3a9a5eb63e5a799bf6da8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e38209b158e3a9a5eb63e5a799bf6da8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e38209b158e3a9a5eb63e5a799bf6da8/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLZ542101576", + "BPM": 0, + "Duration": 157, + "ReleaseDate": "2021-10-29", + "AlbumName": "Move Your Body", + "Explicit": false, + "Rank": 748939, + "Tags": [ + "Dance", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 11546917, + "name": "Öwnboss", + "role": "Main" + }, + { + "id": 11210796, + "name": "Sevek", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 331, + "Name": "Move Your Feet", + "Artists": "Junior Senior", + "Color": "89CA0D", + "DarkColor": "3D8503", + "SongMetaId": null, + "SpotifyId": "4DX82Vc8qAH4jJPvKxvwg6", + "DeezerID": 597208142, + "DeezerURL": "https://www.deezer.com/track/597208142", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2581f5397898be7347ea3f187ec361b6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2581f5397898be7347ea3f187ec361b6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2581f5397898be7347ea3f187ec361b6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2581f5397898be7347ea3f187ec361b6/1000x1000-000000-80-0-0.jpg", + "ISRC": "DKMFA0200501", + "BPM": 118.8, + "Duration": 181, + "ReleaseDate": "2002-06-10", + "AlbumName": "Move Your Feet", + "Explicit": false, + "Rank": 702944, + "Tags": [ + "Alternativo", + "Indie Pop", + "Pop", + "bpm:118.8", + "medium", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 6891, + "name": "Junior Senior", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Pop", + "Pop" + ] + }, + { + "SongId": 368, + "Name": "Mr Brightside", + "Artists": "The Killers", + "Color": "67AAF0", + "DarkColor": "334989", + "SongMetaId": null, + "SpotifyId": "003vvx7Niy0yvhvHt4a68B", + "DeezerID": 953097, + "DeezerURL": "https://www.deezer.com/track/953097", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ecff532dd84c6538099b58baefccb8fb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ecff532dd84c6538099b58baefccb8fb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ecff532dd84c6538099b58baefccb8fb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ecff532dd84c6538099b58baefccb8fb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR20400274", + "BPM": 148.2, + "Duration": 223, + "ReleaseDate": "2007-09-17", + "AlbumName": "Nu Rock", + "Explicit": false, + "Rank": 863213, + "Tags": [ + "Rock", + "bpm:148.2", + "fast", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 368, + "Name": "Mr Brightside", + "Artists": "The Killers", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "003vvx7Niy0yvhvHt4a68B", + "DeezerID": 953097, + "DeezerURL": "https://www.deezer.com/track/953097", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ecff532dd84c6538099b58baefccb8fb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ecff532dd84c6538099b58baefccb8fb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ecff532dd84c6538099b58baefccb8fb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ecff532dd84c6538099b58baefccb8fb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR20400274", + "BPM": 148.2, + "Duration": 223, + "ReleaseDate": "2007-09-17", + "AlbumName": "Nu Rock", + "Explicit": false, + "Rank": 863213, + "Tags": [ + "Rock", + "bpm:148.2", + "fast", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 480, + "Name": "Ms. Jackson", + "Artists": "OutKast", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "0I3q5fE6wg7LIfHGngUTnV", + "DeezerID": 963042, + "DeezerURL": "https://www.deezer.com/track/963042", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/646d6414a24faaccf67c1d7e01f7d095/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/646d6414a24faaccf67c1d7e01f7d095/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/646d6414a24faaccf67c1d7e01f7d095/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/646d6414a24faaccf67c1d7e01f7d095/1000x1000-000000-80-0-0.jpg", + "ISRC": "USLF20000357", + "BPM": 95, + "Duration": 272, + "ReleaseDate": "1999-11-01", + "AlbumName": "Stankonia", + "Explicit": true, + "Rank": 899290, + "Tags": [ + "Rap/Hip Hop", + "bpm:95", + "medium", + "medium-length", + "year:1999" + ], + "Contributors": [ + { + "id": 9, + "name": "Outkast", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 480, + "Name": "Ms. Jackson", + "Artists": "OutKast", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "0I3q5fE6wg7LIfHGngUTnV", + "DeezerID": 963042, + "DeezerURL": "https://www.deezer.com/track/963042", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/646d6414a24faaccf67c1d7e01f7d095/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/646d6414a24faaccf67c1d7e01f7d095/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/646d6414a24faaccf67c1d7e01f7d095/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/646d6414a24faaccf67c1d7e01f7d095/1000x1000-000000-80-0-0.jpg", + "ISRC": "USLF20000357", + "BPM": 95, + "Duration": 272, + "ReleaseDate": "1999-11-01", + "AlbumName": "Stankonia", + "Explicit": true, + "Rank": 899290, + "Tags": [ + "Rap/Hip Hop", + "bpm:95", + "medium", + "medium-length", + "year:1999" + ], + "Contributors": [ + { + "id": 9, + "name": "Outkast", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 636, + "Name": "Murder On The Dancefloor", + "Artists": "Sophie Ellis-Bextor", + "Color": "BC0E0E", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "4tKGFmENO69tZR9ahgZu48", + "DeezerID": 4181750, + "DeezerURL": "https://www.deezer.com/track/4181750", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7c86bb64afe6a14a3939d9da84fee56c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7c86bb64afe6a14a3939d9da84fee56c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7c86bb64afe6a14a3939d9da84fee56c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7c86bb64afe6a14a3939d9da84fee56c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAKW0100229", + "BPM": 117.1, + "Duration": 228, + "ReleaseDate": "2002-06-06", + "AlbumName": "Read My Lips (Deluxe Version)", + "Explicit": false, + "Rank": 969785, + "Tags": [ + "Pop", + "bpm:117.1", + "medium", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 961, + "name": "Sophie Ellis-Bextor", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 636, + "Name": "Murder On The Dancefloor", + "Artists": "Sophie Ellis-Bextor", + "Color": "BB0D0D", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "4tKGFmENO69tZR9ahgZu48", + "DeezerID": 4181750, + "DeezerURL": "https://www.deezer.com/track/4181750", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7c86bb64afe6a14a3939d9da84fee56c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7c86bb64afe6a14a3939d9da84fee56c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7c86bb64afe6a14a3939d9da84fee56c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7c86bb64afe6a14a3939d9da84fee56c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAKW0100229", + "BPM": 117.1, + "Duration": 228, + "ReleaseDate": "2002-06-06", + "AlbumName": "Read My Lips (Deluxe Version)", + "Explicit": false, + "Rank": 969785, + "Tags": [ + "Pop", + "bpm:117.1", + "medium", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 961, + "name": "Sophie Ellis-Bextor", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 289, + "Name": "Murder She Wrote", + "Artists": "Chaka Demus & Pliers", + "Color": "F86F0E", + "DarkColor": "921C0A", + "SongMetaId": null, + "SpotifyId": "1HGyhNaRUFEDBiVLbvtbL6", + "DeezerID": 1178340, + "DeezerURL": "https://www.deezer.com/track/1178340", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a9cfcaaaa113ee5d5a39bf138ef721da/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a9cfcaaaa113ee5d5a39bf138ef721da/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a9cfcaaaa113ee5d5a39bf138ef721da/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a9cfcaaaa113ee5d5a39bf138ef721da/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR19290014", + "BPM": 190.5, + "Duration": 246, + "ReleaseDate": "1993-01-01", + "AlbumName": "Tease Me", + "Explicit": false, + "Rank": 701051, + "Tags": [ + "Pop", + "bpm:190.5", + "medium-length", + "very-fast", + "year:1993" + ], + "Contributors": [ + { + "id": 800, + "name": "Chaka Demus & Pliers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 527, + "Name": "My Friends Over You", + "Artists": "New Found Glory", + "Color": "336235", + "DarkColor": "153D1E", + "SongMetaId": null, + "SpotifyId": "4pImG3RdbaGfanzQOTFgyr", + "DeezerID": 980198, + "DeezerURL": "https://www.deezer.com/track/980198", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4506de27dae054da954e11a0a7c7d3a4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4506de27dae054da954e11a0a7c7d3a4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4506de27dae054da954e11a0a7c7d3a4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4506de27dae054da954e11a0a7c7d3a4/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC10200363", + "BPM": 178.2, + "Duration": 222, + "ReleaseDate": "2008-01-01", + "AlbumName": "Hits", + "Explicit": false, + "Rank": 511842, + "Tags": [ + "Rock", + "bpm:178.2", + "medium-length", + "very-fast", + "year:2008" + ], + "Contributors": [ + { + "id": 5700, + "name": "New Found Glory", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 527, + "Name": "My Friends Over You", + "Artists": "New Found Glory", + "Color": "336235", + "DarkColor": "153D1E", + "SongMetaId": null, + "SpotifyId": "4pImG3RdbaGfanzQOTFgyr", + "DeezerID": 980198, + "DeezerURL": "https://www.deezer.com/track/980198", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4506de27dae054da954e11a0a7c7d3a4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4506de27dae054da954e11a0a7c7d3a4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4506de27dae054da954e11a0a7c7d3a4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4506de27dae054da954e11a0a7c7d3a4/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC10200363", + "BPM": 178.2, + "Duration": 222, + "ReleaseDate": "2008-01-01", + "AlbumName": "Hits", + "Explicit": false, + "Rank": 511842, + "Tags": [ + "Rock", + "bpm:178.2", + "medium-length", + "very-fast", + "year:2008" + ], + "Contributors": [ + { + "id": 5700, + "name": "New Found Glory", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 271, + "Name": "My God Is The Sun", + "Artists": "Queens of the Stone Age", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "0MHHAIjPAd3OSfBS3H0fPg", + "DeezerID": 67615722, + "DeezerURL": "https://www.deezer.com/track/67615722", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ac317291ed9654c649ca24d0d17c063c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ac317291ed9654c649ca24d0d17c063c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ac317291ed9654c649ca24d0d17c063c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ac317291ed9654c649ca24d0d17c063c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMTD1303755", + "BPM": 0, + "Duration": 235, + "ReleaseDate": "2013-06-03", + "AlbumName": "...Like Clockwork", + "Explicit": false, + "Rank": 464443, + "Tags": [ + "Alternativo", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 1177, + "name": "Queens of the Stone Age", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 654, + "Name": "My Own Worst Enemy", + "Artists": "Lit", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "33iv3wnGMrrDugd7GBso1z", + "DeezerID": 967040, + "DeezerURL": "https://www.deezer.com/track/967040", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a91f52c785f596ecc7f73e086dd8afbe/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a91f52c785f596ecc7f73e086dd8afbe/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a91f52c785f596ecc7f73e086dd8afbe/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a91f52c785f596ecc7f73e086dd8afbe/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC19808159", + "BPM": 103.4, + "Duration": 178, + "ReleaseDate": "1999-02-23", + "AlbumName": "A Place In The Sun", + "Explicit": true, + "Rank": 567144, + "Tags": [ + "Pop", + "Rock", + "bpm:103.4", + "medium", + "short", + "year:1999" + ], + "Contributors": [ + { + "id": 5922, + "name": "Lit", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Rock" + ] + }, + { + "SongId": 654, + "Name": "My Own Worst Enemy", + "Artists": "Lit", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "33iv3wnGMrrDugd7GBso1z", + "DeezerID": 967040, + "DeezerURL": "https://www.deezer.com/track/967040", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a91f52c785f596ecc7f73e086dd8afbe/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a91f52c785f596ecc7f73e086dd8afbe/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a91f52c785f596ecc7f73e086dd8afbe/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a91f52c785f596ecc7f73e086dd8afbe/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC19808159", + "BPM": 103.4, + "Duration": 178, + "ReleaseDate": "1999-02-23", + "AlbumName": "A Place In The Sun", + "Explicit": true, + "Rank": 567144, + "Tags": [ + "Pop", + "Rock", + "bpm:103.4", + "medium", + "short", + "year:1999" + ], + "Contributors": [ + { + "id": 5922, + "name": "Lit", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Rock" + ] + }, + { + "SongId": 415, + "Name": "My Sharona", + "Artists": "The Knack", + "Color": "E7456D", + "DarkColor": "671F2D", + "SongMetaId": null, + "SpotifyId": "1HOMkjp0nHMaTnfAkslCQj", + "DeezerID": 3248376, + "DeezerURL": "https://www.deezer.com/track/3248376", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/14c4093d20e4147cb1b07d001239eba5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/14c4093d20e4147cb1b07d001239eba5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/14c4093d20e4147cb1b07d001239eba5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/14c4093d20e4147cb1b07d001239eba5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA28900153", + "BPM": 147.7, + "Duration": 295, + "ReleaseDate": "2008-05-27", + "AlbumName": "Get The Knack", + "Explicit": false, + "Rank": 721830, + "Tags": [ + "Rock", + "bpm:147.7", + "fast", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 4660, + "name": "The Knack", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 415, + "Name": "My Sharona", + "Artists": "The Knack", + "Color": "E7456D", + "DarkColor": "671F2D", + "SongMetaId": null, + "SpotifyId": "1HOMkjp0nHMaTnfAkslCQj", + "DeezerID": 3248376, + "DeezerURL": "https://www.deezer.com/track/3248376", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/14c4093d20e4147cb1b07d001239eba5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/14c4093d20e4147cb1b07d001239eba5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/14c4093d20e4147cb1b07d001239eba5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/14c4093d20e4147cb1b07d001239eba5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA28900153", + "BPM": 147.7, + "Duration": 295, + "ReleaseDate": "2008-05-27", + "AlbumName": "Get The Knack", + "Explicit": false, + "Rank": 721830, + "Tags": [ + "Rock", + "bpm:147.7", + "fast", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 4660, + "name": "The Knack", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 447, + "Name": "N95", + "Artists": "Kendrick Lamar", + "Color": "AD8A52", + "DarkColor": "563628", + "SongMetaId": null, + "SpotifyId": "0fX4oNGBWO3dSGUZcVdVV2", + "DeezerID": 1766771507, + "DeezerURL": "https://www.deezer.com/track/1766771507", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/412361ce41f0bd2595978dbf0e035ad3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/412361ce41f0bd2595978dbf0e035ad3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/412361ce41f0bd2595978dbf0e035ad3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/412361ce41f0bd2595978dbf0e035ad3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72208963", + "BPM": 0, + "Duration": 195, + "ReleaseDate": "2022-05-27", + "AlbumName": "Mr. Morale & The Big Steppers", + "Explicit": true, + "Rank": 744453, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 525046, + "name": "Kendrick Lamar", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 447, + "Name": "N95", + "Artists": "Kendrick Lamar", + "Color": "AD8A52", + "DarkColor": "563628", + "SongMetaId": null, + "SpotifyId": "0fX4oNGBWO3dSGUZcVdVV2", + "DeezerID": 1766771507, + "DeezerURL": "https://www.deezer.com/track/1766771507", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/412361ce41f0bd2595978dbf0e035ad3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/412361ce41f0bd2595978dbf0e035ad3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/412361ce41f0bd2595978dbf0e035ad3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/412361ce41f0bd2595978dbf0e035ad3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72208963", + "BPM": 0, + "Duration": 195, + "ReleaseDate": "2022-05-27", + "AlbumName": "Mr. Morale & The Big Steppers", + "Explicit": true, + "Rank": 744453, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 525046, + "name": "Kendrick Lamar", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 369, + "Name": "Natural", + "Artists": "Breland", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "6KEdg0ii904KICNmAdz2YJ", + "DeezerID": 1784670697, + "DeezerURL": "https://www.deezer.com/track/1784670697", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f6bfcc41f0981644f5eea44d07da5deb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f6bfcc41f0981644f5eea44d07da5deb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f6bfcc41f0981644f5eea44d07da5deb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f6bfcc41f0981644f5eea44d07da5deb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT22206684", + "BPM": 0, + "Duration": 162, + "ReleaseDate": "2022-06-14", + "AlbumName": "Natural", + "Explicit": false, + "Rank": 254237, + "Tags": [ + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 4860242, + "name": "BRELAND", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 579, + "Name": "Need You Tonight", + "Artists": "INXS", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "5eU8qMd0TpaLqTGDZJaLDs", + "DeezerID": 11282931, + "DeezerURL": "https://www.deezer.com/track/11282931", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3b547d440d987bf10a4fc5c8789e92c5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3b547d440d987bf10a4fc5c8789e92c5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3b547d440d987bf10a4fc5c8789e92c5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3b547d440d987bf10a4fc5c8789e92c5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAMX8700008", + "BPM": 108.5, + "Duration": 184, + "ReleaseDate": "2011-01-01", + "AlbumName": "Kick (Remastered 2011)", + "Explicit": false, + "Rank": 804326, + "Tags": [ + "Pop", + "bpm:108.5", + "medium", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 1231, + "name": "INXS", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 579, + "Name": "Need You Tonight", + "Artists": "INXS", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "5eU8qMd0TpaLqTGDZJaLDs", + "DeezerID": 11282931, + "DeezerURL": "https://www.deezer.com/track/11282931", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3b547d440d987bf10a4fc5c8789e92c5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3b547d440d987bf10a4fc5c8789e92c5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3b547d440d987bf10a4fc5c8789e92c5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3b547d440d987bf10a4fc5c8789e92c5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAMX8700008", + "BPM": 108.5, + "Duration": 184, + "ReleaseDate": "2011-01-01", + "AlbumName": "Kick (Remastered 2011)", + "Explicit": false, + "Rank": 804326, + "Tags": [ + "Pop", + "bpm:108.5", + "medium", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 1231, + "name": "INXS", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 124, + "Name": "Neko", + "Artists": "DISH//", + "Color": "49E569", + "DarkColor": "027954", + "SongMetaId": null, + "SpotifyId": "6sIx7Cn37DGEhjy9hBP8Gx", + "DeezerID": 976092592, + "DeezerURL": "https://www.deezer.com/track/976092592", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0d8dc32948bd8d823d47b1df920c9108/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0d8dc32948bd8d823d47b1df920c9108/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0d8dc32948bd8d823d47b1df920c9108/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0d8dc32948bd8d823d47b1df920c9108/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPU901702379", + "BPM": 0, + "Duration": 276, + "ReleaseDate": "2017-08-15", + "AlbumName": "Bokutachiga Yarimashita", + "Explicit": false, + "Rank": 162001, + "Tags": [ + "J-Pop", + "Música asiática", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 15136237, + "name": "DISH//", + "role": "Main" + } + ], + "AlbumGenres": [ + "Música asiática", + "J-Pop" + ] + }, + { + "SongId": 321, + "Name": "Never Gonna Give You Up", + "Artists": "Rick Astley", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "4PTG3Z6ehGkBFwjybzWkR8", + "DeezerID": 781592622, + "DeezerURL": "https://www.deezer.com/track/781592622", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fe779e632872f7c6e9f1c84ffa7afc33/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fe779e632872f7c6e9f1c84ffa7afc33/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fe779e632872f7c6e9f1c84ffa7afc33/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fe779e632872f7c6e9f1c84ffa7afc33/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL9300135", + "BPM": 0, + "Duration": 213, + "ReleaseDate": "2019-10-25", + "AlbumName": "The Best of Me", + "Explicit": false, + "Rank": 856889, + "Tags": [ + "Pop", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 6160, + "name": "Rick Astley", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 321, + "Name": "Never Gonna Give You Up", + "Artists": "Rick Astley", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "4PTG3Z6ehGkBFwjybzWkR8", + "DeezerID": 781592622, + "DeezerURL": "https://www.deezer.com/track/781592622", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fe779e632872f7c6e9f1c84ffa7afc33/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fe779e632872f7c6e9f1c84ffa7afc33/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fe779e632872f7c6e9f1c84ffa7afc33/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fe779e632872f7c6e9f1c84ffa7afc33/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL9300135", + "BPM": 0, + "Duration": 213, + "ReleaseDate": "2019-10-25", + "AlbumName": "The Best of Me", + "Explicit": false, + "Rank": 856889, + "Tags": [ + "Pop", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 6160, + "name": "Rick Astley", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 519, + "Name": "No Good", + "Artists": "Kaleo", + "Color": "AD8A52", + "DarkColor": "563628", + "SongMetaId": null, + "SpotifyId": "0Tr5G2mE56eLUGvCaXRM8I", + "DeezerID": 126011305, + "DeezerURL": "https://www.deezer.com/track/126011305", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/294bbdc3f67ae550c40830185b529873/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/294bbdc3f67ae550c40830185b529873/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/294bbdc3f67ae550c40830185b529873/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/294bbdc3f67ae550c40830185b529873/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21601267", + "BPM": 107.95, + "Duration": 234, + "ReleaseDate": "2016-06-10", + "AlbumName": "A/B", + "Explicit": false, + "Rank": 595038, + "Tags": [ + "Alternativo", + "bpm:107.95", + "medium", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 1138351, + "name": "KALEO", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 519, + "Name": "No Good", + "Artists": "Kaleo", + "Color": "AD8A52", + "DarkColor": "563628", + "SongMetaId": null, + "SpotifyId": "0Tr5G2mE56eLUGvCaXRM8I", + "DeezerID": 126011305, + "DeezerURL": "https://www.deezer.com/track/126011305", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/294bbdc3f67ae550c40830185b529873/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/294bbdc3f67ae550c40830185b529873/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/294bbdc3f67ae550c40830185b529873/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/294bbdc3f67ae550c40830185b529873/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21601267", + "BPM": 107.95, + "Duration": 234, + "ReleaseDate": "2016-06-10", + "AlbumName": "A/B", + "Explicit": false, + "Rank": 595038, + "Tags": [ + "Alternativo", + "bpm:107.95", + "medium", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 1138351, + "name": "KALEO", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 175, + "Name": "No Hands", + "Artists": "Waka Flocka Flame, Roscoe Dash, Wale", + "Color": "A3001E", + "DarkColor": "350505", + "SongMetaId": null, + "SpotifyId": "2HQqVUYsZcWWA9sDomgCDj", + "DeezerID": 7303329, + "DeezerURL": "https://www.deezer.com/track/7303329", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/40f44258eb8127d96b50e58a27b1811d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/40f44258eb8127d96b50e58a27b1811d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/40f44258eb8127d96b50e58a27b1811d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/40f44258eb8127d96b50e58a27b1811d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB11002103", + "BPM": 131.7, + "Duration": 263, + "ReleaseDate": "2010-10-01", + "AlbumName": "Flockaveli", + "Explicit": true, + "Rank": 628243, + "Tags": [ + "Rap/Hip Hop", + "bpm:131.7", + "fast", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 413051, + "name": "Waka Flocka Flame", + "role": "Main" + }, + { + "id": 517615, + "name": "Roscoe Dash", + "role": "Featured" + }, + { + "id": 281561, + "name": "Wale", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 30, + "Name": "No One Knows", + "Artists": "Queens of the Stone Age", + "Color": "E6333A", + "DarkColor": "81051D", + "SongMetaId": "24", + "SpotifyId": "6NvRxjfYkkT2SpirAlmsjH", + "DeezerID": 7179758, + "DeezerURL": "https://www.deezer.com/track/7179758", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ace9490e8fe0c7468b102aa5145fb766/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ace9490e8fe0c7468b102aa5145fb766/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ace9490e8fe0c7468b102aa5145fb766/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ace9490e8fe0c7468b102aa5145fb766/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR10211291", + "BPM": 170.1, + "Duration": 278, + "ReleaseDate": "2002-08-21", + "AlbumName": "Songs For The Deaf", + "Explicit": false, + "Rank": 782606, + "Tags": [ + "Pop", + "bpm:170.1", + "medium-length", + "very-fast", + "year:2002" + ], + "Contributors": [ + { + "id": 1177, + "name": "Queens of the Stone Age", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 409, + "Name": "No Scrubs", + "Artists": "TLC", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "1KGi9sZVMeszgZOWivFpxs", + "DeezerID": 1075781, + "DeezerURL": "https://www.deezer.com/track/1075781", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6dd5f40e7688ba155a5ef557977e95d3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6dd5f40e7688ba155a5ef557977e95d3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6dd5f40e7688ba155a5ef557977e95d3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6dd5f40e7688ba155a5ef557977e95d3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USLF29900479", + "BPM": 92.9, + "Duration": 214, + "ReleaseDate": "1999-02-22", + "AlbumName": "Fanmail", + "Explicit": false, + "Rank": 866908, + "Tags": [ + "R&B", + "bpm:92.9", + "medium", + "medium-length", + "year:1999" + ], + "Contributors": [ + { + "id": 183, + "name": "TLC", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 409, + "Name": "No Scrubs", + "Artists": "TLC", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "1KGi9sZVMeszgZOWivFpxs", + "DeezerID": 1075781, + "DeezerURL": "https://www.deezer.com/track/1075781", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6dd5f40e7688ba155a5ef557977e95d3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6dd5f40e7688ba155a5ef557977e95d3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6dd5f40e7688ba155a5ef557977e95d3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6dd5f40e7688ba155a5ef557977e95d3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USLF29900479", + "BPM": 92.9, + "Duration": 214, + "ReleaseDate": "1999-02-22", + "AlbumName": "Fanmail", + "Explicit": false, + "Rank": 866908, + "Tags": [ + "R&B", + "bpm:92.9", + "medium", + "medium-length", + "year:1999" + ], + "Contributors": [ + { + "id": 183, + "name": "TLC", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 213, + "Name": "No tears left to cry", + "Artists": "Ariana Grande", + "Color": "F7BE9C", + "DarkColor": "7A3F32", + "SongMetaId": null, + "SpotifyId": "2qT1uLXPVPzGgFOx4jtEuo", + "DeezerID": 542389552, + "DeezerURL": "https://www.deezer.com/track/542389552", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8a5d4fa5c1b97100bf128909d766f06f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8a5d4fa5c1b97100bf128909d766f06f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8a5d4fa5c1b97100bf128909d766f06f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8a5d4fa5c1b97100bf128909d766f06f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71805289", + "BPM": 121.96, + "Duration": 205, + "ReleaseDate": "2018-08-17", + "AlbumName": "Sweetener", + "Explicit": false, + "Rank": 841235, + "Tags": [ + "Pop", + "bpm:121.96", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 1562681, + "name": "Ariana Grande", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 227, + "Name": "No Type", + "Artists": "Rae Sremmurd", + "Color": "AB5624", + "DarkColor": "781A0A", + "SongMetaId": null, + "SpotifyId": "4scpF6J5uMBvoh6sFB7EL1", + "DeezerID": 92871300, + "DeezerURL": "https://www.deezer.com/track/92871300", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f9454fedea983a965c2531e823ae6f5a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f9454fedea983a965c2531e823ae6f5a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f9454fedea983a965c2531e823ae6f5a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f9454fedea983a965c2531e823ae6f5a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71413477", + "BPM": 124.9, + "Duration": 200, + "ReleaseDate": "2015-01-06", + "AlbumName": "SremmLife", + "Explicit": true, + "Rank": 660372, + "Tags": [ + "Rap/Hip Hop", + "bpm:124.9", + "fast", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 5575762, + "name": "Rae Sremmurd", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 83, + "Name": "Norf Norf", + "Artists": "Vince Staples", + "Color": "D17440", + "DarkColor": "852F23", + "SongMetaId": null, + "SpotifyId": "4uQ7wYsuL0DryknoDc11Hk", + "DeezerID": 102027543, + "DeezerURL": "https://www.deezer.com/track/102027543", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/93392d34e4cc6ef84160119728aa2ee8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/93392d34e4cc6ef84160119728aa2ee8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/93392d34e4cc6ef84160119728aa2ee8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/93392d34e4cc6ef84160119728aa2ee8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71507721", + "BPM": 0, + "Duration": 183, + "ReleaseDate": "2015-06-23", + "AlbumName": "Norf Norf", + "Explicit": true, + "Rank": 380369, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 4037971, + "name": "Vince Staples", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 348, + "Name": "Not Fair", + "Artists": "Lily Allen", + "Color": "D18C91", + "DarkColor": "522A39", + "SongMetaId": null, + "SpotifyId": "3NHXj1DBuoxA7HL0xfQAZC", + "DeezerID": 4622568, + "DeezerURL": "https://www.deezer.com/track/4622568", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2a8c71f0ad0e4655dce84452b6716672/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2a8c71f0ad0e4655dce84452b6716672/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2a8c71f0ad0e4655dce84452b6716672/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2a8c71f0ad0e4655dce84452b6716672/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE0802261", + "BPM": 121.6, + "Duration": 201, + "ReleaseDate": "2008-12-02", + "AlbumName": "It's Not Me, It's You (Special Edition)", + "Explicit": true, + "Rank": 591721, + "Tags": [ + "Pop", + "bpm:121.6", + "fast", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 4607, + "name": "Lily Allen", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 102, + "Name": "Not Ready For Love", + "Artists": "TCTS, Maya B", + "Color": "A7E633", + "DarkColor": "368B2F", + "SongMetaId": null, + "SpotifyId": "6srxWPSep6Jp5Xw0IHYWoy", + "DeezerID": 774810602, + "DeezerURL": "https://www.deezer.com/track/774810602", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/26c93a55615f9dba740ee9b835799faf/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/26c93a55615f9dba740ee9b835799faf/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/26c93a55615f9dba740ee9b835799faf/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/26c93a55615f9dba740ee9b835799faf/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71919880", + "BPM": 0, + "Duration": 193, + "ReleaseDate": "2019-10-18", + "AlbumName": "Not Ready For Love", + "Explicit": true, + "Rank": 236578, + "Tags": [ + "Dance", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 1770011, + "name": "TCTS", + "role": "Main" + }, + { + "id": 13261789, + "name": "Maya B", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 452, + "Name": "Numb", + "Artists": "Linkin Park", + "Color": "A79273", + "DarkColor": "453B33", + "SongMetaId": null, + "SpotifyId": "2nLtzopw4rPReszdYBJU6h", + "DeezerID": 677232, + "DeezerURL": "https://www.deezer.com/track/677232", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/44df4f6fb2534768f4924365c103d0f7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/44df4f6fb2534768f4924365c103d0f7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/44df4f6fb2534768f4924365c103d0f7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/44df4f6fb2534768f4924365c103d0f7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB10300474", + "BPM": 0, + "Duration": 187, + "ReleaseDate": "2003-03-24", + "AlbumName": "Meteora (Bonus Edition)", + "Explicit": false, + "Rank": 977085, + "Tags": [ + "Alternativo", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 92, + "name": "Linkin Park", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 452, + "Name": "Numb", + "Artists": "Linkin Park", + "Color": "A79273", + "DarkColor": "453B33", + "SongMetaId": null, + "SpotifyId": "2nLtzopw4rPReszdYBJU6h", + "DeezerID": 677232, + "DeezerURL": "https://www.deezer.com/track/677232", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/44df4f6fb2534768f4924365c103d0f7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/44df4f6fb2534768f4924365c103d0f7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/44df4f6fb2534768f4924365c103d0f7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/44df4f6fb2534768f4924365c103d0f7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB10300474", + "BPM": 0, + "Duration": 187, + "ReleaseDate": "2003-03-24", + "AlbumName": "Meteora (Bonus Edition)", + "Explicit": false, + "Rank": 977085, + "Tags": [ + "Alternativo", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 92, + "name": "Linkin Park", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 1, + "Name": "Ocean Drive", + "Artists": "Duke Dumont", + "Color": "E51A18", + "DarkColor": "750D0C", + "SongMetaId": null, + "SpotifyId": "0b6wdul3A5sQNpIOv03OxP", + "DeezerID": 104847438, + "DeezerURL": "https://www.deezer.com/track/104847438", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/30132770466ebc2452d25f88e3d1d215/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/30132770466ebc2452d25f88e3d1d215/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/30132770466ebc2452d25f88e3d1d215/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/30132770466ebc2452d25f88e3d1d215/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71504503", + "BPM": 114.8, + "Duration": 205, + "ReleaseDate": "2015-07-31", + "AlbumName": "Ocean Drive", + "Explicit": false, + "Rank": 778114, + "Tags": [ + "Dance", + "bpm:114.8", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 397164, + "name": "Duke Dumont", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 273, + "Name": "Old Town Road - Remix", + "Artists": "Lil Nas X, Billy Ray Cyrus", + "Color": "D18552", + "DarkColor": "A64E40", + "SongMetaId": null, + "SpotifyId": "2YpeDb67231RjR0MgVLzsG", + "DeezerID": 699056192, + "DeezerURL": "https://www.deezer.com/track/699056192", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3cfd6900fd2b342ec0e478faf300f6a2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3cfd6900fd2b342ec0e478faf300f6a2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3cfd6900fd2b342ec0e478faf300f6a2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3cfd6900fd2b342ec0e478faf300f6a2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM11902498", + "BPM": 0, + "Duration": 157, + "ReleaseDate": "2019-06-21", + "AlbumName": "7", + "Explicit": false, + "Rank": 766460, + "Tags": [ + "Alternativo", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 15166511, + "name": "Lil Nas X", + "role": "Main" + }, + { + "id": 14440, + "name": "Billy Ray Cyrus", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 110, + "Name": "On & On", + "Artists": "Erykah Badu", + "Color": "ED8251", + "DarkColor": "D85126", + "SongMetaId": null, + "SpotifyId": "0tNuJpBgtE65diL6Q8Q7fI", + "DeezerID": 1123844, + "DeezerURL": "https://www.deezer.com/track/1123844", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/98a24d07545ed7fa17805b4ca34be636/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/98a24d07545ed7fa17805b4ca34be636/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/98a24d07545ed7fa17805b4ca34be636/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/98a24d07545ed7fa17805b4ca34be636/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUR19700556", + "BPM": 0, + "Duration": 226, + "ReleaseDate": "2007-01-01", + "AlbumName": "Baduizm - Special Edition", + "Explicit": true, + "Rank": 661710, + "Tags": [ + "R&B", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 2056, + "name": "Erykah Badu", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 110, + "Name": "On & On", + "Artists": "Erykah Badu", + "Color": "E96E47", + "DarkColor": "D85126", + "SongMetaId": null, + "SpotifyId": "0tNuJpBgtE65diL6Q8Q7fI", + "DeezerID": 1123844, + "DeezerURL": "https://www.deezer.com/track/1123844", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/98a24d07545ed7fa17805b4ca34be636/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/98a24d07545ed7fa17805b4ca34be636/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/98a24d07545ed7fa17805b4ca34be636/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/98a24d07545ed7fa17805b4ca34be636/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUR19700556", + "BPM": 0, + "Duration": 226, + "ReleaseDate": "2007-01-01", + "AlbumName": "Baduizm - Special Edition", + "Explicit": true, + "Rank": 661710, + "Tags": [ + "R&B", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 2056, + "name": "Erykah Badu", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 171, + "Name": "One of Us is the Killer", + "Artists": "Dillinger Escape Plan", + "Color": "7B1E41", + "DarkColor": "591437", + "SongMetaId": null, + "SpotifyId": "3kRf43EgjlDAGt2TQ7M459", + "DeezerID": 438420162, + "DeezerURL": "https://www.deezer.com/track/438420162", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c0be7fc48e1f0bffc034bef35323420e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c0be7fc48e1f0bffc034bef35323420e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c0be7fc48e1f0bffc034bef35323420e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c0be7fc48e1f0bffc034bef35323420e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USYFZ1336803", + "BPM": 128, + "Duration": 208, + "ReleaseDate": "2013-05-17", + "AlbumName": "One of Us Is the Killer", + "Explicit": false, + "Rank": 268856, + "Tags": [ + "Metal", + "Rock", + "bpm:128", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 1784, + "name": "The Dillinger Escape Plan", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Metal" + ] + }, + { + "SongId": 367, + "Name": "One Thing Right", + "Artists": "Marshmello, Kane Brown", + "Color": "F5C056", + "DarkColor": "996F13", + "SongMetaId": null, + "SpotifyId": "4hPpVbbakQNv8YTHYaOJP4", + "DeezerID": 2769846461, + "DeezerURL": "https://www.deezer.com/track/2769846461", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9d3f2ccb89a565d716e40ab894be49e8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9d3f2ccb89a565d716e40ab894be49e8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9d3f2ccb89a565d716e40ab894be49e8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9d3f2ccb89a565d716e40ab894be49e8/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZZVQ2400059", + "BPM": 0, + "Duration": 168, + "ReleaseDate": "2024-05-03", + "AlbumName": "Miles On It", + "Explicit": false, + "Rank": 791134, + "Tags": [ + "Pop", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 7890702, + "name": "Marshmello", + "role": "Main" + }, + { + "id": 827425, + "name": "Kane Brown", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 45, + "Name": "Ooh La La", + "Artists": "Goldfrapp", + "Color": "D0AB64", + "DarkColor": "7D5B3E", + "SongMetaId": null, + "SpotifyId": "3E0gVkirGK2ouGHPuOO9cN", + "DeezerID": 141489243, + "DeezerURL": "https://www.deezer.com/track/141489243", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1ff7b327f962ed30bf171a77eb9e48cf/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1ff7b327f962ed30bf171a77eb9e48cf/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1ff7b327f962ed30bf171a77eb9e48cf/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1ff7b327f962ed30bf171a77eb9e48cf/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAJH0500954", + "BPM": 144.56, + "Duration": 204, + "ReleaseDate": "2013-08-01", + "AlbumName": "Supernature", + "Explicit": false, + "Rank": 629967, + "Tags": [ + "Alternativo", + "bpm:144.56", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 108, + "name": "Goldfrapp", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 8, + "Name": "Outta Your Mind", + "Artists": "Lil Jon, LMFAO", + "Color": "CD073A", + "DarkColor": "96003B", + "SongMetaId": null, + "SpotifyId": "1Oenqmtbzt331Pgv0ODfS2", + "DeezerID": 6298352, + "DeezerURL": "https://www.deezer.com/track/6298352", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e226a9ec8fd129fd28e21ec6c38b29d7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e226a9ec8fd129fd28e21ec6c38b29d7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e226a9ec8fd129fd28e21ec6c38b29d7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e226a9ec8fd129fd28e21ec6c38b29d7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71013738", + "BPM": 0, + "Duration": 250, + "ReleaseDate": "2010-01-01", + "AlbumName": "Crunk Rock (Deluxe)", + "Explicit": true, + "Rank": 434755, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 110587, + "name": "Lil Jon", + "role": "Main" + }, + { + "id": 167225, + "name": "LMFAO", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 296, + "Name": "Over and Over", + "Artists": "Hot Chip", + "Color": "EBC146", + "DarkColor": "CE7A2F", + "SongMetaId": null, + "SpotifyId": "3RCj5fG55qjtmnEML1gpnA", + "DeezerID": 376022571, + "DeezerURL": "https://www.deezer.com/track/376022571", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f56a89735e6a8d92ac4af17edafba88f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f56a89735e6a8d92ac4af17edafba88f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f56a89735e6a8d92ac4af17edafba88f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f56a89735e6a8d92ac4af17edafba88f/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE0501516", + "BPM": 119.84, + "Duration": 347, + "ReleaseDate": "2006-05-22", + "AlbumName": "The Warning", + "Explicit": false, + "Rank": 428852, + "Tags": [ + "Electro", + "bpm:119.84", + "long", + "medium", + "year:2006" + ], + "Contributors": [ + { + "id": 4032, + "name": "Hot Chip", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 300, + "Name": "Overdrive", + "Artists": "Metrik, Grafix", + "Color": "22B1C0", + "DarkColor": "006977", + "SongMetaId": null, + "SpotifyId": "7bK8auKml4tirrGcUDOQ0b", + "DeezerID": 2272317677, + "DeezerURL": "https://www.deezer.com/track/2272317677", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3d8bb5fda8810beb9ebc438bff9adf81/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3d8bb5fda8810beb9ebc438bff9adf81/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3d8bb5fda8810beb9ebc438bff9adf81/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3d8bb5fda8810beb9ebc438bff9adf81/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCJY2100202", + "BPM": 0, + "Duration": 281, + "ReleaseDate": "2021-07-23", + "AlbumName": "Overdrive / Parallel (VIP)", + "Explicit": false, + "Rank": 263905, + "Tags": [ + "Dance", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 469495, + "name": "Metrik", + "role": "Main" + }, + { + "id": 1401462, + "name": "Grafix", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 300, + "Name": "Overdrive", + "Artists": "Metrik, Grafix", + "Color": "22B1C1", + "DarkColor": "16747F", + "SongMetaId": null, + "SpotifyId": "7bK8auKml4tirrGcUDOQ0b", + "DeezerID": 2272317677, + "DeezerURL": "https://www.deezer.com/track/2272317677", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3d8bb5fda8810beb9ebc438bff9adf81/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3d8bb5fda8810beb9ebc438bff9adf81/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3d8bb5fda8810beb9ebc438bff9adf81/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3d8bb5fda8810beb9ebc438bff9adf81/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCJY2100202", + "BPM": 0, + "Duration": 281, + "ReleaseDate": "2021-07-23", + "AlbumName": "Overdrive / Parallel (VIP)", + "Explicit": false, + "Rank": 263905, + "Tags": [ + "Dance", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 469495, + "name": "Metrik", + "role": "Main" + }, + { + "id": 1401462, + "name": "Grafix", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 629, + "Name": "Padam Padam", + "Artists": "Kylie Minogue", + "Color": "4AB96C", + "DarkColor": "297541", + "SongMetaId": null, + "SpotifyId": "44MuEHdlociG8KjhPhOVw5", + "DeezerID": 2274832397, + "DeezerURL": "https://www.deezer.com/track/2274832397", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d87e74c68f031f15324ca3b5a72e5bf4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d87e74c68f031f15324ca3b5a72e5bf4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d87e74c68f031f15324ca3b5a72e5bf4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d87e74c68f031f15324ca3b5a72e5bf4/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB5KW2301017", + "BPM": 0, + "Duration": 166, + "ReleaseDate": "2023-05-18", + "AlbumName": "Padam Padam", + "Explicit": false, + "Rank": 716743, + "Tags": [ + "Pop", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 479, + "name": "Kylie Minogue", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 629, + "Name": "Padam Padam", + "Artists": "Kylie Minogue", + "Color": "4AB96C", + "DarkColor": "1C5A26", + "SongMetaId": null, + "SpotifyId": "44MuEHdlociG8KjhPhOVw5", + "DeezerID": 2274832397, + "DeezerURL": "https://www.deezer.com/track/2274832397", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d87e74c68f031f15324ca3b5a72e5bf4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d87e74c68f031f15324ca3b5a72e5bf4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d87e74c68f031f15324ca3b5a72e5bf4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d87e74c68f031f15324ca3b5a72e5bf4/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB5KW2301017", + "BPM": 0, + "Duration": 166, + "ReleaseDate": "2023-05-18", + "AlbumName": "Padam Padam", + "Explicit": false, + "Rank": 716743, + "Tags": [ + "Pop", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 479, + "name": "Kylie Minogue", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 466, + "Name": "Painless", + "Artists": "Wanne", + "Color": "A54482", + "DarkColor": "611A6E", + "SongMetaId": null, + "SpotifyId": "5fWR1WEBrn2AUjthgbOAf4", + "DeezerID": 418674782, + "DeezerURL": "https://www.deezer.com/track/418674782", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a82b80e6bbad05918393fef7df19fc59/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a82b80e6bbad05918393fef7df19fc59/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a82b80e6bbad05918393fef7df19fc59/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a82b80e6bbad05918393fef7df19fc59/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM81795382", + "BPM": 0, + "Duration": 228, + "ReleaseDate": "2017-10-25", + "AlbumName": "Painless", + "Explicit": false, + "Rank": 64260, + "Tags": [ + "Dance", + "Electro", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 13418007, + "name": "Wanne", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 466, + "Name": "Painless", + "Artists": "Wanne", + "Color": "A54482", + "DarkColor": "611A6E", + "SongMetaId": null, + "SpotifyId": "5fWR1WEBrn2AUjthgbOAf4", + "DeezerID": 418674782, + "DeezerURL": "https://www.deezer.com/track/418674782", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a82b80e6bbad05918393fef7df19fc59/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a82b80e6bbad05918393fef7df19fc59/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a82b80e6bbad05918393fef7df19fc59/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a82b80e6bbad05918393fef7df19fc59/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM81795382", + "BPM": 0, + "Duration": 228, + "ReleaseDate": "2017-10-25", + "AlbumName": "Painless", + "Explicit": false, + "Rank": 64260, + "Tags": [ + "Dance", + "Electro", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 13418007, + "name": "Wanne", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 198, + "Name": "Panini", + "Artists": "Lil Nas X", + "Color": "1B5F82", + "DarkColor": "15293B", + "SongMetaId": null, + "SpotifyId": "1000nHvUdawXuUHgBod4Wv", + "DeezerID": 699056202, + "DeezerURL": "https://www.deezer.com/track/699056202", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3cfd6900fd2b342ec0e478faf300f6a2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3cfd6900fd2b342ec0e478faf300f6a2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3cfd6900fd2b342ec0e478faf300f6a2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3cfd6900fd2b342ec0e478faf300f6a2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM11903948", + "BPM": 0, + "Duration": 114, + "ReleaseDate": "2019-06-21", + "AlbumName": "7", + "Explicit": false, + "Rank": 670103, + "Tags": [ + "Alternativo", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 15166511, + "name": "Lil Nas X", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 198, + "Name": "Panini", + "Artists": "Lil Nas X", + "Color": "1B5F82", + "DarkColor": "15293B", + "SongMetaId": null, + "SpotifyId": "1000nHvUdawXuUHgBod4Wv", + "DeezerID": 699056202, + "DeezerURL": "https://www.deezer.com/track/699056202", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3cfd6900fd2b342ec0e478faf300f6a2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3cfd6900fd2b342ec0e478faf300f6a2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3cfd6900fd2b342ec0e478faf300f6a2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3cfd6900fd2b342ec0e478faf300f6a2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM11903948", + "BPM": 0, + "Duration": 114, + "ReleaseDate": "2019-06-21", + "AlbumName": "7", + "Explicit": false, + "Rank": 670103, + "Tags": [ + "Alternativo", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 15166511, + "name": "Lil Nas X", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 35, + "Name": "Party Hard", + "Artists": "Andrew W.K.", + "Color": "A3001E", + "DarkColor": "350505", + "SongMetaId": null, + "SpotifyId": "0E0bZtTG39K95uRjqBo1Mx", + "DeezerID": 2318548, + "DeezerURL": "https://www.deezer.com/track/2318548", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f4f197b63afd6db054070b2d109dc2f1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f4f197b63afd6db054070b2d109dc2f1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f4f197b63afd6db054070b2d109dc2f1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f4f197b63afd6db054070b2d109dc2f1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR20180456", + "BPM": 0, + "Duration": 186, + "ReleaseDate": "2001-01-01", + "AlbumName": "I Get Wet", + "Explicit": false, + "Rank": 487368, + "Tags": [ + "Rock", + "medium-length", + "year:2001" + ], + "Contributors": [ + { + "id": 3688, + "name": "Andrew W.K.", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 482, + "Name": "Party In The U.S.A.", + "Artists": "Miley Cyrus", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "5Q0Nhxo0l2bP3pNjpGJwV1", + "DeezerID": 4233792, + "DeezerURL": "https://www.deezer.com/track/4233792", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5eb7bf3d5a9e623f2f74536dbb197dfa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5eb7bf3d5a9e623f2f74536dbb197dfa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5eb7bf3d5a9e623f2f74536dbb197dfa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5eb7bf3d5a9e623f2f74536dbb197dfa/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHR10924519", + "BPM": 95.9, + "Duration": 202, + "ReleaseDate": "2009-08-11", + "AlbumName": "Party In The U.S.A.", + "Explicit": false, + "Rank": 847960, + "Tags": [ + "Pop", + "bpm:95.9", + "medium", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 12436, + "name": "Miley Cyrus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 482, + "Name": "Party In The U.S.A.", + "Artists": "Miley Cyrus", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "5Q0Nhxo0l2bP3pNjpGJwV1", + "DeezerID": 4233792, + "DeezerURL": "https://www.deezer.com/track/4233792", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5eb7bf3d5a9e623f2f74536dbb197dfa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5eb7bf3d5a9e623f2f74536dbb197dfa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5eb7bf3d5a9e623f2f74536dbb197dfa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5eb7bf3d5a9e623f2f74536dbb197dfa/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHR10924519", + "BPM": 95.9, + "Duration": 202, + "ReleaseDate": "2009-08-11", + "AlbumName": "Party In The U.S.A.", + "Explicit": false, + "Rank": 847960, + "Tags": [ + "Pop", + "bpm:95.9", + "medium", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 12436, + "name": "Miley Cyrus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 85, + "Name": "Party Rock Anthem", + "Artists": "LMFAO", + "Color": "95399D", + "DarkColor": "6C246B", + "SongMetaId": null, + "SpotifyId": "0IkKz2J93C94Ei4BvDop7P", + "DeezerID": 12565420, + "DeezerURL": "https://www.deezer.com/track/12565420", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/63278375978f200fb751cd63624151bb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/63278375978f200fb751cd63624151bb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/63278375978f200fb751cd63624151bb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/63278375978f200fb751cd63624151bb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71100061", + "BPM": 130, + "Duration": 263, + "ReleaseDate": "2011-06-20", + "AlbumName": "Sorry For Party Rocking", + "Explicit": false, + "Rank": 911095, + "Tags": [ + "Dance", + "Pop", + "bpm:130", + "fast", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 167225, + "name": "LMFAO", + "role": "Main" + }, + { + "id": 1678240, + "name": "Lauren Bennett", + "role": "Featured" + }, + { + "id": 4674587, + "name": "GoonRock", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 85, + "Name": "Party Rock Anthem", + "Artists": "LMFAO", + "Color": "822A7E", + "DarkColor": "71256D", + "SongMetaId": null, + "SpotifyId": "0IkKz2J93C94Ei4BvDop7P", + "DeezerID": 12565420, + "DeezerURL": "https://www.deezer.com/track/12565420", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/63278375978f200fb751cd63624151bb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/63278375978f200fb751cd63624151bb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/63278375978f200fb751cd63624151bb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/63278375978f200fb751cd63624151bb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71100061", + "BPM": 130, + "Duration": 263, + "ReleaseDate": "2011-06-20", + "AlbumName": "Sorry For Party Rocking", + "Explicit": false, + "Rank": 911095, + "Tags": [ + "Dance", + "Pop", + "bpm:130", + "fast", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 167225, + "name": "LMFAO", + "role": "Main" + }, + { + "id": 1678240, + "name": "Lauren Bennett", + "role": "Featured" + }, + { + "id": 4674587, + "name": "GoonRock", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 192, + "Name": "Perfect Strangers", + "Artists": "Jonas Blue", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "3P3pw6C19j31Rnzgo3JG7o", + "DeezerID": 879776182, + "DeezerURL": "https://www.deezer.com/track/879776182", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d63800f0a90342e1bbf7f03822e807e6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d63800f0a90342e1bbf7f03822e807e6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d63800f0a90342e1bbf7f03822e807e6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d63800f0a90342e1bbf7f03822e807e6/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71602437", + "BPM": 118.12, + "Duration": 196, + "ReleaseDate": "2020-02-21", + "AlbumName": "Perfect Strangers", + "Explicit": false, + "Rank": 758981, + "Tags": [ + "Dance", + "bpm:118.12", + "medium", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 5306539, + "name": "Jonas Blue", + "role": "Main" + }, + { + "id": 1641705, + "name": "JP Cooper", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 424, + "Name": "Persistence", + "Artists": "Beatstar Originals", + "Color": "F86F0E", + "DarkColor": "921C0A", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 137, + "Name": "Peru", + "Artists": "Fireboy DML, Ed Sheeran", + "Color": "F7784A", + "DarkColor": "E24339", + "SongMetaId": null, + "SpotifyId": "4vb777iaycnlFxVkJMmtfd", + "DeezerID": 1592733101, + "DeezerURL": "https://www.deezer.com/track/1592733101", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8aad871a69151cfd7c45139cb7215831/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8aad871a69151cfd7c45139cb7215831/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8aad871a69151cfd7c45139cb7215831/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8aad871a69151cfd7c45139cb7215831/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUYG1403104", + "BPM": 0, + "Duration": 187, + "ReleaseDate": "2021-12-23", + "AlbumName": "Peru", + "Explicit": true, + "Rank": 747985, + "Tags": [ + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 15190997, + "name": "Fireboy Dml", + "role": "Main" + }, + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 545, + "Name": "Piñata", + "Artists": "DEQN SUE", + "Color": "4AB96C", + "DarkColor": "297541", + "SongMetaId": null, + "SpotifyId": "6oBN06EPJkRPFAI815ztEA", + "DeezerID": 408062292, + "DeezerURL": "https://www.deezer.com/track/408062292", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/73bfa551d508d3c5a2e17822b610a405/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/73bfa551d508d3c5a2e17822b610a405/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/73bfa551d508d3c5a2e17822b610a405/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/73bfa551d508d3c5a2e17822b610a405/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM81751537", + "BPM": 0, + "Duration": 221, + "ReleaseDate": "2017-09-15", + "AlbumName": "Juggernaut", + "Explicit": false, + "Rank": 64433, + "Tags": [ + "Pop", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 4049877, + "name": "deQn Sue", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 545, + "Name": "Piñata", + "Artists": "DEQN SUE", + "Color": "4AB96C", + "DarkColor": "1C5A26", + "SongMetaId": null, + "SpotifyId": "6oBN06EPJkRPFAI815ztEA", + "DeezerID": 408062292, + "DeezerURL": "https://www.deezer.com/track/408062292", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/73bfa551d508d3c5a2e17822b610a405/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/73bfa551d508d3c5a2e17822b610a405/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/73bfa551d508d3c5a2e17822b610a405/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/73bfa551d508d3c5a2e17822b610a405/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM81751537", + "BPM": 0, + "Duration": 221, + "ReleaseDate": "2017-09-15", + "AlbumName": "Juggernaut", + "Explicit": false, + "Rank": 64433, + "Tags": [ + "Pop", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 4049877, + "name": "deQn Sue", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 749, + "Name": "Pink Rain", + "Artists": "Brooklyn Van Zandt", + "Color": "E44A8C", + "DarkColor": "C52066", + "SongMetaId": null, + "SpotifyId": "4giMTsQxBNef9rA1S2CF3G", + "DeezerID": 3058867491, + "DeezerURL": "https://www.deezer.com/track/3058867491", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1b37f09077473a4d10d189725adad4fb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1b37f09077473a4d10d189725adad4fb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1b37f09077473a4d10d189725adad4fb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1b37f09077473a4d10d189725adad4fb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USANG2477282", + "BPM": 0, + "Duration": 150, + "ReleaseDate": "2024-10-25", + "AlbumName": "Pink Rain", + "Explicit": false, + "Rank": 230182, + "Tags": [ + "Pop", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 89656842, + "name": "Brooklyn Van Zandt", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 749, + "Name": "Pink Rain", + "Artists": "Brooklyn Van Zandt", + "Color": "E44A8C", + "DarkColor": "E44A8C", + "SongMetaId": null, + "SpotifyId": "4giMTsQxBNef9rA1S2CF3G", + "DeezerID": 3058867491, + "DeezerURL": "https://www.deezer.com/track/3058867491", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1b37f09077473a4d10d189725adad4fb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1b37f09077473a4d10d189725adad4fb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1b37f09077473a4d10d189725adad4fb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1b37f09077473a4d10d189725adad4fb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USANG2477282", + "BPM": 0, + "Duration": 150, + "ReleaseDate": "2024-10-25", + "AlbumName": "Pink Rain", + "Explicit": false, + "Rank": 230182, + "Tags": [ + "Pop", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 89656842, + "name": "Brooklyn Van Zandt", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 662, + "Name": "Pitbull ", + "Artists": "Samuei, Lkhn", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": null, + "SpotifyId": "6iyKHhqzpgrBnibVZDSCU9", + "DeezerID": 1904528937, + "DeezerURL": "https://www.deezer.com/track/1904528937", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8ca17b94369b359d7de536d061744f71/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8ca17b94369b359d7de536d061744f71/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8ca17b94369b359d7de536d061744f71/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8ca17b94369b359d7de536d061744f71/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZNWV2277137", + "BPM": 0, + "Duration": 138, + "ReleaseDate": "2022-12-01", + "AlbumName": "Fahrenheit", + "Explicit": false, + "Rank": 119921, + "Tags": [ + "Reggaeton", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 10981360, + "name": "Samuei", + "role": "Main" + }, + { + "id": 11710663, + "name": "Lkhn", + "role": "Main" + } + ], + "AlbumGenres": [ + "Reggaeton" + ] + }, + { + "SongId": 662, + "Name": "Pitbull ", + "Artists": "Samuei, Lkhn", + "Color": "7F2723", + "DarkColor": "432423", + "SongMetaId": null, + "SpotifyId": "6iyKHhqzpgrBnibVZDSCU9", + "DeezerID": 1904528937, + "DeezerURL": "https://www.deezer.com/track/1904528937", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8ca17b94369b359d7de536d061744f71/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8ca17b94369b359d7de536d061744f71/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8ca17b94369b359d7de536d061744f71/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8ca17b94369b359d7de536d061744f71/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZNWV2277137", + "BPM": 0, + "Duration": 138, + "ReleaseDate": "2022-12-01", + "AlbumName": "Fahrenheit", + "Explicit": false, + "Rank": 119921, + "Tags": [ + "Reggaeton", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 10981360, + "name": "Samuei", + "role": "Main" + }, + { + "id": 11710663, + "name": "Lkhn", + "role": "Main" + } + ], + "AlbumGenres": [ + "Reggaeton" + ] + }, + { + "SongId": 507, + "Name": "Plasma", + "Artists": "Sharks", + "Color": "AF81BA", + "DarkColor": "734C8B", + "SongMetaId": null, + "SpotifyId": "0fBUMWRqE9Y748EN7mQFzb", + "DeezerID": 1740037107, + "DeezerURL": "https://www.deezer.com/track/1740037107", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4b891d0a1da830ba295c6a75f6896a79/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4b891d0a1da830ba295c6a75f6896a79/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4b891d0a1da830ba295c6a75f6896a79/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4b891d0a1da830ba295c6a75f6896a79/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD2210053", + "BPM": 0, + "Duration": 186, + "ReleaseDate": "2022-03-18", + "AlbumName": "Infinity EP", + "Explicit": false, + "Rank": 103077, + "Tags": [ + "Dance", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 402710, + "name": "Sharks", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 507, + "Name": "Plasma", + "Artists": "Sharks", + "Color": "AF81BA", + "DarkColor": "734C8B", + "SongMetaId": null, + "SpotifyId": "0fBUMWRqE9Y748EN7mQFzb", + "DeezerID": 1740037107, + "DeezerURL": "https://www.deezer.com/track/1740037107", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4b891d0a1da830ba295c6a75f6896a79/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4b891d0a1da830ba295c6a75f6896a79/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4b891d0a1da830ba295c6a75f6896a79/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4b891d0a1da830ba295c6a75f6896a79/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD2210053", + "BPM": 0, + "Duration": 186, + "ReleaseDate": "2022-03-18", + "AlbumName": "Infinity EP", + "Explicit": false, + "Rank": 103077, + "Tags": [ + "Dance", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 402710, + "name": "Sharks", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 520, + "Name": "Play", + "Artists": "Tokyo Machine", + "Color": "DDB83D", + "DarkColor": "AA8C29", + "SongMetaId": null, + "SpotifyId": "1fRadkuwHEqwMuiY5ns15C", + "DeezerID": 638805452, + "DeezerURL": "https://www.deezer.com/track/638805452", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7561e0d795aa83275a6914b8c1cbbe57/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7561e0d795aa83275a6914b8c1cbbe57/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7561e0d795aa83275a6914b8c1cbbe57/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7561e0d795aa83275a6914b8c1cbbe57/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D21800398", + "BPM": 128, + "Duration": 183, + "ReleaseDate": "2019-02-28", + "AlbumName": "PLAY", + "Explicit": false, + "Rank": 290472, + "Tags": [ + "Dance", + "Electro", + "Techno/House", + "bpm:128", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 10705001, + "name": "Tokyo Machine", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House", + "Dance" + ] + }, + { + "SongId": 520, + "Name": "Play", + "Artists": "Tokyo Machine", + "Color": "DDB83D", + "DarkColor": "AA8C29", + "SongMetaId": null, + "SpotifyId": "1fRadkuwHEqwMuiY5ns15C", + "DeezerID": 638805452, + "DeezerURL": "https://www.deezer.com/track/638805452", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7561e0d795aa83275a6914b8c1cbbe57/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7561e0d795aa83275a6914b8c1cbbe57/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7561e0d795aa83275a6914b8c1cbbe57/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7561e0d795aa83275a6914b8c1cbbe57/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D21800398", + "BPM": 128, + "Duration": 183, + "ReleaseDate": "2019-02-28", + "AlbumName": "PLAY", + "Explicit": false, + "Rank": 290472, + "Tags": [ + "Dance", + "Electro", + "Techno/House", + "bpm:128", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 10705001, + "name": "Tokyo Machine", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House", + "Dance" + ] + }, + { + "SongId": 455, + "Name": "Plug in Baby", + "Artists": "Muse", + "Color": "FCBC4D", + "DarkColor": "CA7F04", + "SongMetaId": null, + "SpotifyId": "429MqIq5nGH32feyRZHunv", + "DeezerID": 13636688, + "DeezerURL": "https://www.deezer.com/track/13636688", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d51fca27f4e6f891e64eaab425264fce/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d51fca27f4e6f891e64eaab425264fce/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d51fca27f4e6f891e64eaab425264fce/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d51fca27f4e6f891e64eaab425264fce/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCVT0000025", + "BPM": 136, + "Duration": 218, + "ReleaseDate": "2001-07-17", + "AlbumName": "Origin of Symmetry", + "Explicit": false, + "Rank": 740918, + "Tags": [ + "Alternativo", + "bpm:136", + "fast", + "medium-length", + "year:2001" + ], + "Contributors": [ + { + "id": 705, + "name": "Muse", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 455, + "Name": "Plug in Baby", + "Artists": "Muse", + "Color": "FCBC4D", + "DarkColor": "CA7F04", + "SongMetaId": null, + "SpotifyId": "429MqIq5nGH32feyRZHunv", + "DeezerID": 13636688, + "DeezerURL": "https://www.deezer.com/track/13636688", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d51fca27f4e6f891e64eaab425264fce/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d51fca27f4e6f891e64eaab425264fce/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d51fca27f4e6f891e64eaab425264fce/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d51fca27f4e6f891e64eaab425264fce/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCVT0000025", + "BPM": 136, + "Duration": 218, + "ReleaseDate": "2001-07-17", + "AlbumName": "Origin of Symmetry", + "Explicit": false, + "Rank": 740918, + "Tags": [ + "Alternativo", + "bpm:136", + "fast", + "medium-length", + "year:2001" + ], + "Contributors": [ + { + "id": 705, + "name": "Muse", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 274, + "Name": "Poker Face", + "Artists": "Lady Gaga", + "Color": "DE9AA1", + "DarkColor": "A96E78", + "SongMetaId": null, + "SpotifyId": "5R8dQOPq8haW94K7mgERlO", + "DeezerID": 2603558, + "DeezerURL": "https://www.deezer.com/track/2603558", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cc24d60a998e1a296f0c22efa8ddffd2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cc24d60a998e1a296f0c22efa8ddffd2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cc24d60a998e1a296f0c22efa8ddffd2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cc24d60a998e1a296f0c22efa8ddffd2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70824409", + "BPM": 118.8, + "Duration": 237, + "ReleaseDate": "2008-11-24", + "AlbumName": "The Fame", + "Explicit": false, + "Rank": 955259, + "Tags": [ + "Pop", + "bpm:118.8", + "medium", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 75491, + "name": "Lady Gaga", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 274, + "Name": "Poker Face", + "Artists": "Lady Gaga", + "Color": "B0C0DB", + "DarkColor": "768CAF", + "SongMetaId": null, + "SpotifyId": "5R8dQOPq8haW94K7mgERlO", + "DeezerID": 2603558, + "DeezerURL": "https://www.deezer.com/track/2603558", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cc24d60a998e1a296f0c22efa8ddffd2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cc24d60a998e1a296f0c22efa8ddffd2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cc24d60a998e1a296f0c22efa8ddffd2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cc24d60a998e1a296f0c22efa8ddffd2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70824409", + "BPM": 118.8, + "Duration": 237, + "ReleaseDate": "2008-11-24", + "AlbumName": "The Fame", + "Explicit": false, + "Rank": 955259, + "Tags": [ + "Pop", + "bpm:118.8", + "medium", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 75491, + "name": "Lady Gaga", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 216, + "Name": "Pompeii", + "Artists": "Bastille", + "Color": "4C9979", + "DarkColor": "224C55", + "SongMetaId": null, + "SpotifyId": "3gbBpTdY8lnQwqxNCcf795", + "DeezerID": 63034985, + "DeezerURL": "https://www.deezer.com/track/63034985", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2d5984bac3f7865ea5a92a30221d5386/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2d5984bac3f7865ea5a92a30221d5386/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2d5984bac3f7865ea5a92a30221d5386/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2d5984bac3f7865ea5a92a30221d5386/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAAA1200795", + "BPM": 127.6, + "Duration": 214, + "ReleaseDate": "2013-02-22", + "AlbumName": "Pompeii", + "Explicit": false, + "Rank": 868336, + "Tags": [ + "Alternativo", + "bpm:127.6", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 1352097, + "name": "Bastille", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 216, + "Name": "Pompeii", + "Artists": "Bastille", + "Color": "4C9979", + "DarkColor": "224C55", + "SongMetaId": null, + "SpotifyId": "3gbBpTdY8lnQwqxNCcf795", + "DeezerID": 63034985, + "DeezerURL": "https://www.deezer.com/track/63034985", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2d5984bac3f7865ea5a92a30221d5386/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2d5984bac3f7865ea5a92a30221d5386/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2d5984bac3f7865ea5a92a30221d5386/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2d5984bac3f7865ea5a92a30221d5386/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAAA1200795", + "BPM": 127.6, + "Duration": 214, + "ReleaseDate": "2013-02-22", + "AlbumName": "Pompeii", + "Explicit": false, + "Rank": 868336, + "Tags": [ + "Alternativo", + "bpm:127.6", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 1352097, + "name": "Bastille", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 347, + "Name": "Pony", + "Artists": "Ginuwine", + "Color": "BDAA8B", + "DarkColor": "453B33", + "SongMetaId": null, + "SpotifyId": "6mz1fBdKATx6qP4oP1I65G", + "DeezerID": 82524066, + "DeezerURL": "https://www.deezer.com/track/82524066", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/38c0c017547d988dd1caa76250927641/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/38c0c017547d988dd1caa76250927641/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/38c0c017547d988dd1caa76250927641/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/38c0c017547d988dd1caa76250927641/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19601388", + "BPM": 142.1, + "Duration": 325, + "ReleaseDate": "1996-10-08", + "AlbumName": "Ginuwine... The Bachelor", + "Explicit": false, + "Rank": 769263, + "Tags": [ + "R&B", + "bpm:142.1", + "fast", + "long", + "year:1996" + ], + "Contributors": [ + { + "id": 191, + "name": "Ginuwine", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 538, + "Name": "Pop", + "Artists": "NSYNC", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "0Jc8qF1mUPo1A96HE9QxZz", + "DeezerID": 632467, + "DeezerURL": "https://www.deezer.com/track/632467", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9c86390863bc26a71e43318402a8d293/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9c86390863bc26a71e43318402a8d293/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9c86390863bc26a71e43318402a8d293/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9c86390863bc26a71e43318402a8d293/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJI10100205", + "BPM": 120.2, + "Duration": 237, + "ReleaseDate": "2003-04-03", + "AlbumName": "Celebrity", + "Explicit": false, + "Rank": 580713, + "Tags": [ + "Pop", + "bpm:120.2", + "fast", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 520, + "name": "*NSYNC", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 538, + "Name": "Pop", + "Artists": "NSYNC", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "0Jc8qF1mUPo1A96HE9QxZz", + "DeezerID": 632467, + "DeezerURL": "https://www.deezer.com/track/632467", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9c86390863bc26a71e43318402a8d293/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9c86390863bc26a71e43318402a8d293/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9c86390863bc26a71e43318402a8d293/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9c86390863bc26a71e43318402a8d293/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJI10100205", + "BPM": 120.2, + "Duration": 237, + "ReleaseDate": "2003-04-03", + "AlbumName": "Celebrity", + "Explicit": false, + "Rank": 580713, + "Tags": [ + "Pop", + "bpm:120.2", + "fast", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 520, + "name": "*NSYNC", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 686, + "Name": "Possibility’s Enclosure", + "Artists": "The Arbitrary", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "6VZM0sFt6gwv0VqIq6eSuU", + "DeezerID": 121250660, + "DeezerURL": "https://www.deezer.com/track/121250660", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b55e0c3ba8e7494a287a92e79cf1ad4c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b55e0c3ba8e7494a287a92e79cf1ad4c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b55e0c3ba8e7494a287a92e79cf1ad4c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b55e0c3ba8e7494a287a92e79cf1ad4c/1000x1000-000000-80-0-0.jpg", + "ISRC": "QMAAK1642827", + "BPM": 0, + "Duration": 326, + "ReleaseDate": "2016-03-25", + "AlbumName": "Entropy", + "Explicit": false, + "Rank": 158384, + "Tags": [ + "Alternativo", + "Indie Rock", + "Metal", + "long", + "year:2016" + ], + "Contributors": [ + { + "id": 10047912, + "name": "The Arbitrary", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Rock", + "Metal" + ] + }, + { + "SongId": 686, + "Name": "Possibility’s Enclosure", + "Artists": "The Arbitrary", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "6VZM0sFt6gwv0VqIq6eSuU", + "DeezerID": 121250660, + "DeezerURL": "https://www.deezer.com/track/121250660", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b55e0c3ba8e7494a287a92e79cf1ad4c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b55e0c3ba8e7494a287a92e79cf1ad4c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b55e0c3ba8e7494a287a92e79cf1ad4c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b55e0c3ba8e7494a287a92e79cf1ad4c/1000x1000-000000-80-0-0.jpg", + "ISRC": "QMAAK1642827", + "BPM": 0, + "Duration": 326, + "ReleaseDate": "2016-03-25", + "AlbumName": "Entropy", + "Explicit": false, + "Rank": 158384, + "Tags": [ + "Alternativo", + "Indie Rock", + "Metal", + "long", + "year:2016" + ], + "Contributors": [ + { + "id": 10047912, + "name": "The Arbitrary", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Rock", + "Metal" + ] + }, + { + "SongId": 139, + "Name": "Post Malone", + "Artists": "Sam Feldt", + "Color": "14D4C6", + "DarkColor": "006E77", + "SongMetaId": null, + "SpotifyId": "36orMWv2PgvnzXsd5CJ0yL", + "DeezerID": 682799032, + "DeezerURL": "https://www.deezer.com/track/682799032", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/655b1a09abafa3cf0ed7e5e0593677bb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/655b1a09abafa3cf0ed7e5e0593677bb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/655b1a09abafa3cf0ed7e5e0593677bb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/655b1a09abafa3cf0ed7e5e0593677bb/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLZ541900734", + "BPM": 107.95, + "Duration": 174, + "ReleaseDate": "2019-05-24", + "AlbumName": "Magnets EP", + "Explicit": false, + "Rank": 637765, + "Tags": [ + "Dance", + "bpm:107.95", + "medium", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 5967050, + "name": "Sam Feldt", + "role": "Main" + }, + { + "id": 90919, + "name": "Rani", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 243, + "Name": "Post That", + "Artists": "Leikeli47", + "Color": "F7A2CE", + "DarkColor": "FF4884", + "SongMetaId": null, + "SpotifyId": "20Befu2qTvZv19YMJinWL2", + "DeezerID": 583302162, + "DeezerURL": "https://www.deezer.com/track/583302162", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e94581b95cad00b71adf17e27ebc00bf/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e94581b95cad00b71adf17e27ebc00bf/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e94581b95cad00b71adf17e27ebc00bf/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e94581b95cad00b71adf17e27ebc00bf/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11803691", + "BPM": 135.11, + "Duration": 175, + "ReleaseDate": "2018-11-15", + "AlbumName": "Acrylic", + "Explicit": true, + "Rank": 264743, + "Tags": [ + "Rap/Hip Hop", + "bpm:135.11", + "fast", + "short", + "year:2018" + ], + "Contributors": [ + { + "id": 5463220, + "name": "Leikeli47", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 689, + "Name": "Pour Some Sugar On Me", + "Artists": "Def Leppard", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "1aZLIbKEdsyqxyD6iNcrbA", + "DeezerID": 447552822, + "DeezerURL": "https://www.deezer.com/track/447552822", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/86d5af2077f5b6ef18fd0ca158a91134/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/86d5af2077f5b6ef18fd0ca158a91134/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/86d5af2077f5b6ef18fd0ca158a91134/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/86d5af2077f5b6ef18fd0ca158a91134/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBF088790147", + "BPM": 170.14, + "Duration": 265, + "ReleaseDate": "2018-01-19", + "AlbumName": "Hysteria", + "Explicit": false, + "Rank": 685950, + "Tags": [ + "Rock", + "bpm:170.14", + "medium-length", + "very-fast", + "year:2018" + ], + "Contributors": [ + { + "id": 2557, + "name": "Def Leppard", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 689, + "Name": "Pour Some Sugar On Me", + "Artists": "Def Leppard", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "1aZLIbKEdsyqxyD6iNcrbA", + "DeezerID": 447552822, + "DeezerURL": "https://www.deezer.com/track/447552822", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/86d5af2077f5b6ef18fd0ca158a91134/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/86d5af2077f5b6ef18fd0ca158a91134/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/86d5af2077f5b6ef18fd0ca158a91134/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/86d5af2077f5b6ef18fd0ca158a91134/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBF088790147", + "BPM": 170.14, + "Duration": 265, + "ReleaseDate": "2018-01-19", + "AlbumName": "Hysteria", + "Explicit": false, + "Rank": 685950, + "Tags": [ + "Rock", + "bpm:170.14", + "medium-length", + "very-fast", + "year:2018" + ], + "Contributors": [ + { + "id": 2557, + "name": "Def Leppard", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 312, + "Name": "Praise You", + "Artists": "Fatboy Slim", + "Color": "2291BC", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "3yGy1JYz3zQKlxSgjgpQqX", + "DeezerID": 131218566, + "DeezerURL": "https://www.deezer.com/track/131218566", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/76f822ba0bb8ab66722a8530dd5dfa74/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/76f822ba0bb8ab66722a8530dd5dfa74/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/76f822ba0bb8ab66722a8530dd5dfa74/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/76f822ba0bb8ab66722a8530dd5dfa74/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBMQ0600005", + "BPM": 109.67, + "Duration": 227, + "ReleaseDate": "2006-06-18", + "AlbumName": "Why Try Harder - The Greatest Hits", + "Explicit": false, + "Rank": 722523, + "Tags": [ + "Dance", + "bpm:109.67", + "medium", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 76, + "name": "Fatboy Slim", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 312, + "Name": "Praise You", + "Artists": "Fatboy Slim", + "Color": "2291BC", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "3yGy1JYz3zQKlxSgjgpQqX", + "DeezerID": 131218566, + "DeezerURL": "https://www.deezer.com/track/131218566", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/76f822ba0bb8ab66722a8530dd5dfa74/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/76f822ba0bb8ab66722a8530dd5dfa74/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/76f822ba0bb8ab66722a8530dd5dfa74/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/76f822ba0bb8ab66722a8530dd5dfa74/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBMQ0600005", + "BPM": 109.67, + "Duration": 227, + "ReleaseDate": "2006-06-18", + "AlbumName": "Why Try Harder - The Greatest Hits", + "Explicit": false, + "Rank": 722523, + "Tags": [ + "Dance", + "bpm:109.67", + "medium", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 76, + "name": "Fatboy Slim", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 114, + "Name": "PRBLMS", + "Artists": "6LACK", + "Color": "17AFB8", + "DarkColor": "052539", + "SongMetaId": null, + "SpotifyId": "4AtZRwSR8BOTTQg5ihSggt", + "DeezerID": 428308982, + "DeezerURL": "https://www.deezer.com/track/428308982", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d75f6c710fb365125b6f97bf40b853d3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d75f6c710fb365125b6f97bf40b853d3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d75f6c710fb365125b6f97bf40b853d3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d75f6c710fb365125b6f97bf40b853d3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUYG1102245", + "BPM": 102.85, + "Duration": 244, + "ReleaseDate": "2017-11-14", + "AlbumName": "FREE 6LACK (Bonus Track Version)", + "Explicit": true, + "Rank": 537114, + "Tags": [ + "R&B", + "bpm:102.85", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 10375188, + "name": "6lack", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 657, + "Name": "Pretty Fly (For A White Guy)", + "Artists": "The Offspring", + "Color": "4F4EFA", + "DarkColor": "2115CD", + "SongMetaId": null, + "SpotifyId": "3SFXsFpeGmBTtQvKiwYMDA", + "DeezerID": 137233982, + "DeezerURL": "https://www.deezer.com/track/137233982", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19804199", + "BPM": 143.06, + "Duration": 189, + "ReleaseDate": "1998-11-16", + "AlbumName": "Americana", + "Explicit": false, + "Rank": 853498, + "Tags": [ + "Rock", + "bpm:143.06", + "fast", + "medium-length", + "year:1998" + ], + "Contributors": [ + { + "id": 882, + "name": "The Offspring", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 657, + "Name": "Pretty Fly (For A White Guy)", + "Artists": "The Offspring", + "Color": "4F4EFA", + "DarkColor": "2115CD", + "SongMetaId": null, + "SpotifyId": "3SFXsFpeGmBTtQvKiwYMDA", + "DeezerID": 137233982, + "DeezerURL": "https://www.deezer.com/track/137233982", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19804199", + "BPM": 143.06, + "Duration": 189, + "ReleaseDate": "1998-11-16", + "AlbumName": "Americana", + "Explicit": false, + "Rank": 853498, + "Tags": [ + "Rock", + "bpm:143.06", + "fast", + "medium-length", + "year:1998" + ], + "Contributors": [ + { + "id": 882, + "name": "The Offspring", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 202, + "Name": "Promises", + "Artists": "NERO", + "Color": "3D51CD", + "DarkColor": "1D1EA1", + "SongMetaId": null, + "SpotifyId": "2LCCxYQ5dw1dz3Pu6APEUH", + "DeezerID": 13112883, + "DeezerURL": "https://www.deezer.com/track/13112883", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cfc19b1adea7242b38aa0dbb140c1e64/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cfc19b1adea7242b38aa0dbb140c1e64/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cfc19b1adea7242b38aa0dbb140c1e64/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cfc19b1adea7242b38aa0dbb140c1e64/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71105544", + "BPM": 144.1, + "Duration": 257, + "ReleaseDate": "2011-08-15", + "AlbumName": "Welcome Reality", + "Explicit": false, + "Rank": 413157, + "Tags": [ + "Electro", + "bpm:144.1", + "fast", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 92883, + "name": "Nero", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 202, + "Name": "Promises", + "Artists": "NERO", + "Color": "3D51CD", + "DarkColor": "1D1EA1", + "SongMetaId": null, + "SpotifyId": "2LCCxYQ5dw1dz3Pu6APEUH", + "DeezerID": 13112883, + "DeezerURL": "https://www.deezer.com/track/13112883", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cfc19b1adea7242b38aa0dbb140c1e64/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cfc19b1adea7242b38aa0dbb140c1e64/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cfc19b1adea7242b38aa0dbb140c1e64/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cfc19b1adea7242b38aa0dbb140c1e64/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71105544", + "BPM": 144.1, + "Duration": 257, + "ReleaseDate": "2011-08-15", + "AlbumName": "Welcome Reality", + "Explicit": false, + "Rank": 413157, + "Tags": [ + "Electro", + "bpm:144.1", + "fast", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 92883, + "name": "Nero", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 238, + "Name": "psychofreak", + "Artists": "Camila Cabello, Willow", + "Color": "21D25A", + "DarkColor": "005F14", + "SongMetaId": null, + "SpotifyId": "705dwKmZCd7ImAUyyD6Mpm", + "DeezerID": 1708514097, + "DeezerURL": "https://www.deezer.com/track/1708514097", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/410fbc0310872a5662e8fbb67f20fbc5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/410fbc0310872a5662e8fbb67f20fbc5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/410fbc0310872a5662e8fbb67f20fbc5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/410fbc0310872a5662e8fbb67f20fbc5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12201108", + "BPM": 0, + "Duration": 201, + "ReleaseDate": "2022-04-08", + "AlbumName": "Familia", + "Explicit": false, + "Rank": 550008, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 9236850, + "name": "Camila Cabello", + "role": "Main" + }, + { + "id": 70942, + "name": "Willow", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 238, + "Name": "psychofreak", + "Artists": "Camila Cabello, Willow", + "Color": "21D25A", + "DarkColor": "005F14", + "SongMetaId": null, + "SpotifyId": "705dwKmZCd7ImAUyyD6Mpm", + "DeezerID": 1708514097, + "DeezerURL": "https://www.deezer.com/track/1708514097", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/410fbc0310872a5662e8fbb67f20fbc5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/410fbc0310872a5662e8fbb67f20fbc5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/410fbc0310872a5662e8fbb67f20fbc5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/410fbc0310872a5662e8fbb67f20fbc5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12201108", + "BPM": 0, + "Duration": 201, + "ReleaseDate": "2022-04-08", + "AlbumName": "Familia", + "Explicit": false, + "Rank": 550008, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 9236850, + "name": "Camila Cabello", + "role": "Main" + }, + { + "id": 70942, + "name": "Willow", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 683, + "Name": "Psychosocial", + "Artists": "Slipknot", + "Color": "2A4B47", + "DarkColor": "1A302D", + "SongMetaId": null, + "SpotifyId": "2MvIMgtWyK88OiPi0J8Dg3", + "DeezerID": 1195560, + "DeezerURL": "https://www.deezer.com/track/1195560", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3d4d0fe601be67cb2e13654d40d7101a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3d4d0fe601be67cb2e13654d40d7101a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3d4d0fe601be67cb2e13654d40d7101a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3d4d0fe601be67cb2e13654d40d7101a/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLA320886993", + "BPM": 135.1, + "Duration": 284, + "ReleaseDate": "2008-08-22", + "AlbumName": "All Hope Is Gone", + "Explicit": false, + "Rank": 821043, + "Tags": [ + "Metal", + "bpm:135.1", + "fast", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 117, + "name": "Slipknot", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 683, + "Name": "Psychosocial", + "Artists": "Slipknot", + "Color": "2A4B47", + "DarkColor": "1E3734", + "SongMetaId": null, + "SpotifyId": "2MvIMgtWyK88OiPi0J8Dg3", + "DeezerID": 1195560, + "DeezerURL": "https://www.deezer.com/track/1195560", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3d4d0fe601be67cb2e13654d40d7101a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3d4d0fe601be67cb2e13654d40d7101a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3d4d0fe601be67cb2e13654d40d7101a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3d4d0fe601be67cb2e13654d40d7101a/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLA320886993", + "BPM": 135.1, + "Duration": 284, + "ReleaseDate": "2008-08-22", + "AlbumName": "All Hope Is Gone", + "Explicit": false, + "Rank": 821043, + "Tags": [ + "Metal", + "bpm:135.1", + "fast", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 117, + "name": "Slipknot", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 528, + "Name": "Purge The Poison", + "Artists": "MARINA", + "Color": "2291BC", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "52qzyjT2pC3eh5xKN6zxIk", + "DeezerID": 1396982252, + "DeezerURL": "https://www.deezer.com/track/1396982252", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f5f1b46bbad285ef493177d68559242e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f5f1b46bbad285ef493177d68559242e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f5f1b46bbad285ef493177d68559242e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f5f1b46bbad285ef493177d68559242e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT22101363", + "BPM": 0, + "Duration": 196, + "ReleaseDate": "2021-06-11", + "AlbumName": "Ancient Dreams In A Modern Land", + "Explicit": false, + "Rank": 392474, + "Tags": [ + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 74357, + "name": "Marina", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 528, + "Name": "Purge The Poison", + "Artists": "MARINA", + "Color": "2291BC", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "52qzyjT2pC3eh5xKN6zxIk", + "DeezerID": 1396982252, + "DeezerURL": "https://www.deezer.com/track/1396982252", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f5f1b46bbad285ef493177d68559242e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f5f1b46bbad285ef493177d68559242e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f5f1b46bbad285ef493177d68559242e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f5f1b46bbad285ef493177d68559242e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT22101363", + "BPM": 0, + "Duration": 196, + "ReleaseDate": "2021-06-11", + "AlbumName": "Ancient Dreams In A Modern Land", + "Explicit": false, + "Rank": 392474, + "Tags": [ + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 74357, + "name": "Marina", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 266, + "Name": "Push It", + "Artists": "Salt-N-Pepa", + "Color": "685A8C", + "DarkColor": "413A65", + "SongMetaId": null, + "SpotifyId": "6sT9MWlJManry3EQwf4V80", + "DeezerID": 537989342, + "DeezerURL": "https://www.deezer.com/track/537989342", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ef77d17d9505d133b8050959f8c2407c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ef77d17d9505d133b8050959f8c2407c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ef77d17d9505d133b8050959f8c2407c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ef77d17d9505d133b8050959f8c2407c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR20180482", + "BPM": 127.21, + "Duration": 268, + "ReleaseDate": "1986-01-01", + "AlbumName": "Hot, Cool & Vicious", + "Explicit": false, + "Rank": 605342, + "Tags": [ + "Rap/Hip Hop", + "bpm:127.21", + "fast", + "medium-length", + "year:1986" + ], + "Contributors": [ + { + "id": 280, + "name": "Salt-N-Pepa", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 320, + "Name": "Put Your Records On", + "Artists": "Corinne Bailey Rae", + "Color": "DFA564", + "DarkColor": "A55E46", + "SongMetaId": null, + "SpotifyId": "2nGFzvICaeEWjIrBrL2RAx", + "DeezerID": 3119484, + "DeezerURL": "https://www.deezer.com/track/3119484", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/395904b0070e13c1edd27a4bd45b7f4f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/395904b0070e13c1edd27a4bd45b7f4f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/395904b0070e13c1edd27a4bd45b7f4f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/395904b0070e13c1edd27a4bd45b7f4f/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE0501671", + "BPM": 95.9, + "Duration": 215, + "ReleaseDate": "2006-02-27", + "AlbumName": "Corinne Bailey Rae", + "Explicit": false, + "Rank": 797136, + "Tags": [ + "Pop", + "bpm:95.9", + "medium", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 3595, + "name": "Corinne Bailey Rae", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 49, + "Name": "Rabbits Foot", + "Artists": "Turbowolf", + "Color": "DB352C", + "DarkColor": "9E1E23", + "SongMetaId": null, + "SpotifyId": "3mwhCgIAHwwExh9ZBX5LwM", + "DeezerID": 2076983017, + "DeezerURL": "https://www.deezer.com/track/2076983017", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a5c718470c6d70abe295cb64dead5a31/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a5c718470c6d70abe295cb64dead5a31/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a5c718470c6d70abe295cb64dead5a31/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a5c718470c6d70abe295cb64dead5a31/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71405014", + "BPM": 0, + "Duration": 164, + "ReleaseDate": "2015-04-06", + "AlbumName": "Two Hands", + "Explicit": false, + "Rank": 202474, + "Tags": [ + "Alternativo", + "short", + "year:2015" + ], + "Contributors": [ + { + "id": 270047, + "name": "Turbowolf", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 49, + "Name": "Rabbits Foot", + "Artists": "Turbowolf", + "Color": "EE492E", + "DarkColor": "980915", + "SongMetaId": null, + "SpotifyId": "3mwhCgIAHwwExh9ZBX5LwM", + "DeezerID": 2076983017, + "DeezerURL": "https://www.deezer.com/track/2076983017", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a5c718470c6d70abe295cb64dead5a31/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a5c718470c6d70abe295cb64dead5a31/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a5c718470c6d70abe295cb64dead5a31/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a5c718470c6d70abe295cb64dead5a31/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71405014", + "BPM": 0, + "Duration": 164, + "ReleaseDate": "2015-04-06", + "AlbumName": "Two Hands", + "Explicit": false, + "Rank": 202474, + "Tags": [ + "Alternativo", + "short", + "year:2015" + ], + "Contributors": [ + { + "id": 270047, + "name": "Turbowolf", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 339, + "Name": "Radiate", + "Artists": "Enter Shikari", + "Color": "EB4E24", + "DarkColor": "830011", + "SongMetaId": null, + "SpotifyId": "11AhATn4dHeFO35ZJzu0ya", + "DeezerID": 136190478, + "DeezerURL": "https://www.deezer.com/track/136190478", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/689887102ef7a5f3f2d71b924b56d093/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/689887102ef7a5f3f2d71b924b56d093/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/689887102ef7a5f3f2d71b924b56d093/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/689887102ef7a5f3f2d71b924b56d093/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBENL1601694", + "BPM": 195.02, + "Duration": 393, + "ReleaseDate": "2016-11-18", + "AlbumName": "Live at Alexandra Palace", + "Explicit": false, + "Rank": 79370, + "Tags": [ + "Rock", + "bpm:195.02", + "long", + "very-fast", + "year:2016" + ], + "Contributors": [ + { + "id": 12107, + "name": "Enter Shikari", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 446, + "Name": "Radio", + "Artists": "Decora", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "1MtU5oc5u4yrLvjHHciHY0", + "DeezerID": 1701233, + "DeezerURL": "https://www.deezer.com/track/1701233", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/afb59c7b1212206d0598c2b981e403d6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/afb59c7b1212206d0598c2b981e403d6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/afb59c7b1212206d0598c2b981e403d6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/afb59c7b1212206d0598c2b981e403d6/1000x1000-000000-80-0-0.jpg", + "ISRC": "CH1880780111", + "BPM": 154.3, + "Duration": 90, + "ReleaseDate": "2007-06-26", + "AlbumName": "Juditha Triumphans", + "Explicit": false, + "Rank": 146390, + "Tags": [ + "Barroca", + "Clássica", + "bpm:154.3", + "short", + "very-fast", + "year:2007" + ], + "Contributors": [ + { + "id": 113082, + "name": "Coro Della Radio Svizzera, I Barocchisti, Diego Fasolis", + "role": "Main" + } + ], + "AlbumGenres": [ + "Clássica", + "Barroca" + ] + }, + { + "SongId": 446, + "Name": "Radio", + "Artists": "Decora", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "1MtU5oc5u4yrLvjHHciHY0", + "DeezerID": 1701233, + "DeezerURL": "https://www.deezer.com/track/1701233", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/afb59c7b1212206d0598c2b981e403d6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/afb59c7b1212206d0598c2b981e403d6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/afb59c7b1212206d0598c2b981e403d6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/afb59c7b1212206d0598c2b981e403d6/1000x1000-000000-80-0-0.jpg", + "ISRC": "CH1880780111", + "BPM": 154.3, + "Duration": 90, + "ReleaseDate": "2007-06-26", + "AlbumName": "Juditha Triumphans", + "Explicit": false, + "Rank": 146390, + "Tags": [ + "Barroca", + "Clássica", + "bpm:154.3", + "short", + "very-fast", + "year:2007" + ], + "Contributors": [ + { + "id": 113082, + "name": "Coro Della Radio Svizzera, I Barocchisti, Diego Fasolis", + "role": "Main" + } + ], + "AlbumGenres": [ + "Clássica", + "Barroca" + ] + }, + { + "SongId": 324, + "Name": "Radioactive", + "Artists": "Imagine Dragons", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "4G8gkOterJn0Ywt6uhqbhp", + "DeezerID": 63510358, + "DeezerURL": "https://www.deezer.com/track/63510358", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71201074", + "BPM": 136.45, + "Duration": 187, + "ReleaseDate": "2013-02-05", + "AlbumName": "Night Visions", + "Explicit": false, + "Rank": 926764, + "Tags": [ + "Alternativo", + "bpm:136.45", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 416239, + "name": "Imagine Dragons", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 324, + "Name": "Radioactive", + "Artists": "Imagine Dragons", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "4G8gkOterJn0Ywt6uhqbhp", + "DeezerID": 63510358, + "DeezerURL": "https://www.deezer.com/track/63510358", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7e8314f4280cffde363547a495a260bc/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71201074", + "BPM": 136.45, + "Duration": 187, + "ReleaseDate": "2013-02-05", + "AlbumName": "Night Visions", + "Explicit": false, + "Rank": 926764, + "Tags": [ + "Alternativo", + "bpm:136.45", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 416239, + "name": "Imagine Dragons", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 626, + "Name": "Rainbow Rave Parade", + "Artists": "Chime", + "Color": "E359D8", + "DarkColor": "974190", + "SongMetaId": null, + "SpotifyId": "0hsD0hitwYa7SbFrpniYuS", + "DeezerID": 1666987992, + "DeezerURL": "https://www.deezer.com/track/1666987992", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/14e6522c82e699d3c07246c811a31ad3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/14e6522c82e699d3c07246c811a31ad3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/14e6522c82e699d3c07246c811a31ad3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/14e6522c82e699d3c07246c811a31ad3/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D22200080", + "BPM": 0, + "Duration": 212, + "ReleaseDate": "2022-02-28", + "AlbumName": "Rainbow Rave Parade", + "Explicit": false, + "Rank": 217458, + "Tags": [ + "Dance", + "Dubstep", + "Electro", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 4396032, + "name": "Chime", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dubstep", + "Dance" + ] + }, + { + "SongId": 626, + "Name": "Rainbow Rave Parade", + "Artists": "Chime", + "Color": "E359D8", + "DarkColor": "9C3E94", + "SongMetaId": null, + "SpotifyId": "0hsD0hitwYa7SbFrpniYuS", + "DeezerID": 1666987992, + "DeezerURL": "https://www.deezer.com/track/1666987992", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/14e6522c82e699d3c07246c811a31ad3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/14e6522c82e699d3c07246c811a31ad3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/14e6522c82e699d3c07246c811a31ad3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/14e6522c82e699d3c07246c811a31ad3/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D22200080", + "BPM": 0, + "Duration": 212, + "ReleaseDate": "2022-02-28", + "AlbumName": "Rainbow Rave Parade", + "Explicit": false, + "Rank": 217458, + "Tags": [ + "Dance", + "Dubstep", + "Electro", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 4396032, + "name": "Chime", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dubstep", + "Dance" + ] + }, + { + "SongId": 234, + "Name": "Ransom", + "Artists": "Lil Tecca, Juice WRLD", + "Color": "9BFA4E", + "DarkColor": "275D19", + "SongMetaId": null, + "SpotifyId": "1lOe9qE0vR9zwWQAOk6CoO", + "DeezerID": 690610892, + "DeezerURL": "https://www.deezer.com/track/690610892", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e921ba46a5327b8c165ec407c82740ee/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e921ba46a5327b8c165ec407c82740ee/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e921ba46a5327b8c165ec407c82740ee/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e921ba46a5327b8c165ec407c82740ee/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZ85M1940160", + "BPM": 0, + "Duration": 131, + "ReleaseDate": "2019-06-04", + "AlbumName": "Ransom", + "Explicit": true, + "Rank": 899796, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 14492701, + "name": "Lil Tecca", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 234, + "Name": "Ransom", + "Artists": "Lil Tecca, Juice WRLD", + "Color": "F8480E", + "DarkColor": "921C0A", + "SongMetaId": null, + "SpotifyId": "1lOe9qE0vR9zwWQAOk6CoO", + "DeezerID": 690610892, + "DeezerURL": "https://www.deezer.com/track/690610892", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e921ba46a5327b8c165ec407c82740ee/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e921ba46a5327b8c165ec407c82740ee/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e921ba46a5327b8c165ec407c82740ee/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e921ba46a5327b8c165ec407c82740ee/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZ85M1940160", + "BPM": 0, + "Duration": 131, + "ReleaseDate": "2019-06-04", + "AlbumName": "Ransom", + "Explicit": true, + "Rank": 899796, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 14492701, + "name": "Lil Tecca", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 378, + "Name": "RAPSTAR", + "Artists": "Polo G", + "Color": "D33648", + "DarkColor": "670A1A", + "SongMetaId": null, + "SpotifyId": "18vXApRmJSgQ6wG2ll9AOg", + "DeezerID": 1398464922, + "DeezerURL": "https://www.deezer.com/track/1398464922", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d54d4b0e4ba0552c1999fa47cf23dbd6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d54d4b0e4ba0552c1999fa47cf23dbd6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d54d4b0e4ba0552c1999fa47cf23dbd6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d54d4b0e4ba0552c1999fa47cf23dbd6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12101640", + "BPM": 0, + "Duration": 166, + "ReleaseDate": "2021-06-11", + "AlbumName": "Hall of Fame", + "Explicit": true, + "Rank": 602297, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 49818632, + "name": "POLO G", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 586, + "Name": "Rattlin' Rhythm", + "Artists": "Beatstar Originals", + "Color": "52935F", + "DarkColor": "1C5A26", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 398, + "Name": "Red Flag", + "Artists": "Billy Talent", + "Color": "AC0620", + "DarkColor": "5A0001", + "SongMetaId": null, + "SpotifyId": "2RZWdE8kYPlCAcRUYDeuLC", + "DeezerID": 88485737, + "DeezerURL": "https://www.deezer.com/track/88485737", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b1cb3def7d273eaf240d2a35d00745ed/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b1cb3def7d273eaf240d2a35d00745ed/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b1cb3def7d273eaf240d2a35d00745ed/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b1cb3def7d273eaf240d2a35d00745ed/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT20612281", + "BPM": 182.9, + "Duration": 198, + "ReleaseDate": "2014-11-04", + "AlbumName": "Hits", + "Explicit": false, + "Rank": 517334, + "Tags": [ + "Rock", + "bpm:182.9", + "medium-length", + "very-fast", + "year:2014" + ], + "Contributors": [ + { + "id": 2830, + "name": "Billy Talent", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 398, + "Name": "Red Flag", + "Artists": "Billy Talent", + "Color": "AC0620", + "DarkColor": "5A0001", + "SongMetaId": null, + "SpotifyId": "2RZWdE8kYPlCAcRUYDeuLC", + "DeezerID": 88485737, + "DeezerURL": "https://www.deezer.com/track/88485737", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b1cb3def7d273eaf240d2a35d00745ed/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b1cb3def7d273eaf240d2a35d00745ed/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b1cb3def7d273eaf240d2a35d00745ed/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b1cb3def7d273eaf240d2a35d00745ed/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT20612281", + "BPM": 182.9, + "Duration": 198, + "ReleaseDate": "2014-11-04", + "AlbumName": "Hits", + "Explicit": false, + "Rank": 517334, + "Tags": [ + "Rock", + "bpm:182.9", + "medium-length", + "very-fast", + "year:2014" + ], + "Contributors": [ + { + "id": 2830, + "name": "Billy Talent", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 497, + "Name": "Red Room", + "Artists": "Offset", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "2MJdgSby3DtSS7bUJx2cly", + "DeezerID": 631665912, + "DeezerURL": "https://www.deezer.com/track/631665912", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/90d4ea2fe79283c4d030d762fb5623e7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/90d4ea2fe79283c4d030d762fb5623e7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/90d4ea2fe79283c4d030d762fb5623e7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/90d4ea2fe79283c4d030d762fb5623e7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG11802301", + "BPM": 112.35, + "Duration": 241, + "ReleaseDate": "2019-02-14", + "AlbumName": "Red Room", + "Explicit": true, + "Rank": 527416, + "Tags": [ + "Rap/Hip Hop", + "bpm:112.35", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 68334, + "name": "Offset", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 497, + "Name": "Red Room", + "Artists": "Offset", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "2MJdgSby3DtSS7bUJx2cly", + "DeezerID": 631665912, + "DeezerURL": "https://www.deezer.com/track/631665912", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/90d4ea2fe79283c4d030d762fb5623e7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/90d4ea2fe79283c4d030d762fb5623e7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/90d4ea2fe79283c4d030d762fb5623e7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/90d4ea2fe79283c4d030d762fb5623e7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG11802301", + "BPM": 112.35, + "Duration": 241, + "ReleaseDate": "2019-02-14", + "AlbumName": "Red Room", + "Explicit": true, + "Rank": 527416, + "Tags": [ + "Rap/Hip Hop", + "bpm:112.35", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 68334, + "name": "Offset", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 157, + "Name": "Rehab", + "Artists": "Amy Winehouse", + "Color": "CA626E", + "DarkColor": "AD2A31", + "SongMetaId": null, + "SpotifyId": "1L5tZi0izXsi5Kk5OJf4W0", + "DeezerID": 2176852, + "DeezerURL": "https://www.deezer.com/track/2176852", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3ce985e6653c350c6e6fed077ab7d0d4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3ce985e6653c350c6e6fed077ab7d0d4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3ce985e6653c350c6e6fed077ab7d0d4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3ce985e6653c350c6e6fed077ab7d0d4/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM70603730", + "BPM": 145.6, + "Duration": 212, + "ReleaseDate": "2006-01-01", + "AlbumName": "Back To Black", + "Explicit": false, + "Rank": 896886, + "Tags": [ + "R&B", + "bpm:145.6", + "fast", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 9052, + "name": "Amy Winehouse", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 660, + "Name": "Remember Me", + "Artists": "Viva La Viiv, just_omalley", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": null, + "SpotifyId": "4dQyyCjLdgKAuRH6du3iil", + "DeezerID": 1377387492, + "DeezerURL": "https://www.deezer.com/track/1377387492", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fdcde62a29c56f4890a28d862ca819c8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fdcde62a29c56f4890a28d862ca819c8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fdcde62a29c56f4890a28d862ca819c8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fdcde62a29c56f4890a28d862ca819c8/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZHZ41964057", + "BPM": 0, + "Duration": 211, + "ReleaseDate": "2019-11-01", + "AlbumName": "Remember Me", + "Explicit": true, + "Rank": 57008, + "Tags": [ + "Pop", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 56415102, + "name": "Viva la Viiv", + "role": "Main" + }, + { + "id": 144315652, + "name": "just_omalley", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 660, + "Name": "Remember Me", + "Artists": "Viva La Viiv, just_omalley", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": null, + "SpotifyId": "4dQyyCjLdgKAuRH6du3iil", + "DeezerID": 1377387492, + "DeezerURL": "https://www.deezer.com/track/1377387492", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fdcde62a29c56f4890a28d862ca819c8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fdcde62a29c56f4890a28d862ca819c8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fdcde62a29c56f4890a28d862ca819c8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fdcde62a29c56f4890a28d862ca819c8/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZHZ41964057", + "BPM": 0, + "Duration": 211, + "ReleaseDate": "2019-11-01", + "AlbumName": "Remember Me", + "Explicit": true, + "Rank": 57008, + "Tags": [ + "Pop", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 56415102, + "name": "Viva la Viiv", + "role": "Main" + }, + { + "id": 144315652, + "name": "just_omalley", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 526, + "Name": "Return of the Mack", + "Artists": "Mark Morrison", + "Color": "0D447C", + "DarkColor": "092C4F", + "SongMetaId": null, + "SpotifyId": "3jDdpx9PMlfMBS5tOBHFm9", + "DeezerID": 703748, + "DeezerURL": "https://www.deezer.com/track/703748", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/655e659d77faed4a3dca4f9c5a0fcd9e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/655e659d77faed4a3dca4f9c5a0fcd9e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/655e659d77faed4a3dca4f9c5a0fcd9e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/655e659d77faed4a3dca4f9c5a0fcd9e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT0200668", + "BPM": 95.5, + "Duration": 213, + "ReleaseDate": "1996-04-22", + "AlbumName": "Return of the Mack", + "Explicit": false, + "Rank": 753554, + "Tags": [ + "R&B", + "bpm:95.5", + "medium", + "medium-length", + "year:1996" + ], + "Contributors": [ + { + "id": 6466, + "name": "Mark Morrison", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 526, + "Name": "Return of the Mack", + "Artists": "Mark Morrison", + "Color": "0D447C", + "DarkColor": "052240", + "SongMetaId": null, + "SpotifyId": "3jDdpx9PMlfMBS5tOBHFm9", + "DeezerID": 703748, + "DeezerURL": "https://www.deezer.com/track/703748", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/655e659d77faed4a3dca4f9c5a0fcd9e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/655e659d77faed4a3dca4f9c5a0fcd9e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/655e659d77faed4a3dca4f9c5a0fcd9e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/655e659d77faed4a3dca4f9c5a0fcd9e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT0200668", + "BPM": 95.5, + "Duration": 213, + "ReleaseDate": "1996-04-22", + "AlbumName": "Return of the Mack", + "Explicit": false, + "Rank": 753554, + "Tags": [ + "R&B", + "bpm:95.5", + "medium", + "medium-length", + "year:1996" + ], + "Contributors": [ + { + "id": 6466, + "name": "Mark Morrison", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 650, + "Name": "Revenger", + "Artists": "F.O.O.L", + "Color": "EF323D", + "DarkColor": "3B010A", + "SongMetaId": null, + "SpotifyId": "7AQyx6fF4zINWCuwVTGcx0", + "DeezerID": 910734852, + "DeezerURL": "https://www.deezer.com/track/910734852", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a8826bf728c23ba3ead0b0d9f0c57336/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a8826bf728c23ba3ead0b0d9f0c57336/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a8826bf728c23ba3ead0b0d9f0c57336/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a8826bf728c23ba3ead0b0d9f0c57336/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D22000047", + "BPM": 0, + "Duration": 222, + "ReleaseDate": "2020-03-26", + "AlbumName": "Revenger", + "Explicit": false, + "Rank": 260695, + "Tags": [ + "Dance", + "Electro", + "Techno/House", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 796800, + "name": "F.O.O.L", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House", + "Dance" + ] + }, + { + "SongId": 650, + "Name": "Revenger", + "Artists": "F.O.O.L", + "Color": "EF323D", + "DarkColor": "3B010A", + "SongMetaId": null, + "SpotifyId": "7AQyx6fF4zINWCuwVTGcx0", + "DeezerID": 910734852, + "DeezerURL": "https://www.deezer.com/track/910734852", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a8826bf728c23ba3ead0b0d9f0c57336/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a8826bf728c23ba3ead0b0d9f0c57336/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a8826bf728c23ba3ead0b0d9f0c57336/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a8826bf728c23ba3ead0b0d9f0c57336/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D22000047", + "BPM": 0, + "Duration": 222, + "ReleaseDate": "2020-03-26", + "AlbumName": "Revenger", + "Explicit": false, + "Rank": 260695, + "Tags": [ + "Dance", + "Electro", + "Techno/House", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 796800, + "name": "F.O.O.L", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Techno/House", + "Dance" + ] + }, + { + "SongId": 47, + "Name": "Ride It", + "Artists": "Regard", + "Color": "E49FB2", + "DarkColor": "895169", + "SongMetaId": null, + "SpotifyId": "2tnVG71enUj33Ic2nFN6kZ", + "DeezerID": 708907602, + "DeezerURL": "https://www.deezer.com/track/708907602", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c7abf65b190c825054f29b55372619b3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c7abf65b190c825054f29b55372619b3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c7abf65b190c825054f29b55372619b3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c7abf65b190c825054f29b55372619b3/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCEN1900047", + "BPM": 118.12, + "Duration": 157, + "ReleaseDate": "2019-07-26", + "AlbumName": "Ride It", + "Explicit": false, + "Rank": 872343, + "Tags": [ + "Dance", + "Pop", + "Pop internacional", + "Rock", + "bpm:118.12", + "medium", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 8185084, + "name": "Regard", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop", + "Pop internacional", + "Rock" + ] + }, + { + "SongId": 761, + "Name": "Ride of the Valkyries", + "Artists": "Richard Wagner", + "Color": "A10F1A", + "DarkColor": "731D07", + "SongMetaId": null, + "SpotifyId": "2A7qdr3UNP9Pxjcxa5Jj53", + "DeezerID": 2204204947, + "DeezerURL": "https://www.deezer.com/track/2204204947", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/145c563a29518efc94c1558f01541669/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/145c563a29518efc94c1558f01541669/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/145c563a29518efc94c1558f01541669/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/145c563a29518efc94c1558f01541669/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZPJ32249087", + "BPM": 0, + "Duration": 211, + "ReleaseDate": "2023-03-22", + "AlbumName": "Classical Meets Metal", + "Explicit": false, + "Rank": 24615, + "Tags": [ + "Metal", + "Rock", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 5382499, + "name": "Erock", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Metal" + ] + }, + { + "SongId": 193, + "Name": "Ridin", + "Artists": "Chamillionaire, Krayzie Bone", + "Color": "3F6781", + "DarkColor": "0F2234", + "SongMetaId": null, + "SpotifyId": "3kZoay4ANo86ehb6s4RwS9", + "DeezerID": 1172093, + "DeezerURL": "https://www.deezer.com/track/1172093", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/61731168bac0366142b80b66a4e31d74/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/61731168bac0366142b80b66a4e31d74/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/61731168bac0366142b80b66a4e31d74/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/61731168bac0366142b80b66a4e31d74/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70503088", + "BPM": 143.06, + "Duration": 303, + "ReleaseDate": "2008-06-19", + "AlbumName": "The Sound of Revenge", + "Explicit": true, + "Rank": 732385, + "Tags": [ + "Rap/Hip Hop", + "bpm:143.06", + "fast", + "long", + "year:2008" + ], + "Contributors": [ + { + "id": 378, + "name": "Chamillionaire", + "role": "Main" + }, + { + "id": 11346, + "name": "Krayzie Bone", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 385, + "Name": "Right Here, Right Now", + "Artists": "Fatboy Slim", + "Color": "427D77", + "DarkColor": "1D4646", + "SongMetaId": null, + "SpotifyId": "3Pb9QabepyR9e9D8NqorPH", + "DeezerID": 131196096, + "DeezerURL": "https://www.deezer.com/track/131196096", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/94809e205365a1289d5b8e3c53854e97/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/94809e205365a1289d5b8e3c53854e97/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/94809e205365a1289d5b8e3c53854e97/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/94809e205365a1289d5b8e3c53854e97/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBMQ9900100", + "BPM": 124.53, + "Duration": 355, + "ReleaseDate": "1998-10-19", + "AlbumName": "Right Here, Right Now", + "Explicit": false, + "Rank": 439885, + "Tags": [ + "Dance", + "bpm:124.53", + "fast", + "long", + "year:1998" + ], + "Contributors": [ + { + "id": 76, + "name": "Fatboy Slim", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 385, + "Name": "Right Here, Right Now", + "Artists": "Fatboy Slim", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "3Pb9QabepyR9e9D8NqorPH", + "DeezerID": 131196096, + "DeezerURL": "https://www.deezer.com/track/131196096", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/94809e205365a1289d5b8e3c53854e97/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/94809e205365a1289d5b8e3c53854e97/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/94809e205365a1289d5b8e3c53854e97/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/94809e205365a1289d5b8e3c53854e97/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBMQ9900100", + "BPM": 124.53, + "Duration": 355, + "ReleaseDate": "1998-10-19", + "AlbumName": "Right Here, Right Now", + "Explicit": false, + "Rank": 439885, + "Tags": [ + "Dance", + "bpm:124.53", + "fast", + "long", + "year:1998" + ], + "Contributors": [ + { + "id": 76, + "name": "Fatboy Slim", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 17, + "Name": "Riptide", + "Artists": "The Chainsmokers", + "Color": "B297EF", + "DarkColor": "6D5188", + "SongMetaId": null, + "SpotifyId": "7dTd00X8Mc5iErfQQyBA6B", + "DeezerID": 1852000237, + "DeezerURL": "https://www.deezer.com/track/1852000237", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1b4e4a497a2104607f54711162f4baa8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1b4e4a497a2104607f54711162f4baa8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1b4e4a497a2104607f54711162f4baa8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1b4e4a497a2104607f54711162f4baa8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX92105836", + "BPM": 0, + "Duration": 171, + "ReleaseDate": "2022-06-08", + "AlbumName": "So Far So Good", + "Explicit": false, + "Rank": 462569, + "Tags": [ + "Dance", + "Pop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 4104927, + "name": "The Chainsmokers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 491, + "Name": "Riptide", + "Artists": "Vance Joy", + "Color": "AD2429", + "DarkColor": "6E0C00", + "SongMetaId": null, + "SpotifyId": "3JvrhDOgAt6p7K8mDyZwRd", + "DeezerID": 67354825, + "DeezerURL": "https://www.deezer.com/track/67354825", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/93b43ae51ab68cbe154220f1d3b8a942/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/93b43ae51ab68cbe154220f1d3b8a942/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/93b43ae51ab68cbe154220f1d3b8a942/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/93b43ae51ab68cbe154220f1d3b8a942/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21301412", + "BPM": 103.1, + "Duration": 204, + "ReleaseDate": "2013-05-21", + "AlbumName": "Riptide", + "Explicit": false, + "Rank": 946685, + "Tags": [ + "Alternativo", + "bpm:103.1", + "medium", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 4768525, + "name": "Vance Joy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 491, + "Name": "Riptide", + "Artists": "Vance Joy", + "Color": "AC0620", + "DarkColor": "5A0001", + "SongMetaId": null, + "SpotifyId": "3JvrhDOgAt6p7K8mDyZwRd", + "DeezerID": 67354825, + "DeezerURL": "https://www.deezer.com/track/67354825", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/93b43ae51ab68cbe154220f1d3b8a942/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/93b43ae51ab68cbe154220f1d3b8a942/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/93b43ae51ab68cbe154220f1d3b8a942/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/93b43ae51ab68cbe154220f1d3b8a942/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21301412", + "BPM": 103.1, + "Duration": 204, + "ReleaseDate": "2013-05-21", + "AlbumName": "Riptide", + "Explicit": false, + "Rank": 946685, + "Tags": [ + "Alternativo", + "bpm:103.1", + "medium", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 4768525, + "name": "Vance Joy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 537, + "Name": "Rock And Roll All Nite", + "Artists": "Kiss", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "6KTv0Z8BmVqM7DPxbGzpVC", + "DeezerID": 920414, + "DeezerURL": "https://www.deezer.com/track/920414", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/be60d2449ca17a017d45189a6095d63c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/be60d2449ca17a017d45189a6095d63c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/be60d2449ca17a017d45189a6095d63c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/be60d2449ca17a017d45189a6095d63c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPR37509157", + "BPM": 144.56, + "Duration": 168, + "ReleaseDate": "1997-07-24", + "AlbumName": "Dressed To Kill", + "Explicit": false, + "Rank": 734795, + "Tags": [ + "Rock", + "bpm:144.56", + "fast", + "short", + "year:1997" + ], + "Contributors": [ + { + "id": 67, + "name": "KISS", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 537, + "Name": "Rock And Roll All Nite", + "Artists": "Kiss", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "6KTv0Z8BmVqM7DPxbGzpVC", + "DeezerID": 920414, + "DeezerURL": "https://www.deezer.com/track/920414", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/be60d2449ca17a017d45189a6095d63c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/be60d2449ca17a017d45189a6095d63c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/be60d2449ca17a017d45189a6095d63c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/be60d2449ca17a017d45189a6095d63c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPR37509157", + "BPM": 144.56, + "Duration": 168, + "ReleaseDate": "1997-07-24", + "AlbumName": "Dressed To Kill", + "Explicit": false, + "Rank": 734795, + "Tags": [ + "Rock", + "bpm:144.56", + "fast", + "short", + "year:1997" + ], + "Contributors": [ + { + "id": 67, + "name": "KISS", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 393, + "Name": "Rock Your Body", + "Artists": "Justin Timberlake", + "Color": "7FB6C0", + "DarkColor": "231443", + "SongMetaId": null, + "SpotifyId": "1AWQoqb9bSvzTjaLralEkT", + "DeezerID": 970410, + "DeezerURL": "https://www.deezer.com/track/970410", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7cba368fa8466d72d149264577cb19d7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7cba368fa8466d72d149264577cb19d7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7cba368fa8466d72d149264577cb19d7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7cba368fa8466d72d149264577cb19d7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJI10200367", + "BPM": 101.1, + "Duration": 268, + "ReleaseDate": "2002-11-04", + "AlbumName": "Justified", + "Explicit": false, + "Rank": 829778, + "Tags": [ + "Pop", + "bpm:101.1", + "medium", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 1147, + "name": "Justin Timberlake", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 436, + "Name": "Rockstar", + "Artists": "Nickelback", + "Color": "7FB6C0", + "DarkColor": "231443", + "SongMetaId": "25", + "SpotifyId": "6n9yCXvLhnYMgJIiIcMu7D", + "DeezerID": 71828725, + "DeezerURL": "https://www.deezer.com/track/71828725", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/bc844f574c47ba2f0db583115916472f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/bc844f574c47ba2f0db583115916472f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/bc844f574c47ba2f0db583115916472f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/bc844f574c47ba2f0db583115916472f/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLA321393036", + "BPM": 144.1, + "Duration": 255, + "ReleaseDate": "2013-11-01", + "AlbumName": "The Best of Nickelback, Vol. 1", + "Explicit": false, + "Rank": 769135, + "Tags": [ + "Rock", + "bpm:144.1", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 338, + "name": "Nickelback", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 146, + "Name": "rockstar", + "Artists": "Post Malone, 21 Savage", + "Color": "CDC30B", + "DarkColor": "DCA300", + "SongMetaId": null, + "SpotifyId": "19bX4zmC2zDben2ldhoRB3", + "DeezerID": 491446942, + "DeezerURL": "https://www.deezer.com/track/491446942", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c000a4d39f31f3716bf3f11aa5fab080/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c000a4d39f31f3716bf3f11aa5fab080/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c000a4d39f31f3716bf3f11aa5fab080/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c000a4d39f31f3716bf3f11aa5fab080/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71710087", + "BPM": 160.25, + "Duration": 219, + "ReleaseDate": "2018-04-27", + "AlbumName": "beerbongs & bentleys", + "Explicit": true, + "Rank": 873058, + "Tags": [ + "Rap/Hip Hop", + "bpm:160.25", + "medium-length", + "very-fast", + "year:2018" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + }, + { + "id": 6853403, + "name": "21 Savage", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 334, + "Name": "Rockstar", + "Artists": "Timmy Trumpet, Sub Zero Project, DV8", + "Color": "CC2827", + "DarkColor": "4C0D05", + "SongMetaId": null, + "SpotifyId": "09pW7wXspkEkd8gjE93prk", + "DeezerID": 567283762, + "DeezerURL": "https://www.deezer.com/track/567283762", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/23b646b9114436d575c4f395d230f69e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/23b646b9114436d575c4f395d230f69e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/23b646b9114436d575c4f395d230f69e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/23b646b9114436d575c4f395d230f69e/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLZ541801227", + "BPM": 149.8, + "Duration": 211, + "ReleaseDate": "2018-10-15", + "AlbumName": "Rockstar (feat. DV8)", + "Explicit": false, + "Rank": 331097, + "Tags": [ + "Dance", + "bpm:149.8", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 661247, + "name": "Timmy Trumpet", + "role": "Main" + }, + { + "id": 5555104, + "name": "Sub Zero Project", + "role": "Main" + }, + { + "id": 208249, + "name": "Dv8", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 436, + "Name": "Rockstar", + "Artists": "Nickelback", + "Color": "7FB6C0", + "DarkColor": "231443", + "SongMetaId": "25", + "SpotifyId": "6n9yCXvLhnYMgJIiIcMu7D", + "DeezerID": 71828725, + "DeezerURL": "https://www.deezer.com/track/71828725", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/bc844f574c47ba2f0db583115916472f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/bc844f574c47ba2f0db583115916472f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/bc844f574c47ba2f0db583115916472f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/bc844f574c47ba2f0db583115916472f/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLA321393036", + "BPM": 144.1, + "Duration": 255, + "ReleaseDate": "2013-11-01", + "AlbumName": "The Best of Nickelback, Vol. 1", + "Explicit": false, + "Rank": 769135, + "Tags": [ + "Rock", + "bpm:144.1", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 338, + "name": "Nickelback", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 652, + "Name": "Rollin' (Air Raid Vehicle)", + "Artists": "Limp Bizkit", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "3IV4swNduIRunHREK80owz", + "DeezerID": 104011168, + "DeezerURL": "https://www.deezer.com/track/104011168", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/070e00c8dbd21dc735bc27eb6fef9ae1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/070e00c8dbd21dc735bc27eb6fef9ae1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/070e00c8dbd21dc735bc27eb6fef9ae1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/070e00c8dbd21dc735bc27eb6fef9ae1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR10001170", + "BPM": 96.6, + "Duration": 214, + "ReleaseDate": "2000-10-17", + "AlbumName": "Chocolate Starfish And The Hot Dog Flavored Water", + "Explicit": true, + "Rank": 808402, + "Tags": [ + "Rock", + "bpm:96.6", + "medium", + "medium-length", + "year:2000" + ], + "Contributors": [ + { + "id": 93, + "name": "Limp Bizkit", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 652, + "Name": "Rollin' (Air Raid Vehicle)", + "Artists": "Limp Bizkit", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "3IV4swNduIRunHREK80owz", + "DeezerID": 104011168, + "DeezerURL": "https://www.deezer.com/track/104011168", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/070e00c8dbd21dc735bc27eb6fef9ae1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/070e00c8dbd21dc735bc27eb6fef9ae1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/070e00c8dbd21dc735bc27eb6fef9ae1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/070e00c8dbd21dc735bc27eb6fef9ae1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR10001170", + "BPM": 96.6, + "Duration": 214, + "ReleaseDate": "2000-10-17", + "AlbumName": "Chocolate Starfish And The Hot Dog Flavored Water", + "Explicit": true, + "Rank": 808402, + "Tags": [ + "Rock", + "bpm:96.6", + "medium", + "medium-length", + "year:2000" + ], + "Contributors": [ + { + "id": 93, + "name": "Limp Bizkit", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 107, + "Name": "Roots Bloody Roots", + "Artists": "Sepultura", + "Color": "E1473A", + "DarkColor": "C22826", + "SongMetaId": null, + "SpotifyId": "6ursmCnbc9oDRGa2yHKkoZ", + "DeezerID": 717542, + "DeezerURL": "https://www.deezer.com/track/717542", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/769d279655394e62484e3953da243329/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/769d279655394e62484e3953da243329/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/769d279655394e62484e3953da243329/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/769d279655394e62484e3953da243329/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLA329513650", + "BPM": 118.8, + "Duration": 212, + "ReleaseDate": "1996-01-01", + "AlbumName": "Roots", + "Explicit": false, + "Rank": 698434, + "Tags": [ + "Metal", + "bpm:118.8", + "medium", + "medium-length", + "year:1996" + ], + "Contributors": [ + { + "id": 632, + "name": "Sepultura", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 525, + "Name": "Roses", + "Artists": "OutKast", + "Color": "F381B5", + "DarkColor": "E23680", + "SongMetaId": null, + "SpotifyId": "6bUNEbXT7HovLW6BgPCBsb", + "DeezerID": 628267, + "DeezerURL": "https://www.deezer.com/track/628267", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR10301000", + "BPM": 0, + "Duration": 369, + "ReleaseDate": "2002-12-10", + "AlbumName": "Speakerboxxx/The Love Below", + "Explicit": true, + "Rank": 650232, + "Tags": [ + "Rap/Hip Hop", + "long", + "year:2002" + ], + "Contributors": [ + { + "id": 9, + "name": "Outkast", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 525, + "Name": "Roses", + "Artists": "OutKast", + "Color": "F381B5", + "DarkColor": "E23680", + "SongMetaId": null, + "SpotifyId": "6bUNEbXT7HovLW6BgPCBsb", + "DeezerID": 628267, + "DeezerURL": "https://www.deezer.com/track/628267", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f81783b6cc6030733cd475f820855562/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR10301000", + "BPM": 0, + "Duration": 369, + "ReleaseDate": "2002-12-10", + "AlbumName": "Speakerboxxx/The Love Below", + "Explicit": true, + "Rank": 650232, + "Tags": [ + "Rap/Hip Hop", + "long", + "year:2002" + ], + "Contributors": [ + { + "id": 9, + "name": "Outkast", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 349, + "Name": "Rover", + "Artists": "S1mba, DTG", + "Color": "89CA0D", + "DarkColor": "3D8503", + "SongMetaId": null, + "SpotifyId": "5UuqM7pRrorxIZhraMKeBO", + "DeezerID": 895107732, + "DeezerURL": "https://www.deezer.com/track/895107732", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5f2385d63ab89b994f4ef62e9b66a655/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5f2385d63ab89b994f4ef62e9b66a655/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5f2385d63ab89b994f4ef62e9b66a655/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5f2385d63ab89b994f4ef62e9b66a655/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCUW1900128", + "BPM": 0, + "Duration": 167, + "ReleaseDate": "2020-03-04", + "AlbumName": "Rover (feat. DTG)", + "Explicit": true, + "Rank": 638163, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2020" + ], + "Contributors": [ + { + "id": 14991905, + "name": "S1mba", + "role": "Main" + }, + { + "id": 10139880, + "name": "DTG", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 664, + "Name": "Rude Boyz", + "Artists": "Andrew Bayer, Oliver Smith", + "Color": "1A3AA1", + "DarkColor": "132769", + "SongMetaId": null, + "SpotifyId": "7igIf1KC4Jo92cPFJhb0JE", + "DeezerID": 2867401992, + "DeezerURL": "https://www.deezer.com/track/2867401992", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/37e3afa066b99b307574317171abe02c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/37e3afa066b99b307574317171abe02c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/37e3afa066b99b307574317171abe02c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/37e3afa066b99b307574317171abe02c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBEWA2403020", + "BPM": 0, + "Duration": 205, + "ReleaseDate": "2024-07-05", + "AlbumName": "Rude Boyz", + "Explicit": false, + "Rank": 91366, + "Tags": [ + "Dance", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 1435297, + "name": "Andrew Bayer", + "role": "Main" + }, + { + "id": 248205, + "name": "Oliver Smith", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 664, + "Name": "Rude Boyz", + "Artists": "Andrew Bayer, Oliver Smith", + "Color": "274CC6", + "DarkColor": "18307F", + "SongMetaId": null, + "SpotifyId": "7igIf1KC4Jo92cPFJhb0JE", + "DeezerID": 2867401992, + "DeezerURL": "https://www.deezer.com/track/2867401992", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/37e3afa066b99b307574317171abe02c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/37e3afa066b99b307574317171abe02c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/37e3afa066b99b307574317171abe02c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/37e3afa066b99b307574317171abe02c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBEWA2403020", + "BPM": 0, + "Duration": 205, + "ReleaseDate": "2024-07-05", + "AlbumName": "Rude Boyz", + "Explicit": false, + "Rank": 91366, + "Tags": [ + "Dance", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 1435297, + "name": "Andrew Bayer", + "role": "Main" + }, + { + "id": 248205, + "name": "Oliver Smith", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 437, + "Name": "Run", + "Artists": "Skan", + "Color": "39ABD7", + "DarkColor": "08658D", + "SongMetaId": null, + "SpotifyId": "5S0kxENiO3UZgTy8cApTFD", + "DeezerID": 4633623, + "DeezerURL": "https://www.deezer.com/track/4633623", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/447ff0229188fd41f1182d1f51bd502d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/447ff0229188fd41f1182d1f51bd502d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/447ff0229188fd41f1182d1f51bd502d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/447ff0229188fd41f1182d1f51bd502d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70905503", + "BPM": 80, + "Duration": 229, + "ReleaseDate": "2009-11-16", + "AlbumName": "Russian Roulette (German 2 trk)", + "Explicit": false, + "Rank": 755939, + "Tags": [ + "Pop", + "bpm:80", + "medium-length", + "slow", + "year:2009" + ], + "Contributors": [ + { + "id": 564, + "name": "Rihanna", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 437, + "Name": "Run", + "Artists": "Skan", + "Color": "39ABD7", + "DarkColor": "08658D", + "SongMetaId": null, + "SpotifyId": "5S0kxENiO3UZgTy8cApTFD", + "DeezerID": 4633623, + "DeezerURL": "https://www.deezer.com/track/4633623", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/447ff0229188fd41f1182d1f51bd502d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/447ff0229188fd41f1182d1f51bd502d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/447ff0229188fd41f1182d1f51bd502d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/447ff0229188fd41f1182d1f51bd502d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70905503", + "BPM": 80, + "Duration": 229, + "ReleaseDate": "2009-11-16", + "AlbumName": "Russian Roulette (German 2 trk)", + "Explicit": false, + "Rank": 755939, + "Tags": [ + "Pop", + "bpm:80", + "medium-length", + "slow", + "year:2009" + ], + "Contributors": [ + { + "id": 564, + "name": "Rihanna", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 607, + "Name": "Runaways", + "Artists": "The Killers", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "62BxlOvQCjLNQA5ARA4Dug", + "DeezerID": 60741563, + "DeezerURL": "https://www.deezer.com/track/60741563", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/30777e3d096f15fac51251b78d7a6dc5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/30777e3d096f15fac51251b78d7a6dc5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/30777e3d096f15fac51251b78d7a6dc5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/30777e3d096f15fac51251b78d7a6dc5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71206893", + "BPM": 0, + "Duration": 244, + "ReleaseDate": "2012-09-18", + "AlbumName": "Battle Born", + "Explicit": false, + "Rank": 569580, + "Tags": [ + "Alternativo", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 607, + "Name": "Runaways", + "Artists": "The Killers", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "62BxlOvQCjLNQA5ARA4Dug", + "DeezerID": 60741563, + "DeezerURL": "https://www.deezer.com/track/60741563", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/30777e3d096f15fac51251b78d7a6dc5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/30777e3d096f15fac51251b78d7a6dc5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/30777e3d096f15fac51251b78d7a6dc5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/30777e3d096f15fac51251b78d7a6dc5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71206893", + "BPM": 0, + "Duration": 244, + "ReleaseDate": "2012-09-18", + "AlbumName": "Battle Born", + "Explicit": false, + "Rank": 569580, + "Tags": [ + "Alternativo", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 74, + "Name": "Rydeen", + "Artists": "YELLOW MAGIC ORCHESTRA", + "Color": "E1473A", + "DarkColor": "C22826", + "SongMetaId": null, + "SpotifyId": "0RAXoT7hwOoqAXI95ryxT5", + "DeezerID": 678243332, + "DeezerURL": "https://www.deezer.com/track/678243332", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/182476945f38c9e0c08a02cd6514b9ac/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/182476945f38c9e0c08a02cd6514b9ac/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/182476945f38c9e0c08a02cd6514b9ac/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/182476945f38c9e0c08a02cd6514b9ac/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPAL01800440", + "BPM": 0, + "Duration": 266, + "ReleaseDate": "1979-09-25", + "AlbumName": "Solid State Survivor", + "Explicit": false, + "Rank": 327338, + "Tags": [ + "Electro", + "medium-length", + "year:1979" + ], + "Contributors": [ + { + "id": 5088, + "name": "Yellow Magic Orchestra", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 416, + "Name": "Sabotage", + "Artists": "Beastie Boys", + "Color": "F0931E", + "DarkColor": "7C3B13", + "SongMetaId": null, + "SpotifyId": "0Puj4YlTm6xNzDDADXHMI9", + "DeezerID": 3119536, + "DeezerURL": "https://www.deezer.com/track/3119536", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fa78eb123d50cb183e6089746364a66b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fa78eb123d50cb183e6089746364a66b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fa78eb123d50cb183e6089746364a66b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fa78eb123d50cb183e6089746364a66b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA20501226", + "BPM": 168.1, + "Duration": 178, + "ReleaseDate": "2005-11-08", + "AlbumName": "Solid Gold Hits", + "Explicit": false, + "Rank": 695433, + "Tags": [ + "Rap/Hip Hop", + "bpm:168.1", + "short", + "very-fast", + "year:2005" + ], + "Contributors": [ + { + "id": 194746, + "name": "Beastie Boys", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 416, + "Name": "Sabotage", + "Artists": "Beastie Boys", + "Color": "F0931E", + "DarkColor": "7C3B13", + "SongMetaId": null, + "SpotifyId": "0Puj4YlTm6xNzDDADXHMI9", + "DeezerID": 3119536, + "DeezerURL": "https://www.deezer.com/track/3119536", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fa78eb123d50cb183e6089746364a66b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fa78eb123d50cb183e6089746364a66b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fa78eb123d50cb183e6089746364a66b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fa78eb123d50cb183e6089746364a66b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA20501226", + "BPM": 168.1, + "Duration": 178, + "ReleaseDate": "2005-11-08", + "AlbumName": "Solid Gold Hits", + "Explicit": false, + "Rank": 695433, + "Tags": [ + "Rap/Hip Hop", + "bpm:168.1", + "short", + "very-fast", + "year:2005" + ], + "Contributors": [ + { + "id": 194746, + "name": "Beastie Boys", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 632, + "Name": "Safari Song", + "Artists": "Greta Van Fleet", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "1BfR5GMOgW0peHkPxrwf11", + "DeezerID": 424587782, + "DeezerURL": "https://www.deezer.com/track/424587782", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/13ff3948fa154cea7ea96a1f7f020a35/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/13ff3948fa154cea7ea96a1f7f020a35/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/13ff3948fa154cea7ea96a1f7f020a35/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/13ff3948fa154cea7ea96a1f7f020a35/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71703679", + "BPM": 0, + "Duration": 235, + "ReleaseDate": "2017-11-10", + "AlbumName": "From The Fires", + "Explicit": false, + "Rank": 605835, + "Tags": [ + "Rock", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 5674606, + "name": "Greta Van Fleet", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 632, + "Name": "Safari Song", + "Artists": "Greta Van Fleet", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "1BfR5GMOgW0peHkPxrwf11", + "DeezerID": 424587782, + "DeezerURL": "https://www.deezer.com/track/424587782", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/13ff3948fa154cea7ea96a1f7f020a35/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/13ff3948fa154cea7ea96a1f7f020a35/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/13ff3948fa154cea7ea96a1f7f020a35/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/13ff3948fa154cea7ea96a1f7f020a35/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71703679", + "BPM": 0, + "Duration": 235, + "ReleaseDate": "2017-11-10", + "AlbumName": "From The Fires", + "Explicit": false, + "Rank": 605835, + "Tags": [ + "Rock", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 5674606, + "name": "Greta Van Fleet", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 249, + "Name": "Sandstorm", + "Artists": "Darude", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "6Sy9BUbgFse0n0LPA5lwy5", + "DeezerID": 11390027, + "DeezerURL": "https://www.deezer.com/track/11390027", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4813de733c6fb05c90187ab5cf3e13c7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4813de733c6fb05c90187ab5cf3e13c7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4813de733c6fb05c90187ab5cf3e13c7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4813de733c6fb05c90187ab5cf3e13c7/1000x1000-000000-80-0-0.jpg", + "ISRC": "FISGC9900001", + "BPM": 136, + "Duration": 225, + "ReleaseDate": "2000-01-01", + "AlbumName": "Before the Storm", + "Explicit": false, + "Rank": 816319, + "Tags": [ + "Dance", + "Electro", + "bpm:136", + "fast", + "medium-length", + "year:2000" + ], + "Contributors": [ + { + "id": 25, + "name": "Darude", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 249, + "Name": "Sandstorm", + "Artists": "Darude", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "6Sy9BUbgFse0n0LPA5lwy5", + "DeezerID": 11390027, + "DeezerURL": "https://www.deezer.com/track/11390027", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4813de733c6fb05c90187ab5cf3e13c7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4813de733c6fb05c90187ab5cf3e13c7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4813de733c6fb05c90187ab5cf3e13c7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4813de733c6fb05c90187ab5cf3e13c7/1000x1000-000000-80-0-0.jpg", + "ISRC": "FISGC9900001", + "BPM": 136, + "Duration": 225, + "ReleaseDate": "2000-01-01", + "AlbumName": "Before the Storm", + "Explicit": false, + "Rank": 816319, + "Tags": [ + "Dance", + "Electro", + "bpm:136", + "fast", + "medium-length", + "year:2000" + ], + "Contributors": [ + { + "id": 25, + "name": "Darude", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 244, + "Name": "Santeria", + "Artists": "Sublime", + "Color": "8D1834", + "DarkColor": "4E1924", + "SongMetaId": null, + "SpotifyId": "2hnMS47jN0etwvFPzYk11f", + "DeezerID": 127245051, + "DeezerURL": "https://www.deezer.com/track/127245051", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e59ad92844acb32752d14e0f16bff6b2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e59ad92844acb32752d14e0f16bff6b2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e59ad92844acb32752d14e0f16bff6b2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e59ad92844acb32752d14e0f16bff6b2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USGA19649253", + "BPM": 181.33, + "Duration": 183, + "ReleaseDate": "2016-06-24", + "AlbumName": "Sublime", + "Explicit": false, + "Rank": 700363, + "Tags": [ + "Rock", + "bpm:181.33", + "medium-length", + "very-fast", + "year:2016" + ], + "Contributors": [ + { + "id": 410, + "name": "Sublime", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 700, + "Name": "Satch Boogie", + "Artists": "Joe Satriani", + "Color": "EE492E", + "DarkColor": "980915", + "SongMetaId": null, + "SpotifyId": "3ExNcJ7LkInTekJg13FQSq", + "DeezerID": 8146937, + "DeezerURL": "https://www.deezer.com/track/8146937", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cc40cd8326a46d0925320e7df17486f3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cc40cd8326a46d0925320e7df17486f3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cc40cd8326a46d0925320e7df17486f3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cc40cd8326a46d0925320e7df17486f3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM18700088", + "BPM": 107.95, + "Duration": 193, + "ReleaseDate": "2007-08-07", + "AlbumName": "Surfing With The Alien", + "Explicit": false, + "Rank": 385019, + "Tags": [ + "Rock", + "bpm:107.95", + "medium", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 496, + "name": "Joe Satriani", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 700, + "Name": "Satch Boogie", + "Artists": "Joe Satriani", + "Color": "EE492E", + "DarkColor": "980915", + "SongMetaId": null, + "SpotifyId": "3ExNcJ7LkInTekJg13FQSq", + "DeezerID": 8146937, + "DeezerURL": "https://www.deezer.com/track/8146937", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cc40cd8326a46d0925320e7df17486f3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cc40cd8326a46d0925320e7df17486f3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cc40cd8326a46d0925320e7df17486f3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cc40cd8326a46d0925320e7df17486f3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM18700088", + "BPM": 107.95, + "Duration": 193, + "ReleaseDate": "2007-08-07", + "AlbumName": "Surfing With The Alien", + "Explicit": false, + "Rank": 385019, + "Tags": [ + "Rock", + "bpm:107.95", + "medium", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 496, + "name": "Joe Satriani", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 91, + "Name": "Satisfy", + "Artists": "NERO", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "4FoHmnlQPesxK7ZT1QCnd6", + "DeezerID": 78102599, + "DeezerURL": "https://www.deezer.com/track/78102599", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d8eb314d5cb5eeaeb5506e95a6c865f7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d8eb314d5cb5eeaeb5506e95a6c865f7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d8eb314d5cb5eeaeb5506e95a6c865f7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d8eb314d5cb5eeaeb5506e95a6c865f7/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71402377", + "BPM": 124.2, + "Duration": 284, + "ReleaseDate": "2014-05-14", + "AlbumName": "Satisfy", + "Explicit": false, + "Rank": 358265, + "Tags": [ + "Electro", + "bpm:124.2", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 92883, + "name": "Nero", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 584, + "Name": "Save Your Tears", + "Artists": "The Weeknd", + "Color": "99392A", + "DarkColor": "432423", + "SongMetaId": null, + "SpotifyId": "5QO79kh1waicV47BqGRL3g", + "DeezerID": 908604632, + "DeezerURL": "https://www.deezer.com/track/908604632", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12000669", + "BPM": 118.12, + "Duration": 215, + "ReleaseDate": "2020-03-20", + "AlbumName": "After Hours", + "Explicit": false, + "Rank": 961362, + "Tags": [ + "R&B", + "bpm:118.12", + "medium", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 4050205, + "name": "The Weeknd", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 584, + "Name": "Save Your Tears", + "Artists": "The Weeknd", + "Color": "99392A", + "DarkColor": "432423", + "SongMetaId": null, + "SpotifyId": "5QO79kh1waicV47BqGRL3g", + "DeezerID": 908604632, + "DeezerURL": "https://www.deezer.com/track/908604632", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12000669", + "BPM": 118.12, + "Duration": 215, + "ReleaseDate": "2020-03-20", + "AlbumName": "After Hours", + "Explicit": false, + "Rank": 961362, + "Tags": [ + "R&B", + "bpm:118.12", + "medium", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 4050205, + "name": "The Weeknd", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 98, + "Name": "Say So", + "Artists": "Doja Cat", + "Color": "E44A8C", + "DarkColor": "C52066", + "SongMetaId": null, + "SpotifyId": "3Dv1eDb0MEgF93GpLXlucZ", + "DeezerID": 797228462, + "DeezerURL": "https://www.deezer.com/track/797228462", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1e0d4359a328f8b0ea3563e8623a09aa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1e0d4359a328f8b0ea3563e8623a09aa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1e0d4359a328f8b0ea3563e8623a09aa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1e0d4359a328f8b0ea3563e8623a09aa/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11903454", + "BPM": 110.84, + "Duration": 240, + "ReleaseDate": "2019-11-07", + "AlbumName": "Hot Pink", + "Explicit": true, + "Rank": 869851, + "Tags": [ + "R&B", + "bpm:110.84", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 5578942, + "name": "Doja Cat", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 98, + "Name": "Say So", + "Artists": "Doja Cat", + "Color": "E44A8C", + "DarkColor": "E44A8C", + "SongMetaId": null, + "SpotifyId": "3Dv1eDb0MEgF93GpLXlucZ", + "DeezerID": 797228462, + "DeezerURL": "https://www.deezer.com/track/797228462", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1e0d4359a328f8b0ea3563e8623a09aa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1e0d4359a328f8b0ea3563e8623a09aa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1e0d4359a328f8b0ea3563e8623a09aa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1e0d4359a328f8b0ea3563e8623a09aa/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11903454", + "BPM": 110.84, + "Duration": 240, + "ReleaseDate": "2019-11-07", + "AlbumName": "Hot Pink", + "Explicit": true, + "Rank": 869851, + "Tags": [ + "R&B", + "bpm:110.84", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 5578942, + "name": "Doja Cat", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 510, + "Name": "Seasons", + "Artists": "Thirty Seconds To Mars", + "Color": "2291BC", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "5AVwPRQ5X1pNqYrHd1cjli", + "DeezerID": 2401836615, + "DeezerURL": "https://www.deezer.com/track/2401836615", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/076922f296286fff341be7c2df5a1617/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/076922f296286fff341be7c2df5a1617/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/076922f296286fff341be7c2df5a1617/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/076922f296286fff341be7c2df5a1617/1000x1000-000000-80-0-0.jpg", + "ISRC": "USC4R2228396", + "BPM": 0, + "Duration": 166, + "ReleaseDate": "2023-08-15", + "AlbumName": "Seasons", + "Explicit": true, + "Rank": 524198, + "Tags": [ + "Alternativo", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 390183, + "name": "Thirty Seconds to Mars", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 510, + "Name": "Seasons", + "Artists": "Thirty Seconds To Mars", + "Color": "2291BC", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "5AVwPRQ5X1pNqYrHd1cjli", + "DeezerID": 2401836615, + "DeezerURL": "https://www.deezer.com/track/2401836615", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/076922f296286fff341be7c2df5a1617/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/076922f296286fff341be7c2df5a1617/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/076922f296286fff341be7c2df5a1617/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/076922f296286fff341be7c2df5a1617/1000x1000-000000-80-0-0.jpg", + "ISRC": "USC4R2228396", + "BPM": 0, + "Duration": 166, + "ReleaseDate": "2023-08-15", + "AlbumName": "Seasons", + "Explicit": true, + "Rank": 524198, + "Tags": [ + "Alternativo", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 390183, + "name": "Thirty Seconds to Mars", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 474, + "Name": "Senorita", + "Artists": "Justin Timberlake", + "Color": "7FB6C0", + "DarkColor": "231443", + "SongMetaId": null, + "SpotifyId": "0aj2QKJvz6CePykmlTApiD", + "DeezerID": 970667, + "DeezerURL": "https://www.deezer.com/track/970667", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7cba368fa8466d72d149264577cb19d7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7cba368fa8466d72d149264577cb19d7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7cba368fa8466d72d149264577cb19d7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7cba368fa8466d72d149264577cb19d7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJI10200363", + "BPM": 98, + "Duration": 294, + "ReleaseDate": "2002-11-04", + "AlbumName": "Justified", + "Explicit": false, + "Rank": 682879, + "Tags": [ + "Pop", + "bpm:98", + "medium", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 1147, + "name": "Justin Timberlake", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 474, + "Name": "Senorita", + "Artists": "Justin Timberlake", + "Color": "7FB6C0", + "DarkColor": "231443", + "SongMetaId": null, + "SpotifyId": "0aj2QKJvz6CePykmlTApiD", + "DeezerID": 970667, + "DeezerURL": "https://www.deezer.com/track/970667", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7cba368fa8466d72d149264577cb19d7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7cba368fa8466d72d149264577cb19d7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7cba368fa8466d72d149264577cb19d7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7cba368fa8466d72d149264577cb19d7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJI10200363", + "BPM": 98, + "Duration": 294, + "ReleaseDate": "2002-11-04", + "AlbumName": "Justified", + "Explicit": false, + "Rank": 682879, + "Tags": [ + "Pop", + "bpm:98", + "medium", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 1147, + "name": "Justin Timberlake", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 543, + "Name": "September", + "Artists": "Earth, Wind & Fire", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": null, + "SpotifyId": "3kXoKlD84c6OmIcOLfrfEs", + "DeezerID": 487484142, + "DeezerURL": "https://www.deezer.com/track/487484142", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/18f41ecd3781fb96bffa2b0b49955db5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/18f41ecd3781fb96bffa2b0b49955db5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/18f41ecd3781fb96bffa2b0b49955db5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/18f41ecd3781fb96bffa2b0b49955db5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM17800845", + "BPM": 126.43, + "Duration": 215, + "ReleaseDate": "2018-04-17", + "AlbumName": "September", + "Explicit": false, + "Rank": 902775, + "Tags": [ + "R&B", + "bpm:126.43", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 248, + "name": "Earth, Wind & Fire", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 543, + "Name": "September", + "Artists": "Earth, Wind & Fire", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": null, + "SpotifyId": "3kXoKlD84c6OmIcOLfrfEs", + "DeezerID": 487484142, + "DeezerURL": "https://www.deezer.com/track/487484142", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/18f41ecd3781fb96bffa2b0b49955db5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/18f41ecd3781fb96bffa2b0b49955db5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/18f41ecd3781fb96bffa2b0b49955db5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/18f41ecd3781fb96bffa2b0b49955db5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM17800845", + "BPM": 126.43, + "Duration": 215, + "ReleaseDate": "2018-04-17", + "AlbumName": "September", + "Explicit": false, + "Rank": 902775, + "Tags": [ + "R&B", + "bpm:126.43", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 248, + "name": "Earth, Wind & Fire", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 27, + "Name": "Sexy And I Know It", + "Artists": "LMFAO", + "Color": "95399D", + "DarkColor": "6C246B", + "SongMetaId": null, + "SpotifyId": "0obBFrPYkSoBJbvHfUIhkv", + "DeezerID": 12565421, + "DeezerURL": "https://www.deezer.com/track/12565421", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/63278375978f200fb751cd63624151bb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/63278375978f200fb751cd63624151bb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/63278375978f200fb751cd63624151bb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/63278375978f200fb751cd63624151bb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71108090", + "BPM": 130, + "Duration": 199, + "ReleaseDate": "2011-06-20", + "AlbumName": "Sorry For Party Rocking", + "Explicit": false, + "Rank": 823188, + "Tags": [ + "Dance", + "Pop", + "bpm:130", + "fast", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 167225, + "name": "LMFAO", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 440, + "Name": "Shape of You", + "Artists": "Ed Sheeran", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": "26", + "SpotifyId": "7qiZfU4dY1lWllzX7mPBI3", + "DeezerID": 139470659, + "DeezerURL": "https://www.deezer.com/track/139470659", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/107c2b43f10c249077c1f7618563bb63/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/107c2b43f10c249077c1f7618563bb63/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/107c2b43f10c249077c1f7618563bb63/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/107c2b43f10c249077c1f7618563bb63/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS1600463", + "BPM": 95.93, + "Duration": 233, + "ReleaseDate": "2017-01-06", + "AlbumName": "Shape of You", + "Explicit": false, + "Rank": 968208, + "Tags": [ + "Pop", + "Singer & Songwriter", + "bpm:95.93", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Singer & Songwriter" + ] + }, + { + "SongId": 743, + "Name": "Shape of You", + "Artists": "Ed Sheeran", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": "26", + "SpotifyId": "7qiZfU4dY1lWllzX7mPBI3", + "DeezerID": 139470659, + "DeezerURL": "https://www.deezer.com/track/139470659", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/107c2b43f10c249077c1f7618563bb63/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/107c2b43f10c249077c1f7618563bb63/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/107c2b43f10c249077c1f7618563bb63/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/107c2b43f10c249077c1f7618563bb63/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS1600463", + "BPM": 95.93, + "Duration": 233, + "ReleaseDate": "2017-01-06", + "AlbumName": "Shape of You", + "Explicit": false, + "Rank": 968208, + "Tags": [ + "Pop", + "Singer & Songwriter", + "bpm:95.93", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Singer & Songwriter" + ] + }, + { + "SongId": 440, + "Name": "Shape of You", + "Artists": "Ed Sheeran", + "Color": "50B8CE", + "DarkColor": "0D559D", + "SongMetaId": "26", + "SpotifyId": "7qiZfU4dY1lWllzX7mPBI3", + "DeezerID": 139470659, + "DeezerURL": "https://www.deezer.com/track/139470659", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/107c2b43f10c249077c1f7618563bb63/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/107c2b43f10c249077c1f7618563bb63/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/107c2b43f10c249077c1f7618563bb63/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/107c2b43f10c249077c1f7618563bb63/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS1600463", + "BPM": 95.93, + "Duration": 233, + "ReleaseDate": "2017-01-06", + "AlbumName": "Shape of You", + "Explicit": false, + "Rank": 968208, + "Tags": [ + "Pop", + "Singer & Songwriter", + "bpm:95.93", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Singer & Songwriter" + ] + }, + { + "SongId": 559, + "Name": "She Will Be Loved", + "Artists": "Maroon 5", + "Color": "C47B66", + "DarkColor": "812D23", + "SongMetaId": null, + "SpotifyId": "7sapKrjDij2fpDVj0GxP66", + "DeezerID": 1165303, + "DeezerURL": "https://www.deezer.com/track/1165303", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/39fe38574c7af3181d1e56ad7c03fce3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/39fe38574c7af3181d1e56ad7c03fce3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/39fe38574c7af3181d1e56ad7c03fce3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/39fe38574c7af3181d1e56ad7c03fce3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJAY0300082", + "BPM": 102.1, + "Duration": 257, + "ReleaseDate": "2007-06-21", + "AlbumName": "Songs About Jane", + "Explicit": false, + "Rank": 850716, + "Tags": [ + "Pop", + "bpm:102.1", + "medium", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 1188, + "name": "Maroon 5", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 559, + "Name": "She Will Be Loved", + "Artists": "Maroon 5", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": null, + "SpotifyId": "7sapKrjDij2fpDVj0GxP66", + "DeezerID": 1165303, + "DeezerURL": "https://www.deezer.com/track/1165303", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/39fe38574c7af3181d1e56ad7c03fce3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/39fe38574c7af3181d1e56ad7c03fce3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/39fe38574c7af3181d1e56ad7c03fce3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/39fe38574c7af3181d1e56ad7c03fce3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USJAY0300082", + "BPM": 102.1, + "Duration": 257, + "ReleaseDate": "2007-06-21", + "AlbumName": "Songs About Jane", + "Explicit": false, + "Rank": 850716, + "Tags": [ + "Pop", + "bpm:102.1", + "medium", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 1188, + "name": "Maroon 5", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 392, + "Name": "Shivers", + "Artists": "Ed Sheeran", + "Color": "E1380A", + "DarkColor": "BB0023", + "SongMetaId": null, + "SpotifyId": "50nfwKoDiSYg8zOCREWAm5", + "DeezerID": 1484264492, + "DeezerURL": "https://www.deezer.com/track/1484264492", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/38f1360bb17de383d44962a2a07d214f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/38f1360bb17de383d44962a2a07d214f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/38f1360bb17de383d44962a2a07d214f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/38f1360bb17de383d44962a2a07d214f/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS2100671", + "BPM": 0, + "Duration": 207, + "ReleaseDate": "2021-09-10", + "AlbumName": "Shivers", + "Explicit": false, + "Rank": 902797, + "Tags": [ + "Pop", + "medium-length", + "year:2021" + ], + "Contributors": [ + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 211, + "Name": "Shooting Stars", + "Artists": "Bag Raiders", + "Color": "654CE8", + "DarkColor": "2115CD", + "SongMetaId": null, + "SpotifyId": "0UeYCHOETPfai02uskjJ3x", + "DeezerID": 4231436, + "DeezerURL": "https://www.deezer.com/track/4231436", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/166a6a4fb8de58a8405029acb4dba670/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/166a6a4fb8de58a8405029acb4dba670/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/166a6a4fb8de58a8405029acb4dba670/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/166a6a4fb8de58a8405029acb4dba670/1000x1000-000000-80-0-0.jpg", + "ISRC": "AUUM70902040", + "BPM": 124.9, + "Duration": 227, + "ReleaseDate": "2009-08-28", + "AlbumName": "Shooting Stars", + "Explicit": false, + "Rank": 769769, + "Tags": [ + "Pop", + "bpm:124.9", + "fast", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 166729, + "name": "Bag Raiders", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 217, + "Name": "Show das Poderosas", + "Artists": "Anitta", + "Color": "FD5D8C", + "DarkColor": "BF4F7C", + "SongMetaId": null, + "SpotifyId": "28aUFtkMnJaqNQkLHR0weV", + "DeezerID": 68530321, + "DeezerURL": "https://www.deezer.com/track/68530321", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3cfc5deeb07097f90021ed4a60342379/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3cfc5deeb07097f90021ed4a60342379/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3cfc5deeb07097f90021ed4a60342379/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3cfc5deeb07097f90021ed4a60342379/1000x1000-000000-80-0-0.jpg", + "ISRC": "BRWMB1300068", + "BPM": 132.9, + "Duration": 150, + "ReleaseDate": "2013-02-06", + "AlbumName": "Anitta", + "Explicit": false, + "Rank": 562070, + "Tags": [ + "Pop", + "bpm:132.9", + "fast", + "short", + "year:2013" + ], + "Contributors": [ + { + "id": 4390053, + "name": "Anitta", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 43, + "Name": "Shut Up And Dance", + "Artists": "WALK THE MOON", + "Color": "F4DF65", + "DarkColor": "C27936", + "SongMetaId": null, + "SpotifyId": "4kbj5MwxO1bq9wjT5g9HaA", + "DeezerID": 90326361, + "DeezerURL": "https://www.deezer.com/track/90326361", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4fd07406ef0cfa6dab31fd68d71eb2b7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4fd07406ef0cfa6dab31fd68d71eb2b7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4fd07406ef0cfa6dab31fd68d71eb2b7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4fd07406ef0cfa6dab31fd68d71eb2b7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11401949", + "BPM": 128, + "Duration": 197, + "ReleaseDate": "2014-12-02", + "AlbumName": "TALKING IS HARD", + "Explicit": false, + "Rank": 907570, + "Tags": [ + "Alternativo", + "bpm:128", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 525307, + "name": "Walk The Moon", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 43, + "Name": "Shut Up And Dance", + "Artists": "WALK THE MOON", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "4kbj5MwxO1bq9wjT5g9HaA", + "DeezerID": 90326361, + "DeezerURL": "https://www.deezer.com/track/90326361", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4fd07406ef0cfa6dab31fd68d71eb2b7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4fd07406ef0cfa6dab31fd68d71eb2b7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4fd07406ef0cfa6dab31fd68d71eb2b7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4fd07406ef0cfa6dab31fd68d71eb2b7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11401949", + "BPM": 128, + "Duration": 197, + "ReleaseDate": "2014-12-02", + "AlbumName": "TALKING IS HARD", + "Explicit": false, + "Rank": 907570, + "Tags": [ + "Alternativo", + "bpm:128", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 525307, + "name": "Walk The Moon", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 648, + "Name": "Sin Pijama", + "Artists": "Becky G, NATTI NATASHA", + "Color": "C10909", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "62vDrkBEyJYEOFj1ScBqM7", + "DeezerID": 488242202, + "DeezerURL": "https://www.deezer.com/track/488242202", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a15a7915a0d81e6a9dd07897f60c7157/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a15a7915a0d81e6a9dd07897f60c7157/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a15a7915a0d81e6a9dd07897f60c7157/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a15a7915a0d81e6a9dd07897f60c7157/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSD11800157", + "BPM": 187.93, + "Duration": 187, + "ReleaseDate": "2025-01-18", + "AlbumName": "Sin Pijama", + "Explicit": false, + "Rank": 698807, + "Tags": [ + "Rap/Hip Hop", + "Reggaeton", + "bpm:187.93", + "medium-length", + "very-fast", + "year:2025" + ], + "Contributors": [ + { + "id": 4698748, + "name": "Becky G", + "role": "Main" + }, + { + "id": 2829671, + "name": "NATTI NATASHA ", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "Reggaeton" + ] + }, + { + "SongId": 648, + "Name": "Sin Pijama", + "Artists": "Becky G, NATTI NATASHA", + "Color": "C10907", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "62vDrkBEyJYEOFj1ScBqM7", + "DeezerID": 488242202, + "DeezerURL": "https://www.deezer.com/track/488242202", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a15a7915a0d81e6a9dd07897f60c7157/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a15a7915a0d81e6a9dd07897f60c7157/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a15a7915a0d81e6a9dd07897f60c7157/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a15a7915a0d81e6a9dd07897f60c7157/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSD11800157", + "BPM": 187.93, + "Duration": 187, + "ReleaseDate": "2025-01-18", + "AlbumName": "Sin Pijama", + "Explicit": false, + "Rank": 698807, + "Tags": [ + "Rap/Hip Hop", + "Reggaeton", + "bpm:187.93", + "medium-length", + "very-fast", + "year:2025" + ], + "Contributors": [ + { + "id": 4698748, + "name": "Becky G", + "role": "Main" + }, + { + "id": 2829671, + "name": "NATTI NATASHA ", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "Reggaeton" + ] + }, + { + "SongId": 246, + "Name": "Since U Been Gone", + "Artists": "Kelly Clarkson", + "Color": "DA9770", + "DarkColor": "541B14", + "SongMetaId": null, + "SpotifyId": "3xrn9i8zhNZsTtcoWgQEAd", + "DeezerID": 62118993, + "DeezerURL": "https://www.deezer.com/track/62118993", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4e96bc714cb67543de9b30461a2de88e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4e96bc714cb67543de9b30461a2de88e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4e96bc714cb67543de9b30461a2de88e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4e96bc714cb67543de9b30461a2de88e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCTA0400231", + "BPM": 130.8, + "Duration": 188, + "ReleaseDate": "2012-11-16", + "AlbumName": "Greatest Hits - Chapter One", + "Explicit": false, + "Rank": 726761, + "Tags": [ + "Pop", + "Pop internacional", + "Rock", + "bpm:130.8", + "fast", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 68, + "name": "Kelly Clarkson", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Pop internacional", + "Rock" + ] + }, + { + "SongId": 56, + "Name": "Sing", + "Artists": "Ed Sheeran", + "Color": "21D25A", + "DarkColor": "005F14", + "SongMetaId": null, + "SpotifyId": "6K8qKeWo5MsFED7wCR6Kop", + "DeezerID": 79875048, + "DeezerURL": "https://www.deezer.com/track/79875048", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b1d763da698c38bde6a526c8220ca0ea/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b1d763da698c38bde6a526c8220ca0ea/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b1d763da698c38bde6a526c8220ca0ea/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b1d763da698c38bde6a526c8220ca0ea/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS1400082", + "BPM": 119.84, + "Duration": 235, + "ReleaseDate": "2014-06-20", + "AlbumName": "x (Deluxe Edition)", + "Explicit": false, + "Rank": 814754, + "Tags": [ + "Pop", + "bpm:119.84", + "medium", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 384236, + "name": "Ed Sheeran", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 39, + "Name": "Sk8er Boi", + "Artists": "Avril Lavigne", + "Color": "263E7D", + "DarkColor": "192951", + "SongMetaId": null, + "SpotifyId": "00Mb3DuaIH1kjrwOku9CGU", + "DeezerID": 15587466, + "DeezerURL": "https://www.deezer.com/track/15587466", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1130d6301d5e87976279ea2f706fcc26/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1130d6301d5e87976279ea2f706fcc26/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1130d6301d5e87976279ea2f706fcc26/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1130d6301d5e87976279ea2f706fcc26/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR10200229", + "BPM": 149.8, + "Duration": 203, + "ReleaseDate": "2002-06-04", + "AlbumName": "Let Go", + "Explicit": false, + "Rank": 740993, + "Tags": [ + "Pop", + "bpm:149.8", + "fast", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 35, + "name": "Avril Lavigne", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 39, + "Name": "Sk8er Boi", + "Artists": "Avril Lavigne", + "Color": "263E7D", + "DarkColor": "192951", + "SongMetaId": null, + "SpotifyId": "00Mb3DuaIH1kjrwOku9CGU", + "DeezerID": 15587466, + "DeezerURL": "https://www.deezer.com/track/15587466", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1130d6301d5e87976279ea2f706fcc26/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1130d6301d5e87976279ea2f706fcc26/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1130d6301d5e87976279ea2f706fcc26/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1130d6301d5e87976279ea2f706fcc26/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR10200229", + "BPM": 149.8, + "Duration": 203, + "ReleaseDate": "2002-06-04", + "AlbumName": "Let Go", + "Explicit": false, + "Rank": 740993, + "Tags": [ + "Pop", + "bpm:149.8", + "fast", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 35, + "name": "Avril Lavigne", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 77, + "Name": "Slip Away", + "Artists": "Perfume Genius", + "Color": "234F4F", + "DarkColor": "1B313E", + "SongMetaId": null, + "SpotifyId": "13yxz52EwElyue9PLrqcZY", + "DeezerID": 144584502, + "DeezerURL": "https://www.deezer.com/track/144584502", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/46753b2a7a7e2f1b0b9d9001223554e7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/46753b2a7a7e2f1b0b9d9001223554e7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/46753b2a7a7e2f1b0b9d9001223554e7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/46753b2a7a7e2f1b0b9d9001223554e7/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMTD1709223", + "BPM": 0, + "Duration": 165, + "ReleaseDate": "2017-03-22", + "AlbumName": "Slip Away", + "Explicit": false, + "Rank": 280001, + "Tags": [ + "Alternativo", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 467549, + "name": "Perfume Genius", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 523, + "Name": "Sliver - Live In Del Mar", + "Artists": "Nirvana", + "Color": "2291BC", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "5kdSuh2MpougnxdwT19aHO", + "DeezerID": 13693557, + "DeezerURL": "https://www.deezer.com/track/13693557", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/455c6a41dcdfa9c381dd5cd3508c9ae4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/455c6a41dcdfa9c381dd5cd3508c9ae4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/455c6a41dcdfa9c381dd5cd3508c9ae4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/455c6a41dcdfa9c381dd5cd3508c9ae4/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71111773", + "BPM": 141.4, + "Duration": 123, + "ReleaseDate": "2011-09-27", + "AlbumName": "Nevermind (Super Deluxe Edition)", + "Explicit": false, + "Rank": 161684, + "Tags": [ + "Rock", + "bpm:141.4", + "fast", + "short", + "year:2011" + ], + "Contributors": [ + { + "id": 415, + "name": "Nirvana", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 523, + "Name": "Sliver - Live In Del Mar", + "Artists": "Nirvana", + "Color": "2291BC", + "DarkColor": "0D559D", + "SongMetaId": null, + "SpotifyId": "5kdSuh2MpougnxdwT19aHO", + "DeezerID": 13693557, + "DeezerURL": "https://www.deezer.com/track/13693557", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/455c6a41dcdfa9c381dd5cd3508c9ae4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/455c6a41dcdfa9c381dd5cd3508c9ae4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/455c6a41dcdfa9c381dd5cd3508c9ae4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/455c6a41dcdfa9c381dd5cd3508c9ae4/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71111773", + "BPM": 141.4, + "Duration": 123, + "ReleaseDate": "2011-09-27", + "AlbumName": "Nevermind (Super Deluxe Edition)", + "Explicit": false, + "Rank": 161684, + "Tags": [ + "Rock", + "bpm:141.4", + "fast", + "short", + "year:2011" + ], + "Contributors": [ + { + "id": 415, + "name": "Nirvana", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 544, + "Name": "Slumber", + "Artists": "Radiant Knife", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "1LBijYCSwdLlOeLewZJe6V", + "DeezerID": 2329546965, + "DeezerURL": "https://www.deezer.com/track/2329546965", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b8064eb1098b5d8a236248cabc5f4a40/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b8064eb1098b5d8a236248cabc5f4a40/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b8064eb1098b5d8a236248cabc5f4a40/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b8064eb1098b5d8a236248cabc5f4a40/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM82324267", + "BPM": 0, + "Duration": 193, + "ReleaseDate": "2023-07-14", + "AlbumName": "Pressure", + "Explicit": false, + "Rank": 37100, + "Tags": [ + "Alternativo", + "Indie Rock", + "Metal", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 11734559, + "name": "Radiant Knife", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Rock", + "Metal" + ] + }, + { + "SongId": 544, + "Name": "Slumber", + "Artists": "Radiant Knife", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "1LBijYCSwdLlOeLewZJe6V", + "DeezerID": 2329546965, + "DeezerURL": "https://www.deezer.com/track/2329546965", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b8064eb1098b5d8a236248cabc5f4a40/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b8064eb1098b5d8a236248cabc5f4a40/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b8064eb1098b5d8a236248cabc5f4a40/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b8064eb1098b5d8a236248cabc5f4a40/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM82324267", + "BPM": 0, + "Duration": 193, + "ReleaseDate": "2023-07-14", + "AlbumName": "Pressure", + "Explicit": false, + "Rank": 37100, + "Tags": [ + "Alternativo", + "Indie Rock", + "Metal", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 11734559, + "name": "Radiant Knife", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Rock", + "Metal" + ] + }, + { + "SongId": 640, + "Name": "Smooth", + "Artists": "Santana", + "Color": "173094", + "DarkColor": "2115CD", + "SongMetaId": null, + "SpotifyId": "3i3GeK0qLQybu4ah42YmCY", + "DeezerID": 82241402, + "DeezerURL": "https://www.deezer.com/track/82241402", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/929132f50492c7acfab23b32722f4537/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/929132f50492c7acfab23b32722f4537/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/929132f50492c7acfab23b32722f4537/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/929132f50492c7acfab23b32722f4537/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR19900033", + "BPM": 115.8, + "Duration": 296, + "ReleaseDate": "2011-02-18", + "AlbumName": "Supernatural (Legacy Edition)", + "Explicit": false, + "Rank": 774888, + "Tags": [ + "Pop", + "bpm:115.8", + "medium", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 553, + "name": "Santana", + "role": "Main" + }, + { + "id": 1761, + "name": "Rob Thomas", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 640, + "Name": "Smooth", + "Artists": "Santana", + "Color": "4F4EFA", + "DarkColor": "2115CD", + "SongMetaId": null, + "SpotifyId": "3i3GeK0qLQybu4ah42YmCY", + "DeezerID": 82241402, + "DeezerURL": "https://www.deezer.com/track/82241402", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/929132f50492c7acfab23b32722f4537/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/929132f50492c7acfab23b32722f4537/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/929132f50492c7acfab23b32722f4537/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/929132f50492c7acfab23b32722f4537/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR19900033", + "BPM": 115.8, + "Duration": 296, + "ReleaseDate": "2011-02-18", + "AlbumName": "Supernatural (Legacy Edition)", + "Explicit": false, + "Rank": 774888, + "Tags": [ + "Pop", + "bpm:115.8", + "medium", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 553, + "name": "Santana", + "role": "Main" + }, + { + "id": 1761, + "name": "Rob Thomas", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 581, + "Name": "Snooze", + "Artists": "SZA", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "4iZ4pt7kvcaH6Yo8UoZ4s2", + "DeezerID": 2055292087, + "DeezerURL": "https://www.deezer.com/track/2055292087", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC12204591", + "BPM": 0, + "Duration": 201, + "ReleaseDate": "2022-12-09", + "AlbumName": "SOS", + "Explicit": true, + "Rank": 860419, + "Tags": [ + "R&B", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 5531258, + "name": "SZA", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 581, + "Name": "Snooze", + "Artists": "SZA", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "4iZ4pt7kvcaH6Yo8UoZ4s2", + "DeezerID": 2055292087, + "DeezerURL": "https://www.deezer.com/track/2055292087", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a3c3b409f0d5bd781821ec0fd79d5b15/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC12204591", + "BPM": 0, + "Duration": 201, + "ReleaseDate": "2022-12-09", + "AlbumName": "SOS", + "Explicit": true, + "Rank": 860419, + "Tags": [ + "R&B", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 5531258, + "name": "SZA", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 68, + "Name": "Somebody Else", + "Artists": "The 1975", + "Color": "F5909D", + "DarkColor": "C2536C", + "SongMetaId": null, + "SpotifyId": "5hc71nKsUgtwQ3z52KEKQk", + "DeezerID": 119205662, + "DeezerURL": "https://www.deezer.com/track/119205662", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/97ab544fb96d693e44adb0cabda14e43/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/97ab544fb96d693e44adb0cabda14e43/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/97ab544fb96d693e44adb0cabda14e43/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/97ab544fb96d693e44adb0cabda14e43/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBK3W1500426", + "BPM": 101.08, + "Duration": 348, + "ReleaseDate": "2016-02-16", + "AlbumName": "Somebody Else", + "Explicit": true, + "Rank": 643293, + "Tags": [ + "Alternativo", + "bpm:101.08", + "long", + "medium", + "year:2016" + ], + "Contributors": [ + { + "id": 3583591, + "name": "The 1975", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 540, + "Name": "Somebody Told Me", + "Artists": "The Killers", + "Color": "EA7CA3", + "DarkColor": "A72E68", + "SongMetaId": null, + "SpotifyId": "6PwjJ58I4t7Mae9xfZ9l9v", + "DeezerID": 2947342, + "DeezerURL": "https://www.deezer.com/track/2947342", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/38bb1c3329d465a3e6d4ebfe579df121/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/38bb1c3329d465a3e6d4ebfe579df121/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/38bb1c3329d465a3e6d4ebfe579df121/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/38bb1c3329d465a3e6d4ebfe579df121/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBFFP0300054", + "BPM": 137.8, + "Duration": 198, + "ReleaseDate": "2005-01-01", + "AlbumName": "Hot Fuss", + "Explicit": false, + "Rank": 851566, + "Tags": [ + "Rock", + "bpm:137.8", + "fast", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 540, + "Name": "Somebody Told Me", + "Artists": "The Killers", + "Color": "E46988", + "DarkColor": "BF4F7C", + "SongMetaId": null, + "SpotifyId": "6PwjJ58I4t7Mae9xfZ9l9v", + "DeezerID": 2947342, + "DeezerURL": "https://www.deezer.com/track/2947342", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/38bb1c3329d465a3e6d4ebfe579df121/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/38bb1c3329d465a3e6d4ebfe579df121/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/38bb1c3329d465a3e6d4ebfe579df121/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/38bb1c3329d465a3e6d4ebfe579df121/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBFFP0300054", + "BPM": 137.8, + "Duration": 198, + "ReleaseDate": "2005-01-01", + "AlbumName": "Hot Fuss", + "Explicit": false, + "Rank": 851566, + "Tags": [ + "Rock", + "bpm:137.8", + "fast", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 182, + "Name": "Someone You Loved", + "Artists": "Lewis Capaldi", + "Color": "A3001E", + "DarkColor": "350505", + "SongMetaId": null, + "SpotifyId": "7qEHsqek33rTcFNT9PFqLf", + "DeezerID": 582143242, + "DeezerURL": "https://www.deezer.com/track/582143242", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9a49265adb09ef5c1ae4920f8420e5ae/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9a49265adb09ef5c1ae4920f8420e5ae/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9a49265adb09ef5c1ae4920f8420e5ae/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9a49265adb09ef5c1ae4920f8420e5ae/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEUM71807062", + "BPM": 109.96, + "Duration": 182, + "ReleaseDate": "2018-11-08", + "AlbumName": "Breach", + "Explicit": false, + "Rank": 957328, + "Tags": [ + "Alternativo", + "bpm:109.96", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 12088868, + "name": "Lewis Capaldi", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 182, + "Name": "Someone You Loved", + "Artists": "Lewis Capaldi", + "Color": "A3001E", + "DarkColor": "350505", + "SongMetaId": null, + "SpotifyId": "7qEHsqek33rTcFNT9PFqLf", + "DeezerID": 582143242, + "DeezerURL": "https://www.deezer.com/track/582143242", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9a49265adb09ef5c1ae4920f8420e5ae/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9a49265adb09ef5c1ae4920f8420e5ae/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9a49265adb09ef5c1ae4920f8420e5ae/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9a49265adb09ef5c1ae4920f8420e5ae/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEUM71807062", + "BPM": 109.96, + "Duration": 182, + "ReleaseDate": "2018-11-08", + "AlbumName": "Breach", + "Explicit": false, + "Rank": 957328, + "Tags": [ + "Alternativo", + "bpm:109.96", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 12088868, + "name": "Lewis Capaldi", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 133, + "Name": "Something Just Like This", + "Artists": "The Chainsmokers, Coldplay", + "Color": "1FADB4", + "DarkColor": "006977", + "SongMetaId": null, + "SpotifyId": "6RUKPb4LETWmmr3iAEQktW", + "DeezerID": 142706538, + "DeezerURL": "https://www.deezer.com/track/142706538", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2ae6c01a51296a7ec6d89c96a4fac32c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2ae6c01a51296a7ec6d89c96a4fac32c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2ae6c01a51296a7ec6d89c96a4fac32c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2ae6c01a51296a7ec6d89c96a4fac32c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX91700278", + "BPM": 102.85, + "Duration": 247, + "ReleaseDate": "2017-02-22", + "AlbumName": "Something Just Like This", + "Explicit": false, + "Rank": 929174, + "Tags": [ + "Alternativo", + "Dance", + "Dubstep", + "Electro", + "Indie Pop", + "Indie Rock", + "Pop", + "Rock", + "Techno/House", + "bpm:102.85", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 892, + "name": "Coldplay", + "role": "Main" + }, + { + "id": 4104927, + "name": "The Chainsmokers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Pop", + "Indie Rock", + "Electro", + "Dubstep", + "Techno/House", + "Dance", + "Pop", + "Rock" + ] + }, + { + "SongId": 711, + "Name": "Sorry", + "Artists": "Justin Bieber", + "Color": "F381B5", + "DarkColor": "E23680", + "SongMetaId": null, + "SpotifyId": "09CtPGIpYB4BrO8qb1RGsF", + "DeezerID": 112662366, + "DeezerURL": "https://www.deezer.com/track/112662366", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71516760", + "BPM": 99.86, + "Duration": 201, + "ReleaseDate": "2015-11-13", + "AlbumName": "Purpose (Deluxe)", + "Explicit": false, + "Rank": 871813, + "Tags": [ + "Pop", + "bpm:99.86", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 288166, + "name": "Justin Bieber", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 711, + "Name": "Sorry", + "Artists": "Justin Bieber", + "Color": "F381B5", + "DarkColor": "E23680", + "SongMetaId": null, + "SpotifyId": "09CtPGIpYB4BrO8qb1RGsF", + "DeezerID": 112662366, + "DeezerURL": "https://www.deezer.com/track/112662366", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/340283aafac320864b207c420124ee46/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71516760", + "BPM": 99.86, + "Duration": 201, + "ReleaseDate": "2015-11-13", + "AlbumName": "Purpose (Deluxe)", + "Explicit": false, + "Rank": 871813, + "Tags": [ + "Pop", + "bpm:99.86", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 288166, + "name": "Justin Bieber", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 563, + "Name": "SOUL PASSIVATION", + "Artists": "X2H", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "4XZFZg8KzYg9HtsYw4Nd4g", + "DeezerID": 2450816305, + "DeezerURL": "https://www.deezer.com/track/2450816305", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9869b68a0da504adb1aea1fd37cb9201/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9869b68a0da504adb1aea1fd37cb9201/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9869b68a0da504adb1aea1fd37cb9201/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9869b68a0da504adb1aea1fd37cb9201/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2383704", + "BPM": 0, + "Duration": 262, + "ReleaseDate": "2023-10-13", + "AlbumName": "Yoshio and the Phantasm", + "Explicit": false, + "Rank": 52865, + "Tags": [ + "Dubstep", + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 14523939, + "name": "X2H", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dubstep" + ] + }, + { + "SongId": 563, + "Name": "SOUL PASSIVATION", + "Artists": "X2H", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "4XZFZg8KzYg9HtsYw4Nd4g", + "DeezerID": 2450816305, + "DeezerURL": "https://www.deezer.com/track/2450816305", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9869b68a0da504adb1aea1fd37cb9201/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9869b68a0da504adb1aea1fd37cb9201/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9869b68a0da504adb1aea1fd37cb9201/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9869b68a0da504adb1aea1fd37cb9201/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA5KR2383704", + "BPM": 0, + "Duration": 262, + "ReleaseDate": "2023-10-13", + "AlbumName": "Yoshio and the Phantasm", + "Explicit": false, + "Rank": 52865, + "Tags": [ + "Dubstep", + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 14523939, + "name": "X2H", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dubstep" + ] + }, + { + "SongId": 589, + "Name": "Speechless", + "Artists": "Barang", + "Color": "E359D8", + "DarkColor": "974190", + "SongMetaId": null, + "SpotifyId": "1Tbt8OaAnOyIK9IJ189rNm", + "DeezerID": 2584900712, + "DeezerURL": "https://www.deezer.com/track/2584900712", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fca94415757c7c6105492711324e998b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fca94415757c7c6105492711324e998b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fca94415757c7c6105492711324e998b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fca94415757c7c6105492711324e998b/1000x1000-000000-80-0-0.jpg", + "ISRC": "FRE3S2318130", + "BPM": 0, + "Duration": 162, + "ReleaseDate": "2024-01-05", + "AlbumName": "Speechless", + "Explicit": false, + "Rank": 141103, + "Tags": [ + "Pop", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 56611542, + "name": "Barang", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 589, + "Name": "Speechless", + "Artists": "Barang", + "Color": "E359D8", + "DarkColor": "9C3E94", + "SongMetaId": null, + "SpotifyId": "1Tbt8OaAnOyIK9IJ189rNm", + "DeezerID": 2584900712, + "DeezerURL": "https://www.deezer.com/track/2584900712", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fca94415757c7c6105492711324e998b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fca94415757c7c6105492711324e998b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fca94415757c7c6105492711324e998b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fca94415757c7c6105492711324e998b/1000x1000-000000-80-0-0.jpg", + "ISRC": "FRE3S2318130", + "BPM": 0, + "Duration": 162, + "ReleaseDate": "2024-01-05", + "AlbumName": "Speechless", + "Explicit": false, + "Rank": 141103, + "Tags": [ + "Pop", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 56611542, + "name": "Barang", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 421, + "Name": "Stacy's Mom", + "Artists": "Fountains Of Wayne", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": "27", + "SpotifyId": "27L8sESb3KR79asDUBu8nW", + "DeezerID": 3090887, + "DeezerURL": "https://www.deezer.com/track/3090887", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0f199c359f6be20d2146514b7c421978/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0f199c359f6be20d2146514b7c421978/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0f199c359f6be20d2146514b7c421978/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0f199c359f6be20d2146514b7c421978/1000x1000-000000-80-0-0.jpg", + "ISRC": "USESC0300016", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2003-06-10", + "AlbumName": "Welcome Interstate Managers", + "Explicit": false, + "Rank": 567544, + "Tags": [ + "Pop", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 1750, + "name": "Fountains of Wayne", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 717, + "Name": "Stacy's Mom", + "Artists": "Fountains Of Wayne", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": "27", + "SpotifyId": "27L8sESb3KR79asDUBu8nW", + "DeezerID": 3090887, + "DeezerURL": "https://www.deezer.com/track/3090887", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0f199c359f6be20d2146514b7c421978/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0f199c359f6be20d2146514b7c421978/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0f199c359f6be20d2146514b7c421978/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0f199c359f6be20d2146514b7c421978/1000x1000-000000-80-0-0.jpg", + "ISRC": "USESC0300016", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2003-06-10", + "AlbumName": "Welcome Interstate Managers", + "Explicit": false, + "Rank": 567544, + "Tags": [ + "Pop", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 1750, + "name": "Fountains of Wayne", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 421, + "Name": "Stacy's Mom", + "Artists": "Fountains Of Wayne", + "Color": "E70030", + "DarkColor": "AC0528", + "SongMetaId": "27", + "SpotifyId": "27L8sESb3KR79asDUBu8nW", + "DeezerID": 3090887, + "DeezerURL": "https://www.deezer.com/track/3090887", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0f199c359f6be20d2146514b7c421978/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0f199c359f6be20d2146514b7c421978/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0f199c359f6be20d2146514b7c421978/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0f199c359f6be20d2146514b7c421978/1000x1000-000000-80-0-0.jpg", + "ISRC": "USESC0300016", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2003-06-10", + "AlbumName": "Welcome Interstate Managers", + "Explicit": false, + "Rank": 567544, + "Tags": [ + "Pop", + "medium-length", + "year:2003" + ], + "Contributors": [ + { + "id": 1750, + "name": "Fountains of Wayne", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 28, + "Name": "Stand Up Tall", + "Artists": "Dizzee Rascal", + "Color": "F3BE01", + "DarkColor": "C36B22", + "SongMetaId": null, + "SpotifyId": "6YH9aJRrCuChmbRH2Fr2gP", + "DeezerID": 105098444, + "DeezerURL": "https://www.deezer.com/track/105098444", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f79e2d706a2cd0fa197b711c67c38361/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f79e2d706a2cd0fa197b711c67c38361/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f79e2d706a2cd0fa197b711c67c38361/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f79e2d706a2cd0fa197b711c67c38361/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBKS0462419", + "BPM": 0, + "Duration": 189, + "ReleaseDate": "2004-09-06", + "AlbumName": "Showtime", + "Explicit": false, + "Rank": 222186, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2004" + ], + "Contributors": [ + { + "id": 2388, + "name": "Dizzee Rascal", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 28, + "Name": "Stand Up Tall", + "Artists": "Dizzee Rascal", + "Color": "F3BE01", + "DarkColor": "C36B22", + "SongMetaId": null, + "SpotifyId": "6YH9aJRrCuChmbRH2Fr2gP", + "DeezerID": 105098444, + "DeezerURL": "https://www.deezer.com/track/105098444", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f79e2d706a2cd0fa197b711c67c38361/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f79e2d706a2cd0fa197b711c67c38361/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f79e2d706a2cd0fa197b711c67c38361/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f79e2d706a2cd0fa197b711c67c38361/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBKS0462419", + "BPM": 0, + "Duration": 189, + "ReleaseDate": "2004-09-06", + "AlbumName": "Showtime", + "Explicit": false, + "Rank": 222186, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2004" + ], + "Contributors": [ + { + "id": 2388, + "name": "Dizzee Rascal", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 406, + "Name": "Starlight", + "Artists": "Muse", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "3skn2lauGk7Dx6bVIt5DVj", + "DeezerID": 3590185, + "DeezerURL": "https://www.deezer.com/track/3590185", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fc457d27a8c0b7fc6f9b56fb94e22a0d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fc457d27a8c0b7fc6f9b56fb94e22a0d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fc457d27a8c0b7fc6f9b56fb94e22a0d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fc457d27a8c0b7fc6f9b56fb94e22a0d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT0500592", + "BPM": 121.6, + "Duration": 243, + "ReleaseDate": "2006-06-19", + "AlbumName": "Black Holes and Revelations", + "Explicit": false, + "Rank": 883919, + "Tags": [ + "Alternativo", + "bpm:121.6", + "fast", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 705, + "name": "Muse", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 406, + "Name": "Starlight", + "Artists": "Muse", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "3skn2lauGk7Dx6bVIt5DVj", + "DeezerID": 3590185, + "DeezerURL": "https://www.deezer.com/track/3590185", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/fc457d27a8c0b7fc6f9b56fb94e22a0d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/fc457d27a8c0b7fc6f9b56fb94e22a0d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/fc457d27a8c0b7fc6f9b56fb94e22a0d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/fc457d27a8c0b7fc6f9b56fb94e22a0d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT0500592", + "BPM": 121.6, + "Duration": 243, + "ReleaseDate": "2006-06-19", + "AlbumName": "Black Holes and Revelations", + "Explicit": false, + "Rank": 883919, + "Tags": [ + "Alternativo", + "bpm:121.6", + "fast", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 705, + "name": "Muse", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 205, + "Name": "Starving", + "Artists": "Hailee Steinfeld, Grey, Zedd", + "Color": "AC0620", + "DarkColor": "5A0001", + "SongMetaId": null, + "SpotifyId": "4Ce37cRWvM1vIGGynKcs22", + "DeezerID": 128948012, + "DeezerURL": "https://www.deezer.com/track/128948012", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/46b47680d6c0f754365a9744737ef426/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/46b47680d6c0f754365a9744737ef426/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/46b47680d6c0f754365a9744737ef426/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/46b47680d6c0f754365a9744737ef426/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71606370", + "BPM": 0, + "Duration": 181, + "ReleaseDate": "2016-07-22", + "AlbumName": "Starving", + "Explicit": false, + "Rank": 638786, + "Tags": [ + "Pop", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 5961630, + "name": "Hailee Steinfeld", + "role": "Main" + }, + { + "id": 86338342, + "name": "Grey", + "role": "Main" + }, + { + "id": 1198612, + "name": "ZEDD", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 205, + "Name": "Starving", + "Artists": "Hailee Steinfeld, Grey, Zedd", + "Color": "AC0620", + "DarkColor": "5A0001", + "SongMetaId": null, + "SpotifyId": "4Ce37cRWvM1vIGGynKcs22", + "DeezerID": 128948012, + "DeezerURL": "https://www.deezer.com/track/128948012", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/46b47680d6c0f754365a9744737ef426/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/46b47680d6c0f754365a9744737ef426/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/46b47680d6c0f754365a9744737ef426/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/46b47680d6c0f754365a9744737ef426/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71606370", + "BPM": 0, + "Duration": 181, + "ReleaseDate": "2016-07-22", + "AlbumName": "Starving", + "Explicit": false, + "Rank": 638786, + "Tags": [ + "Pop", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 5961630, + "name": "Hailee Steinfeld", + "role": "Main" + }, + { + "id": 86338342, + "name": "Grey", + "role": "Main" + }, + { + "id": 1198612, + "name": "ZEDD", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 299, + "Name": "Stay", + "Artists": "Zedd, Alessia Cara", + "Color": "A54482", + "DarkColor": "611A6E", + "SongMetaId": null, + "SpotifyId": "6uBhi9gBXWjanegOb2Phh0", + "DeezerID": 142808100, + "DeezerURL": "https://www.deezer.com/track/142808100", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/16e8d7fc0a40f75bffac15d7e9e2a9c5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/16e8d7fc0a40f75bffac15d7e9e2a9c5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/16e8d7fc0a40f75bffac15d7e9e2a9c5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/16e8d7fc0a40f75bffac15d7e9e2a9c5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71700736", + "BPM": 102.08, + "Duration": 210, + "ReleaseDate": "2017-02-23", + "AlbumName": "Stay", + "Explicit": false, + "Rank": 716121, + "Tags": [ + "Dance", + "bpm:102.08", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 1198612, + "name": "ZEDD", + "role": "Main" + }, + { + "id": 7890062, + "name": "Alessia Cara", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 299, + "Name": "Stay", + "Artists": "Zedd, Alessia Cara", + "Color": "A54482", + "DarkColor": "611A6E", + "SongMetaId": null, + "SpotifyId": "6uBhi9gBXWjanegOb2Phh0", + "DeezerID": 142808100, + "DeezerURL": "https://www.deezer.com/track/142808100", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/16e8d7fc0a40f75bffac15d7e9e2a9c5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/16e8d7fc0a40f75bffac15d7e9e2a9c5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/16e8d7fc0a40f75bffac15d7e9e2a9c5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/16e8d7fc0a40f75bffac15d7e9e2a9c5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71700736", + "BPM": 102.08, + "Duration": 210, + "ReleaseDate": "2017-02-23", + "AlbumName": "Stay", + "Explicit": false, + "Rank": 716121, + "Tags": [ + "Dance", + "bpm:102.08", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 1198612, + "name": "ZEDD", + "role": "Main" + }, + { + "id": 7890062, + "name": "Alessia Cara", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 704, + "Name": "Stick Season", + "Artists": "Noah Kahan", + "Color": "ACBE73", + "DarkColor": "425531", + "SongMetaId": null, + "SpotifyId": "0mflMxspEfB0VbI1kyLiAv", + "DeezerID": 2310201655, + "DeezerURL": "https://www.deezer.com/track/2310201655", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1cf9edd5673e4f9a070054fbd6166134/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1cf9edd5673e4f9a070054fbd6166134/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1cf9edd5673e4f9a070054fbd6166134/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1cf9edd5673e4f9a070054fbd6166134/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72212470", + "BPM": 0, + "Duration": 182, + "ReleaseDate": "2023-06-09", + "AlbumName": "Stick Season (We'll All Be Here Forever)", + "Explicit": false, + "Rank": 872558, + "Tags": [ + "Alternativo", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 11819131, + "name": "Noah Kahan", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 704, + "Name": "Stick Season", + "Artists": "Noah Kahan", + "Color": "ACBE73", + "DarkColor": "425531", + "SongMetaId": null, + "SpotifyId": "0mflMxspEfB0VbI1kyLiAv", + "DeezerID": 2310201655, + "DeezerURL": "https://www.deezer.com/track/2310201655", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1cf9edd5673e4f9a070054fbd6166134/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1cf9edd5673e4f9a070054fbd6166134/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1cf9edd5673e4f9a070054fbd6166134/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1cf9edd5673e4f9a070054fbd6166134/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72212470", + "BPM": 0, + "Duration": 182, + "ReleaseDate": "2023-06-09", + "AlbumName": "Stick Season (We'll All Be Here Forever)", + "Explicit": false, + "Rank": 872558, + "Tags": [ + "Alternativo", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 11819131, + "name": "Noah Kahan", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 587, + "Name": "Stitches", + "Artists": "Shawn Mendes", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "5jsw9uXEGuKyJzs0boZ1bT", + "DeezerID": 113418500, + "DeezerURL": "https://www.deezer.com/track/113418500", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/46fab8006e0da286831fe157ccc4f31c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/46fab8006e0da286831fe157ccc4f31c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/46fab8006e0da286831fe157ccc4f31c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/46fab8006e0da286831fe157ccc4f31c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71500658", + "BPM": 0, + "Duration": 207, + "ReleaseDate": "2015-11-20", + "AlbumName": "Handwritten (Revisited)", + "Explicit": false, + "Rank": 837872, + "Tags": [ + "Pop", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 5962948, + "name": "Shawn Mendes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 587, + "Name": "Stitches", + "Artists": "Shawn Mendes", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "5jsw9uXEGuKyJzs0boZ1bT", + "DeezerID": 113418500, + "DeezerURL": "https://www.deezer.com/track/113418500", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/46fab8006e0da286831fe157ccc4f31c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/46fab8006e0da286831fe157ccc4f31c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/46fab8006e0da286831fe157ccc4f31c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/46fab8006e0da286831fe157ccc4f31c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71500658", + "BPM": 0, + "Duration": 207, + "ReleaseDate": "2015-11-20", + "AlbumName": "Handwritten (Revisited)", + "Explicit": false, + "Rank": 837872, + "Tags": [ + "Pop", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 5962948, + "name": "Shawn Mendes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 286, + "Name": "Strangers", + "Artists": "Sigrid", + "Color": "DB352C", + "DarkColor": "9E1E23", + "SongMetaId": null, + "SpotifyId": "3CWuU5kIw8zsWJTcgreUwl", + "DeezerID": 642674252, + "DeezerURL": "https://www.deezer.com/track/642674252", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b14a5c79069346ab9d5ca71b574b7e75/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b14a5c79069346ab9d5ca71b574b7e75/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b14a5c79069346ab9d5ca71b574b7e75/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b14a5c79069346ab9d5ca71b574b7e75/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71705774", + "BPM": 114.84, + "Duration": 233, + "ReleaseDate": "2019-03-08", + "AlbumName": "Sucker Punch", + "Explicit": false, + "Rank": 474536, + "Tags": [ + "Pop", + "bpm:114.84", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 11924667, + "name": "Sigrid", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 575, + "Name": "Stressed Out", + "Artists": "Twenty-one Pilots", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "3CRDbSIZ4r5MsZ0YwxuEkn", + "DeezerID": 99976952, + "DeezerURL": "https://www.deezer.com/track/99976952", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dbbde1014cda9b101412a8e27add0ad2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dbbde1014cda9b101412a8e27add0ad2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dbbde1014cda9b101412a8e27add0ad2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dbbde1014cda9b101412a8e27add0ad2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21500597", + "BPM": 170.1, + "Duration": 202, + "ReleaseDate": "2015-05-15", + "AlbumName": "Blurryface", + "Explicit": false, + "Rank": 948165, + "Tags": [ + "Alternativo", + "bpm:170.1", + "medium-length", + "very-fast", + "year:2015" + ], + "Contributors": [ + { + "id": 647650, + "name": "Twenty One Pilots", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 575, + "Name": "Stressed Out", + "Artists": "Twenty-one Pilots", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "3CRDbSIZ4r5MsZ0YwxuEkn", + "DeezerID": 99976952, + "DeezerURL": "https://www.deezer.com/track/99976952", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/dbbde1014cda9b101412a8e27add0ad2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/dbbde1014cda9b101412a8e27add0ad2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/dbbde1014cda9b101412a8e27add0ad2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/dbbde1014cda9b101412a8e27add0ad2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21500597", + "BPM": 170.1, + "Duration": 202, + "ReleaseDate": "2015-05-15", + "AlbumName": "Blurryface", + "Explicit": false, + "Rank": 948165, + "Tags": [ + "Alternativo", + "bpm:170.1", + "medium-length", + "very-fast", + "year:2015" + ], + "Contributors": [ + { + "id": 647650, + "name": "Twenty One Pilots", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 583, + "Name": "Stumblin' In ", + "Artists": "Cyril", + "Color": "398694", + "DarkColor": "123743", + "SongMetaId": null, + "SpotifyId": "0h3Xy4V4apMraB5NuM8U7Z", + "DeezerID": 2537448451, + "DeezerURL": "https://www.deezer.com/track/2537448451", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5f3fb15db6de697e908b253c4c393763/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5f3fb15db6de697e908b253c4c393763/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5f3fb15db6de697e908b253c4c393763/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5f3fb15db6de697e908b253c4c393763/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLZ542301810", + "BPM": 0, + "Duration": 213, + "ReleaseDate": "2023-11-10", + "AlbumName": "Stumblin' In", + "Explicit": false, + "Rank": 971177, + "Tags": [ + "Dance", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 3644401, + "name": "Cyril", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 583, + "Name": "Stumblin' In ", + "Artists": "Cyril", + "Color": "398694", + "DarkColor": "123743", + "SongMetaId": null, + "SpotifyId": "0h3Xy4V4apMraB5NuM8U7Z", + "DeezerID": 2537448451, + "DeezerURL": "https://www.deezer.com/track/2537448451", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5f3fb15db6de697e908b253c4c393763/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5f3fb15db6de697e908b253c4c393763/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5f3fb15db6de697e908b253c4c393763/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5f3fb15db6de697e908b253c4c393763/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLZ542301810", + "BPM": 0, + "Duration": 213, + "ReleaseDate": "2023-11-10", + "AlbumName": "Stumblin' In", + "Explicit": false, + "Rank": 971177, + "Tags": [ + "Dance", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 3644401, + "name": "Cyril", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 374, + "Name": "Sugar", + "Artists": "Maroon 5", + "Color": "CC3F5D", + "DarkColor": "B42942", + "SongMetaId": null, + "SpotifyId": "2iuZJX9X9P0GKaE93xcPjk", + "DeezerID": 100004590, + "DeezerURL": "https://www.deezer.com/track/100004590", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f0a1d4442389bcd7919a7054f8c0b785/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f0a1d4442389bcd7919a7054f8c0b785/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f0a1d4442389bcd7919a7054f8c0b785/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f0a1d4442389bcd7919a7054f8c0b785/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71410340", + "BPM": 119.8, + "Duration": 235, + "ReleaseDate": "2015-05-15", + "AlbumName": "V (Deluxe)", + "Explicit": true, + "Rank": 740265, + "Tags": [ + "Pop", + "bpm:119.8", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 1188, + "name": "Maroon 5", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 715, + "Name": "Sugar, We're Goin Down", + "Artists": "Fall Out Boy", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": "28", + "SpotifyId": "2TfSHkHiFO4gRztVIkggkE", + "DeezerID": 917265, + "DeezerURL": "https://www.deezer.com/track/917265", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR20500201", + "BPM": 0, + "Duration": 232, + "ReleaseDate": "2006-01-01", + "AlbumName": "From Under The Cork Tree Limited Tour Edition", + "Explicit": false, + "Rank": 656473, + "Tags": [ + "Rock", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 404, + "name": "Fall Out Boy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 267, + "Name": "Sugar, We're Goin Down", + "Artists": "Fall Out Boy", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": "28", + "SpotifyId": "2TfSHkHiFO4gRztVIkggkE", + "DeezerID": 917265, + "DeezerURL": "https://www.deezer.com/track/917265", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR20500201", + "BPM": 0, + "Duration": 232, + "ReleaseDate": "2006-01-01", + "AlbumName": "From Under The Cork Tree Limited Tour Edition", + "Explicit": false, + "Rank": 656473, + "Tags": [ + "Rock", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 404, + "name": "Fall Out Boy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 267, + "Name": "Sugar, We're Goin Down", + "Artists": "Fall Out Boy", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": "28", + "SpotifyId": "2TfSHkHiFO4gRztVIkggkE", + "DeezerID": 917265, + "DeezerURL": "https://www.deezer.com/track/917265", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c9f58887d836400029a7c099bd7a4044/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR20500201", + "BPM": 0, + "Duration": 232, + "ReleaseDate": "2006-01-01", + "AlbumName": "From Under The Cork Tree Limited Tour Edition", + "Explicit": false, + "Rank": 656473, + "Tags": [ + "Rock", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 404, + "name": "Fall Out Boy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 639, + "Name": "Summer of 69 (Classic Version)", + "Artists": "Bryan Adams", + "Color": "FCBC4D", + "DarkColor": "CA7F04", + "SongMetaId": null, + "SpotifyId": "45sqV0WhglbGJswa6SiC0v", + "DeezerID": 1663078332, + "DeezerURL": "https://www.deezer.com/track/1663078332", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/684bc5e23978bf7443fdde3e4227df5f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/684bc5e23978bf7443fdde3e4227df5f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/684bc5e23978bf7443fdde3e4227df5f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/684bc5e23978bf7443fdde3e4227df5f/1000x1000-000000-80-0-0.jpg", + "ISRC": "US23A1515535", + "BPM": 0, + "Duration": 248, + "ReleaseDate": "2022-03-04", + "AlbumName": "Classic", + "Explicit": false, + "Rank": 354664, + "Tags": [ + "Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 170, + "name": "Bryan Adams", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 639, + "Name": "Summer of 69 (Classic Version)", + "Artists": "Bryan Adams", + "Color": "FCBC4D", + "DarkColor": "CA7F04", + "SongMetaId": null, + "SpotifyId": "45sqV0WhglbGJswa6SiC0v", + "DeezerID": 1663078332, + "DeezerURL": "https://www.deezer.com/track/1663078332", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/684bc5e23978bf7443fdde3e4227df5f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/684bc5e23978bf7443fdde3e4227df5f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/684bc5e23978bf7443fdde3e4227df5f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/684bc5e23978bf7443fdde3e4227df5f/1000x1000-000000-80-0-0.jpg", + "ISRC": "US23A1515535", + "BPM": 0, + "Duration": 248, + "ReleaseDate": "2022-03-04", + "AlbumName": "Classic", + "Explicit": false, + "Rank": 354664, + "Tags": [ + "Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 170, + "name": "Bryan Adams", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 756, + "Name": "Sunflower - Spider Man: Into The Spider-Verse ", + "Artists": "Post Malone, Swae Lee", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": "29", + "SpotifyId": "3KkXRkHbMCARz0aVfEt68P", + "DeezerID": 602456552, + "DeezerURL": "https://www.deezer.com/track/602456552", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1aa3dfe91b3e5d3bc71eca6b6e9c8d39/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1aa3dfe91b3e5d3bc71eca6b6e9c8d39/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1aa3dfe91b3e5d3bc71eca6b6e9c8d39/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1aa3dfe91b3e5d3bc71eca6b6e9c8d39/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71814888", + "BPM": 179.76, + "Duration": 158, + "ReleaseDate": "2018-12-14", + "AlbumName": "Spider-Man: Into the Spider-Verse (Soundtrack From & Inspired by the Motion Picture)", + "Explicit": false, + "Rank": 910425, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "bpm:179.76", + "short", + "very-fast", + "year:2018" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + }, + { + "id": 7627172, + "name": "Swae Lee", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 585, + "Name": "Sunflower - Spider Man: Into The Spider-Verse ", + "Artists": "Post Malone, Swae Lee", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": "29", + "SpotifyId": "0RiRZpuVRbi7oqRdSMwhQY", + "DeezerID": 602456552, + "DeezerURL": "https://www.deezer.com/track/602456552", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1aa3dfe91b3e5d3bc71eca6b6e9c8d39/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1aa3dfe91b3e5d3bc71eca6b6e9c8d39/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1aa3dfe91b3e5d3bc71eca6b6e9c8d39/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1aa3dfe91b3e5d3bc71eca6b6e9c8d39/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71814888", + "BPM": 179.76, + "Duration": 158, + "ReleaseDate": "2018-12-14", + "AlbumName": "Spider-Man: Into the Spider-Verse (Soundtrack From & Inspired by the Motion Picture)", + "Explicit": false, + "Rank": 910425, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "bpm:179.76", + "short", + "very-fast", + "year:2018" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + }, + { + "id": 7627172, + "name": "Swae Lee", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 585, + "Name": "Sunflower - Spider Man: Into The Spider-Verse ", + "Artists": "Post Malone, Swae Lee", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": "29", + "SpotifyId": "0RiRZpuVRbi7oqRdSMwhQY", + "DeezerID": 602456552, + "DeezerURL": "https://www.deezer.com/track/602456552", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1aa3dfe91b3e5d3bc71eca6b6e9c8d39/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1aa3dfe91b3e5d3bc71eca6b6e9c8d39/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1aa3dfe91b3e5d3bc71eca6b6e9c8d39/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1aa3dfe91b3e5d3bc71eca6b6e9c8d39/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71814888", + "BPM": 179.76, + "Duration": 158, + "ReleaseDate": "2018-12-14", + "AlbumName": "Spider-Man: Into the Spider-Verse (Soundtrack From & Inspired by the Motion Picture)", + "Explicit": false, + "Rank": 910425, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "bpm:179.76", + "short", + "very-fast", + "year:2018" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + }, + { + "id": 7627172, + "name": "Swae Lee", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 618, + "Name": "sunny day, sunny day", + "Artists": "Dasloe, Adelyn Paik", + "Color": "39ABD7", + "DarkColor": "08658D", + "SongMetaId": null, + "SpotifyId": "5cz0GmNXswahLXKmq8kOmT", + "DeezerID": 1816644327, + "DeezerURL": "https://www.deezer.com/track/1816644327", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d7ea7f0631efabe14a2f0c4ed4dcbb11/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d7ea7f0631efabe14a2f0c4ed4dcbb11/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d7ea7f0631efabe14a2f0c4ed4dcbb11/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d7ea7f0631efabe14a2f0c4ed4dcbb11/1000x1000-000000-80-0-0.jpg", + "ISRC": "SE5Q52200996", + "BPM": 0, + "Duration": 173, + "ReleaseDate": "2022-07-15", + "AlbumName": "sunny day, sunny day", + "Explicit": false, + "Rank": 103310, + "Tags": [ + "Pop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 12622539, + "name": "Dasloe", + "role": "Main" + }, + { + "id": 12272762, + "name": "Adelyn Paik", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 618, + "Name": "sunny day, sunny day", + "Artists": "Dasloe, Adelyn Paik", + "Color": "39ABD7", + "DarkColor": "08658D", + "SongMetaId": null, + "SpotifyId": "5cz0GmNXswahLXKmq8kOmT", + "DeezerID": 1816644327, + "DeezerURL": "https://www.deezer.com/track/1816644327", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d7ea7f0631efabe14a2f0c4ed4dcbb11/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d7ea7f0631efabe14a2f0c4ed4dcbb11/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d7ea7f0631efabe14a2f0c4ed4dcbb11/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d7ea7f0631efabe14a2f0c4ed4dcbb11/1000x1000-000000-80-0-0.jpg", + "ISRC": "SE5Q52200996", + "BPM": 0, + "Duration": 173, + "ReleaseDate": "2022-07-15", + "AlbumName": "sunny day, sunny day", + "Explicit": false, + "Rank": 103310, + "Tags": [ + "Pop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 12622539, + "name": "Dasloe", + "role": "Main" + }, + { + "id": 12272762, + "name": "Adelyn Paik", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 345, + "Name": "Sunroof", + "Artists": "Nicky Youre, dazy", + "Color": "93D8FF", + "DarkColor": "447EAB", + "SongMetaId": null, + "SpotifyId": "5YqEzk3C5c3UZ1D5fJUlXA", + "DeezerID": 1858151477, + "DeezerURL": "https://www.deezer.com/track/1858151477", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9b49a393d1769ae0fd5e3f7435ff9c3a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9b49a393d1769ae0fd5e3f7435ff9c3a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9b49a393d1769ae0fd5e3f7435ff9c3a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9b49a393d1769ae0fd5e3f7435ff9c3a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX92202129", + "BPM": 0, + "Duration": 163, + "ReleaseDate": "2022-08-12", + "AlbumName": "Sunroof (Remixes)", + "Explicit": false, + "Rank": 848487, + "Tags": [ + "Pop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 95585462, + "name": "Nicky Youre", + "role": "Main" + }, + { + "id": 5356688, + "name": "Dazy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 542, + "Name": "Sunshine Of Your Love", + "Artists": "Cream", + "Color": "CF2380", + "DarkColor": "A31763", + "SongMetaId": null, + "SpotifyId": "2K2M0TcglCRLLpFOzKeFZA", + "DeezerID": 1175615, + "DeezerURL": "https://www.deezer.com/track/1175615", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/196eaf4d3f7437f744a71d867a543dbb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/196eaf4d3f7437f744a71d867a543dbb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/196eaf4d3f7437f744a71d867a543dbb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/196eaf4d3f7437f744a71d867a543dbb/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBA076700020", + "BPM": 115.2, + "Duration": 250, + "ReleaseDate": "1994-03-28", + "AlbumName": "The Cream Of Clapton", + "Explicit": false, + "Rank": 673228, + "Tags": [ + "Pop", + "bpm:115.2", + "medium", + "medium-length", + "year:1994" + ], + "Contributors": [ + { + "id": 1796, + "name": "Cream", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 542, + "Name": "Sunshine Of Your Love", + "Artists": "Cream", + "Color": "CF2380", + "DarkColor": "922438", + "SongMetaId": null, + "SpotifyId": "2K2M0TcglCRLLpFOzKeFZA", + "DeezerID": 1175615, + "DeezerURL": "https://www.deezer.com/track/1175615", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/196eaf4d3f7437f744a71d867a543dbb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/196eaf4d3f7437f744a71d867a543dbb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/196eaf4d3f7437f744a71d867a543dbb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/196eaf4d3f7437f744a71d867a543dbb/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBA076700020", + "BPM": 115.2, + "Duration": 250, + "ReleaseDate": "1994-03-28", + "AlbumName": "The Cream Of Clapton", + "Explicit": false, + "Rank": 673228, + "Tags": [ + "Pop", + "bpm:115.2", + "medium", + "medium-length", + "year:1994" + ], + "Contributors": [ + { + "id": 1796, + "name": "Cream", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 396, + "Name": "Super Bass", + "Artists": "Nicki Minaj", + "Color": "DE9AA1", + "DarkColor": "A96E78", + "SongMetaId": null, + "SpotifyId": "3hlksXnvbKogFdPbpO9vel", + "DeezerID": 412843352, + "DeezerURL": "https://www.deezer.com/track/412843352", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f3f28eaf22f4aa1382b1fe83c6723961/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f3f28eaf22f4aa1382b1fe83c6723961/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f3f28eaf22f4aa1382b1fe83c6723961/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f3f28eaf22f4aa1382b1fe83c6723961/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCM51100104", + "BPM": 126.82, + "Duration": 201, + "ReleaseDate": "2011-01-01", + "AlbumName": "Pink Friday (Deluxe Edition)", + "Explicit": false, + "Rank": 733442, + "Tags": [ + "Rap/Hip Hop", + "bpm:126.82", + "fast", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 382937, + "name": "Nicki Minaj", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 401, + "Name": "Super Freaky Girl", + "Artists": "Nicki Minaj", + "Color": "D57A9D", + "DarkColor": "B93359", + "SongMetaId": null, + "SpotifyId": "4C6Uex2ILwJi9sZXRdmqXp", + "DeezerID": 1863905587, + "DeezerURL": "https://www.deezer.com/track/1863905587", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f178f502c5c003276bb843e2a0cd6e2f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f178f502c5c003276bb843e2a0cd6e2f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f178f502c5c003276bb843e2a0cd6e2f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f178f502c5c003276bb843e2a0cd6e2f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72215262", + "BPM": 0, + "Duration": 171, + "ReleaseDate": "2022-08-12", + "AlbumName": "Super Freaky Girl", + "Explicit": true, + "Rank": 654780, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 382937, + "name": "Nicki Minaj", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 132, + "Name": "Super Leap Day (Capital Highway)", + "Artists": "Roberto Bazzoni / Nitrome", + "Color": "B2FA00", + "DarkColor": "00653C", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 92, + "Name": "Superman", + "Artists": "Goldfinger", + "Color": "E20A14", + "DarkColor": "830011", + "SongMetaId": null, + "SpotifyId": "4X3qGigyU6ARi3HP4lWD95", + "DeezerID": 7978573, + "DeezerURL": "https://www.deezer.com/track/7978573", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ab9a711817cbf9e24fbfba88c192681c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ab9a711817cbf9e24fbfba88c192681c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ab9a711817cbf9e24fbfba88c192681c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ab9a711817cbf9e24fbfba88c192681c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMJ19700131", + "BPM": 195, + "Duration": 185, + "ReleaseDate": "2009-01-26", + "AlbumName": "The Best Of Goldfinger", + "Explicit": false, + "Rank": 564156, + "Tags": [ + "Rock", + "bpm:195", + "medium-length", + "very-fast", + "year:2009" + ], + "Contributors": [ + { + "id": 2128, + "name": "Goldfinger", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 92, + "Name": "Superman", + "Artists": "Goldfinger", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "4X3qGigyU6ARi3HP4lWD95", + "DeezerID": 7978573, + "DeezerURL": "https://www.deezer.com/track/7978573", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ab9a711817cbf9e24fbfba88c192681c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ab9a711817cbf9e24fbfba88c192681c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ab9a711817cbf9e24fbfba88c192681c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ab9a711817cbf9e24fbfba88c192681c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMJ19700131", + "BPM": 195, + "Duration": 185, + "ReleaseDate": "2009-01-26", + "AlbumName": "The Best Of Goldfinger", + "Explicit": false, + "Rank": 564156, + "Tags": [ + "Rock", + "bpm:195", + "medium-length", + "very-fast", + "year:2009" + ], + "Contributors": [ + { + "id": 2128, + "name": "Goldfinger", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 344, + "Name": "Superstar", + "Artists": "Lupe Fiasco, Matthew Santos", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "5EA7UNBqezqvJHKHxHRdz4", + "DeezerID": 663451, + "DeezerURL": "https://www.deezer.com/track/663451", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/41e2837eecd6bd7a29b990273ce46cbd/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/41e2837eecd6bd7a29b990273ce46cbd/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/41e2837eecd6bd7a29b990273ce46cbd/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/41e2837eecd6bd7a29b990273ce46cbd/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT20704985", + "BPM": 95, + "Duration": 289, + "ReleaseDate": "2007-01-01", + "AlbumName": "Lupe Fiasco's The Cool", + "Explicit": false, + "Rank": 660172, + "Tags": [ + "Rap/Hip Hop", + "bpm:95", + "medium", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 5047, + "name": "Lupe Fiasco", + "role": "Main" + }, + { + "id": 392888, + "name": "Matthew Santos", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 693, + "Name": "Surfboard", + "Artists": "Abraysiv, Casein", + "Color": "828282", + "DarkColor": "545454", + "SongMetaId": null, + "SpotifyId": "3JnsSb6zSxDzE8BQHQ5QNe", + "DeezerID": 2718137042, + "DeezerURL": "https://www.deezer.com/track/2718137042", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f02e34de63d19e8280e2c23d21873034/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f02e34de63d19e8280e2c23d21873034/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f02e34de63d19e8280e2c23d21873034/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f02e34de63d19e8280e2c23d21873034/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZ5FN2355492", + "BPM": 0, + "Duration": 154, + "ReleaseDate": "2024-05-10", + "AlbumName": "Ease Your Mind", + "Explicit": true, + "Rank": 7945, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 13103087, + "name": "Abraysiv", + "role": "Main" + }, + { + "id": 63550712, + "name": "Casein", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 693, + "Name": "Surfboard", + "Artists": "Abraysiv, Casein", + "Color": "828282", + "DarkColor": "545454", + "SongMetaId": null, + "SpotifyId": "3JnsSb6zSxDzE8BQHQ5QNe", + "DeezerID": 2718137042, + "DeezerURL": "https://www.deezer.com/track/2718137042", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f02e34de63d19e8280e2c23d21873034/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f02e34de63d19e8280e2c23d21873034/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f02e34de63d19e8280e2c23d21873034/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f02e34de63d19e8280e2c23d21873034/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZ5FN2355492", + "BPM": 0, + "Duration": 154, + "ReleaseDate": "2024-05-10", + "AlbumName": "Ease Your Mind", + "Explicit": true, + "Rank": 7945, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 13103087, + "name": "Abraysiv", + "role": "Main" + }, + { + "id": 63550712, + "name": "Casein", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 130, + "Name": "Surgeon Simulator (Theme Tune)", + "Artists": "Bossa Studios / Black Heron", + "Color": "E6333A", + "DarkColor": "81051D", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 596, + "Name": "Swamp Thing", + "Artists": "The Grid", + "Color": "39ABD7", + "DarkColor": "08658D", + "SongMetaId": null, + "SpotifyId": "2TU5HRSj7cSjkKwNzF8NhS", + "DeezerID": 90630503, + "DeezerURL": "https://www.deezer.com/track/90630503", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/23200f2a6cecb3df661cd187a6889dba/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/23200f2a6cecb3df661cd187a6889dba/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/23200f2a6cecb3df661cd187a6889dba/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/23200f2a6cecb3df661cd187a6889dba/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL9400047", + "BPM": 134.67, + "Duration": 238, + "ReleaseDate": "2014-11-28", + "AlbumName": "90s 100 Hits", + "Explicit": false, + "Rank": 307184, + "Tags": [ + "Pop", + "bpm:134.67", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 15587, + "name": "The Grid", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 596, + "Name": "Swamp Thing", + "Artists": "The Grid", + "Color": "39ABD7", + "DarkColor": "08658D", + "SongMetaId": null, + "SpotifyId": "2TU5HRSj7cSjkKwNzF8NhS", + "DeezerID": 90630503, + "DeezerURL": "https://www.deezer.com/track/90630503", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/23200f2a6cecb3df661cd187a6889dba/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/23200f2a6cecb3df661cd187a6889dba/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/23200f2a6cecb3df661cd187a6889dba/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/23200f2a6cecb3df661cd187a6889dba/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL9400047", + "BPM": 134.67, + "Duration": 238, + "ReleaseDate": "2014-11-28", + "AlbumName": "90s 100 Hits", + "Explicit": false, + "Rank": 307184, + "Tags": [ + "Pop", + "bpm:134.67", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 15587, + "name": "The Grid", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 449, + "Name": "Swang", + "Artists": "Rae Sremmurd", + "Color": "984F25", + "DarkColor": "852F08", + "SongMetaId": null, + "SpotifyId": "6mapJIPnQ23RTAevUoE0DL", + "DeezerID": 130105310, + "DeezerURL": "https://www.deezer.com/track/130105310", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d9c957b88855e088940f96e955cf26be/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d9c957b88855e088940f96e955cf26be/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d9c957b88855e088940f96e955cf26be/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d9c957b88855e088940f96e955cf26be/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71603303", + "BPM": 140.15, + "Duration": 206, + "ReleaseDate": "2016-08-12", + "AlbumName": "SremmLife 2 (Deluxe)", + "Explicit": true, + "Rank": 651571, + "Tags": [ + "Rap/Hip Hop", + "bpm:140.15", + "fast", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 5575762, + "name": "Rae Sremmurd", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 449, + "Name": "Swang", + "Artists": "Rae Sremmurd", + "Color": "984F25", + "DarkColor": "852F08", + "SongMetaId": null, + "SpotifyId": "6mapJIPnQ23RTAevUoE0DL", + "DeezerID": 130105310, + "DeezerURL": "https://www.deezer.com/track/130105310", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d9c957b88855e088940f96e955cf26be/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d9c957b88855e088940f96e955cf26be/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d9c957b88855e088940f96e955cf26be/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d9c957b88855e088940f96e955cf26be/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71603303", + "BPM": 140.15, + "Duration": 206, + "ReleaseDate": "2016-08-12", + "AlbumName": "SremmLife 2 (Deluxe)", + "Explicit": true, + "Rank": 651571, + "Tags": [ + "Rap/Hip Hop", + "bpm:140.15", + "fast", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 5575762, + "name": "Rae Sremmurd", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 485, + "Name": "Sway Back", + "Artists": "Nase Foai", + "Color": "DE9F4C", + "DarkColor": "C48145", + "SongMetaId": null, + "SpotifyId": "5F5c6TJzRN8HUawqp94IjU", + "DeezerID": 830349792, + "DeezerURL": "https://www.deezer.com/track/830349792", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0120070e1efec52c72045253315a3e69/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0120070e1efec52c72045253315a3e69/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0120070e1efec52c72045253315a3e69/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0120070e1efec52c72045253315a3e69/1000x1000-000000-80-0-0.jpg", + "ISRC": "USL4R1906006", + "BPM": 0, + "Duration": 199, + "ReleaseDate": "2019-12-07", + "AlbumName": "Sway Back", + "Explicit": false, + "Rank": 8180, + "Tags": [ + "Pop", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 10822324, + "name": "Nase Foai", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 485, + "Name": "Sway Back", + "Artists": "Nase Foai", + "Color": "DE9F4C", + "DarkColor": "C48145", + "SongMetaId": null, + "SpotifyId": "5F5c6TJzRN8HUawqp94IjU", + "DeezerID": 830349792, + "DeezerURL": "https://www.deezer.com/track/830349792", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0120070e1efec52c72045253315a3e69/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0120070e1efec52c72045253315a3e69/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0120070e1efec52c72045253315a3e69/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0120070e1efec52c72045253315a3e69/1000x1000-000000-80-0-0.jpg", + "ISRC": "USL4R1906006", + "BPM": 0, + "Duration": 199, + "ReleaseDate": "2019-12-07", + "AlbumName": "Sway Back", + "Explicit": false, + "Rank": 8180, + "Tags": [ + "Pop", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 10822324, + "name": "Nase Foai", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 456, + "Name": "Sweatbox", + "Artists": "Luxxly", + "Color": "46B4AB", + "DarkColor": "55ADA6", + "SongMetaId": null, + "SpotifyId": "7JRGN4aUxY8aQBSGqYvuhH", + "DeezerID": 1831672037, + "DeezerURL": "https://www.deezer.com/track/1831672037", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/298878e2a6a1974788b0bfb4b5ef9bba/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/298878e2a6a1974788b0bfb4b5ef9bba/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/298878e2a6a1974788b0bfb4b5ef9bba/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/298878e2a6a1974788b0bfb4b5ef9bba/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZFYX2234159", + "BPM": 0, + "Duration": 182, + "ReleaseDate": "2022-01-07", + "AlbumName": "Memorex", + "Explicit": false, + "Rank": 50761, + "Tags": [ + "Dance", + "Electro", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 101536502, + "name": "Luxxly", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 456, + "Name": "Sweatbox", + "Artists": "Luxxly", + "Color": "46B4AB", + "DarkColor": "55ADA6", + "SongMetaId": null, + "SpotifyId": "7JRGN4aUxY8aQBSGqYvuhH", + "DeezerID": 1831672037, + "DeezerURL": "https://www.deezer.com/track/1831672037", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/298878e2a6a1974788b0bfb4b5ef9bba/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/298878e2a6a1974788b0bfb4b5ef9bba/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/298878e2a6a1974788b0bfb4b5ef9bba/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/298878e2a6a1974788b0bfb4b5ef9bba/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZFYX2234159", + "BPM": 0, + "Duration": 182, + "ReleaseDate": "2022-01-07", + "AlbumName": "Memorex", + "Explicit": false, + "Rank": 50761, + "Tags": [ + "Dance", + "Electro", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 101536502, + "name": "Luxxly", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 264, + "Name": "Sweet but Psycho", + "Artists": "Ava Max", + "Color": "EB4166", + "DarkColor": "B4243D", + "SongMetaId": null, + "SpotifyId": "7DnAm9FOTWE3cUvso43HhI", + "DeezerID": 539562302, + "DeezerURL": "https://www.deezer.com/track/539562302", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/27b9039fed11398a5a3034129656f8fa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/27b9039fed11398a5a3034129656f8fa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/27b9039fed11398a5a3034129656f8fa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/27b9039fed11398a5a3034129656f8fa/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21802011", + "BPM": 132.94, + "Duration": 187, + "ReleaseDate": "2018-08-17", + "AlbumName": "Sweet but Psycho", + "Explicit": false, + "Rank": 876067, + "Tags": [ + "Pop", + "bpm:132.94", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 12948083, + "name": "Ava Max", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 546, + "Name": "Sweet Caroline", + "Artists": "Neil Diamond", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "62AuGbAkt8Ox2IrFFb8GKV", + "DeezerID": 145434430, + "DeezerURL": "https://www.deezer.com/track/145434430", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/40becf4d411046c50caa85ec376fbb2b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/40becf4d411046c50caa85ec376fbb2b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/40becf4d411046c50caa85ec376fbb2b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/40becf4d411046c50caa85ec376fbb2b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC16991138", + "BPM": 126.82, + "Duration": 201, + "ReleaseDate": "2017-03-31", + "AlbumName": "50th Anniversary Collection", + "Explicit": false, + "Rank": 710290, + "Tags": [ + "Pop", + "bpm:126.82", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 3094, + "name": "Neil Diamond", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 546, + "Name": "Sweet Caroline", + "Artists": "Neil Diamond", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "62AuGbAkt8Ox2IrFFb8GKV", + "DeezerID": 145434430, + "DeezerURL": "https://www.deezer.com/track/145434430", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/40becf4d411046c50caa85ec376fbb2b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/40becf4d411046c50caa85ec376fbb2b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/40becf4d411046c50caa85ec376fbb2b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/40becf4d411046c50caa85ec376fbb2b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC16991138", + "BPM": 126.82, + "Duration": 201, + "ReleaseDate": "2017-03-31", + "AlbumName": "50th Anniversary Collection", + "Explicit": false, + "Rank": 710290, + "Tags": [ + "Pop", + "bpm:126.82", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 3094, + "name": "Neil Diamond", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 684, + "Name": "Sweet Emotion", + "Artists": "Aerosmith", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": null, + "SpotifyId": "73TxYZd0lBCVRrHawrAglA", + "DeezerID": 2061076857, + "DeezerURL": "https://www.deezer.com/track/2061076857", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0cb25ced2a862fc8d6b67f0ad31322bc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0cb25ced2a862fc8d6b67f0ad31322bc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0cb25ced2a862fc8d6b67f0ad31322bc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0cb25ced2a862fc8d6b67f0ad31322bc/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19906482", + "BPM": 0, + "Duration": 274, + "ReleaseDate": "2011-08-26", + "AlbumName": "Toys In The Attic", + "Explicit": false, + "Rank": 658657, + "Tags": [ + "Rock", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 1005, + "name": "Aerosmith", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 684, + "Name": "Sweet Emotion", + "Artists": "Aerosmith", + "Color": "E86730", + "DarkColor": "B62221", + "SongMetaId": null, + "SpotifyId": "73TxYZd0lBCVRrHawrAglA", + "DeezerID": 2061076857, + "DeezerURL": "https://www.deezer.com/track/2061076857", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0cb25ced2a862fc8d6b67f0ad31322bc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0cb25ced2a862fc8d6b67f0ad31322bc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0cb25ced2a862fc8d6b67f0ad31322bc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0cb25ced2a862fc8d6b67f0ad31322bc/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19906482", + "BPM": 0, + "Duration": 274, + "ReleaseDate": "2011-08-26", + "AlbumName": "Toys In The Attic", + "Explicit": false, + "Rank": 658657, + "Tags": [ + "Rock", + "medium-length", + "year:2011" + ], + "Contributors": [ + { + "id": 1005, + "name": "Aerosmith", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 712, + "Name": "Sweet Home Alabama", + "Artists": "Lynyrd Skynyrd", + "Color": "EBC146", + "DarkColor": "CE7A2F", + "SongMetaId": "30", + "SpotifyId": "7e89621JPkKaeDSTQ3avtg", + "DeezerID": 24949681, + "DeezerURL": "https://www.deezer.com/track/24949681", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cb4c2efc2d1f2877ae6457d1feddc31b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cb4c2efc2d1f2877ae6457d1feddc31b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cb4c2efc2d1f2877ae6457d1feddc31b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cb4c2efc2d1f2877ae6457d1feddc31b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC17446153", + "BPM": 195.9, + "Duration": 284, + "ReleaseDate": "2007-12-20", + "AlbumName": "Second Helping (Expanded Edition)", + "Explicit": false, + "Rank": 909391, + "Tags": [ + "Pop", + "bpm:195.9", + "medium-length", + "very-fast", + "year:2007" + ], + "Contributors": [ + { + "id": 816, + "name": "Lynyrd Skynyrd", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 135, + "Name": "Sweet Home Alabama", + "Artists": "Lynyrd Skynyrd", + "Color": "EBC146", + "DarkColor": "CE7A2F", + "SongMetaId": "30", + "SpotifyId": "7e89621JPkKaeDSTQ3avtg", + "DeezerID": 24949681, + "DeezerURL": "https://www.deezer.com/track/24949681", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cb4c2efc2d1f2877ae6457d1feddc31b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cb4c2efc2d1f2877ae6457d1feddc31b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cb4c2efc2d1f2877ae6457d1feddc31b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cb4c2efc2d1f2877ae6457d1feddc31b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMC17446153", + "BPM": 195.9, + "Duration": 284, + "ReleaseDate": "2007-12-20", + "AlbumName": "Second Helping (Expanded Edition)", + "Explicit": false, + "Rank": 909391, + "Tags": [ + "Pop", + "bpm:195.9", + "medium-length", + "very-fast", + "year:2007" + ], + "Contributors": [ + { + "id": 816, + "name": "Lynyrd Skynyrd", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 430, + "Name": "Sweetness", + "Artists": "Jimmy Eat World", + "Color": "C47B66", + "DarkColor": "812D23", + "SongMetaId": null, + "SpotifyId": "429IbFR4yp2J81CeTwF5iY", + "DeezerID": 623714232, + "DeezerURL": "https://www.deezer.com/track/623714232", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDW10110258", + "BPM": 135.11, + "Duration": 220, + "ReleaseDate": "2019-02-01", + "AlbumName": "Bleed American", + "Explicit": false, + "Rank": 473608, + "Tags": [ + "Rock", + "bpm:135.11", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 346, + "name": "Jimmy Eat World", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 430, + "Name": "Sweetness", + "Artists": "Jimmy Eat World", + "Color": "C47B66", + "DarkColor": "812D23", + "SongMetaId": null, + "SpotifyId": "429IbFR4yp2J81CeTwF5iY", + "DeezerID": 623714232, + "DeezerURL": "https://www.deezer.com/track/623714232", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDW10110258", + "BPM": 135.11, + "Duration": 220, + "ReleaseDate": "2019-02-01", + "AlbumName": "Bleed American", + "Explicit": false, + "Rank": 473608, + "Tags": [ + "Rock", + "bpm:135.11", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 346, + "name": "Jimmy Eat World", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 232, + "Name": "Symphony", + "Artists": "Clean Bandit, Zara Larsson", + "Color": "EE8C78", + "DarkColor": "E26C54", + "SongMetaId": null, + "SpotifyId": "72gv4zhNvRVdQA0eOenCal", + "DeezerID": 144393668, + "DeezerURL": "https://www.deezer.com/track/144393668", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/86c4dc247f751008f2bbd726fdd04465/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/86c4dc247f751008f2bbd726fdd04465/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/86c4dc247f751008f2bbd726fdd04465/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/86c4dc247f751008f2bbd726fdd04465/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHS1700199", + "BPM": 123.05, + "Duration": 212, + "ReleaseDate": "2017-03-17", + "AlbumName": "Symphony (feat. Zara Larsson)", + "Explicit": false, + "Rank": 856356, + "Tags": [ + "Dance", + "Electro", + "bpm:123.05", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 1000956, + "name": "Clean Bandit", + "role": "Main" + }, + { + "id": 4331004, + "name": "Zara Larsson", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 476, + "Name": "Symphony Of Destruction", + "Artists": "Megadeth", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "51TG9W3y9qyO8BY5RXKgnZ", + "DeezerID": 61382107, + "DeezerURL": "https://www.deezer.com/track/61382107", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/04049664871981fd33afa7fe6966a384/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/04049664871981fd33afa7fe6966a384/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/04049664871981fd33afa7fe6966a384/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/04049664871981fd33afa7fe6966a384/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA21202505", + "BPM": 140.1, + "Duration": 243, + "ReleaseDate": "2012-11-02", + "AlbumName": "Countdown To Extinction (Deluxe Edition - Remastered)", + "Explicit": false, + "Rank": 689329, + "Tags": [ + "Metal", + "bpm:140.1", + "fast", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 3487, + "name": "Megadeth", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 476, + "Name": "Symphony Of Destruction", + "Artists": "Megadeth", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "51TG9W3y9qyO8BY5RXKgnZ", + "DeezerID": 61382107, + "DeezerURL": "https://www.deezer.com/track/61382107", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/04049664871981fd33afa7fe6966a384/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/04049664871981fd33afa7fe6966a384/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/04049664871981fd33afa7fe6966a384/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/04049664871981fd33afa7fe6966a384/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA21202505", + "BPM": 140.1, + "Duration": 243, + "ReleaseDate": "2012-11-02", + "AlbumName": "Countdown To Extinction (Deluxe Edition - Remastered)", + "Explicit": false, + "Rank": 689329, + "Tags": [ + "Metal", + "bpm:140.1", + "fast", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 3487, + "name": "Megadeth", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 10, + "Name": "Take Me Out", + "Artists": "Franz Ferdinand", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "20I8RduZC2PWMWTDCZuuAN", + "DeezerID": 4315684, + "DeezerURL": "https://www.deezer.com/track/4315684", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a45459c60f8e8b809c701a22b445b6c3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a45459c60f8e8b809c701a22b445b6c3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a45459c60f8e8b809c701a22b445b6c3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a45459c60f8e8b809c701a22b445b6c3/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCEL0300192", + "BPM": 104.4, + "Duration": 237, + "ReleaseDate": "2004-02-16", + "AlbumName": "Franz Ferdinand", + "Explicit": false, + "Rank": 917347, + "Tags": [ + "Pop", + "bpm:104.4", + "medium", + "medium-length", + "year:2004" + ], + "Contributors": [ + { + "id": 919, + "name": "Franz Ferdinand", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 594, + "Name": "Take Me To Church", + "Artists": "Hozier", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "1CS7Sd1u5tWkstBhpssyjP", + "DeezerID": 84791735, + "DeezerURL": "https://www.deezer.com/track/84791735", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8442e9ac0227a07b00c9dfd0ec00032d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8442e9ac0227a07b00c9dfd0ec00032d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8442e9ac0227a07b00c9dfd0ec00032d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8442e9ac0227a07b00c9dfd0ec00032d/1000x1000-000000-80-0-0.jpg", + "ISRC": "IEACJ1300031", + "BPM": 128.8, + "Duration": 242, + "ReleaseDate": "2014-10-06", + "AlbumName": "Hozier", + "Explicit": false, + "Rank": 960799, + "Tags": [ + "Alternativo", + "bpm:128.8", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 5062414, + "name": "Hozier", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 594, + "Name": "Take Me To Church", + "Artists": "Hozier", + "Color": "F6982E", + "DarkColor": "7F3E10", + "SongMetaId": null, + "SpotifyId": "1CS7Sd1u5tWkstBhpssyjP", + "DeezerID": 84791735, + "DeezerURL": "https://www.deezer.com/track/84791735", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8442e9ac0227a07b00c9dfd0ec00032d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8442e9ac0227a07b00c9dfd0ec00032d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8442e9ac0227a07b00c9dfd0ec00032d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8442e9ac0227a07b00c9dfd0ec00032d/1000x1000-000000-80-0-0.jpg", + "ISRC": "IEACJ1300031", + "BPM": 128.8, + "Duration": 242, + "ReleaseDate": "2014-10-06", + "AlbumName": "Hozier", + "Explicit": false, + "Rank": 960799, + "Tags": [ + "Alternativo", + "bpm:128.8", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 5062414, + "name": "Hozier", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 556, + "Name": "Take On Me", + "Artists": "A-Ha", + "Color": "828282", + "DarkColor": "545454", + "SongMetaId": null, + "SpotifyId": "2WfaOiMkCvy7F5fcp2zZ8L", + "DeezerID": 664107, + "DeezerURL": "https://www.deezer.com/track/664107", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e0ce8977ab98d73bcea00fc838ece034/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e0ce8977ab98d73bcea00fc838ece034/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e0ce8977ab98d73bcea00fc838ece034/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e0ce8977ab98d73bcea00fc838ece034/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB19901214", + "BPM": 168.8, + "Duration": 225, + "ReleaseDate": "1985-06-12", + "AlbumName": "Hunting High and Low", + "Explicit": false, + "Rank": 988080, + "Tags": [ + "Pop", + "bpm:168.8", + "medium-length", + "very-fast", + "year:1985" + ], + "Contributors": [ + { + "id": 3106, + "name": "a-ha", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 556, + "Name": "Take On Me", + "Artists": "A-Ha", + "Color": "828282", + "DarkColor": "545454", + "SongMetaId": null, + "SpotifyId": "2WfaOiMkCvy7F5fcp2zZ8L", + "DeezerID": 664107, + "DeezerURL": "https://www.deezer.com/track/664107", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e0ce8977ab98d73bcea00fc838ece034/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e0ce8977ab98d73bcea00fc838ece034/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e0ce8977ab98d73bcea00fc838ece034/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e0ce8977ab98d73bcea00fc838ece034/1000x1000-000000-80-0-0.jpg", + "ISRC": "USWB19901214", + "BPM": 168.8, + "Duration": 225, + "ReleaseDate": "1985-06-12", + "AlbumName": "Hunting High and Low", + "Explicit": false, + "Rank": 988080, + "Tags": [ + "Pop", + "bpm:168.8", + "medium-length", + "very-fast", + "year:1985" + ], + "Contributors": [ + { + "id": 3106, + "name": "a-ha", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 230, + "Name": "Talk", + "Artists": "Khalid, Disclosure", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": null, + "SpotifyId": "0rTV5WefWd1J3OwIheTzxM", + "DeezerID": 626612382, + "DeezerURL": "https://www.deezer.com/track/626612382", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f350b1fd2563c5f582d10914f8cbbe42/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f350b1fd2563c5f582d10914f8cbbe42/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f350b1fd2563c5f582d10914f8cbbe42/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f350b1fd2563c5f582d10914f8cbbe42/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11900004", + "BPM": 136, + "Duration": 197, + "ReleaseDate": "2019-02-07", + "AlbumName": "Talk (feat. Disclosure)", + "Explicit": false, + "Rank": 606223, + "Tags": [ + "Pop", + "Pop internacional", + "R&B", + "R&B contemporâneo", + "Rap/Hip Hop", + "Rock", + "bpm:136", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 362326, + "name": "Khalid", + "role": "Main" + }, + { + "id": 409796, + "name": "Disclosure", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "Pop", + "Pop internacional", + "Rock", + "R&B", + "R&B contemporâneo" + ] + }, + { + "SongId": 230, + "Name": "Talk", + "Artists": "Khalid, Disclosure", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": null, + "SpotifyId": "0rTV5WefWd1J3OwIheTzxM", + "DeezerID": 626612382, + "DeezerURL": "https://www.deezer.com/track/626612382", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f350b1fd2563c5f582d10914f8cbbe42/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f350b1fd2563c5f582d10914f8cbbe42/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f350b1fd2563c5f582d10914f8cbbe42/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f350b1fd2563c5f582d10914f8cbbe42/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11900004", + "BPM": 136, + "Duration": 197, + "ReleaseDate": "2019-02-07", + "AlbumName": "Talk (feat. Disclosure)", + "Explicit": false, + "Rank": 606223, + "Tags": [ + "Pop", + "Pop internacional", + "R&B", + "R&B contemporâneo", + "Rap/Hip Hop", + "Rock", + "bpm:136", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 362326, + "name": "Khalid", + "role": "Main" + }, + { + "id": 409796, + "name": "Disclosure", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "Pop", + "Pop internacional", + "Rock", + "R&B", + "R&B contemporâneo" + ] + }, + { + "SongId": 341, + "Name": "Tears Dry On Their Own", + "Artists": "Amy Winehouse", + "Color": "446C88", + "DarkColor": "18425F", + "SongMetaId": null, + "SpotifyId": "6yLX8QnxlnEqZfs3YKCfjF", + "DeezerID": 2176858, + "DeezerURL": "https://www.deezer.com/track/2176858", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3ce985e6653c350c6e6fed077ab7d0d4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3ce985e6653c350c6e6fed077ab7d0d4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3ce985e6653c350c6e6fed077ab7d0d4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3ce985e6653c350c6e6fed077ab7d0d4/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM70603494", + "BPM": 121.6, + "Duration": 184, + "ReleaseDate": "2006-01-01", + "AlbumName": "Back To Black", + "Explicit": true, + "Rank": 818924, + "Tags": [ + "R&B", + "bpm:121.6", + "fast", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 9052, + "name": "Amy Winehouse", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 285, + "Name": "Teenage Dirtbag", + "Artists": "Wheatus", + "Color": "00FFFF", + "DarkColor": "00B9B9", + "SongMetaId": null, + "SpotifyId": "25FTMokYEbEWHEdss5JLZS", + "DeezerID": 870041, + "DeezerURL": "https://www.deezer.com/track/870041", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d49aa5d2e2917a46f6d1ad1fb7c2584b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d49aa5d2e2917a46f6d1ad1fb7c2584b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d49aa5d2e2917a46f6d1ad1fb7c2584b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d49aa5d2e2917a46f6d1ad1fb7c2584b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM10008431", + "BPM": 94.6, + "Duration": 241, + "ReleaseDate": "2000-07-25", + "AlbumName": "Wheatus", + "Explicit": false, + "Rank": 825353, + "Tags": [ + "Pop", + "bpm:94.6", + "medium", + "medium-length", + "year:2000" + ], + "Contributors": [ + { + "id": 3210, + "name": "Wheatus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 612, + "Name": "Teenage Kicks", + "Artists": "The Undertones", + "Color": "358B84", + "DarkColor": "368C85", + "SongMetaId": null, + "SpotifyId": "6UP5zTAuR4NFc1uZ3MHjvA", + "DeezerID": 143056480, + "DeezerURL": "https://www.deezer.com/track/143056480", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0f62bda93d35bcf23aa842250ccfe3a8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0f62bda93d35bcf23aa842250ccfe3a8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0f62bda93d35bcf23aa842250ccfe3a8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0f62bda93d35bcf23aa842250ccfe3a8/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAJE7800192", + "BPM": 0, + "Duration": 144, + "ReleaseDate": "1979-05-13", + "AlbumName": "The Undertones (30th Anniversary Edition)", + "Explicit": false, + "Rank": 564056, + "Tags": [ + "Rock", + "short", + "year:1979" + ], + "Contributors": [ + { + "id": 3473, + "name": "The Undertones", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 612, + "Name": "Teenage Kicks", + "Artists": "The Undertones", + "Color": "368C85", + "DarkColor": "225D59", + "SongMetaId": null, + "SpotifyId": "6UP5zTAuR4NFc1uZ3MHjvA", + "DeezerID": 143056480, + "DeezerURL": "https://www.deezer.com/track/143056480", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0f62bda93d35bcf23aa842250ccfe3a8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0f62bda93d35bcf23aa842250ccfe3a8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0f62bda93d35bcf23aa842250ccfe3a8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0f62bda93d35bcf23aa842250ccfe3a8/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAJE7800192", + "BPM": 0, + "Duration": 144, + "ReleaseDate": "1979-05-13", + "AlbumName": "The Undertones (30th Anniversary Edition)", + "Explicit": false, + "Rank": 564056, + "Tags": [ + "Rock", + "short", + "year:1979" + ], + "Contributors": [ + { + "id": 3473, + "name": "The Undertones", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 692, + "Name": "Tek It", + "Artists": "Cafuné", + "Color": "7FB6C0", + "DarkColor": "231443", + "SongMetaId": null, + "SpotifyId": "751srcHf5tUqcEa9pRCQwP", + "DeezerID": 1733808287, + "DeezerURL": "https://www.deezer.com/track/1733808287", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6414570db8287addf610c8ab5aad638b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6414570db8287addf610c8ab5aad638b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6414570db8287addf610c8ab5aad638b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6414570db8287addf610c8ab5aad638b/1000x1000-000000-80-0-0.jpg", + "ISRC": "QM24S1926168", + "BPM": 0, + "Duration": 191, + "ReleaseDate": "2022-04-29", + "AlbumName": "Tek It (I Watch the Moon)", + "Explicit": false, + "Rank": 762055, + "Tags": [ + "Alternativo", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 7171490, + "name": "Cafuné", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 692, + "Name": "Tek It", + "Artists": "Cafuné", + "Color": "7FB6C0", + "DarkColor": "231443", + "SongMetaId": null, + "SpotifyId": "751srcHf5tUqcEa9pRCQwP", + "DeezerID": 1733808287, + "DeezerURL": "https://www.deezer.com/track/1733808287", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6414570db8287addf610c8ab5aad638b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6414570db8287addf610c8ab5aad638b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6414570db8287addf610c8ab5aad638b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6414570db8287addf610c8ab5aad638b/1000x1000-000000-80-0-0.jpg", + "ISRC": "QM24S1926168", + "BPM": 0, + "Duration": 191, + "ReleaseDate": "2022-04-29", + "AlbumName": "Tek It (I Watch the Moon)", + "Explicit": false, + "Rank": 762055, + "Tags": [ + "Alternativo", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 7171490, + "name": "Cafuné", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 661, + "Name": "Tengo Un Plan", + "Artists": "Key-Key", + "Color": "ED8251", + "DarkColor": "D85126", + "SongMetaId": null, + "SpotifyId": "3r9OpHiEaeMaBOa7kVtWtC", + "DeezerID": 2831105122, + "DeezerURL": "https://www.deezer.com/track/2831105122", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9b4b21a2b605ca3f61d8e71bb3da89c2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9b4b21a2b605ca3f61d8e71bb3da89c2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9b4b21a2b605ca3f61d8e71bb3da89c2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9b4b21a2b605ca3f61d8e71bb3da89c2/1000x1000-000000-80-0-0.jpg", + "ISRC": "SGB502398568", + "BPM": 0, + "Duration": 215, + "ReleaseDate": "2024-06-13", + "AlbumName": "Tengo Un Plan (Remix)", + "Explicit": true, + "Rank": 595044, + "Tags": [ + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 62229352, + "name": "KEY-KEY", + "role": "Main" + }, + { + "id": 4937383, + "name": "Ozuna", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 661, + "Name": "Tengo Un Plan", + "Artists": "Key-Key", + "Color": "E96E47", + "DarkColor": "D85126", + "SongMetaId": null, + "SpotifyId": "3r9OpHiEaeMaBOa7kVtWtC", + "DeezerID": 2831105122, + "DeezerURL": "https://www.deezer.com/track/2831105122", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9b4b21a2b605ca3f61d8e71bb3da89c2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9b4b21a2b605ca3f61d8e71bb3da89c2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9b4b21a2b605ca3f61d8e71bb3da89c2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9b4b21a2b605ca3f61d8e71bb3da89c2/1000x1000-000000-80-0-0.jpg", + "ISRC": "SGB502398568", + "BPM": 0, + "Duration": 215, + "ReleaseDate": "2024-06-13", + "AlbumName": "Tengo Un Plan (Remix)", + "Explicit": true, + "Rank": 595044, + "Tags": [ + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 62229352, + "name": "KEY-KEY", + "role": "Main" + }, + { + "id": 4937383, + "name": "Ozuna", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 159, + "Name": "thank u, next", + "Artists": "Ariana Grande", + "Color": "AA929F", + "DarkColor": "7F5F6D", + "SongMetaId": null, + "SpotifyId": "3e9HZxeyfWwjeyPAMmWSSQ", + "DeezerID": 629899852, + "DeezerURL": "https://www.deezer.com/track/629899852", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/49e86e935da829b44cb5ffae16826e55/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/49e86e935da829b44cb5ffae16826e55/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/49e86e935da829b44cb5ffae16826e55/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/49e86e935da829b44cb5ffae16826e55/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71819361", + "BPM": 107.11, + "Duration": 206, + "ReleaseDate": "2019-02-08", + "AlbumName": "thank u, next", + "Explicit": true, + "Rank": 851565, + "Tags": [ + "Pop", + "bpm:107.11", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 1562681, + "name": "Ariana Grande", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 403, + "Name": "That Don't Impress Me Much", + "Artists": "Shania Twain", + "Color": "FFC6D3", + "DarkColor": "E581B7", + "SongMetaId": null, + "SpotifyId": "4FUfoWMypAyWbOavmYyeNu", + "DeezerID": 731732422, + "DeezerURL": "https://www.deezer.com/track/731732422", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f8d3b60f0f8bd40daa41935b21896d96/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f8d3b60f0f8bd40daa41935b21896d96/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f8d3b60f0f8bd40daa41935b21896d96/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f8d3b60f0f8bd40daa41935b21896d96/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMR19900016", + "BPM": 124.91, + "Duration": 239, + "ReleaseDate": "2019-08-20", + "AlbumName": "Come On Over (International Version)", + "Explicit": false, + "Rank": 658279, + "Tags": [ + "bpm:124.91", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 3134, + "name": "Shania Twain", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 187, + "Name": "That's Not My Name", + "Artists": "The Ting Tings", + "Color": "E32633", + "DarkColor": "970D26", + "SongMetaId": null, + "SpotifyId": "2DNdEpV9UnsYjL6w1Dp1aS", + "DeezerID": 901069, + "DeezerURL": "https://www.deezer.com/track/901069", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/70d0964416469ddfd58d7092168d5198/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/70d0964416469ddfd58d7092168d5198/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/70d0964416469ddfd58d7092168d5198/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/70d0964416469ddfd58d7092168d5198/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL0800038", + "BPM": 145.1, + "Duration": 310, + "ReleaseDate": "2008-05-19", + "AlbumName": "We Started Nothing", + "Explicit": false, + "Rank": 568375, + "Tags": [ + "Pop", + "Pop internacional", + "Rock", + "bpm:145.1", + "fast", + "long", + "year:2008" + ], + "Contributors": [ + { + "id": 69171, + "name": "The Ting Tings", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "Pop internacional", + "Rock" + ] + }, + { + "SongId": 260, + "Name": "That's The Way (I Like It)", + "Artists": "KC & The Sunshine Band", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "0RQTbMBgSq7xgdZSHFZg4R", + "DeezerID": 3151321, + "DeezerURL": "https://www.deezer.com/track/3151321", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1d51892dd14f857054beaa14c1010bbc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1d51892dd14f857054beaa14c1010bbc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1d51892dd14f857054beaa14c1010bbc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1d51892dd14f857054beaa14c1010bbc/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE7500059", + "BPM": 108.2, + "Duration": 306, + "ReleaseDate": "1990-09-10", + "AlbumName": "The Best of KC & the Sunshine Band", + "Explicit": false, + "Rank": 669782, + "Tags": [ + "Pop", + "bpm:108.2", + "long", + "medium", + "year:1990" + ], + "Contributors": [ + { + "id": 86548, + "name": "Kc & The Sunshine Band", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 382, + "Name": "THATS WHAT I WANT", + "Artists": "Lil Nas X", + "Color": "9BFA4E", + "DarkColor": "275D19", + "SongMetaId": null, + "SpotifyId": "0e8nrvls4Qqv5Rfa2UhqmO", + "DeezerID": 1493915892, + "DeezerURL": "https://www.deezer.com/track/1493915892", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/18e6daf0a1c70c1346c44670ff70645d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/18e6daf0a1c70c1346c44670ff70645d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/18e6daf0a1c70c1346c44670ff70645d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/18e6daf0a1c70c1346c44670ff70645d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12105732", + "BPM": 0, + "Duration": 143, + "ReleaseDate": "2021-09-17", + "AlbumName": "MONTERO", + "Explicit": true, + "Rank": 877677, + "Tags": [ + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 15166511, + "name": "Lil Nas X", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 36, + "Name": "The Bad Touch", + "Artists": "Bloodhound Gang", + "Color": "0FB3F2", + "DarkColor": "026690", + "SongMetaId": null, + "SpotifyId": "5EYdTPdJD74r9EVZBztqGG", + "DeezerID": 89748393, + "DeezerURL": "https://www.deezer.com/track/89748393", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c25bb2e38019a0230b3b27a41745cb62/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c25bb2e38019a0230b3b27a41745cb62/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c25bb2e38019a0230b3b27a41745cb62/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c25bb2e38019a0230b3b27a41745cb62/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR19902530", + "BPM": 123, + "Duration": 260, + "ReleaseDate": "2012-06-05", + "AlbumName": "Hooray For Boobies", + "Explicit": true, + "Rank": 664577, + "Tags": [ + "Rock", + "bpm:123", + "fast", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 421, + "name": "Bloodhound Gang", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 103, + "Name": "The beginning", + "Artists": "ONE OK ROCK", + "Color": "2C314B", + "DarkColor": "171623", + "SongMetaId": null, + "SpotifyId": "4f3nDjgqXurMryYBSp0TZD", + "DeezerID": 2326151765, + "DeezerURL": "https://www.deezer.com/track/2326151765", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/82be7873aaafb8f676134686adf95621/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/82be7873aaafb8f676134686adf95621/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/82be7873aaafb8f676134686adf95621/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/82be7873aaafb8f676134686adf95621/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPJ221200345", + "BPM": 0, + "Duration": 292, + "ReleaseDate": "2013-03-06", + "AlbumName": "JINSEI KAKETE BOKU WA", + "Explicit": false, + "Rank": 491171, + "Tags": [ + "Rock", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 469713, + "name": "ONE OK ROCK", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 760, + "Name": "The Blue Danube", + "Artists": "Johann Strauss II", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "5RGYrJcv4clGFe7Dfci1M0", + "DeezerID": 6645006, + "DeezerURL": "https://www.deezer.com/track/6645006", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/93e76b9c09736eec948a4919f98f9b10/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/93e76b9c09736eec948a4919f98f9b10/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/93e76b9c09736eec948a4919f98f9b10/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/93e76b9c09736eec948a4919f98f9b10/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBSBU0600028", + "BPM": 97, + "Duration": 603, + "ReleaseDate": "2007-10-01", + "AlbumName": "A Calendar Of Classics - A 12 CD Set Of Romantic Classics For Every Month Of The Year", + "Explicit": false, + "Rank": 236578, + "Tags": [ + "bpm:97", + "long", + "medium", + "year:2007" + ], + "Contributors": [ + { + "id": 10718, + "name": "Johann Strauss II", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 37, + "Name": "The Business", + "Artists": "Tiesto", + "Color": "76FF00", + "DarkColor": "005F05", + "SongMetaId": null, + "SpotifyId": "6f3Slt0GbA2bPZlz0aIFXN", + "DeezerID": 1087667882, + "DeezerURL": "https://www.deezer.com/track/1087667882", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/664cd2e671f05f3f8f1e0bbd710e082d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/664cd2e671f05f3f8f1e0bbd710e082d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/664cd2e671f05f3f8f1e0bbd710e082d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/664cd2e671f05f3f8f1e0bbd710e082d/1000x1000-000000-80-0-0.jpg", + "ISRC": "CYA112000624", + "BPM": 0, + "Duration": 164, + "ReleaseDate": "2020-09-25", + "AlbumName": "The Business", + "Explicit": false, + "Rank": 791075, + "Tags": [ + "Dance", + "short", + "year:2020" + ], + "Contributors": [ + { + "id": 434, + "name": "Tiësto", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 372, + "Name": "The Devil Went Down To Georgia", + "Artists": "Korn, Yelawolf", + "Color": "22B1C0", + "DarkColor": "006977", + "SongMetaId": null, + "SpotifyId": "1fUn2ABChAzrqDgrlZdk6W", + "DeezerID": 1857480337, + "DeezerURL": "https://www.deezer.com/track/1857480337", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5f2d56d193189cfdf2c28f025b95eb5d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5f2d56d193189cfdf2c28f025b95eb5d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5f2d56d193189cfdf2c28f025b95eb5d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5f2d56d193189cfdf2c28f025b95eb5d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBKPL2016421", + "BPM": 0, + "Duration": 231, + "ReleaseDate": "2020-08-28", + "AlbumName": "The Devil Went Down to Georgia", + "Explicit": false, + "Rank": 351366, + "Tags": [ + "Rock", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 1327, + "name": "KoЯn", + "role": "Main" + }, + { + "id": 410734, + "name": "Yelawolf", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 372, + "Name": "The Devil Went Down To Georgia", + "Artists": "Korn, Yelawolf", + "Color": "35B4A1", + "DarkColor": "2B8D7E", + "SongMetaId": null, + "SpotifyId": "1fUn2ABChAzrqDgrlZdk6W", + "DeezerID": 1857480337, + "DeezerURL": "https://www.deezer.com/track/1857480337", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5f2d56d193189cfdf2c28f025b95eb5d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5f2d56d193189cfdf2c28f025b95eb5d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5f2d56d193189cfdf2c28f025b95eb5d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5f2d56d193189cfdf2c28f025b95eb5d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBKPL2016421", + "BPM": 0, + "Duration": 231, + "ReleaseDate": "2020-08-28", + "AlbumName": "The Devil Went Down to Georgia", + "Explicit": false, + "Rank": 351366, + "Tags": [ + "Rock", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 1327, + "name": "KoЯn", + "role": "Main" + }, + { + "id": 410734, + "name": "Yelawolf", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 400, + "Name": "The Drill", + "Artists": "Magnificence & 7 Skies", + "Color": "22B1C0", + "DarkColor": "006977", + "SongMetaId": null, + "SpotifyId": "0cZGbSrqRJ9BQF0wduo4qJ", + "DeezerID": 781682812, + "DeezerURL": "https://www.deezer.com/track/781682812", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e7e98702bc8798c9fa47726577e1fef7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e7e98702bc8798c9fa47726577e1fef7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e7e98702bc8798c9fa47726577e1fef7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e7e98702bc8798c9fa47726577e1fef7/1000x1000-000000-80-0-0.jpg", + "ISRC": "CYA111900398", + "BPM": 0, + "Duration": 145, + "ReleaseDate": "2019-10-25", + "AlbumName": "The Drill", + "Explicit": false, + "Rank": 101528, + "Tags": [ + "Dance", + "short", + "year:2019" + ], + "Contributors": [ + { + "id": 4685719, + "name": "Magnificence", + "role": "Main" + }, + { + "id": 535136, + "name": "7 Skies", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 108, + "Name": "The Fast Lane - Space Ape Edition", + "Artists": "Harry Shotta", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": null + }, + { + "SongId": 600, + "Name": "The Final Countdown", + "Artists": "Europe", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "3MrRksHupTVEQ7YbA0FsZK", + "DeezerID": 858371, + "DeezerURL": "https://www.deezer.com/track/858371", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f27265df605c4bce229b0623e18f179a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f27265df605c4bce229b0623e18f179a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f27265df605c4bce229b0623e18f179a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f27265df605c4bce229b0623e18f179a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM18600196", + "BPM": 0, + "Duration": 310, + "ReleaseDate": "1988-09-16", + "AlbumName": "The Final Countdown (Expanded Edition)", + "Explicit": false, + "Rank": 835199, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "long", + "year:1988" + ], + "Contributors": [ + { + "id": 1903, + "name": "Europe", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 600, + "Name": "The Final Countdown", + "Artists": "Europe", + "Color": "C3ACF5", + "DarkColor": "5950AE", + "SongMetaId": null, + "SpotifyId": "3MrRksHupTVEQ7YbA0FsZK", + "DeezerID": 858371, + "DeezerURL": "https://www.deezer.com/track/858371", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f27265df605c4bce229b0623e18f179a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f27265df605c4bce229b0623e18f179a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f27265df605c4bce229b0623e18f179a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f27265df605c4bce229b0623e18f179a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM18600196", + "BPM": 0, + "Duration": 310, + "ReleaseDate": "1988-09-16", + "AlbumName": "The Final Countdown (Expanded Edition)", + "Explicit": false, + "Rank": 835199, + "Tags": [ + "Hard Rock", + "Metal", + "Rock", + "long", + "year:1988" + ], + "Contributors": [ + { + "id": 1903, + "name": "Europe", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock", + "Hard Rock", + "Metal" + ] + }, + { + "SongId": 80, + "Name": "The Git Up", + "Artists": "Blanco Brown", + "Color": "DFB231", + "DarkColor": "C27830", + "SongMetaId": null, + "SpotifyId": "01tA4XmJ4fGQNwti6b2hPm", + "DeezerID": 770754302, + "DeezerURL": "https://www.deezer.com/track/770754302", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a578fd926bb27ae3a35b8d8bbd5ec7d9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a578fd926bb27ae3a35b8d8bbd5ec7d9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a578fd926bb27ae3a35b8d8bbd5ec7d9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a578fd926bb27ae3a35b8d8bbd5ec7d9/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZEPT1900040", + "BPM": 97.97, + "Duration": 200, + "ReleaseDate": "2019-10-11", + "AlbumName": "Honeysuckle & Lightning Bugs", + "Explicit": false, + "Rank": 563001, + "Tags": [ + "bpm:97.97", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 64568682, + "name": "Blanco Brown", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 220, + "Name": "The Heinrich Maneuver", + "Artists": "Interpol", + "Color": "E3B88B", + "DarkColor": "A36D3B", + "SongMetaId": null, + "SpotifyId": "4CKuOiUPeGbDsHkT3fmALJ", + "DeezerID": 1912817417, + "DeezerURL": "https://www.deezer.com/track/1912817417", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/05ac0a918bf19fdff9671e0379db677a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/05ac0a918bf19fdff9671e0379db677a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/05ac0a918bf19fdff9671e0379db677a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/05ac0a918bf19fdff9671e0379db677a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA20703927", + "BPM": 0, + "Duration": 208, + "ReleaseDate": "2007-07-10", + "AlbumName": "Our Love To Admire", + "Explicit": false, + "Rank": 530604, + "Tags": [ + "Alternativo", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 1652, + "name": "Interpol", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 515, + "Name": "The Impression That I Get", + "Artists": "The Mighty Mighty Bosstones", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "3a3EDrWejkryzeGFkPypOR", + "DeezerID": 2496447771, + "DeezerURL": "https://www.deezer.com/track/2496447771", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1f60da2d8601233eb40faa50c868da3c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1f60da2d8601233eb40faa50c868da3c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1f60da2d8601233eb40faa50c868da3c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1f60da2d8601233eb40faa50c868da3c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMR19780102", + "BPM": 0, + "Duration": 194, + "ReleaseDate": "2023-10-20", + "AlbumName": "Éxitos & Hits de los 90s", + "Explicit": false, + "Rank": 423091, + "Tags": [ + "Pop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 2577, + "name": "The Mighty Mighty Bosstones", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 515, + "Name": "The Impression That I Get", + "Artists": "The Mighty Mighty Bosstones", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "3a3EDrWejkryzeGFkPypOR", + "DeezerID": 2496447771, + "DeezerURL": "https://www.deezer.com/track/2496447771", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/1f60da2d8601233eb40faa50c868da3c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/1f60da2d8601233eb40faa50c868da3c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/1f60da2d8601233eb40faa50c868da3c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/1f60da2d8601233eb40faa50c868da3c/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMR19780102", + "BPM": 0, + "Duration": 194, + "ReleaseDate": "2023-10-20", + "AlbumName": "Éxitos & Hits de los 90s", + "Explicit": false, + "Rank": 423091, + "Tags": [ + "Pop", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 2577, + "name": "The Mighty Mighty Bosstones", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 235, + "Name": "The Kids Are Coming", + "Artists": "Tones and I", + "Color": "BC3672", + "DarkColor": "571636", + "SongMetaId": null, + "SpotifyId": "76bvw5EDyhm1b3dfsOToYG", + "DeezerID": 739870782, + "DeezerURL": "https://www.deezer.com/track/739870782", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/1000x1000-000000-80-0-0.jpg", + "ISRC": "AUBM01900171", + "BPM": 135.11, + "Duration": 204, + "ReleaseDate": "2019-08-30", + "AlbumName": "The Kids Are Coming", + "Explicit": false, + "Rank": 408841, + "Tags": [ + "Alternativo", + "bpm:135.11", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 59070642, + "name": "Tones and I", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 235, + "Name": "The Kids Are Coming", + "Artists": "Tones and I", + "Color": "CF2380", + "DarkColor": "922438", + "SongMetaId": null, + "SpotifyId": "76bvw5EDyhm1b3dfsOToYG", + "DeezerID": 739870782, + "DeezerURL": "https://www.deezer.com/track/739870782", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5636a569737f8dad9a928f3d907c493a/1000x1000-000000-80-0-0.jpg", + "ISRC": "AUBM01900171", + "BPM": 135.11, + "Duration": 204, + "ReleaseDate": "2019-08-30", + "AlbumName": "The Kids Are Coming", + "Explicit": false, + "Rank": 408841, + "Tags": [ + "Alternativo", + "bpm:135.11", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 59070642, + "name": "Tones and I", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 570, + "Name": "The Kids Aren't Alright", + "Artists": "The Offspring", + "Color": "4F4EFA", + "DarkColor": "2115CD", + "SongMetaId": "31", + "SpotifyId": "4EchqUKQ3qAQuRNKmeIpnf", + "DeezerID": 137233986, + "DeezerURL": "https://www.deezer.com/track/137233986", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19804363", + "BPM": 99.62, + "Duration": 180, + "ReleaseDate": "1998-11-16", + "AlbumName": "Americana", + "Explicit": false, + "Rank": 906582, + "Tags": [ + "Rock", + "bpm:99.62", + "medium", + "medium-length", + "year:1998" + ], + "Contributors": [ + { + "id": 882, + "name": "The Offspring", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 570, + "Name": "The Kids Aren't Alright", + "Artists": "The Offspring", + "Color": "4F4EFA", + "DarkColor": "2115CD", + "SongMetaId": "31", + "SpotifyId": "4EchqUKQ3qAQuRNKmeIpnf", + "DeezerID": 137233986, + "DeezerURL": "https://www.deezer.com/track/137233986", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19804363", + "BPM": 99.62, + "Duration": 180, + "ReleaseDate": "1998-11-16", + "AlbumName": "Americana", + "Explicit": false, + "Rank": 906582, + "Tags": [ + "Rock", + "bpm:99.62", + "medium", + "medium-length", + "year:1998" + ], + "Contributors": [ + { + "id": 882, + "name": "The Offspring", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 52, + "Name": "The Less I Know the Better", + "Artists": "Tame Impala", + "Color": "AF81BA", + "DarkColor": "734C8B", + "SongMetaId": null, + "SpotifyId": "6K4t31amVTZDgR3sKmwUJJ", + "DeezerID": 103052662, + "DeezerURL": "https://www.deezer.com/track/103052662", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/de5b9b704cd4ec36f8bf49beb3e17ba2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/de5b9b704cd4ec36f8bf49beb3e17ba2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/de5b9b704cd4ec36f8bf49beb3e17ba2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/de5b9b704cd4ec36f8bf49beb3e17ba2/1000x1000-000000-80-0-0.jpg", + "ISRC": "AUUM71500303", + "BPM": 117.1, + "Duration": 217, + "ReleaseDate": "2015-07-17", + "AlbumName": "Currents", + "Explicit": true, + "Rank": 886312, + "Tags": [ + "Alternativo", + "bpm:117.1", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 134790, + "name": "Tame Impala", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 52, + "Name": "The Less I Know the Better", + "Artists": "Tame Impala", + "Color": "AF81BA", + "DarkColor": "734C8B", + "SongMetaId": null, + "SpotifyId": "6K4t31amVTZDgR3sKmwUJJ", + "DeezerID": 103052662, + "DeezerURL": "https://www.deezer.com/track/103052662", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/de5b9b704cd4ec36f8bf49beb3e17ba2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/de5b9b704cd4ec36f8bf49beb3e17ba2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/de5b9b704cd4ec36f8bf49beb3e17ba2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/de5b9b704cd4ec36f8bf49beb3e17ba2/1000x1000-000000-80-0-0.jpg", + "ISRC": "AUUM71500303", + "BPM": 117.1, + "Duration": 217, + "ReleaseDate": "2015-07-17", + "AlbumName": "Currents", + "Explicit": true, + "Rank": 886312, + "Tags": [ + "Alternativo", + "bpm:117.1", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 134790, + "name": "Tame Impala", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 129, + "Name": "The Middle", + "Artists": "Zedd, Maren Morris, Grey", + "Color": "E2B4C6", + "DarkColor": "9E657B", + "SongMetaId": null, + "SpotifyId": "09IStsImFySgyp0pIQdqAc", + "DeezerID": 451254022, + "DeezerURL": "https://www.deezer.com/track/451254022", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/332ddd083bf04f856dcd8775fa3a3dd1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/332ddd083bf04f856dcd8775fa3a3dd1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/332ddd083bf04f856dcd8775fa3a3dd1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/332ddd083bf04f856dcd8775fa3a3dd1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71800463", + "BPM": 106.83, + "Duration": 184, + "ReleaseDate": "2018-01-23", + "AlbumName": "The Middle", + "Explicit": false, + "Rank": 758285, + "Tags": [ + "Dance", + "bpm:106.83", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 1198612, + "name": "ZEDD", + "role": "Main" + }, + { + "id": 393541, + "name": "Maren Morris", + "role": "Main" + }, + { + "id": 86338342, + "name": "Grey", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 13, + "Name": "The Middle", + "Artists": "Jimmy Eat World", + "Color": "7499C5", + "DarkColor": "3A2E4F", + "SongMetaId": null, + "SpotifyId": "6GG73Jik4jUlQCkKg9JuGO", + "DeezerID": 623714212, + "DeezerURL": "https://www.deezer.com/track/623714212", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDW10110256", + "BPM": 162.13, + "Duration": 165, + "ReleaseDate": "2019-02-01", + "AlbumName": "Bleed American", + "Explicit": false, + "Rank": 743400, + "Tags": [ + "Rock", + "bpm:162.13", + "short", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 346, + "name": "Jimmy Eat World", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 13, + "Name": "The Middle", + "Artists": "Jimmy Eat World", + "Color": "7499C5", + "DarkColor": "3A2E4F", + "SongMetaId": null, + "SpotifyId": "6GG73Jik4jUlQCkKg9JuGO", + "DeezerID": 623714212, + "DeezerURL": "https://www.deezer.com/track/623714212", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2686d323375a5c8996b2833719955e7d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDW10110256", + "BPM": 162.13, + "Duration": 165, + "ReleaseDate": "2019-02-01", + "AlbumName": "Bleed American", + "Explicit": false, + "Rank": 743400, + "Tags": [ + "Rock", + "bpm:162.13", + "short", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 346, + "name": "Jimmy Eat World", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 209, + "Name": "The Mother We Share", + "Artists": "CHVRCHES", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "2FV7Exjr70J652JcGucCtE", + "DeezerID": 3025690811, + "DeezerURL": "https://www.deezer.com/track/3025690811", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/abba8d024cff214f956060fcb1620f13/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/abba8d024cff214f956060fcb1620f13/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/abba8d024cff214f956060fcb1620f13/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/abba8d024cff214f956060fcb1620f13/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBZN81300014", + "BPM": 0, + "Duration": 191, + "ReleaseDate": "2013-12-10", + "AlbumName": "The Mother We Share", + "Explicit": true, + "Rank": 353969, + "Tags": [ + "Alternativo", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 4052518, + "name": "CHVRCHES", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 464, + "Name": "The Motherload", + "Artists": "Mastodon", + "Color": "52935F", + "DarkColor": "1C5A26", + "SongMetaId": null, + "SpotifyId": "6EF0xhfKtQNqUPz2mnE5BD", + "DeezerID": 79978972, + "DeezerURL": "https://www.deezer.com/track/79978972", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e42b0b0561dec57751fa0169786284d8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e42b0b0561dec57751fa0169786284d8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e42b0b0561dec57751fa0169786284d8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e42b0b0561dec57751fa0169786284d8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRE11400112", + "BPM": 146.1, + "Duration": 299, + "ReleaseDate": "2014-06-20", + "AlbumName": "Once More 'Round the Sun", + "Explicit": false, + "Rank": 434812, + "Tags": [ + "Metal", + "bpm:146.1", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 9267, + "name": "Mastodon", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 464, + "Name": "The Motherload", + "Artists": "Mastodon", + "Color": "52935F", + "DarkColor": "1C5A26", + "SongMetaId": null, + "SpotifyId": "6EF0xhfKtQNqUPz2mnE5BD", + "DeezerID": 79978972, + "DeezerURL": "https://www.deezer.com/track/79978972", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e42b0b0561dec57751fa0169786284d8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e42b0b0561dec57751fa0169786284d8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e42b0b0561dec57751fa0169786284d8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e42b0b0561dec57751fa0169786284d8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRE11400112", + "BPM": 146.1, + "Duration": 299, + "ReleaseDate": "2014-06-20", + "AlbumName": "Once More 'Round the Sun", + "Explicit": false, + "Rank": 434812, + "Tags": [ + "Metal", + "bpm:146.1", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 9267, + "name": "Mastodon", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 338, + "Name": "The Seed", + "Artists": "AURORA", + "Color": "E86730", + "DarkColor": "911A1A", + "SongMetaId": null, + "SpotifyId": "3EUXLUKx2zNUzb2otMc8HH", + "DeezerID": 689390492, + "DeezerURL": "https://www.deezer.com/track/689390492", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/23beb2547bc8ee64b6ebccf6bf2883fd/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/23beb2547bc8ee64b6ebccf6bf2883fd/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/23beb2547bc8ee64b6ebccf6bf2883fd/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/23beb2547bc8ee64b6ebccf6bf2883fd/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71808078", + "BPM": 132.94, + "Duration": 266, + "ReleaseDate": "2019-06-07", + "AlbumName": "A Different Kind Of Human – Step 2", + "Explicit": false, + "Rank": 780963, + "Tags": [ + "Pop", + "bpm:132.94", + "fast", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 7699874, + "name": "AURORA", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 131, + "Name": "The Smell Of Dirt Is In The Air", + "Artists": "Jim Guthrie & J.J. Ipsen", + "Color": "D57A9D", + "DarkColor": "B93359", + "SongMetaId": null, + "SpotifyId": "1sHiT46ZYpWpYnh2PkQmUO", + "DeezerID": 432151382, + "DeezerURL": "https://www.deezer.com/track/432151382", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ac7d15d4b2416c76bda9370a34724877/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ac7d15d4b2416c76bda9370a34724877/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ac7d15d4b2416c76bda9370a34724877/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ac7d15d4b2416c76bda9370a34724877/1000x1000-000000-80-0-0.jpg", + "ISRC": "TCADJ1739189", + "BPM": 0, + "Duration": 130, + "ReleaseDate": "2017-12-06", + "AlbumName": "Reigns: Her Majesty (Original Soundtrack)", + "Explicit": false, + "Rank": 38380, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "short", + "year:2017" + ], + "Contributors": [ + { + "id": 1643, + "name": "Jim Guthrie", + "role": "Main" + }, + { + "id": 63701302, + "name": "J.J. Ipsen", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 774, + "Name": "The Thieving Magpie", + "Artists": "Gioachino Rossini", + "Color": "FCBC4D", + "DarkColor": "CA7F04", + "SongMetaId": null, + "SpotifyId": "2jQcFQbZ2frHA7QkFDFQw1", + "DeezerID": 647337252, + "DeezerURL": "https://www.deezer.com/track/647337252", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/de03cc1dd108b8d06eb2d28273c92359/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/de03cc1dd108b8d06eb2d28273c92359/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/de03cc1dd108b8d06eb2d28273c92359/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/de03cc1dd108b8d06eb2d28273c92359/1000x1000-000000-80-0-0.jpg", + "ISRC": "USNLR1300663", + "BPM": 153.69, + "Duration": 121, + "ReleaseDate": "2013-10-22", + "AlbumName": "Batman: Arkham Origins (Original Video Game Score)", + "Explicit": false, + "Rank": 249800, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "bpm:153.69", + "short", + "very-fast", + "year:2013" + ], + "Contributors": [ + { + "id": 437167, + "name": "Gioachino Rossini", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 134, + "Name": "The Touch", + "Artists": "Stan Bush", + "Color": "EB4E24", + "DarkColor": "830011", + "SongMetaId": null, + "SpotifyId": "2QyGSbGdT9suKuDKwnjwH9", + "DeezerID": 13207747, + "DeezerURL": "https://www.deezer.com/track/13207747", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0141d1a910369aa2bc1c9fb947c28e9d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0141d1a910369aa2bc1c9fb947c28e9d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0141d1a910369aa2bc1c9fb947c28e9d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0141d1a910369aa2bc1c9fb947c28e9d/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVR10400853", + "BPM": 126.4, + "Duration": 235, + "ReleaseDate": "2007-05-29", + "AlbumName": "Transformers The Movie", + "Explicit": false, + "Rank": 406522, + "Tags": [ + "Filmes/Games", + "Trilhas de filmes", + "bpm:126.4", + "fast", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 558195, + "name": "Stan Bush", + "role": "Main" + } + ], + "AlbumGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ] + }, + { + "SongId": 59, + "Name": "The Trooper", + "Artists": "Iron Maiden", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": "32", + "SpotifyId": "2C3B3dva983HPMojFqWLOp", + "DeezerID": 3155089, + "DeezerURL": "https://www.deezer.com/track/3155089", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f4df1d0cc2d586cefd98dde8da717acd/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f4df1d0cc2d586cefd98dde8da717acd/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f4df1d0cc2d586cefd98dde8da717acd/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f4df1d0cc2d586cefd98dde8da717acd/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE9801390", + "BPM": 162.77, + "Duration": 250, + "ReleaseDate": "1999-05-17", + "AlbumName": "Ed Hunter", + "Explicit": false, + "Rank": 745167, + "Tags": [ + "Rock", + "bpm:162.77", + "medium-length", + "very-fast", + "year:1999" + ], + "Contributors": [ + { + "id": 931, + "name": "Iron Maiden", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 59, + "Name": "The Trooper", + "Artists": "Iron Maiden", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": "32", + "SpotifyId": "2C3B3dva983HPMojFqWLOp", + "DeezerID": 3155089, + "DeezerURL": "https://www.deezer.com/track/3155089", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f4df1d0cc2d586cefd98dde8da717acd/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f4df1d0cc2d586cefd98dde8da717acd/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f4df1d0cc2d586cefd98dde8da717acd/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f4df1d0cc2d586cefd98dde8da717acd/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE9801390", + "BPM": 162.77, + "Duration": 250, + "ReleaseDate": "1999-05-17", + "AlbumName": "Ed Hunter", + "Explicit": false, + "Rank": 745167, + "Tags": [ + "Rock", + "bpm:162.77", + "medium-length", + "very-fast", + "year:1999" + ], + "Contributors": [ + { + "id": 931, + "name": "Iron Maiden", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 82, + "Name": "The Wire", + "Artists": "HAIM", + "Color": "00A0C4", + "DarkColor": "0C4C76", + "SongMetaId": null, + "SpotifyId": "6golelYKuy85o3u0cxIxFK", + "DeezerID": 71067423, + "DeezerURL": "https://www.deezer.com/track/71067423", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7ca79d1f0569bd1edc494815c5b685e6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7ca79d1f0569bd1edc494815c5b685e6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7ca79d1f0569bd1edc494815c5b685e6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7ca79d1f0569bd1edc494815c5b685e6/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71304660", + "BPM": 113.6, + "Duration": 245, + "ReleaseDate": "2013-01-01", + "AlbumName": "Days Are Gone (Deluxe Edition)", + "Explicit": false, + "Rank": 535497, + "Tags": [ + "Rock", + "bpm:113.6", + "medium", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 93674, + "name": "HAIM", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 82, + "Name": "The Wire", + "Artists": "HAIM", + "Color": "52935F", + "DarkColor": "1C5A26", + "SongMetaId": null, + "SpotifyId": "6golelYKuy85o3u0cxIxFK", + "DeezerID": 71067423, + "DeezerURL": "https://www.deezer.com/track/71067423", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7ca79d1f0569bd1edc494815c5b685e6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7ca79d1f0569bd1edc494815c5b685e6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7ca79d1f0569bd1edc494815c5b685e6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7ca79d1f0569bd1edc494815c5b685e6/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71304660", + "BPM": 113.6, + "Duration": 245, + "ReleaseDate": "2013-01-01", + "AlbumName": "Days Are Gone (Deluxe Edition)", + "Explicit": false, + "Rank": 535497, + "Tags": [ + "Rock", + "bpm:113.6", + "medium", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 93674, + "name": "HAIM", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 524, + "Name": "Them Changes", + "Artists": "Thundercat", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "7CH99b2i1TXS5P8UUyWtnM", + "DeezerID": 140787083, + "DeezerURL": "https://www.deezer.com/track/140787083", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7100c5d0e431f33cca4036583f829b97/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7100c5d0e431f33cca4036583f829b97/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7100c5d0e431f33cca4036583f829b97/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7100c5d0e431f33cca4036583f829b97/1000x1000-000000-80-0-0.jpg", + "ISRC": "US25X1090547", + "BPM": 0, + "Duration": 188, + "ReleaseDate": "2017-02-24", + "AlbumName": "Drunk", + "Explicit": false, + "Rank": 601126, + "Tags": [ + "R&B", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 546520, + "name": "Thundercat", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 524, + "Name": "Them Changes", + "Artists": "Thundercat", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "7CH99b2i1TXS5P8UUyWtnM", + "DeezerID": 140787083, + "DeezerURL": "https://www.deezer.com/track/140787083", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7100c5d0e431f33cca4036583f829b97/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7100c5d0e431f33cca4036583f829b97/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7100c5d0e431f33cca4036583f829b97/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7100c5d0e431f33cca4036583f829b97/1000x1000-000000-80-0-0.jpg", + "ISRC": "US25X1090547", + "BPM": 0, + "Duration": 188, + "ReleaseDate": "2017-02-24", + "AlbumName": "Drunk", + "Explicit": false, + "Rank": 601126, + "Tags": [ + "R&B", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 546520, + "name": "Thundercat", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 309, + "Name": "Therapy", + "Artists": "Electric Enemy", + "Color": "59FFA3", + "DarkColor": "1E7545", + "SongMetaId": null, + "SpotifyId": "5Ald8817w8ZmtfRt1IOYw0", + "DeezerID": 2078146727, + "DeezerURL": "https://www.deezer.com/track/2078146727", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/46bc77881190f36060418ad86dfb0502/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/46bc77881190f36060418ad86dfb0502/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/46bc77881190f36060418ad86dfb0502/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/46bc77881190f36060418ad86dfb0502/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEZZ42150622", + "BPM": 0, + "Duration": 129, + "ReleaseDate": "2023-04-21", + "AlbumName": "Electric Enemy", + "Explicit": false, + "Rank": 92161, + "Tags": [ + "Alternativo", + "Pop", + "Rock", + "short", + "year:2023" + ], + "Contributors": [ + { + "id": 5712230, + "name": "Electric Enemy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Pop", + "Rock" + ] + }, + { + "SongId": 699, + "Name": "Therapy (Sped Up)", + "Artists": "Conro", + "Color": "659B84", + "DarkColor": "436758", + "SongMetaId": null, + "SpotifyId": "6FXk3VRcvmDDxx67mmWodU", + "DeezerID": 2888824812, + "DeezerURL": "https://www.deezer.com/track/2888824812", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/515166148952fb912a3f13ed84989bad/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/515166148952fb912a3f13ed84989bad/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/515166148952fb912a3f13ed84989bad/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/515166148952fb912a3f13ed84989bad/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D22400443", + "BPM": 0, + "Duration": 166, + "ReleaseDate": "2024-07-16", + "AlbumName": "Therapy", + "Explicit": false, + "Rank": 121413, + "Tags": [ + "Dance", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 5044341, + "name": "Conro", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 699, + "Name": "Therapy (Sped Up)", + "Artists": "Conro", + "Color": "679B85", + "DarkColor": "416254", + "SongMetaId": null, + "SpotifyId": "6FXk3VRcvmDDxx67mmWodU", + "DeezerID": 2888824812, + "DeezerURL": "https://www.deezer.com/track/2888824812", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/515166148952fb912a3f13ed84989bad/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/515166148952fb912a3f13ed84989bad/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/515166148952fb912a3f13ed84989bad/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/515166148952fb912a3f13ed84989bad/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D22400443", + "BPM": 0, + "Duration": 166, + "ReleaseDate": "2024-07-16", + "AlbumName": "Therapy", + "Explicit": false, + "Rank": 121413, + "Tags": [ + "Dance", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 5044341, + "name": "Conro", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 461, + "Name": "Think About Things", + "Artists": "Daði Freyr", + "Color": "35B4A1", + "DarkColor": "2B8D7E", + "SongMetaId": null, + "SpotifyId": "77yGu0p7APK39lotu7CLk5", + "DeezerID": 1951174127, + "DeezerURL": "https://www.deezer.com/track/1951174127", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4ca17220c3f02183f3c8e1a30284fe1a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4ca17220c3f02183f3c8e1a30284fe1a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4ca17220c3f02183f3c8e1a30284fe1a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4ca17220c3f02183f3c8e1a30284fe1a/1000x1000-000000-80-0-0.jpg", + "ISRC": "ISV442020901", + "BPM": 0, + "Duration": 173, + "ReleaseDate": "2021-05-21", + "AlbumName": "Welcome", + "Explicit": false, + "Rank": 630030, + "Tags": [ + "Dance", + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 12779993, + "name": "Daði Freyr", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 461, + "Name": "Think About Things", + "Artists": "Daði Freyr", + "Color": "35B4A1", + "DarkColor": "2B8D7E", + "SongMetaId": null, + "SpotifyId": "77yGu0p7APK39lotu7CLk5", + "DeezerID": 1951174127, + "DeezerURL": "https://www.deezer.com/track/1951174127", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4ca17220c3f02183f3c8e1a30284fe1a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4ca17220c3f02183f3c8e1a30284fe1a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4ca17220c3f02183f3c8e1a30284fe1a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4ca17220c3f02183f3c8e1a30284fe1a/1000x1000-000000-80-0-0.jpg", + "ISRC": "ISV442020901", + "BPM": 0, + "Duration": 173, + "ReleaseDate": "2021-05-21", + "AlbumName": "Welcome", + "Explicit": false, + "Rank": 630030, + "Tags": [ + "Dance", + "Pop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 12779993, + "name": "Daði Freyr", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 706, + "Name": "This Ain't A Scene, It's An Arms Race", + "Artists": "Fall Out Boy", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "1oagRT7LfpVlNJN6FSZDGp", + "DeezerID": 911492, + "DeezerURL": "https://www.deezer.com/track/911492", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70619006", + "BPM": 0, + "Duration": 212, + "ReleaseDate": "2007-11-20", + "AlbumName": "Infinity On High", + "Explicit": false, + "Rank": 721651, + "Tags": [ + "Alternativo", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 404, + "name": "Fall Out Boy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 706, + "Name": "This Ain't A Scene, It's An Arms Race", + "Artists": "Fall Out Boy", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "1oagRT7LfpVlNJN6FSZDGp", + "DeezerID": 911492, + "DeezerURL": "https://www.deezer.com/track/911492", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70619006", + "BPM": 0, + "Duration": 212, + "ReleaseDate": "2007-11-20", + "AlbumName": "Infinity On High", + "Explicit": false, + "Rank": 721651, + "Tags": [ + "Alternativo", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 404, + "name": "Fall Out Boy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 180, + "Name": "This Could Be Us", + "Artists": "Rae Sremmurd", + "Color": "AB5624", + "DarkColor": "781A0A", + "SongMetaId": null, + "SpotifyId": "4jTiyLlOJVJj3mCr7yfPQD", + "DeezerID": 92871284, + "DeezerURL": "https://www.deezer.com/track/92871284", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f9454fedea983a965c2531e823ae6f5a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f9454fedea983a965c2531e823ae6f5a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f9454fedea983a965c2531e823ae6f5a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f9454fedea983a965c2531e823ae6f5a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71417486", + "BPM": 143.1, + "Duration": 206, + "ReleaseDate": "2015-01-06", + "AlbumName": "SremmLife", + "Explicit": true, + "Rank": 759212, + "Tags": [ + "Rap/Hip Hop", + "bpm:143.1", + "fast", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 5575762, + "name": "Rae Sremmurd", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 180, + "Name": "This Could Be Us", + "Artists": "Rae Sremmurd", + "Color": "AB5624", + "DarkColor": "781A0A", + "SongMetaId": null, + "SpotifyId": "4jTiyLlOJVJj3mCr7yfPQD", + "DeezerID": 92871284, + "DeezerURL": "https://www.deezer.com/track/92871284", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f9454fedea983a965c2531e823ae6f5a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f9454fedea983a965c2531e823ae6f5a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f9454fedea983a965c2531e823ae6f5a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f9454fedea983a965c2531e823ae6f5a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71417486", + "BPM": 143.1, + "Duration": 206, + "ReleaseDate": "2015-01-06", + "AlbumName": "SremmLife", + "Explicit": true, + "Rank": 759212, + "Tags": [ + "Rap/Hip Hop", + "bpm:143.1", + "fast", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 5575762, + "name": "Rae Sremmurd", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 333, + "Name": "This Is How We Do It", + "Artists": "Montell Jordan", + "Color": "1E70DF", + "DarkColor": "02204C", + "SongMetaId": null, + "SpotifyId": "6uQKuonTU8VKBz5SHZuQXD", + "DeezerID": 2522953, + "DeezerURL": "https://www.deezer.com/track/2522953", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/88df9f4cf7cad05f3d1f4cf1bcbeadbe/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/88df9f4cf7cad05f3d1f4cf1bcbeadbe/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/88df9f4cf7cad05f3d1f4cf1bcbeadbe/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/88df9f4cf7cad05f3d1f4cf1bcbeadbe/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRL19500006", + "BPM": 103.6, + "Duration": 277, + "ReleaseDate": "1995-01-01", + "AlbumName": "This Is How We Do It", + "Explicit": true, + "Rank": 677495, + "Tags": [ + "Rap/Hip Hop", + "bpm:103.6", + "medium", + "medium-length", + "year:1995" + ], + "Contributors": [ + { + "id": 258, + "name": "Montell Jordan", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 508, + "Name": "This Is War", + "Artists": "Thirty Seconds To Mars", + "Color": "DE9F4C", + "DarkColor": "C48145", + "SongMetaId": null, + "SpotifyId": "2D52zjCyqEIQa221lhw6uk", + "DeezerID": 7564043, + "DeezerURL": "https://www.deezer.com/track/7564043", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a150a5ed90330acf0b13b75a1b4b18bb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a150a5ed90330acf0b13b75a1b4b18bb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a150a5ed90330acf0b13b75a1b4b18bb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a150a5ed90330acf0b13b75a1b4b18bb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVI20900430", + "BPM": 0, + "Duration": 327, + "ReleaseDate": "2010-11-22", + "AlbumName": "This Is War (Deluxe)", + "Explicit": false, + "Rank": 656561, + "Tags": [ + "Alternativo", + "long", + "year:2010" + ], + "Contributors": [ + { + "id": 390183, + "name": "Thirty Seconds to Mars", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 508, + "Name": "This Is War", + "Artists": "Thirty Seconds To Mars", + "Color": "DE9F4C", + "DarkColor": "C48145", + "SongMetaId": null, + "SpotifyId": "2D52zjCyqEIQa221lhw6uk", + "DeezerID": 7564043, + "DeezerURL": "https://www.deezer.com/track/7564043", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/a150a5ed90330acf0b13b75a1b4b18bb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/a150a5ed90330acf0b13b75a1b4b18bb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/a150a5ed90330acf0b13b75a1b4b18bb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/a150a5ed90330acf0b13b75a1b4b18bb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVI20900430", + "BPM": 0, + "Duration": 327, + "ReleaseDate": "2010-11-22", + "AlbumName": "This Is War (Deluxe)", + "Explicit": false, + "Rank": 656561, + "Tags": [ + "Alternativo", + "long", + "year:2010" + ], + "Contributors": [ + { + "id": 390183, + "name": "Thirty Seconds to Mars", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 658, + "Name": "Thnks fr th Mmrs", + "Artists": "Fall Out Boy", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": "33", + "SpotifyId": "3Zwu2K0Qa5sT6teCCHPShP", + "DeezerID": 911496, + "DeezerURL": "https://www.deezer.com/track/911496", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70700326", + "BPM": 154.85, + "Duration": 203, + "ReleaseDate": "2007-11-20", + "AlbumName": "Infinity On High", + "Explicit": false, + "Rank": 740319, + "Tags": [ + "Alternativo", + "bpm:154.85", + "medium-length", + "very-fast", + "year:2007" + ], + "Contributors": [ + { + "id": 404, + "name": "Fall Out Boy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 658, + "Name": "Thnks fr th Mmrs", + "Artists": "Fall Out Boy", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": "33", + "SpotifyId": "3Zwu2K0Qa5sT6teCCHPShP", + "DeezerID": 911496, + "DeezerURL": "https://www.deezer.com/track/911496", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cfc8ab8353cf2ad3d789c05bfc4d23ad/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70700326", + "BPM": 154.85, + "Duration": 203, + "ReleaseDate": "2007-11-20", + "AlbumName": "Infinity On High", + "Explicit": false, + "Rank": 740319, + "Tags": [ + "Alternativo", + "bpm:154.85", + "medium-length", + "very-fast", + "year:2007" + ], + "Contributors": [ + { + "id": 404, + "name": "Fall Out Boy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 278, + "Name": "Thrash Metal Cassette", + "Artists": "Dinosaur Pile-Up", + "Color": "D08343", + "DarkColor": "7B390E", + "SongMetaId": null, + "SpotifyId": "0RhYWcRxUljBv363WhAbtu", + "DeezerID": 690319312, + "DeezerURL": "https://www.deezer.com/track/690319312", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/d31f0574b78705e65e80b08b958529e2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/d31f0574b78705e65e80b08b958529e2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/d31f0574b78705e65e80b08b958529e2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/d31f0574b78705e65e80b08b958529e2/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE1900157", + "BPM": 168.06, + "Duration": 219, + "ReleaseDate": "2019-06-07", + "AlbumName": "Celebrity Mansions", + "Explicit": true, + "Rank": 308893, + "Tags": [ + "Rock", + "bpm:168.06", + "medium-length", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 282471, + "name": "Dinosaur Pile-up", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 301, + "Name": "Thrift Shop", + "Artists": "Macklemore, Ryan Lewis, Wanz", + "Color": "EAD534", + "DarkColor": "EB7A03", + "SongMetaId": null, + "SpotifyId": "6CjtS2JZH9RkDz5UVInsa9", + "DeezerID": 61424045, + "DeezerURL": "https://www.deezer.com/track/61424045", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GMM881200003", + "BPM": 95, + "Duration": 235, + "ReleaseDate": "2012-10-09", + "AlbumName": "The Heist", + "Explicit": true, + "Rank": 879249, + "Tags": [ + "Rap/Hip Hop", + "bpm:95", + "medium", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 893222, + "name": "Macklemore & Ryan Lewis", + "role": "Main" + }, + { + "id": 152291, + "name": "Macklemore", + "role": "Main" + }, + { + "id": 75247, + "name": "Ryan Lewis", + "role": "Main" + }, + { + "id": 4688030, + "name": "Wänz", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 301, + "Name": "Thrift Shop", + "Artists": "Macklemore, Ryan Lewis, Wanz", + "Color": "DECB42", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "6CjtS2JZH9RkDz5UVInsa9", + "DeezerID": 61424045, + "DeezerURL": "https://www.deezer.com/track/61424045", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/238f1c36e8445fd162d1d53b8181ecb5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GMM881200003", + "BPM": 95, + "Duration": 235, + "ReleaseDate": "2012-10-09", + "AlbumName": "The Heist", + "Explicit": true, + "Rank": 879249, + "Tags": [ + "Rap/Hip Hop", + "bpm:95", + "medium", + "medium-length", + "year:2012" + ], + "Contributors": [ + { + "id": 893222, + "name": "Macklemore & Ryan Lewis", + "role": "Main" + }, + { + "id": 152291, + "name": "Macklemore", + "role": "Main" + }, + { + "id": 75247, + "name": "Ryan Lewis", + "role": "Main" + }, + { + "id": 4688030, + "name": "Wänz", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 637, + "Name": "Thrill", + "Artists": "Case Arnold", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "6LRobpDnF8P56iBkN2Eucv", + "DeezerID": 533930712, + "DeezerURL": "https://www.deezer.com/track/533930712", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9a6944cc389455a7b2a8c0b6a1d15efb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9a6944cc389455a7b2a8c0b6a1d15efb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9a6944cc389455a7b2a8c0b6a1d15efb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9a6944cc389455a7b2a8c0b6a1d15efb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUYG1210542", + "BPM": 0, + "Duration": 192, + "ReleaseDate": "2018-08-03", + "AlbumName": "Thrill", + "Explicit": true, + "Rank": 48161, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 5518517, + "name": "Case Arnold", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 637, + "Name": "Thrill", + "Artists": "Case Arnold", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "6LRobpDnF8P56iBkN2Eucv", + "DeezerID": 533930712, + "DeezerURL": "https://www.deezer.com/track/533930712", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9a6944cc389455a7b2a8c0b6a1d15efb/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9a6944cc389455a7b2a8c0b6a1d15efb/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9a6944cc389455a7b2a8c0b6a1d15efb/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9a6944cc389455a7b2a8c0b6a1d15efb/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUYG1210542", + "BPM": 0, + "Duration": 192, + "ReleaseDate": "2018-08-03", + "AlbumName": "Thrill", + "Explicit": true, + "Rank": 48161, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 5518517, + "name": "Case Arnold", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 521, + "Name": "Thrones Of Blood", + "Artists": "Sullivan King", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": null, + "SpotifyId": "4TzeLjexlDe7G2Ee7c2vel", + "DeezerID": 2189824617, + "DeezerURL": "https://www.deezer.com/track/2189824617", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5738ae1233fb480e37bd86b6eaf92633/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5738ae1233fb480e37bd86b6eaf92633/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5738ae1233fb480e37bd86b6eaf92633/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5738ae1233fb480e37bd86b6eaf92633/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D22200702", + "BPM": 0, + "Duration": 242, + "ReleaseDate": "2023-03-17", + "AlbumName": "Thrones of Blood", + "Explicit": true, + "Rank": 213009, + "Tags": [ + "Dance", + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 5590006, + "name": "Sullivan King", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 521, + "Name": "Thrones Of Blood", + "Artists": "Sullivan King", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": null, + "SpotifyId": "4TzeLjexlDe7G2Ee7c2vel", + "DeezerID": 2189824617, + "DeezerURL": "https://www.deezer.com/track/2189824617", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/5738ae1233fb480e37bd86b6eaf92633/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/5738ae1233fb480e37bd86b6eaf92633/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/5738ae1233fb480e37bd86b6eaf92633/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/5738ae1233fb480e37bd86b6eaf92633/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D22200702", + "BPM": 0, + "Duration": 242, + "ReleaseDate": "2023-03-17", + "AlbumName": "Thrones of Blood", + "Explicit": true, + "Rank": 213009, + "Tags": [ + "Dance", + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 5590006, + "name": "Sullivan King", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro", + "Dance" + ] + }, + { + "SongId": 302, + "Name": "Thunderclouds", + "Artists": "Labyrinth, Sia, Diplo", + "Color": "39ABD7", + "DarkColor": "08658D", + "SongMetaId": null, + "SpotifyId": "4lJNen4SMTIJMahALc3DcB", + "DeezerID": 539082112, + "DeezerURL": "https://www.deezer.com/track/539082112", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cff4b1cb06e265b6a075cd7c5966dfc2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cff4b1cb06e265b6a075cd7c5966dfc2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cff4b1cb06e265b6a075cd7c5966dfc2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cff4b1cb06e265b6a075cd7c5966dfc2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USQX91801533", + "BPM": 112.04, + "Duration": 187, + "ReleaseDate": "2018-08-09", + "AlbumName": "Thunderclouds (feat. Sia, Diplo & Labrinth)", + "Explicit": false, + "Rank": 834858, + "Tags": [ + "Pop", + "bpm:112.04", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 14720447, + "name": "LSD", + "role": "Main" + }, + { + "id": 3469, + "name": "Sia", + "role": "Featured" + }, + { + "id": 1846, + "name": "Diplo", + "role": "Featured" + }, + { + "id": 794548, + "name": "Labrinth", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 141, + "Name": "Time Is Running Out", + "Artists": "Muse", + "Color": "50849E", + "DarkColor": "003348", + "SongMetaId": null, + "SpotifyId": "0EdMqiKs9LKXhspeQhl4RZ", + "DeezerID": 3590214, + "DeezerURL": "https://www.deezer.com/track/3590214", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3a2d055d82de71b1d370d01cf2ca33d9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3a2d055d82de71b1d370d01cf2ca33d9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3a2d055d82de71b1d370d01cf2ca33d9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3a2d055d82de71b1d370d01cf2ca33d9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCVT0300078", + "BPM": 118.1, + "Duration": 237, + "ReleaseDate": "2009-05-22", + "AlbumName": "Time Is Running Out", + "Explicit": false, + "Rank": 775180, + "Tags": [ + "Alternativo", + "bpm:118.1", + "medium", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 705, + "name": "Muse", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 141, + "Name": "Time Is Running Out", + "Artists": "Muse", + "Color": "739CAF", + "DarkColor": "224D60", + "SongMetaId": null, + "SpotifyId": "0EdMqiKs9LKXhspeQhl4RZ", + "DeezerID": 3590214, + "DeezerURL": "https://www.deezer.com/track/3590214", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3a2d055d82de71b1d370d01cf2ca33d9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3a2d055d82de71b1d370d01cf2ca33d9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3a2d055d82de71b1d370d01cf2ca33d9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3a2d055d82de71b1d370d01cf2ca33d9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCVT0300078", + "BPM": 118.1, + "Duration": 237, + "ReleaseDate": "2009-05-22", + "AlbumName": "Time Is Running Out", + "Explicit": false, + "Rank": 775180, + "Tags": [ + "Alternativo", + "bpm:118.1", + "medium", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 705, + "name": "Muse", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 501, + "Name": "Time of Our Lives", + "Artists": "Pitbull, Ne-Yo", + "Color": "35B4A1", + "DarkColor": "2B8D7E", + "SongMetaId": null, + "SpotifyId": "2bJvI42r8EF3wxjOuDav4r", + "DeezerID": 89597767, + "DeezerURL": "https://www.deezer.com/track/89597767", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c088c1cf616f8fb50439cb3eab11f795/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c088c1cf616f8fb50439cb3eab11f795/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c088c1cf616f8fb50439cb3eab11f795/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c088c1cf616f8fb50439cb3eab11f795/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11402647", + "BPM": 124.2, + "Duration": 229, + "ReleaseDate": "2014-11-21", + "AlbumName": "Globalization", + "Explicit": true, + "Rank": 772197, + "Tags": [ + "Pop", + "bpm:124.2", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 104, + "name": "Ne-Yo", + "role": "Main" + }, + { + "id": 776, + "name": "Pitbull", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 501, + "Name": "Time of Our Lives", + "Artists": "Pitbull, Ne-Yo", + "Color": "35B4A1", + "DarkColor": "2B8D7E", + "SongMetaId": null, + "SpotifyId": "2bJvI42r8EF3wxjOuDav4r", + "DeezerID": 89597767, + "DeezerURL": "https://www.deezer.com/track/89597767", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c088c1cf616f8fb50439cb3eab11f795/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c088c1cf616f8fb50439cb3eab11f795/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c088c1cf616f8fb50439cb3eab11f795/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c088c1cf616f8fb50439cb3eab11f795/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11402647", + "BPM": 124.2, + "Duration": 229, + "ReleaseDate": "2014-11-21", + "AlbumName": "Globalization", + "Explicit": true, + "Rank": 772197, + "Tags": [ + "Pop", + "bpm:124.2", + "fast", + "medium-length", + "year:2014" + ], + "Contributors": [ + { + "id": 104, + "name": "Ne-Yo", + "role": "Main" + }, + { + "id": 776, + "name": "Pitbull", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 104, + "Name": "Time To Waste", + "Artists": "Alkaline Trio", + "Color": "960019", + "DarkColor": "300505", + "SongMetaId": null, + "SpotifyId": "6q0058HsQQ7Ch3SrvcatAD", + "DeezerID": 137282526, + "DeezerURL": "https://www.deezer.com/track/137282526", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/49be6d2dea46b499328a824214181bc9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/49be6d2dea46b499328a824214181bc9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/49be6d2dea46b499328a824214181bc9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/49be6d2dea46b499328a824214181bc9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVR90540901", + "BPM": 127.21, + "Duration": 251, + "ReleaseDate": "2005-05-24", + "AlbumName": "Crimson", + "Explicit": false, + "Rank": 263207, + "Tags": [ + "Alternativo", + "bpm:127.21", + "fast", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 944, + "name": "Alkaline Trio", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 104, + "Name": "Time To Waste", + "Artists": "Alkaline Trio", + "Color": "960019", + "DarkColor": "300505", + "SongMetaId": null, + "SpotifyId": "6q0058HsQQ7Ch3SrvcatAD", + "DeezerID": 137282526, + "DeezerURL": "https://www.deezer.com/track/137282526", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/49be6d2dea46b499328a824214181bc9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/49be6d2dea46b499328a824214181bc9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/49be6d2dea46b499328a824214181bc9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/49be6d2dea46b499328a824214181bc9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVR90540901", + "BPM": 127.21, + "Duration": 251, + "ReleaseDate": "2005-05-24", + "AlbumName": "Crimson", + "Explicit": false, + "Rank": 263207, + "Tags": [ + "Alternativo", + "bpm:127.21", + "fast", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 944, + "name": "Alkaline Trio", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 745, + "Name": "Tiny Dancer", + "Artists": "Elton John", + "Color": "020A5F", + "DarkColor": "020630", + "SongMetaId": "34", + "SpotifyId": "2TVxnKdb3tqe1nhQWwwZCO", + "DeezerID": 1151503, + "DeezerURL": "https://www.deezer.com/track/1151503", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c2495297d07ca9ce5514bd3444e65f9c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c2495297d07ca9ce5514bd3444e65f9c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c2495297d07ca9ce5514bd3444e65f9c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c2495297d07ca9ce5514bd3444e65f9c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAMB7100001", + "BPM": 144.6, + "Duration": 377, + "ReleaseDate": "2007-04-30", + "AlbumName": "Madman Across The Water", + "Explicit": false, + "Rank": 760709, + "Tags": [ + "Pop", + "bpm:144.6", + "fast", + "long", + "year:2007" + ], + "Contributors": [ + { + "id": 413, + "name": "Elton John", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 623, + "Name": "Tiny Dancer", + "Artists": "Elton John", + "Color": "020A5F", + "DarkColor": "020630", + "SongMetaId": "34", + "SpotifyId": "2TVxnKdb3tqe1nhQWwwZCO", + "DeezerID": 1151503, + "DeezerURL": "https://www.deezer.com/track/1151503", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c2495297d07ca9ce5514bd3444e65f9c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c2495297d07ca9ce5514bd3444e65f9c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c2495297d07ca9ce5514bd3444e65f9c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c2495297d07ca9ce5514bd3444e65f9c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAMB7100001", + "BPM": 144.6, + "Duration": 377, + "ReleaseDate": "2007-04-30", + "AlbumName": "Madman Across The Water", + "Explicit": false, + "Rank": 760709, + "Tags": [ + "Pop", + "bpm:144.6", + "fast", + "long", + "year:2007" + ], + "Contributors": [ + { + "id": 413, + "name": "Elton John", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 623, + "Name": "Tiny Dancer", + "Artists": "Elton John", + "Color": "02168F", + "DarkColor": "04115D", + "SongMetaId": "34", + "SpotifyId": "2TVxnKdb3tqe1nhQWwwZCO", + "DeezerID": 1151503, + "DeezerURL": "https://www.deezer.com/track/1151503", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c2495297d07ca9ce5514bd3444e65f9c/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c2495297d07ca9ce5514bd3444e65f9c/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c2495297d07ca9ce5514bd3444e65f9c/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c2495297d07ca9ce5514bd3444e65f9c/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAMB7100001", + "BPM": 144.6, + "Duration": 377, + "ReleaseDate": "2007-04-30", + "AlbumName": "Madman Across The Water", + "Explicit": false, + "Rank": 760709, + "Tags": [ + "Pop", + "bpm:144.6", + "fast", + "long", + "year:2007" + ], + "Contributors": [ + { + "id": 413, + "name": "Elton John", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 641, + "Name": "To The Stars", + "Artists": "Braken", + "Color": "D383B2", + "DarkColor": "905577", + "SongMetaId": null, + "SpotifyId": "5QW0Qa1CS4XcJs2pmAgXKS", + "DeezerID": 71754737, + "DeezerURL": "https://www.deezer.com/track/71754737", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cf88b055ccc823d9529ac870b84f625d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cf88b055ccc823d9529ac870b84f625d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cf88b055ccc823d9529ac870b84f625d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cf88b055ccc823d9529ac870b84f625d/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D21000331", + "BPM": 175.2, + "Duration": 202, + "ReleaseDate": "2013-10-21", + "AlbumName": "To the Stars", + "Explicit": false, + "Rank": 146871, + "Tags": [ + "Dance", + "bpm:175.2", + "medium-length", + "very-fast", + "year:2013" + ], + "Contributors": [ + { + "id": 5292010, + "name": "Braken", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 641, + "Name": "To The Stars", + "Artists": "Braken", + "Color": "D383B2", + "DarkColor": "8D5777", + "SongMetaId": null, + "SpotifyId": "5QW0Qa1CS4XcJs2pmAgXKS", + "DeezerID": 71754737, + "DeezerURL": "https://www.deezer.com/track/71754737", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/cf88b055ccc823d9529ac870b84f625d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/cf88b055ccc823d9529ac870b84f625d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/cf88b055ccc823d9529ac870b84f625d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/cf88b055ccc823d9529ac870b84f625d/1000x1000-000000-80-0-0.jpg", + "ISRC": "CA6D21000331", + "BPM": 175.2, + "Duration": 202, + "ReleaseDate": "2013-10-21", + "AlbumName": "To the Stars", + "Explicit": false, + "Rank": 146871, + "Tags": [ + "Dance", + "bpm:175.2", + "medium-length", + "very-fast", + "year:2013" + ], + "Contributors": [ + { + "id": 5292010, + "name": "Braken", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 181, + "Name": "Together", + "Artists": "Brawl Stars, Bad Randoms", + "Color": "3D51CD", + "DarkColor": "1D1EA1", + "SongMetaId": null, + "SpotifyId": "2t62GwKi5rkWyD7rhTBjgr", + "DeezerID": 1604869832, + "DeezerURL": "https://www.deezer.com/track/1604869832", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0f2f7af7255e9828a03979e3112684c5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0f2f7af7255e9828a03979e3112684c5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0f2f7af7255e9828a03979e3112684c5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0f2f7af7255e9828a03979e3112684c5/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZTAU2134241", + "BPM": 0, + "Duration": 226, + "ReleaseDate": "2022-01-13", + "AlbumName": "Together", + "Explicit": false, + "Rank": 345596, + "Tags": [ + "Alternativo", + "Indie Rock", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 142401022, + "name": "Brawl Stars", + "role": "Main" + }, + { + "id": 142401032, + "name": "Bad Randoms", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Rock" + ] + }, + { + "SongId": 265, + "Name": "Tonight, Tonight", + "Artists": "Smashing Pumpkins", + "Color": "818037", + "DarkColor": "2C4B2C", + "SongMetaId": null, + "SpotifyId": "5kguToT39QaxxYEuPwFkp6", + "DeezerID": 62791734, + "DeezerURL": "https://www.deezer.com/track/62791734", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/604cf65ac87ccca2870943a04b26e95e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/604cf65ac87ccca2870943a04b26e95e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/604cf65ac87ccca2870943a04b26e95e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/604cf65ac87ccca2870943a04b26e95e/1000x1000-000000-80-0-0.jpg", + "ISRC": "USVI21200893", + "BPM": 150.34, + "Duration": 255, + "ReleaseDate": "1995-10-23", + "AlbumName": "Mellon Collie And The Infinite Sadness (Deluxe Edition)", + "Explicit": false, + "Rank": 654366, + "Tags": [ + "Alternativo", + "bpm:150.34", + "medium-length", + "very-fast", + "year:1995" + ], + "Contributors": [ + { + "id": 193331, + "name": "The Smashing Pumpkins", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 21, + "Name": "Tornado Of Souls", + "Artists": "Megadeth", + "Color": "44389C", + "DarkColor": "2F184A", + "SongMetaId": null, + "SpotifyId": "4GMQOjbWshf4Mzphkjg0DJ", + "DeezerID": 3089054, + "DeezerURL": "https://www.deezer.com/track/3089054", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4fc68581b212b22a55b0d5093d766152/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4fc68581b212b22a55b0d5093d766152/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4fc68581b212b22a55b0d5093d766152/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4fc68581b212b22a55b0d5093d766152/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA20400653", + "BPM": 97.7, + "Duration": 316, + "ReleaseDate": "1990-10-04", + "AlbumName": "Rust In Peace (2004 Remix / Expanded Edition)", + "Explicit": false, + "Rank": 597415, + "Tags": [ + "Rock", + "bpm:97.7", + "long", + "medium", + "year:1990" + ], + "Contributors": [ + { + "id": 3487, + "name": "Megadeth", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 21, + "Name": "Tornado Of Souls", + "Artists": "Megadeth", + "Color": "4F4EFA", + "DarkColor": "2115CD", + "SongMetaId": null, + "SpotifyId": "4GMQOjbWshf4Mzphkjg0DJ", + "DeezerID": 3089054, + "DeezerURL": "https://www.deezer.com/track/3089054", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/4fc68581b212b22a55b0d5093d766152/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/4fc68581b212b22a55b0d5093d766152/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/4fc68581b212b22a55b0d5093d766152/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/4fc68581b212b22a55b0d5093d766152/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA20400653", + "BPM": 97.7, + "Duration": 316, + "ReleaseDate": "1990-10-04", + "AlbumName": "Rust In Peace (2004 Remix / Expanded Edition)", + "Explicit": false, + "Rank": 597415, + "Tags": [ + "Rock", + "bpm:97.7", + "long", + "medium", + "year:1990" + ], + "Contributors": [ + { + "id": 3487, + "name": "Megadeth", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 534, + "Name": "Tragedy, Humanity", + "Artists": "Justin Hawkes", + "Color": "B0C0DB", + "DarkColor": "768CAF", + "SongMetaId": null, + "SpotifyId": "1g7uk8tlEzv3AHJDLP0mR2", + "DeezerID": 1909658227, + "DeezerURL": "https://www.deezer.com/track/1909658227", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7044e1576ba7314bfcb253bf120205b1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7044e1576ba7314bfcb253bf120205b1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7044e1576ba7314bfcb253bf120205b1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7044e1576ba7314bfcb253bf120205b1/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD1900393", + "BPM": 0, + "Duration": 367, + "ReleaseDate": "2022-10-21", + "AlbumName": "Existential", + "Explicit": false, + "Rank": 147000, + "Tags": [ + "Dance", + "long", + "year:2022" + ], + "Contributors": [ + { + "id": 108797512, + "name": "Justin Hawkes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 534, + "Name": "Tragedy, Humanity", + "Artists": "Justin Hawkes", + "Color": "B0C0DB", + "DarkColor": "768CAF", + "SongMetaId": null, + "SpotifyId": "1g7uk8tlEzv3AHJDLP0mR2", + "DeezerID": 1909658227, + "DeezerURL": "https://www.deezer.com/track/1909658227", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7044e1576ba7314bfcb253bf120205b1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7044e1576ba7314bfcb253bf120205b1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7044e1576ba7314bfcb253bf120205b1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7044e1576ba7314bfcb253bf120205b1/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD1900393", + "BPM": 0, + "Duration": 367, + "ReleaseDate": "2022-10-21", + "AlbumName": "Existential", + "Explicit": false, + "Rank": 147000, + "Tags": [ + "Dance", + "long", + "year:2022" + ], + "Contributors": [ + { + "id": 108797512, + "name": "Justin Hawkes", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 460, + "Name": "Truth Hurts", + "Artists": "Lizzo", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "3HWzoMvoF3TQfYg4UPszDq", + "DeezerID": 674416352, + "DeezerURL": "https://www.deezer.com/track/674416352", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6ca3ef91da07e9b9a2e9671a6583a01f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6ca3ef91da07e9b9a2e9671a6583a01f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6ca3ef91da07e9b9a2e9671a6583a01f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6ca3ef91da07e9b9a2e9671a6583a01f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21703896", + "BPM": 157.8, + "Duration": 173, + "ReleaseDate": "2019-04-19", + "AlbumName": "Cuz I Love You (Deluxe)", + "Explicit": true, + "Rank": 680854, + "Tags": [ + "Pop", + "R&B", + "bpm:157.8", + "short", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 5200025, + "name": "Lizzo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "R&B" + ] + }, + { + "SongId": 460, + "Name": "Truth Hurts", + "Artists": "Lizzo", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "3HWzoMvoF3TQfYg4UPszDq", + "DeezerID": 674416352, + "DeezerURL": "https://www.deezer.com/track/674416352", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6ca3ef91da07e9b9a2e9671a6583a01f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6ca3ef91da07e9b9a2e9671a6583a01f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6ca3ef91da07e9b9a2e9671a6583a01f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6ca3ef91da07e9b9a2e9671a6583a01f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21703896", + "BPM": 157.8, + "Duration": 173, + "ReleaseDate": "2019-04-19", + "AlbumName": "Cuz I Love You (Deluxe)", + "Explicit": true, + "Rank": 680854, + "Tags": [ + "Pop", + "R&B", + "bpm:157.8", + "short", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 5200025, + "name": "Lizzo", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop", + "R&B" + ] + }, + { + "SongId": 281, + "Name": "Tubthumping", + "Artists": "Chumbawamba", + "Color": "78E957", + "DarkColor": "00653C", + "SongMetaId": null, + "SpotifyId": "22HYEJveCvykVDHDiEEmjZ", + "DeezerID": 3154917, + "DeezerURL": "https://www.deezer.com/track/3154917", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8f413bb5a92d3006c86b998a8dc8bcd3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8f413bb5a92d3006c86b998a8dc8bcd3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8f413bb5a92d3006c86b998a8dc8bcd3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8f413bb5a92d3006c86b998a8dc8bcd3/1000x1000-000000-80-0-0.jpg", + "ISRC": "DEA349700542", + "BPM": 103.9, + "Duration": 213, + "ReleaseDate": "2006-03-31", + "AlbumName": "Tubthumper", + "Explicit": false, + "Rank": 728863, + "Tags": [ + "Pop", + "bpm:103.9", + "medium", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 3238, + "name": "Chumbawamba", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 509, + "Name": "Turbo", + "Artists": "The Nah", + "Color": "39ABD7", + "DarkColor": "08658D", + "SongMetaId": null, + "SpotifyId": "5fxbYcVaz15TwPBG7uLGpf", + "DeezerID": 1756489477, + "DeezerURL": "https://www.deezer.com/track/1756489477", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2fafdec4225925d3ff98771afd254da2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2fafdec4225925d3ff98771afd254da2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2fafdec4225925d3ff98771afd254da2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2fafdec4225925d3ff98771afd254da2/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBHGV2100143", + "BPM": 0, + "Duration": 154, + "ReleaseDate": "2022-05-27", + "AlbumName": "Do My Thang", + "Explicit": false, + "Rank": 25116, + "Tags": [ + "East Coast", + "Rap/Hip Hop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 13409787, + "name": "The Nah", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "East Coast" + ] + }, + { + "SongId": 509, + "Name": "Turbo", + "Artists": "The Nah", + "Color": "39ABD7", + "DarkColor": "08658D", + "SongMetaId": null, + "SpotifyId": "5fxbYcVaz15TwPBG7uLGpf", + "DeezerID": 1756489477, + "DeezerURL": "https://www.deezer.com/track/1756489477", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2fafdec4225925d3ff98771afd254da2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2fafdec4225925d3ff98771afd254da2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2fafdec4225925d3ff98771afd254da2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2fafdec4225925d3ff98771afd254da2/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBHGV2100143", + "BPM": 0, + "Duration": 154, + "ReleaseDate": "2022-05-27", + "AlbumName": "Do My Thang", + "Explicit": false, + "Rank": 25116, + "Tags": [ + "East Coast", + "Rap/Hip Hop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 13409787, + "name": "The Nah", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "East Coast" + ] + }, + { + "SongId": 254, + "Name": "Tusa", + "Artists": "KAROL G, Nicki Minaj", + "Color": "CE8DA7", + "DarkColor": "763C63", + "SongMetaId": null, + "SpotifyId": "7k4t7uLgtOxPwTpFmtJNTY", + "DeezerID": 796342592, + "DeezerURL": "https://www.deezer.com/track/796342592", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7f4412829dda081518fcad597601c778/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7f4412829dda081518fcad597601c778/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7f4412829dda081518fcad597601c778/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7f4412829dda081518fcad597601c778/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71921183", + "BPM": 101.08, + "Duration": 200, + "ReleaseDate": "2019-11-08", + "AlbumName": "Tusa", + "Explicit": true, + "Rank": 888444, + "Tags": [ + "Rap/Hip Hop", + "bpm:101.08", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 5297021, + "name": "KAROL G", + "role": "Main" + }, + { + "id": 382937, + "name": "Nicki Minaj", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 254, + "Name": "Tusa", + "Artists": "KAROL G, Nicki Minaj", + "Color": "CE8DA7", + "DarkColor": "763C63", + "SongMetaId": null, + "SpotifyId": "7k4t7uLgtOxPwTpFmtJNTY", + "DeezerID": 796342592, + "DeezerURL": "https://www.deezer.com/track/796342592", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7f4412829dda081518fcad597601c778/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7f4412829dda081518fcad597601c778/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7f4412829dda081518fcad597601c778/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7f4412829dda081518fcad597601c778/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71921183", + "BPM": 101.08, + "Duration": 200, + "ReleaseDate": "2019-11-08", + "AlbumName": "Tusa", + "Explicit": true, + "Rank": 888444, + "Tags": [ + "Rap/Hip Hop", + "bpm:101.08", + "medium", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 5297021, + "name": "KAROL G", + "role": "Main" + }, + { + "id": 382937, + "name": "Nicki Minaj", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 411, + "Name": "TWINNEM", + "Artists": "Coi Leray", + "Color": "A2C337", + "DarkColor": "4B5A1B", + "SongMetaId": null, + "SpotifyId": "3oE2HPoP7DCgxhrqjAosZY", + "DeezerID": 1495212702, + "DeezerURL": "https://www.deezer.com/track/1495212702", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c68074f2d3aab8838d651486abc6d6d8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c68074f2d3aab8838d651486abc6d6d8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c68074f2d3aab8838d651486abc6d6d8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c68074f2d3aab8838d651486abc6d6d8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72115284", + "BPM": 0, + "Duration": 116, + "ReleaseDate": "2021-09-20", + "AlbumName": "TWINNEM", + "Explicit": true, + "Rank": 415016, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 49825112, + "name": "Coi Leray", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 411, + "Name": "TWINNEM", + "Artists": "Coi Leray", + "Color": "A2C337", + "DarkColor": "4B5A1B", + "SongMetaId": null, + "SpotifyId": "3oE2HPoP7DCgxhrqjAosZY", + "DeezerID": 1495212702, + "DeezerURL": "https://www.deezer.com/track/1495212702", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c68074f2d3aab8838d651486abc6d6d8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c68074f2d3aab8838d651486abc6d6d8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c68074f2d3aab8838d651486abc6d6d8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c68074f2d3aab8838d651486abc6d6d8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72115284", + "BPM": 0, + "Duration": 116, + "ReleaseDate": "2021-09-20", + "AlbumName": "TWINNEM", + "Explicit": true, + "Rank": 415016, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 49825112, + "name": "Coi Leray", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 250, + "Name": "Two Princes", + "Artists": "Spin Doctors", + "Color": "2B2981", + "DarkColor": "171648", + "SongMetaId": null, + "SpotifyId": "4ePP9So5xRzspjLFVVbj90", + "DeezerID": 831294, + "DeezerURL": "https://www.deezer.com/track/831294", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/31be78823ba1adb26ed8012f4ad2db77/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/31be78823ba1adb26ed8012f4ad2db77/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/31be78823ba1adb26ed8012f4ad2db77/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/31be78823ba1adb26ed8012f4ad2db77/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19000350", + "BPM": 103.4, + "Duration": 257, + "ReleaseDate": "2000-09-19", + "AlbumName": "Just Go Ahead Now: A Retrospective", + "Explicit": false, + "Rank": 805472, + "Tags": [ + "Pop", + "bpm:103.4", + "medium", + "medium-length", + "year:2000" + ], + "Contributors": [ + { + "id": 1950, + "name": "Spin Doctors", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 208, + "Name": "U Can't Touch This", + "Artists": "MC Hammer", + "Color": "1A94E2", + "DarkColor": "1168C6", + "SongMetaId": null, + "SpotifyId": "1B75hgRqe7A4fwee3g3Wmu", + "DeezerID": 3136389, + "DeezerURL": "https://www.deezer.com/track/3136389", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/18bc1a407224067b1a400be8e86aec89/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/18bc1a407224067b1a400be8e86aec89/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/18bc1a407224067b1a400be8e86aec89/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/18bc1a407224067b1a400be8e86aec89/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA29000294", + "BPM": 133.4, + "Duration": 256, + "ReleaseDate": "1996-09-09", + "AlbumName": "Greatest Hits", + "Explicit": false, + "Rank": 743165, + "Tags": [ + "Rap/Hip Hop", + "bpm:133.4", + "fast", + "medium-length", + "year:1996" + ], + "Contributors": [ + { + "id": 8306, + "name": "MC Hammer", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 208, + "Name": "U Can't Touch This", + "Artists": "MC Hammer", + "Color": "2781E2", + "DarkColor": "2549AF", + "SongMetaId": null, + "SpotifyId": "1B75hgRqe7A4fwee3g3Wmu", + "DeezerID": 3136389, + "DeezerURL": "https://www.deezer.com/track/3136389", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/18bc1a407224067b1a400be8e86aec89/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/18bc1a407224067b1a400be8e86aec89/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/18bc1a407224067b1a400be8e86aec89/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/18bc1a407224067b1a400be8e86aec89/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA29000294", + "BPM": 133.4, + "Duration": 256, + "ReleaseDate": "1996-09-09", + "AlbumName": "Greatest Hits", + "Explicit": false, + "Rank": 743165, + "Tags": [ + "Rap/Hip Hop", + "bpm:133.4", + "fast", + "medium-length", + "year:1996" + ], + "Contributors": [ + { + "id": 8306, + "name": "MC Hammer", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 695, + "Name": "Under the Weeping Moon", + "Artists": "SikTh", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "1rtftTLAu4RFap10KdNTGy", + "DeezerID": 112072744, + "DeezerURL": "https://www.deezer.com/track/112072744", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/108d69a68547db247850f9a27d5b4753/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/108d69a68547db247850f9a27d5b4753/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/108d69a68547db247850f9a27d5b4753/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/108d69a68547db247850f9a27d5b4753/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCVK1500003", + "BPM": 0, + "Duration": 281, + "ReleaseDate": "2015-12-04", + "AlbumName": "Opacities", + "Explicit": false, + "Rank": 82565, + "Tags": [ + "Metal", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 2217, + "name": "SikTh", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 695, + "Name": "Under the Weeping Moon", + "Artists": "SikTh", + "Color": "F28E24", + "DarkColor": "C94603", + "SongMetaId": null, + "SpotifyId": "1rtftTLAu4RFap10KdNTGy", + "DeezerID": 112072744, + "DeezerURL": "https://www.deezer.com/track/112072744", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/108d69a68547db247850f9a27d5b4753/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/108d69a68547db247850f9a27d5b4753/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/108d69a68547db247850f9a27d5b4753/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/108d69a68547db247850f9a27d5b4753/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBCVK1500003", + "BPM": 0, + "Duration": 281, + "ReleaseDate": "2015-12-04", + "AlbumName": "Opacities", + "Explicit": false, + "Rank": 82565, + "Tags": [ + "Metal", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 2217, + "name": "SikTh", + "role": "Main" + } + ], + "AlbumGenres": [ + "Metal" + ] + }, + { + "SongId": 408, + "Name": "Unholy", + "Artists": "Sam Smith, Kim Petras", + "Color": "DE9F4C", + "DarkColor": "C48145", + "SongMetaId": null, + "SpotifyId": "3nqQXoyQOWXiESFLlDF1hG", + "DeezerID": 1905751117, + "DeezerURL": "https://www.deezer.com/track/1905751117", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/bd454eaa5398663a32af7fca8633b245/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/bd454eaa5398663a32af7fca8633b245/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/bd454eaa5398663a32af7fca8633b245/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/bd454eaa5398663a32af7fca8633b245/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM72205415", + "BPM": 0, + "Duration": 156, + "ReleaseDate": "2022-09-22", + "AlbumName": "Unholy", + "Explicit": false, + "Rank": 929311, + "Tags": [ + "Pop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 1097709, + "name": "Sam Smith", + "role": "Main" + }, + { + "id": 4652821, + "name": "Kim Petras", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 408, + "Name": "Unholy", + "Artists": "Sam Smith, Kim Petras", + "Color": "DE9F4C", + "DarkColor": "C48145", + "SongMetaId": null, + "SpotifyId": "3nqQXoyQOWXiESFLlDF1hG", + "DeezerID": 1905751117, + "DeezerURL": "https://www.deezer.com/track/1905751117", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/bd454eaa5398663a32af7fca8633b245/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/bd454eaa5398663a32af7fca8633b245/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/bd454eaa5398663a32af7fca8633b245/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/bd454eaa5398663a32af7fca8633b245/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM72205415", + "BPM": 0, + "Duration": 156, + "ReleaseDate": "2022-09-22", + "AlbumName": "Unholy", + "Explicit": false, + "Rank": 929311, + "Tags": [ + "Pop", + "short", + "year:2022" + ], + "Contributors": [ + { + "id": 1097709, + "name": "Sam Smith", + "role": "Main" + }, + { + "id": 4652821, + "name": "Kim Petras", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 609, + "Name": "Until I Found You", + "Artists": "Stephen Sanchez", + "Color": "EF323D", + "DarkColor": "3B010A", + "SongMetaId": null, + "SpotifyId": "0T5iIrXA4p5GsubkhuBIKV", + "DeezerID": 1474534502, + "DeezerURL": "https://www.deezer.com/track/1474534502", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8a6477b222dac17081d9b9b1729a1ca4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8a6477b222dac17081d9b9b1729a1ca4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8a6477b222dac17081d9b9b1729a1ca4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8a6477b222dac17081d9b9b1729a1ca4/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12103651", + "BPM": 0, + "Duration": 178, + "ReleaseDate": "2021-09-01", + "AlbumName": "Until I Found You", + "Explicit": false, + "Rank": 901547, + "Tags": [ + "Singer & Songwriter", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 13129925, + "name": "Stephen Sanchez", + "role": "Main" + } + ], + "AlbumGenres": [ + "Singer & Songwriter" + ] + }, + { + "SongId": 609, + "Name": "Until I Found You", + "Artists": "Stephen Sanchez", + "Color": "EF323D", + "DarkColor": "3B010A", + "SongMetaId": null, + "SpotifyId": "0T5iIrXA4p5GsubkhuBIKV", + "DeezerID": 1474534502, + "DeezerURL": "https://www.deezer.com/track/1474534502", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8a6477b222dac17081d9b9b1729a1ca4/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8a6477b222dac17081d9b9b1729a1ca4/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8a6477b222dac17081d9b9b1729a1ca4/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8a6477b222dac17081d9b9b1729a1ca4/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12103651", + "BPM": 0, + "Duration": 178, + "ReleaseDate": "2021-09-01", + "AlbumName": "Until I Found You", + "Explicit": false, + "Rank": 901547, + "Tags": [ + "Singer & Songwriter", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 13129925, + "name": "Stephen Sanchez", + "role": "Main" + } + ], + "AlbumGenres": [ + "Singer & Songwriter" + ] + }, + { + "SongId": 622, + "Name": "Unwritten", + "Artists": "Natasha Bedingfield", + "Color": "EB8D69", + "DarkColor": "C27557", + "SongMetaId": null, + "SpotifyId": "3U5JVgI2x4rDyHGObzJfNf", + "DeezerID": 1240000812, + "DeezerURL": "https://www.deezer.com/track/1240000812", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2e3da2513ce2bae9a66a3d4bb8e76bcc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2e3da2513ce2bae9a66a3d4bb8e76bcc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2e3da2513ce2bae9a66a3d4bb8e76bcc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2e3da2513ce2bae9a66a3d4bb8e76bcc/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL0400707", + "BPM": 0, + "Duration": 254, + "ReleaseDate": "2004-08-30", + "AlbumName": "Unwritten", + "Explicit": false, + "Rank": 923121, + "Tags": [ + "Pop", + "medium-length", + "year:2004" + ], + "Contributors": [ + { + "id": 1489, + "name": "Natasha Bedingfield", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 622, + "Name": "Unwritten", + "Artists": "Natasha Bedingfield", + "Color": "EB8D69", + "DarkColor": "B96E51", + "SongMetaId": null, + "SpotifyId": "3U5JVgI2x4rDyHGObzJfNf", + "DeezerID": 1240000812, + "DeezerURL": "https://www.deezer.com/track/1240000812", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/2e3da2513ce2bae9a66a3d4bb8e76bcc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/2e3da2513ce2bae9a66a3d4bb8e76bcc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/2e3da2513ce2bae9a66a3d4bb8e76bcc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/2e3da2513ce2bae9a66a3d4bb8e76bcc/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBARL0400707", + "BPM": 0, + "Duration": 254, + "ReleaseDate": "2004-08-30", + "AlbumName": "Unwritten", + "Explicit": false, + "Rank": 923121, + "Tags": [ + "Pop", + "medium-length", + "year:2004" + ], + "Contributors": [ + { + "id": 1489, + "name": "Natasha Bedingfield", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 67, + "Name": "USSEEWA", + "Artists": "Ado", + "Color": "D94F86", + "DarkColor": "642648", + "SongMetaId": null, + "SpotifyId": "61KYsWS25JXUO4fGb1138X", + "DeezerID": 1110641342, + "DeezerURL": "https://www.deezer.com/track/1110641342", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c7fdf1d42f885c37caa588f0e61b793e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c7fdf1d42f885c37caa588f0e61b793e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c7fdf1d42f885c37caa588f0e61b793e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c7fdf1d42f885c37caa588f0e61b793e/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPPO02002791", + "BPM": 0, + "Duration": 204, + "ReleaseDate": "2020-10-23", + "AlbumName": "Usseewa", + "Explicit": false, + "Rank": 664001, + "Tags": [ + "J-Pop", + "Música asiática", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 121146382, + "name": "Ado", + "role": "Main" + } + ], + "AlbumGenres": [ + "Música asiática", + "J-Pop" + ] + }, + { + "SongId": 67, + "Name": "USSEEWA", + "Artists": "Ado", + "Color": "FA597F", + "DarkColor": "842D42", + "SongMetaId": null, + "SpotifyId": "61KYsWS25JXUO4fGb1138X", + "DeezerID": 1110641342, + "DeezerURL": "https://www.deezer.com/track/1110641342", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c7fdf1d42f885c37caa588f0e61b793e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c7fdf1d42f885c37caa588f0e61b793e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c7fdf1d42f885c37caa588f0e61b793e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c7fdf1d42f885c37caa588f0e61b793e/1000x1000-000000-80-0-0.jpg", + "ISRC": "JPPO02002791", + "BPM": 0, + "Duration": 204, + "ReleaseDate": "2020-10-23", + "AlbumName": "Usseewa", + "Explicit": false, + "Rank": 664001, + "Tags": [ + "J-Pop", + "Música asiática", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 121146382, + "name": "Ado", + "role": "Main" + } + ], + "AlbumGenres": [ + "Música asiática", + "J-Pop" + ] + }, + { + "SongId": 417, + "Name": "Vegas", + "Artists": "Doja Cat", + "Color": "EE492E", + "DarkColor": "980915", + "SongMetaId": null, + "SpotifyId": "3FWwi61OP7vXEikwqhZCPZ", + "DeezerID": 1738347617, + "DeezerURL": "https://www.deezer.com/track/1738347617", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ad53860ee3ef4e28aa48bbe4132a54e5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ad53860ee3ef4e28aa48bbe4132a54e5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ad53860ee3ef4e28aa48bbe4132a54e5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ad53860ee3ef4e28aa48bbe4132a54e5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC12201441", + "BPM": 0, + "Duration": 182, + "ReleaseDate": "2022-05-06", + "AlbumName": "Vegas (From the Original Motion Picture Soundtrack ELVIS)", + "Explicit": true, + "Rank": 701824, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 5578942, + "name": "Doja Cat", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 417, + "Name": "Vegas", + "Artists": "Doja Cat", + "Color": "EE492E", + "DarkColor": "980915", + "SongMetaId": null, + "SpotifyId": "3FWwi61OP7vXEikwqhZCPZ", + "DeezerID": 1738347617, + "DeezerURL": "https://www.deezer.com/track/1738347617", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ad53860ee3ef4e28aa48bbe4132a54e5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ad53860ee3ef4e28aa48bbe4132a54e5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ad53860ee3ef4e28aa48bbe4132a54e5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ad53860ee3ef4e28aa48bbe4132a54e5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC12201441", + "BPM": 0, + "Duration": 182, + "ReleaseDate": "2022-05-06", + "AlbumName": "Vegas (From the Original Motion Picture Soundtrack ELVIS)", + "Explicit": true, + "Rank": 701824, + "Tags": [ + "Pop", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 5578942, + "name": "Doja Cat", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 163, + "Name": "Viva La Vida", + "Artists": "Coldplay", + "Color": "D0A464", + "DarkColor": "9E6E51", + "SongMetaId": null, + "SpotifyId": "1mea3bSkSGXuIRvnydlB5b", + "DeezerID": 3157972, + "DeezerURL": "https://www.deezer.com/track/3157972", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/eede3cd0dc3a5a87c7a5b1085b022e2d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/eede3cd0dc3a5a87c7a5b1085b022e2d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/eede3cd0dc3a5a87c7a5b1085b022e2d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/eede3cd0dc3a5a87c7a5b1085b022e2d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE0800265", + "BPM": 137.8, + "Duration": 242, + "ReleaseDate": "2008-05-26", + "AlbumName": "Viva La Vida or Death and All His Friends", + "Explicit": false, + "Rank": 951268, + "Tags": [ + "Rock", + "bpm:137.8", + "fast", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 892, + "name": "Coldplay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 163, + "Name": "Viva La Vida", + "Artists": "Coldplay", + "Color": "D0A464", + "DarkColor": "9E6E51", + "SongMetaId": null, + "SpotifyId": "1mea3bSkSGXuIRvnydlB5b", + "DeezerID": 3157972, + "DeezerURL": "https://www.deezer.com/track/3157972", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/eede3cd0dc3a5a87c7a5b1085b022e2d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/eede3cd0dc3a5a87c7a5b1085b022e2d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/eede3cd0dc3a5a87c7a5b1085b022e2d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/eede3cd0dc3a5a87c7a5b1085b022e2d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAYE0800265", + "BPM": 137.8, + "Duration": 242, + "ReleaseDate": "2008-05-26", + "AlbumName": "Viva La Vida or Death and All His Friends", + "Explicit": false, + "Rank": 951268, + "Tags": [ + "Rock", + "bpm:137.8", + "fast", + "medium-length", + "year:2008" + ], + "Contributors": [ + { + "id": 892, + "name": "Coldplay", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 467, + "Name": "Wait A Minute!", + "Artists": "Willow", + "Color": "A0B98C", + "DarkColor": "6A8654", + "SongMetaId": null, + "SpotifyId": "0y60itmpH0aPKsFiGxmtnh", + "DeezerID": 115711060, + "DeezerURL": "https://www.deezer.com/track/115711060", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c529337b454c108b7f16973e632786a1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c529337b454c108b7f16973e632786a1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c529337b454c108b7f16973e632786a1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c529337b454c108b7f16973e632786a1/1000x1000-000000-80-0-0.jpg", + "ISRC": "QMJMT1500801", + "BPM": 101.08, + "Duration": 196, + "ReleaseDate": "2015-01-11", + "AlbumName": "ARDIPITHECUS", + "Explicit": false, + "Rank": 846165, + "Tags": [ + "Alternativo", + "bpm:101.08", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 70942, + "name": "Willow", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 467, + "Name": "Wait A Minute!", + "Artists": "Willow", + "Color": "A0B98C", + "DarkColor": "6A8654", + "SongMetaId": null, + "SpotifyId": "0y60itmpH0aPKsFiGxmtnh", + "DeezerID": 115711060, + "DeezerURL": "https://www.deezer.com/track/115711060", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/c529337b454c108b7f16973e632786a1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/c529337b454c108b7f16973e632786a1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/c529337b454c108b7f16973e632786a1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/c529337b454c108b7f16973e632786a1/1000x1000-000000-80-0-0.jpg", + "ISRC": "QMJMT1500801", + "BPM": 101.08, + "Duration": 196, + "ReleaseDate": "2015-01-11", + "AlbumName": "ARDIPITHECUS", + "Explicit": false, + "Rank": 846165, + "Tags": [ + "Alternativo", + "bpm:101.08", + "medium", + "medium-length", + "year:2015" + ], + "Contributors": [ + { + "id": 70942, + "name": "Willow", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 224, + "Name": "Wake Me Up", + "Artists": "Avicii", + "Color": "89CA0D", + "DarkColor": "3D8503", + "SongMetaId": null, + "SpotifyId": "0nrRP2bk19rLc0orkWPQk2", + "DeezerID": 70266756, + "DeezerURL": "https://www.deezer.com/track/70266756", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ec97306735b46ec334e0ce562290775b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ec97306735b46ec334e0ce562290775b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ec97306735b46ec334e0ce562290775b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ec97306735b46ec334e0ce562290775b/1000x1000-000000-80-0-0.jpg", + "ISRC": "SEUM71301326", + "BPM": 124.2, + "Duration": 249, + "ReleaseDate": "2013-09-16", + "AlbumName": "True", + "Explicit": false, + "Rank": 948642, + "Tags": [ + "Dance", + "bpm:124.2", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 293585, + "name": "Avicii", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 224, + "Name": "Wake Me Up", + "Artists": "Avicii", + "Color": "A2C337", + "DarkColor": "4B5A1B", + "SongMetaId": null, + "SpotifyId": "0nrRP2bk19rLc0orkWPQk2", + "DeezerID": 70266756, + "DeezerURL": "https://www.deezer.com/track/70266756", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ec97306735b46ec334e0ce562290775b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ec97306735b46ec334e0ce562290775b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ec97306735b46ec334e0ce562290775b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ec97306735b46ec334e0ce562290775b/1000x1000-000000-80-0-0.jpg", + "ISRC": "SEUM71301326", + "BPM": 124.2, + "Duration": 249, + "ReleaseDate": "2013-09-16", + "AlbumName": "True", + "Explicit": false, + "Rank": 948642, + "Tags": [ + "Dance", + "bpm:124.2", + "fast", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 293585, + "name": "Avicii", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance" + ] + }, + { + "SongId": 390, + "Name": "Waking Up Dreaming", + "Artists": "Shania Twain", + "Color": "E74594", + "DarkColor": "671E42", + "SongMetaId": null, + "SpotifyId": "5cc1GqkadgfMlLszRXqdhM", + "DeezerID": 1915385857, + "DeezerURL": "https://www.deezer.com/track/1915385857", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6bb91e3c49cdbb86591918b24c19694a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6bb91e3c49cdbb86591918b24c19694a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6bb91e3c49cdbb86591918b24c19694a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6bb91e3c49cdbb86591918b24c19694a/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM72216291", + "BPM": 0, + "Duration": 199, + "ReleaseDate": "2022-09-23", + "AlbumName": "Waking Up Dreaming", + "Explicit": false, + "Rank": 348075, + "Tags": [ + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 3134, + "name": "Shania Twain", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 697, + "Name": "Walk", + "Artists": "Pantera", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "7fcfNW0XxTWlwVlftzfDOR", + "DeezerID": 662879, + "DeezerURL": "https://www.deezer.com/track/662879", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ba6c7c231c21930465a4f51a41e3d5a5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ba6c7c231c21930465a4f51a41e3d5a5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ba6c7c231c21930465a4f51a41e3d5a5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ba6c7c231c21930465a4f51a41e3d5a5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USEE10170088", + "BPM": 113.3, + "Duration": 315, + "ReleaseDate": "1992-02-21", + "AlbumName": "Vulgar Display of Power", + "Explicit": true, + "Rank": 726486, + "Tags": [ + "Rock", + "bpm:113.3", + "long", + "medium", + "year:1992" + ], + "Contributors": [ + { + "id": 2969, + "name": "Pantera", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 697, + "Name": "Walk", + "Artists": "Pantera", + "Color": "A10000", + "DarkColor": "780000", + "SongMetaId": null, + "SpotifyId": "7fcfNW0XxTWlwVlftzfDOR", + "DeezerID": 662879, + "DeezerURL": "https://www.deezer.com/track/662879", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ba6c7c231c21930465a4f51a41e3d5a5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ba6c7c231c21930465a4f51a41e3d5a5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ba6c7c231c21930465a4f51a41e3d5a5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ba6c7c231c21930465a4f51a41e3d5a5/1000x1000-000000-80-0-0.jpg", + "ISRC": "USEE10170088", + "BPM": 113.3, + "Duration": 315, + "ReleaseDate": "1992-02-21", + "AlbumName": "Vulgar Display of Power", + "Explicit": true, + "Rank": 726486, + "Tags": [ + "Rock", + "bpm:113.3", + "long", + "medium", + "year:1992" + ], + "Contributors": [ + { + "id": 2969, + "name": "Pantera", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 75, + "Name": "Walk Idiot Walk", + "Artists": "The Hives", + "Color": "364E68", + "DarkColor": "12283A", + "SongMetaId": null, + "SpotifyId": "5Pdd4QCr0rREXM03zBM2Eh", + "DeezerID": 1168966, + "DeezerURL": "https://www.deezer.com/track/1168966", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f70e8e4073d54571da7d2e322bfc599e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f70e8e4073d54571da7d2e322bfc599e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f70e8e4073d54571da7d2e322bfc599e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f70e8e4073d54571da7d2e322bfc599e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAKW0400379", + "BPM": 146.1, + "Duration": 210, + "ReleaseDate": "2004-01-01", + "AlbumName": "Tyrannosaurus Hives", + "Explicit": false, + "Rank": 530315, + "Tags": [ + "Rock", + "bpm:146.1", + "fast", + "medium-length", + "year:2004" + ], + "Contributors": [ + { + "id": 621, + "name": "The Hives", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 576, + "Name": "Walk This Way ", + "Artists": "Aerosmith, Run-D.M.C.", + "Color": "9C56DA", + "DarkColor": "5B31A1", + "SongMetaId": null, + "SpotifyId": "6qUEOWqOzu1rLPUPQ1ECpx", + "DeezerID": 994702, + "DeezerURL": "https://www.deezer.com/track/994702", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR19900334", + "BPM": 105.47, + "Duration": 311, + "ReleaseDate": "2002-01-01", + "AlbumName": "RUN DMC \"High Profile: The Original Rhymes\"", + "Explicit": false, + "Rank": 718349, + "Tags": [ + "Rap/Hip Hop", + "bpm:105.47", + "long", + "medium", + "year:2002" + ], + "Contributors": [ + { + "id": 79236, + "name": "Run-DMC", + "role": "Main" + }, + { + "id": 1005, + "name": "Aerosmith", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 576, + "Name": "Walk This Way ", + "Artists": "Aerosmith, Run-D.M.C.", + "Color": "9C56DA", + "DarkColor": "5B31A1", + "SongMetaId": null, + "SpotifyId": "6qUEOWqOzu1rLPUPQ1ECpx", + "DeezerID": 994702, + "DeezerURL": "https://www.deezer.com/track/994702", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6d818c116450680a05bf66d5cc146e6f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAR19900334", + "BPM": 105.47, + "Duration": 311, + "ReleaseDate": "2002-01-01", + "AlbumName": "RUN DMC \"High Profile: The Original Rhymes\"", + "Explicit": false, + "Rank": 718349, + "Tags": [ + "Rap/Hip Hop", + "bpm:105.47", + "long", + "medium", + "year:2002" + ], + "Contributors": [ + { + "id": 79236, + "name": "Run-DMC", + "role": "Main" + }, + { + "id": 1005, + "name": "Aerosmith", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 471, + "Name": "Walking on a Dream", + "Artists": "Empire of the Sun", + "Color": "00B0E9", + "DarkColor": "0059BB", + "SongMetaId": null, + "SpotifyId": "3HfhB8sYqLlVmpBPb7cc2x", + "DeezerID": 4286051, + "DeezerURL": "https://www.deezer.com/track/4286051", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f8f1062a830d11fd831c1af7fbea4231/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f8f1062a830d11fd831c1af7fbea4231/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f8f1062a830d11fd831c1af7fbea4231/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f8f1062a830d11fd831c1af7fbea4231/1000x1000-000000-80-0-0.jpg", + "ISRC": "AUEI10800039", + "BPM": 126.8, + "Duration": 195, + "ReleaseDate": "2009-11-20", + "AlbumName": "Walking On A Dream (Special Edition)", + "Explicit": false, + "Rank": 932271, + "Tags": [ + "Alternativo", + "bpm:126.8", + "fast", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 185473, + "name": "Empire of the Sun", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 471, + "Name": "Walking on a Dream", + "Artists": "Empire of the Sun", + "Color": "00B0E9", + "DarkColor": "0059BB", + "SongMetaId": null, + "SpotifyId": "3HfhB8sYqLlVmpBPb7cc2x", + "DeezerID": 4286051, + "DeezerURL": "https://www.deezer.com/track/4286051", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f8f1062a830d11fd831c1af7fbea4231/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f8f1062a830d11fd831c1af7fbea4231/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f8f1062a830d11fd831c1af7fbea4231/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f8f1062a830d11fd831c1af7fbea4231/1000x1000-000000-80-0-0.jpg", + "ISRC": "AUEI10800039", + "BPM": 126.8, + "Duration": 195, + "ReleaseDate": "2009-11-20", + "AlbumName": "Walking On A Dream (Special Edition)", + "Explicit": false, + "Rank": 932271, + "Tags": [ + "Alternativo", + "bpm:126.8", + "fast", + "medium-length", + "year:2009" + ], + "Contributors": [ + { + "id": 185473, + "name": "Empire of the Sun", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 532, + "Name": "Walking on Sunshine (2010 Remaster)", + "Artists": "Katrina and The Waves", + "Color": "DEB242", + "DarkColor": "AF8C32", + "SongMetaId": null, + "SpotifyId": "2vzyiy6su0DtSWh9nJs4AG", + "DeezerID": 355295161, + "DeezerURL": "https://www.deezer.com/track/355295161", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f88f8487fee5d6eb8c8b9cd6311d9bf7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f88f8487fee5d6eb8c8b9cd6311d9bf7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f88f8487fee5d6eb8c8b9cd6311d9bf7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f88f8487fee5d6eb8c8b9cd6311d9bf7/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBDNM1010053", + "BPM": 110.25, + "Duration": 220, + "ReleaseDate": "2010-06-21", + "AlbumName": "The Best of Katrina and the Waves", + "Explicit": false, + "Rank": 280880, + "Tags": [ + "Pop", + "bpm:110.25", + "medium", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 3256, + "name": "Katrina and the Waves", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 532, + "Name": "Walking on Sunshine (2010 Remaster)", + "Artists": "Katrina and The Waves", + "Color": "DEB343", + "DarkColor": "DCA700", + "SongMetaId": null, + "SpotifyId": "2vzyiy6su0DtSWh9nJs4AG", + "DeezerID": 355295161, + "DeezerURL": "https://www.deezer.com/track/355295161", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f88f8487fee5d6eb8c8b9cd6311d9bf7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f88f8487fee5d6eb8c8b9cd6311d9bf7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f88f8487fee5d6eb8c8b9cd6311d9bf7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f88f8487fee5d6eb8c8b9cd6311d9bf7/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBDNM1010053", + "BPM": 110.25, + "Duration": 220, + "ReleaseDate": "2010-06-21", + "AlbumName": "The Best of Katrina and the Waves", + "Explicit": false, + "Rank": 280880, + "Tags": [ + "Pop", + "bpm:110.25", + "medium", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 3256, + "name": "Katrina and the Waves", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 529, + "Name": "War Machine", + "Artists": "Dryskill, Max Brhon", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "6SRBp5BQJJkuzMw9aSpb8t", + "DeezerID": 1914153157, + "DeezerURL": "https://www.deezer.com/track/1914153157", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9fbd75db991e9e160eb5a7adeda12ea7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9fbd75db991e9e160eb5a7adeda12ea7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9fbd75db991e9e160eb5a7adeda12ea7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9fbd75db991e9e160eb5a7adeda12ea7/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD2210318", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2022-10-25", + "AlbumName": "War Machine", + "Explicit": false, + "Rank": 256198, + "Tags": [ + "Electro", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 5314010, + "name": "DrySkill", + "role": "Main" + }, + { + "id": 57527262, + "name": "Max Brhon", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 529, + "Name": "War Machine", + "Artists": "Dryskill, Max Brhon", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "6SRBp5BQJJkuzMw9aSpb8t", + "DeezerID": 1914153157, + "DeezerURL": "https://www.deezer.com/track/1914153157", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9fbd75db991e9e160eb5a7adeda12ea7/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9fbd75db991e9e160eb5a7adeda12ea7/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9fbd75db991e9e160eb5a7adeda12ea7/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9fbd75db991e9e160eb5a7adeda12ea7/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD2210318", + "BPM": 0, + "Duration": 197, + "ReleaseDate": "2022-10-25", + "AlbumName": "War Machine", + "Explicit": false, + "Rank": 256198, + "Tags": [ + "Electro", + "medium-length", + "year:2022" + ], + "Contributors": [ + { + "id": 5314010, + "name": "DrySkill", + "role": "Main" + }, + { + "id": 57527262, + "name": "Max Brhon", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 200, + "Name": "We Are Family", + "Artists": "Sister Sledge", + "Color": "E86730", + "DarkColor": "911A1A", + "SongMetaId": null, + "SpotifyId": "3MXjVpTOdRcAE5yGUv6qXi", + "DeezerID": 846327, + "DeezerURL": "https://www.deezer.com/track/846327", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b384580ff1e772c40db28546a9811d32/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b384580ff1e772c40db28546a9811d32/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b384580ff1e772c40db28546a9811d32/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b384580ff1e772c40db28546a9811d32/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT20102166", + "BPM": 119.5, + "Duration": 216, + "ReleaseDate": "1992-08-11", + "AlbumName": "The Best of Sister Sledge (1973-1985)", + "Explicit": false, + "Rank": 727704, + "Tags": [ + "Dance", + "Disco", + "bpm:119.5", + "medium", + "medium-length", + "year:1992" + ], + "Contributors": [ + { + "id": 2397, + "name": "Sister Sledge", + "role": "Main" + } + ], + "AlbumGenres": [ + "Dance", + "Disco" + ] + }, + { + "SongId": 475, + "Name": "We Different", + "Artists": "KULLAH, Jessy Covets", + "Color": "7FB6C0", + "DarkColor": "231443", + "SongMetaId": null, + "SpotifyId": "4ixrFUBxSAb2TMUFzYCZeV", + "DeezerID": 980184642, + "DeezerURL": "https://www.deezer.com/track/980184642", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b25bd8eca49c00658698480d5a0ecc94/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b25bd8eca49c00658698480d5a0ecc94/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b25bd8eca49c00658698480d5a0ecc94/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b25bd8eca49c00658698480d5a0ecc94/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBHGV2000048", + "BPM": 0, + "Duration": 132, + "ReleaseDate": "2020-06-26", + "AlbumName": "We Different (feat. Jessy Covets)", + "Explicit": false, + "Rank": 25329, + "Tags": [ + "Dance", + "Pop", + "short", + "year:2020" + ], + "Contributors": [ + { + "id": 91515192, + "name": "Kullah", + "role": "Main" + }, + { + "id": 58612732, + "name": "Jessy Covets", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 475, + "Name": "We Different", + "Artists": "KULLAH, Jessy Covets", + "Color": "7FB6C0", + "DarkColor": "231443", + "SongMetaId": null, + "SpotifyId": "4ixrFUBxSAb2TMUFzYCZeV", + "DeezerID": 980184642, + "DeezerURL": "https://www.deezer.com/track/980184642", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b25bd8eca49c00658698480d5a0ecc94/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b25bd8eca49c00658698480d5a0ecc94/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b25bd8eca49c00658698480d5a0ecc94/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b25bd8eca49c00658698480d5a0ecc94/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBHGV2000048", + "BPM": 0, + "Duration": 132, + "ReleaseDate": "2020-06-26", + "AlbumName": "We Different (feat. Jessy Covets)", + "Explicit": false, + "Rank": 25329, + "Tags": [ + "Dance", + "Pop", + "short", + "year:2020" + ], + "Contributors": [ + { + "id": 91515192, + "name": "Kullah", + "role": "Main" + }, + { + "id": 58612732, + "name": "Jessy Covets", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Dance", + "Pop" + ] + }, + { + "SongId": 277, + "Name": "We Live Forever", + "Artists": "The Prodigy", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "4Xk1z76vpyqwI2TT3KdKA9", + "DeezerID": 576775542, + "DeezerURL": "https://www.deezer.com/track/576775542", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7b38d83a05840abfb64c17e4ecd7c7ac/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7b38d83a05840abfb64c17e4ecd7c7ac/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7b38d83a05840abfb64c17e4ecd7c7ac/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7b38d83a05840abfb64c17e4ecd7c7ac/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB5KW1802032", + "BPM": 132.94, + "Duration": 223, + "ReleaseDate": "2018-11-02", + "AlbumName": "No Tourists", + "Explicit": false, + "Rank": 361628, + "Tags": [ + "Electro", + "bpm:132.94", + "fast", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 85, + "name": "The Prodigy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 127, + "Name": "We Won't Cooperate", + "Artists": "Brawl Stars, Bad Randoms", + "Color": "FA0089", + "DarkColor": "AD005E", + "SongMetaId": null, + "SpotifyId": "4ePxSN3eQiSLnbgxyrVsCk", + "DeezerID": 1497722042, + "DeezerURL": "https://www.deezer.com/track/1497722042", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/352f560165e0bee7368b235769d66e38/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/352f560165e0bee7368b235769d66e38/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/352f560165e0bee7368b235769d66e38/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/352f560165e0bee7368b235769d66e38/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZK6G2167337", + "BPM": 0, + "Duration": 160, + "ReleaseDate": "2021-08-17", + "AlbumName": "We Won't Cooperate", + "Explicit": false, + "Rank": 417268, + "Tags": [ + "Alternativo", + "Indie Rock", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 142401022, + "name": "Brawl Stars", + "role": "Main" + }, + { + "id": 142401032, + "name": "Bad Randoms", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Indie Rock" + ] + }, + { + "SongId": 432, + "Name": "What A Man Gotta Do", + "Artists": "Jonas Brothers", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": null, + "SpotifyId": "4wNIkl5XGiAACjFBlDWuSd", + "DeezerID": 854470322, + "DeezerURL": "https://www.deezer.com/track/854470322", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b6115db15c5705b4aa071e5326f31733/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b6115db15c5705b4aa071e5326f31733/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b6115db15c5705b4aa071e5326f31733/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b6115db15c5705b4aa071e5326f31733/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG11904422", + "BPM": 112.96, + "Duration": 180, + "ReleaseDate": "2020-01-17", + "AlbumName": "What A Man Gotta Do", + "Explicit": false, + "Rank": 673604, + "Tags": [ + "Pop", + "bpm:112.96", + "medium", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 15888, + "name": "Jonas Brothers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 432, + "Name": "What A Man Gotta Do", + "Artists": "Jonas Brothers", + "Color": "7F2723", + "DarkColor": "4D2321", + "SongMetaId": null, + "SpotifyId": "4wNIkl5XGiAACjFBlDWuSd", + "DeezerID": 854470322, + "DeezerURL": "https://www.deezer.com/track/854470322", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b6115db15c5705b4aa071e5326f31733/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b6115db15c5705b4aa071e5326f31733/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b6115db15c5705b4aa071e5326f31733/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b6115db15c5705b4aa071e5326f31733/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG11904422", + "BPM": 112.96, + "Duration": 180, + "ReleaseDate": "2020-01-17", + "AlbumName": "What A Man Gotta Do", + "Explicit": false, + "Rank": 673604, + "Tags": [ + "Pop", + "bpm:112.96", + "medium", + "medium-length", + "year:2020" + ], + "Contributors": [ + { + "id": 15888, + "name": "Jonas Brothers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 394, + "Name": "What Do You Mean?", + "Artists": "Justin Bieber", + "Color": "A7E633", + "DarkColor": "368B2F", + "SongMetaId": null, + "SpotifyId": "4B0JvthVoAAuygILe3n4Bs" + }, + { + "SongId": 503, + "Name": "What I Got", + "Artists": "Sublime", + "Color": "398694", + "DarkColor": "123743", + "SongMetaId": null, + "SpotifyId": "3B4q6KbHbGV51HO3GznBFF", + "DeezerID": 127245037, + "DeezerURL": "https://www.deezer.com/track/127245037", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e59ad92844acb32752d14e0f16bff6b2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e59ad92844acb32752d14e0f16bff6b2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e59ad92844acb32752d14e0f16bff6b2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e59ad92844acb32752d14e0f16bff6b2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USGA19649251", + "BPM": 95.7, + "Duration": 171, + "ReleaseDate": "2016-06-24", + "AlbumName": "Sublime", + "Explicit": true, + "Rank": 630908, + "Tags": [ + "Rock", + "bpm:95.7", + "medium", + "short", + "year:2016" + ], + "Contributors": [ + { + "id": 410, + "name": "Sublime", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 503, + "Name": "What I Got", + "Artists": "Sublime", + "Color": "398694", + "DarkColor": "123743", + "SongMetaId": null, + "SpotifyId": "3B4q6KbHbGV51HO3GznBFF", + "DeezerID": 127245037, + "DeezerURL": "https://www.deezer.com/track/127245037", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e59ad92844acb32752d14e0f16bff6b2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e59ad92844acb32752d14e0f16bff6b2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e59ad92844acb32752d14e0f16bff6b2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e59ad92844acb32752d14e0f16bff6b2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USGA19649251", + "BPM": 95.7, + "Duration": 171, + "ReleaseDate": "2016-06-24", + "AlbumName": "Sublime", + "Explicit": true, + "Rank": 630908, + "Tags": [ + "Rock", + "bpm:95.7", + "medium", + "short", + "year:2016" + ], + "Contributors": [ + { + "id": 410, + "name": "Sublime", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 93, + "Name": "What Would You Do?", + "Artists": "City High", + "Color": "99392A", + "DarkColor": "432423", + "SongMetaId": null, + "SpotifyId": "1tJkic0TURTCXw3rBhYgWu" + }, + { + "SongId": 93, + "Name": "What Would You Do?", + "Artists": "City High", + "Color": "99392A", + "DarkColor": "432423", + "SongMetaId": null, + "SpotifyId": "1tJkic0TURTCXw3rBhYgWu" + }, + { + "SongId": 514, + "Name": "What You Gonna Do", + "Artists": "MADZI", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "4vmgwpTfj1TsOwCNKnl6Ro", + "DeezerID": 2079850317, + "DeezerURL": "https://www.deezer.com/track/2079850317", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e13cb275a7f9a10dd3aa0feffcc892f5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e13cb275a7f9a10dd3aa0feffcc892f5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e13cb275a7f9a10dd3aa0feffcc892f5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e13cb275a7f9a10dd3aa0feffcc892f5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD2210440", + "BPM": 0, + "Duration": 185, + "ReleaseDate": "2023-02-01", + "AlbumName": "What You Gonna Do", + "Explicit": false, + "Rank": 75183, + "Tags": [ + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 140955992, + "name": "MADZI", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 514, + "Name": "What You Gonna Do", + "Artists": "MADZI", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "4vmgwpTfj1TsOwCNKnl6Ro", + "DeezerID": 2079850317, + "DeezerURL": "https://www.deezer.com/track/2079850317", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e13cb275a7f9a10dd3aa0feffcc892f5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e13cb275a7f9a10dd3aa0feffcc892f5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e13cb275a7f9a10dd3aa0feffcc892f5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e13cb275a7f9a10dd3aa0feffcc892f5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GB2LD2210440", + "BPM": 0, + "Duration": 185, + "ReleaseDate": "2023-02-01", + "AlbumName": "What You Gonna Do", + "Explicit": false, + "Rank": 75183, + "Tags": [ + "Electro", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 140955992, + "name": "MADZI", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 490, + "Name": "What You Know", + "Artists": "Two Door Cinema Club", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "3GBApU0NuzH4hKZq4NOSdA", + "DeezerID": 3025869961, + "DeezerURL": "https://www.deezer.com/track/3025869961", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7c5ee4c282de7cd0dcc197225c357fc3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7c5ee4c282de7cd0dcc197225c357fc3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7c5ee4c282de7cd0dcc197225c357fc3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7c5ee4c282de7cd0dcc197225c357fc3/1000x1000-000000-80-0-0.jpg", + "ISRC": "FRU700900116", + "BPM": 0, + "Duration": 191, + "ReleaseDate": "2023-07-20", + "AlbumName": "What You Know (Live & Smiling from Finsbury Park)", + "Explicit": false, + "Rank": 607942, + "Tags": [ + "Alternativo", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 173612, + "name": "Two Door Cinema Club", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 490, + "Name": "What You Know", + "Artists": "Two Door Cinema Club", + "Color": "2E3D62", + "DarkColor": "1C1B36", + "SongMetaId": null, + "SpotifyId": "3GBApU0NuzH4hKZq4NOSdA", + "DeezerID": 3025869961, + "DeezerURL": "https://www.deezer.com/track/3025869961", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7c5ee4c282de7cd0dcc197225c357fc3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7c5ee4c282de7cd0dcc197225c357fc3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7c5ee4c282de7cd0dcc197225c357fc3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7c5ee4c282de7cd0dcc197225c357fc3/1000x1000-000000-80-0-0.jpg", + "ISRC": "FRU700900116", + "BPM": 0, + "Duration": 191, + "ReleaseDate": "2023-07-20", + "AlbumName": "What You Know (Live & Smiling from Finsbury Park)", + "Explicit": false, + "Rank": 607942, + "Tags": [ + "Alternativo", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 173612, + "name": "Two Door Cinema Club", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 280, + "Name": "What's Golden", + "Artists": "Jurassic 5", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": null, + "SpotifyId": "0SADXPubFbFXu7ZR3M86io", + "DeezerID": 2157904627, + "DeezerURL": "https://www.deezer.com/track/2157904627", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7a3aab146bf121032d56bae04f0a16b2/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7a3aab146bf121032d56bae04f0a16b2/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7a3aab146bf121032d56bae04f0a16b2/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7a3aab146bf121032d56bae04f0a16b2/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR10211278", + "BPM": 0, + "Duration": 188, + "ReleaseDate": "2002-01-01", + "AlbumName": "Power In Numbers", + "Explicit": false, + "Rank": 496055, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2002" + ], + "Contributors": [ + { + "id": 2952, + "name": "Jurassic 5", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 668, + "Name": "What's Love Got to Do with It", + "Artists": "Tina Turner", + "Color": "C49454", + "DarkColor": "9C6A3B", + "SongMetaId": null, + "SpotifyId": "4kOfxxnW1ukZdsNbCKY9br", + "DeezerID": 3120266, + "DeezerURL": "https://www.deezer.com/track/3120266", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7b5022390f35e035d14edd5e0d6cfb92/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7b5022390f35e035d14edd5e0d6cfb92/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7b5022390f35e035d14edd5e0d6cfb92/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7b5022390f35e035d14edd5e0d6cfb92/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA28400002", + "BPM": 97.7, + "Duration": 226, + "ReleaseDate": "2005-09-30", + "AlbumName": "All the Best - the Hits", + "Explicit": false, + "Rank": 757783, + "Tags": [ + "R&B", + "bpm:97.7", + "medium", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 1454, + "name": "Tina Turner", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 668, + "Name": "What's Love Got to Do with It", + "Artists": "Tina Turner", + "Color": "C49454", + "DarkColor": "9C6A3B", + "SongMetaId": null, + "SpotifyId": "4kOfxxnW1ukZdsNbCKY9br", + "DeezerID": 3120266, + "DeezerURL": "https://www.deezer.com/track/3120266", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7b5022390f35e035d14edd5e0d6cfb92/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7b5022390f35e035d14edd5e0d6cfb92/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7b5022390f35e035d14edd5e0d6cfb92/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7b5022390f35e035d14edd5e0d6cfb92/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCA28400002", + "BPM": 97.7, + "Duration": 226, + "ReleaseDate": "2005-09-30", + "AlbumName": "All the Best - the Hits", + "Explicit": false, + "Rank": 757783, + "Tags": [ + "R&B", + "bpm:97.7", + "medium", + "medium-length", + "year:2005" + ], + "Contributors": [ + { + "id": 1454, + "name": "Tina Turner", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 675, + "Name": "When I Break My Back", + "Artists": "Joy Killed The Duke", + "Color": "7FB6C0", + "DarkColor": "231443", + "SongMetaId": null, + "SpotifyId": "4Fg044kPgD1WHWLf9crCu5", + "DeezerID": 2740049081, + "DeezerURL": "https://www.deezer.com/track/2740049081", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/59111229dd648be90314a56ff0e95f0a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/59111229dd648be90314a56ff0e95f0a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/59111229dd648be90314a56ff0e95f0a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/59111229dd648be90314a56ff0e95f0a/1000x1000-000000-80-0-0.jpg", + "ISRC": "NL3DF2300001", + "BPM": 0, + "Duration": 176, + "ReleaseDate": "2024-04-06", + "AlbumName": "When I Break My Back", + "Explicit": false, + "Rank": 38434, + "Tags": [ + "Rock", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 85439452, + "name": "Joy Killed the Duke", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 675, + "Name": "When I Break My Back", + "Artists": "Joy Killed The Duke", + "Color": "7FB6C0", + "DarkColor": "231443", + "SongMetaId": null, + "SpotifyId": "4Fg044kPgD1WHWLf9crCu5", + "DeezerID": 2740049081, + "DeezerURL": "https://www.deezer.com/track/2740049081", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/59111229dd648be90314a56ff0e95f0a/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/59111229dd648be90314a56ff0e95f0a/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/59111229dd648be90314a56ff0e95f0a/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/59111229dd648be90314a56ff0e95f0a/1000x1000-000000-80-0-0.jpg", + "ISRC": "NL3DF2300001", + "BPM": 0, + "Duration": 176, + "ReleaseDate": "2024-04-06", + "AlbumName": "When I Break My Back", + "Explicit": false, + "Rank": 38434, + "Tags": [ + "Rock", + "short", + "year:2024" + ], + "Contributors": [ + { + "id": 85439452, + "name": "Joy Killed the Duke", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 555, + "Name": "When You Were Young", + "Artists": "The Killers", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "70wYA8oYHoMzhRRkARoMhU", + "DeezerID": 1109953, + "DeezerURL": "https://www.deezer.com/track/1109953", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/daaf443d20af3ec952c2504a02032e49/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/daaf443d20af3ec952c2504a02032e49/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/daaf443d20af3ec952c2504a02032e49/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/daaf443d20af3ec952c2504a02032e49/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70605164", + "BPM": 0, + "Duration": 218, + "ReleaseDate": "2006-10-12", + "AlbumName": "Sam's Town", + "Explicit": false, + "Rank": 719688, + "Tags": [ + "Pop", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 555, + "Name": "When You Were Young", + "Artists": "The Killers", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "70wYA8oYHoMzhRRkARoMhU", + "DeezerID": 1109953, + "DeezerURL": "https://www.deezer.com/track/1109953", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/daaf443d20af3ec952c2504a02032e49/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/daaf443d20af3ec952c2504a02032e49/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/daaf443d20af3ec952c2504a02032e49/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/daaf443d20af3ec952c2504a02032e49/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM70605164", + "BPM": 0, + "Duration": 218, + "ReleaseDate": "2006-10-12", + "AlbumName": "Sam's Town", + "Explicit": false, + "Rank": 719688, + "Tags": [ + "Pop", + "medium-length", + "year:2006" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 332, + "Name": "Whenever, Wherever", + "Artists": "Shakira", + "Color": "D5B177", + "DarkColor": "A17D52", + "SongMetaId": null, + "SpotifyId": "2lnzGkdtDj5mtlcOW2yRtG", + "DeezerID": 15211178, + "DeezerURL": "https://www.deezer.com/track/15211178", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3c50690401eed099df05e72f5080af1b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3c50690401eed099df05e72f5080af1b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3c50690401eed099df05e72f5080af1b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3c50690401eed099df05e72f5080af1b/1000x1000-000000-80-0-0.jpg", + "ISRC": "NLB630100324", + "BPM": 107.7, + "Duration": 196, + "ReleaseDate": "2001-11-12", + "AlbumName": "Laundry Service", + "Explicit": false, + "Rank": 885619, + "Tags": [ + "bpm:107.7", + "medium", + "medium-length", + "year:2001" + ], + "Contributors": [ + { + "id": 160, + "name": "Shakira", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 154, + "Name": "Where's your head at", + "Artists": "Basement Jaxx", + "Color": "D5A983", + "DarkColor": "C76051", + "SongMetaId": null, + "SpotifyId": "3cJh89D0za2SW705fNBo3b", + "DeezerID": 945754, + "DeezerURL": "https://www.deezer.com/track/945754", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7d0d77a69e653093eab73ca3261372b9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7d0d77a69e653093eab73ca3261372b9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7d0d77a69e653093eab73ca3261372b9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7d0d77a69e653093eab73ca3261372b9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBKS0100407", + "BPM": 0, + "Duration": 239, + "ReleaseDate": "2001-11-24", + "AlbumName": "Where's Your Head At", + "Explicit": false, + "Rank": 489701, + "Tags": [ + "Electro", + "medium-length", + "year:2001" + ], + "Contributors": [ + { + "id": 795, + "name": "Basement Jaxx", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 154, + "Name": "Where's your head at", + "Artists": "Basement Jaxx", + "Color": "EB8D69", + "DarkColor": "B96E51", + "SongMetaId": null, + "SpotifyId": "3cJh89D0za2SW705fNBo3b", + "DeezerID": 945754, + "DeezerURL": "https://www.deezer.com/track/945754", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7d0d77a69e653093eab73ca3261372b9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7d0d77a69e653093eab73ca3261372b9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7d0d77a69e653093eab73ca3261372b9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7d0d77a69e653093eab73ca3261372b9/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBKS0100407", + "BPM": 0, + "Duration": 239, + "ReleaseDate": "2001-11-24", + "AlbumName": "Where's Your Head At", + "Explicit": false, + "Rank": 489701, + "Tags": [ + "Electro", + "medium-length", + "year:2001" + ], + "Contributors": [ + { + "id": 795, + "name": "Basement Jaxx", + "role": "Main" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 435, + "Name": "Whiskey Glasses", + "Artists": "Morgan Wallen", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "6foY66mWZN0pSRjZ408c00", + "DeezerID": 2851520632, + "DeezerURL": "https://www.deezer.com/track/2851520632", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7870978e898194b06db90ac30f1a7d4d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7870978e898194b06db90ac30f1a7d4d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7870978e898194b06db90ac30f1a7d4d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7870978e898194b06db90ac30f1a7d4d/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZ22S1500059", + "BPM": 0, + "Duration": 234, + "ReleaseDate": "2018-04-27", + "AlbumName": "If I Know Me", + "Explicit": false, + "Rank": 590450, + "Tags": [ + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 7188840, + "name": "Morgan Wallen", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 435, + "Name": "Whiskey Glasses", + "Artists": "Morgan Wallen", + "Color": "5E80B0", + "DarkColor": "3C5480", + "SongMetaId": null, + "SpotifyId": "6foY66mWZN0pSRjZ408c00", + "DeezerID": 2851520632, + "DeezerURL": "https://www.deezer.com/track/2851520632", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7870978e898194b06db90ac30f1a7d4d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7870978e898194b06db90ac30f1a7d4d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7870978e898194b06db90ac30f1a7d4d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7870978e898194b06db90ac30f1a7d4d/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZ22S1500059", + "BPM": 0, + "Duration": 234, + "ReleaseDate": "2018-04-27", + "AlbumName": "If I Know Me", + "Explicit": false, + "Rank": 590450, + "Tags": [ + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 7188840, + "name": "Morgan Wallen", + "role": "Main" + } + ], + "AlbumGenres": [] + }, + { + "SongId": 272, + "Name": "White Iverson", + "Artists": "Post Malone", + "Color": "E86730", + "DarkColor": "BE3727", + "SongMetaId": null, + "SpotifyId": "6eT7xZZlB2mwyzJ2sUKG6w", + "DeezerID": 137726975, + "DeezerURL": "https://www.deezer.com/track/137726975", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/efd66ec02dc81074e5b3e7825db4c380/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/efd66ec02dc81074e5b3e7825db4c380/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/efd66ec02dc81074e5b3e7825db4c380/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/efd66ec02dc81074e5b3e7825db4c380/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71511528", + "BPM": 0, + "Duration": 254, + "ReleaseDate": "2016-12-09", + "AlbumName": "Stoney (Deluxe)", + "Explicit": true, + "Rank": 696874, + "Tags": [ + "Rap/Hip Hop", + "medium-length", + "year:2016" + ], + "Contributors": [ + { + "id": 7543848, + "name": "Post Malone", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 194, + "Name": "White Noise", + "Artists": "Disclosure, AlunaGeorge", + "Color": "DE9F4C", + "DarkColor": "C48145", + "SongMetaId": null, + "SpotifyId": "4PPiV0xlKze0D4G93UWLji", + "DeezerID": 1278319312, + "DeezerURL": "https://www.deezer.com/track/1278319312", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/ce30e2352c8e0b6cc4b338becda7e249/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/ce30e2352c8e0b6cc4b338becda7e249/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/ce30e2352c8e0b6cc4b338becda7e249/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/ce30e2352c8e0b6cc4b338becda7e249/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71300682", + "BPM": 0, + "Duration": 340, + "ReleaseDate": "2021-03-19", + "AlbumName": "Deep House 2021", + "Explicit": false, + "Rank": 381928, + "Tags": [ + "Electro", + "long", + "year:2021" + ], + "Contributors": [ + { + "id": 409796, + "name": "Disclosure", + "role": "Main" + }, + { + "id": 1209072, + "name": "AlunaGeorge", + "role": "Featured" + } + ], + "AlbumGenres": [ + "Electro" + ] + }, + { + "SongId": 94, + "Name": "Who Let The Dogs Out?", + "Artists": "Baha Men", + "Color": "DF960C", + "DarkColor": "BE5F00", + "SongMetaId": null, + "SpotifyId": "1H5tvpoApNDxvxDexoaAUo" + }, + { + "SongId": 682, + "Name": "Why Don't You Get A Job", + "Artists": "The Offspring", + "Color": "4F4EFA", + "DarkColor": "2115CD", + "SongMetaId": null, + "SpotifyId": "0sNKiz82ATCvT3f3XVVUUj", + "DeezerID": 137234014, + "DeezerURL": "https://www.deezer.com/track/137234014", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19804369", + "BPM": 107.95, + "Duration": 172, + "ReleaseDate": "1998-11-16", + "AlbumName": "Americana", + "Explicit": true, + "Rank": 828132, + "Tags": [ + "Rock", + "bpm:107.95", + "medium", + "short", + "year:1998" + ], + "Contributors": [ + { + "id": 882, + "name": "The Offspring", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 682, + "Name": "Why Don't You Get A Job", + "Artists": "The Offspring", + "Color": "4F4EFA", + "DarkColor": "2115CD", + "SongMetaId": null, + "SpotifyId": "0sNKiz82ATCvT3f3XVVUUj", + "DeezerID": 137234014, + "DeezerURL": "https://www.deezer.com/track/137234014", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/f7d8a61b8c4b118e642acfb3db0a45a1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM19804369", + "BPM": 107.95, + "Duration": 172, + "ReleaseDate": "1998-11-16", + "AlbumName": "Americana", + "Explicit": true, + "Rank": 828132, + "Tags": [ + "Rock", + "bpm:107.95", + "medium", + "short", + "year:1998" + ], + "Contributors": [ + { + "id": 882, + "name": "The Offspring", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 762, + "Name": "William Tell: Overture", + "Artists": "Gioachino Rossini", + "Color": "C47B66", + "DarkColor": "812D23", + "SongMetaId": null, + "SpotifyId": "0dMqh7owbgadoPtGQQxgI6", + "DeezerID": 3037228581, + "DeezerURL": "https://www.deezer.com/track/3037228581", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3c83a1b56fd03116c32f46bc19e1ca4b/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3c83a1b56fd03116c32f46bc19e1ca4b/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3c83a1b56fd03116c32f46bc19e1ca4b/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3c83a1b56fd03116c32f46bc19e1ca4b/1000x1000-000000-80-0-0.jpg", + "ISRC": "USANG2467873", + "BPM": 0, + "Duration": 213, + "ReleaseDate": "2024-10-09", + "AlbumName": "William Tell: Overture (Finale)", + "Explicit": false, + "Rank": 198871, + "Tags": [ + "Clássica", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 3116211, + "name": "Czech Symphony Orchestra", + "role": "Main" + }, + { + "id": 77372162, + "name": "Michaela Rózsa Růžičková", + "role": "Main" + }, + { + "id": 437167, + "name": "Gioachino Rossini", + "role": "Main" + } + ], + "AlbumGenres": [ + "Clássica" + ] + }, + { + "SongId": 323, + "Name": "Wish", + "Artists": "Alien Ant Farm", + "Color": "F04321", + "DarkColor": "89230D", + "SongMetaId": null, + "SpotifyId": "3z3bcIS2CBJ5pqWQjKPiIo", + "DeezerID": 1108058, + "DeezerURL": "https://www.deezer.com/track/1108058", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/be24dcfa3e7b08a4809521f29f71da18/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/be24dcfa3e7b08a4809521f29f71da18/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/be24dcfa3e7b08a4809521f29f71da18/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/be24dcfa3e7b08a4809521f29f71da18/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDW10022230", + "BPM": 132.9, + "Duration": 201, + "ReleaseDate": "2007-08-09", + "AlbumName": "Anthology", + "Explicit": false, + "Rank": 358609, + "Tags": [ + "Rock", + "bpm:132.9", + "fast", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 420, + "name": "Alien Ant Farm", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 323, + "Name": "Wish", + "Artists": "Alien Ant Farm", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "3z3bcIS2CBJ5pqWQjKPiIo", + "DeezerID": 1108058, + "DeezerURL": "https://www.deezer.com/track/1108058", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/be24dcfa3e7b08a4809521f29f71da18/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/be24dcfa3e7b08a4809521f29f71da18/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/be24dcfa3e7b08a4809521f29f71da18/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/be24dcfa3e7b08a4809521f29f71da18/1000x1000-000000-80-0-0.jpg", + "ISRC": "USDW10022230", + "BPM": 132.9, + "Duration": 201, + "ReleaseDate": "2007-08-09", + "AlbumName": "Anthology", + "Explicit": false, + "Rank": 358609, + "Tags": [ + "Rock", + "bpm:132.9", + "fast", + "medium-length", + "year:2007" + ], + "Contributors": [ + { + "id": 420, + "name": "Alien Ant Farm", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 690, + "Name": "Wish You Would", + "Artists": "Cal Sy", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": null, + "SpotifyId": "1jEndTpEfUB2DrV6xPlvGY", + "DeezerID": 3071630711, + "DeezerURL": "https://www.deezer.com/track/3071630711", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6dea90163714d65aa15ce0770870c8af/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6dea90163714d65aa15ce0770870c8af/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6dea90163714d65aa15ce0770870c8af/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6dea90163714d65aa15ce0770870c8af/1000x1000-000000-80-0-0.jpg", + "ISRC": "GX53U2449437", + "BPM": 0, + "Duration": 279, + "ReleaseDate": "2024-11-08", + "AlbumName": "Wish You Would", + "Explicit": false, + "Rank": 27108, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 53764682, + "name": "Cal Sy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 690, + "Name": "Wish You Would", + "Artists": "Cal Sy", + "Color": "EB9A07", + "DarkColor": "BD6300", + "SongMetaId": null, + "SpotifyId": "1jEndTpEfUB2DrV6xPlvGY", + "DeezerID": 3071630711, + "DeezerURL": "https://www.deezer.com/track/3071630711", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6dea90163714d65aa15ce0770870c8af/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6dea90163714d65aa15ce0770870c8af/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6dea90163714d65aa15ce0770870c8af/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6dea90163714d65aa15ce0770870c8af/1000x1000-000000-80-0-0.jpg", + "ISRC": "GX53U2449437", + "BPM": 0, + "Duration": 279, + "ReleaseDate": "2024-11-08", + "AlbumName": "Wish You Would", + "Explicit": false, + "Rank": 27108, + "Tags": [ + "Pop", + "medium-length", + "year:2024" + ], + "Contributors": [ + { + "id": 53764682, + "name": "Cal Sy", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 212, + "Name": "WITHOUT YOU", + "Artists": "The Kid LAROI", + "Color": "7F2723", + "DarkColor": "4D212E", + "SongMetaId": null, + "SpotifyId": "1KMkcUvF7m3SDChDOa7i5L", + "DeezerID": 1445417732, + "DeezerURL": "https://www.deezer.com/track/1445417732", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/e306d320822388a809c1c6ce4708d353/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/e306d320822388a809c1c6ce4708d353/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/e306d320822388a809c1c6ce4708d353/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/e306d320822388a809c1c6ce4708d353/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM12006586", + "BPM": 0, + "Duration": 161, + "ReleaseDate": "2021-07-27", + "AlbumName": "F*CK LOVE 3+: OVER YOU", + "Explicit": true, + "Rank": 772217, + "Tags": [ + "Pop", + "Rap/Hip Hop", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 51204222, + "name": "The Kid Laroi", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop", + "Pop" + ] + }, + { + "SongId": 564, + "Name": "Wolf Cry", + "Artists": "Adrian Daniel", + "Color": "4AB96C", + "DarkColor": "297541", + "SongMetaId": null, + "SpotifyId": "7ppZDXe2cdVB2487S6MrXN", + "DeezerID": 1451323552, + "DeezerURL": "https://www.deezer.com/track/1451323552", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/abf119163dd1c996f952c8fc505a7583/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/abf119163dd1c996f952c8fc505a7583/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/abf119163dd1c996f952c8fc505a7583/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/abf119163dd1c996f952c8fc505a7583/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZK6J2130525", + "BPM": 0, + "Duration": 172, + "ReleaseDate": "2021-09-08", + "AlbumName": "Wolf Cry", + "Explicit": false, + "Rank": 127253, + "Tags": [ + "R&B", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 6983471, + "name": "Adrian Daniel", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 564, + "Name": "Wolf Cry", + "Artists": "Adrian Daniel", + "Color": "4AB96C", + "DarkColor": "1C5A26", + "SongMetaId": null, + "SpotifyId": "7ppZDXe2cdVB2487S6MrXN", + "DeezerID": 1451323552, + "DeezerURL": "https://www.deezer.com/track/1451323552", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/abf119163dd1c996f952c8fc505a7583/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/abf119163dd1c996f952c8fc505a7583/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/abf119163dd1c996f952c8fc505a7583/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/abf119163dd1c996f952c8fc505a7583/1000x1000-000000-80-0-0.jpg", + "ISRC": "QZK6J2130525", + "BPM": 0, + "Duration": 172, + "ReleaseDate": "2021-09-08", + "AlbumName": "Wolf Cry", + "Explicit": false, + "Rank": 127253, + "Tags": [ + "R&B", + "short", + "year:2021" + ], + "Contributors": [ + { + "id": 6983471, + "name": "Adrian Daniel", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 81, + "Name": "Wolf like me", + "Artists": "TV on the radio", + "Color": "DFB231", + "DarkColor": "C27830", + "SongMetaId": null, + "SpotifyId": "6Zgd7SomLTZkL1WPh4CUnV", + "DeezerID": 558606542, + "DeezerURL": "https://www.deezer.com/track/558606542", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6d0dd76d98b8886d89140196e2a95ffa/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6d0dd76d98b8886d89140196e2a95ffa/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6d0dd76d98b8886d89140196e2a95ffa/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6d0dd76d98b8886d89140196e2a95ffa/1000x1000-000000-80-0-0.jpg", + "ISRC": "USTG30626805", + "BPM": 175.93, + "Duration": 287, + "ReleaseDate": "2006-07-31", + "AlbumName": "Wolf Like Me", + "Explicit": false, + "Rank": 542077, + "Tags": [ + "Alternativo", + "Indie rock/Rock pop", + "Rock", + "bpm:175.93", + "medium-length", + "very-fast", + "year:2006" + ], + "Contributors": [ + { + "id": 1239, + "name": "TV on the Radio", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo", + "Rock", + "Indie rock/Rock pop" + ] + }, + { + "SongId": 420, + "Name": "Wolves", + "Artists": "Selena Gomez, Marshmello", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "0tBbt8CrmxbjRP0pueQkyU", + "DeezerID": 420355352, + "DeezerURL": "https://www.deezer.com/track/420355352", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/018f19bb66c83e0c843dddaa6d97e544/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/018f19bb66c83e0c843dddaa6d97e544/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/018f19bb66c83e0c843dddaa6d97e544/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/018f19bb66c83e0c843dddaa6d97e544/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71712103", + "BPM": 124.91, + "Duration": 197, + "ReleaseDate": "2017-10-25", + "AlbumName": "Wolves", + "Explicit": false, + "Rank": 773136, + "Tags": [ + "Pop", + "bpm:124.91", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 292185, + "name": "Selena Gomez", + "role": "Main" + }, + { + "id": 7890702, + "name": "Marshmello", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 420, + "Name": "Wolves", + "Artists": "Selena Gomez, Marshmello", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "0tBbt8CrmxbjRP0pueQkyU", + "DeezerID": 420355352, + "DeezerURL": "https://www.deezer.com/track/420355352", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/018f19bb66c83e0c843dddaa6d97e544/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/018f19bb66c83e0c843dddaa6d97e544/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/018f19bb66c83e0c843dddaa6d97e544/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/018f19bb66c83e0c843dddaa6d97e544/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71712103", + "BPM": 124.91, + "Duration": 197, + "ReleaseDate": "2017-10-25", + "AlbumName": "Wolves", + "Explicit": false, + "Rank": 773136, + "Tags": [ + "Pop", + "bpm:124.91", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 292185, + "name": "Selena Gomez", + "role": "Main" + }, + { + "id": 7890702, + "name": "Marshmello", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 506, + "Name": "Word Up", + "Artists": "Cameo", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "7LoGfKBAaOl0nxhodJ1240", + "DeezerID": 2600934, + "DeezerURL": "https://www.deezer.com/track/2600934", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9c142fb4e95eee8e074d9c5b23e17ac0/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9c142fb4e95eee8e074d9c5b23e17ac0/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9c142fb4e95eee8e074d9c5b23e17ac0/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9c142fb4e95eee8e074d9c5b23e17ac0/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPR39402457", + "BPM": 116.13, + "Duration": 255, + "ReleaseDate": "1986-01-01", + "AlbumName": "Word Up", + "Explicit": false, + "Rank": 571866, + "Tags": [ + "R&B", + "bpm:116.13", + "medium", + "medium-length", + "year:1986" + ], + "Contributors": [ + { + "id": 3533, + "name": "Cameo", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 506, + "Name": "Word Up", + "Artists": "Cameo", + "Color": "ED0100", + "DarkColor": "AC0528", + "SongMetaId": null, + "SpotifyId": "7LoGfKBAaOl0nxhodJ1240", + "DeezerID": 2600934, + "DeezerURL": "https://www.deezer.com/track/2600934", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9c142fb4e95eee8e074d9c5b23e17ac0/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9c142fb4e95eee8e074d9c5b23e17ac0/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9c142fb4e95eee8e074d9c5b23e17ac0/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9c142fb4e95eee8e074d9c5b23e17ac0/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPR39402457", + "BPM": 116.13, + "Duration": 255, + "ReleaseDate": "1986-01-01", + "AlbumName": "Word Up", + "Explicit": false, + "Rank": 571866, + "Tags": [ + "R&B", + "bpm:116.13", + "medium", + "medium-length", + "year:1986" + ], + "Contributors": [ + { + "id": 3533, + "name": "Cameo", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 599, + "Name": "Wrecking Ball", + "Artists": "Miley Cyrus", + "Color": "AF81BA", + "DarkColor": "734C8B", + "SongMetaId": null, + "SpotifyId": "2vwlzO0Qp8kfEtzTsCXfyE", + "DeezerID": 71137166, + "DeezerURL": "https://www.deezer.com/track/71137166", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0e43d6341c659c4cd71e676fb13282e6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0e43d6341c659c4cd71e676fb13282e6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0e43d6341c659c4cd71e676fb13282e6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0e43d6341c659c4cd71e676fb13282e6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11301214", + "BPM": 119.8, + "Duration": 221, + "ReleaseDate": "2013-10-04", + "AlbumName": "Bangerz (Deluxe Version)", + "Explicit": false, + "Rank": 903577, + "Tags": [ + "Pop", + "bpm:119.8", + "medium", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 12436, + "name": "Miley Cyrus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 599, + "Name": "Wrecking Ball", + "Artists": "Miley Cyrus", + "Color": "AF81BA", + "DarkColor": "734C8B", + "SongMetaId": null, + "SpotifyId": "2vwlzO0Qp8kfEtzTsCXfyE", + "DeezerID": 71137166, + "DeezerURL": "https://www.deezer.com/track/71137166", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/0e43d6341c659c4cd71e676fb13282e6/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/0e43d6341c659c4cd71e676fb13282e6/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/0e43d6341c659c4cd71e676fb13282e6/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/0e43d6341c659c4cd71e676fb13282e6/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11301214", + "BPM": 119.8, + "Duration": 221, + "ReleaseDate": "2013-10-04", + "AlbumName": "Bangerz (Deluxe Version)", + "Explicit": false, + "Rank": 903577, + "Tags": [ + "Pop", + "bpm:119.8", + "medium", + "medium-length", + "year:2013" + ], + "Contributors": [ + { + "id": 12436, + "name": "Miley Cyrus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 58, + "Name": "Wynona's Big Brown Beaver", + "Artists": "Primus", + "Color": "38B0B3", + "DarkColor": "11708C", + "SongMetaId": null, + "SpotifyId": "5WzdX4iArSQZELuxI0Oq5Q", + "DeezerID": 1579661, + "DeezerURL": "https://www.deezer.com/track/1579661", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/163249e6d6eaf2dfa6e9c29c3d575ad8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/163249e6d6eaf2dfa6e9c29c3d575ad8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/163249e6d6eaf2dfa6e9c29c3d575ad8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/163249e6d6eaf2dfa6e9c29c3d575ad8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR19500125", + "BPM": 129.2, + "Duration": 264, + "ReleaseDate": "1995-01-01", + "AlbumName": "Tales From The Punchbowl", + "Explicit": false, + "Rank": 391741, + "Tags": [ + "Pop", + "bpm:129.2", + "fast", + "medium-length", + "year:1995" + ], + "Contributors": [ + { + "id": 4056, + "name": "Primus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 58, + "Name": "Wynona's Big Brown Beaver", + "Artists": "Primus", + "Color": "A55732", + "DarkColor": "552C19", + "SongMetaId": null, + "SpotifyId": "5WzdX4iArSQZELuxI0Oq5Q", + "DeezerID": 1579661, + "DeezerURL": "https://www.deezer.com/track/1579661", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/163249e6d6eaf2dfa6e9c29c3d575ad8/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/163249e6d6eaf2dfa6e9c29c3d575ad8/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/163249e6d6eaf2dfa6e9c29c3d575ad8/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/163249e6d6eaf2dfa6e9c29c3d575ad8/1000x1000-000000-80-0-0.jpg", + "ISRC": "USIR19500125", + "BPM": 129.2, + "Duration": 264, + "ReleaseDate": "1995-01-01", + "AlbumName": "Tales From The Punchbowl", + "Explicit": false, + "Rank": 391741, + "Tags": [ + "Pop", + "bpm:129.2", + "fast", + "medium-length", + "year:1995" + ], + "Contributors": [ + { + "id": 4056, + "name": "Primus", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 541, + "Name": "WØLF", + "Artists": "Peaks!", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "2IFcT2vLnkFjfRAIeTIx3j", + "DeezerID": 413322382, + "DeezerURL": "https://www.deezer.com/track/413322382", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7f63ad9999a5376545b8c3aa581f783f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7f63ad9999a5376545b8c3aa581f783f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7f63ad9999a5376545b8c3aa581f783f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7f63ad9999a5376545b8c3aa581f783f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM81786085", + "BPM": 0, + "Duration": 248, + "ReleaseDate": "2017-09-28", + "AlbumName": "Hennessy", + "Explicit": true, + "Rank": 26809, + "Tags": [ + "Rock", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 13285757, + "name": "Wolfpeake", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 541, + "Name": "WØLF", + "Artists": "Peaks!", + "Color": "DA4334", + "DarkColor": "BE2D1F", + "SongMetaId": null, + "SpotifyId": "2IFcT2vLnkFjfRAIeTIx3j", + "DeezerID": 413322382, + "DeezerURL": "https://www.deezer.com/track/413322382", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7f63ad9999a5376545b8c3aa581f783f/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7f63ad9999a5376545b8c3aa581f783f/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7f63ad9999a5376545b8c3aa581f783f/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7f63ad9999a5376545b8c3aa581f783f/1000x1000-000000-80-0-0.jpg", + "ISRC": "USHM81786085", + "BPM": 0, + "Duration": 248, + "ReleaseDate": "2017-09-28", + "AlbumName": "Hennessy", + "Explicit": true, + "Rank": 26809, + "Tags": [ + "Rock", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 13285757, + "name": "Wolfpeake", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 479, + "Name": "XO Tour Llif3", + "Artists": "Lil Uzi Vert", + "Color": "B0C0DB", + "DarkColor": "768CAF", + "SongMetaId": null, + "SpotifyId": "7GX5flRQZVHRAGd6B4TmDO", + "DeezerID": 144949268, + "DeezerURL": "https://www.deezer.com/track/144949268", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/77d464b429890070fecdf853bbe426ff/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/77d464b429890070fecdf853bbe426ff/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/77d464b429890070fecdf853bbe426ff/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/77d464b429890070fecdf853bbe426ff/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21700684", + "BPM": 154.85, + "Duration": 182, + "ReleaseDate": "2017-03-24", + "AlbumName": "XO Tour Llif3", + "Explicit": true, + "Rank": 764657, + "Tags": [ + "Rap/Hip Hop", + "bpm:154.85", + "medium-length", + "very-fast", + "year:2017" + ], + "Contributors": [ + { + "id": 7101343, + "name": "Lil Uzi Vert", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 479, + "Name": "XO Tour Llif3", + "Artists": "Lil Uzi Vert", + "Color": "B0C0DB", + "DarkColor": "768CAF", + "SongMetaId": null, + "SpotifyId": "7GX5flRQZVHRAGd6B4TmDO", + "DeezerID": 144949268, + "DeezerURL": "https://www.deezer.com/track/144949268", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/77d464b429890070fecdf853bbe426ff/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/77d464b429890070fecdf853bbe426ff/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/77d464b429890070fecdf853bbe426ff/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/77d464b429890070fecdf853bbe426ff/1000x1000-000000-80-0-0.jpg", + "ISRC": "USAT21700684", + "BPM": 154.85, + "Duration": 182, + "ReleaseDate": "2017-03-24", + "AlbumName": "XO Tour Llif3", + "Explicit": true, + "Rank": 764657, + "Tags": [ + "Rap/Hip Hop", + "bpm:154.85", + "medium-length", + "very-fast", + "year:2017" + ], + "Contributors": [ + { + "id": 7101343, + "name": "Lil Uzi Vert", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 592, + "Name": "yes, and?", + "Artists": "Ariana Grande", + "Color": "F0B175", + "DarkColor": "906B48", + "SongMetaId": null, + "SpotifyId": "7gaA3wERFkFkgivjwbSvkG" + }, + { + "SongId": 592, + "Name": "yes, and?", + "Artists": "Ariana Grande", + "Color": "F0B175", + "DarkColor": "906B48", + "SongMetaId": null, + "SpotifyId": "7gaA3wERFkFkgivjwbSvkG" + }, + { + "SongId": 115, + "Name": "You Don't Know", + "Artists": "702", + "Color": "B8286A", + "DarkColor": "511137", + "SongMetaId": null, + "SpotifyId": "5paSrwSyBh790eyA2wQorN", + "DeezerID": 1583247, + "DeezerURL": "https://www.deezer.com/track/1583247", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/42a52b79682eaac37bef1192dc2f62cc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/42a52b79682eaac37bef1192dc2f62cc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/42a52b79682eaac37bef1192dc2f62cc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/42a52b79682eaac37bef1192dc2f62cc/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMO19985020", + "BPM": 0, + "Duration": 248, + "ReleaseDate": "1999-01-01", + "AlbumName": "702", + "Explicit": false, + "Rank": 286040, + "Tags": [ + "R&B", + "medium-length", + "year:1999" + ], + "Contributors": [ + { + "id": 13734, + "name": "702", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 115, + "Name": "You Don't Know", + "Artists": "702", + "Color": "CF2380", + "DarkColor": "922438", + "SongMetaId": null, + "SpotifyId": "5paSrwSyBh790eyA2wQorN", + "DeezerID": 1583247, + "DeezerURL": "https://www.deezer.com/track/1583247", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/42a52b79682eaac37bef1192dc2f62cc/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/42a52b79682eaac37bef1192dc2f62cc/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/42a52b79682eaac37bef1192dc2f62cc/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/42a52b79682eaac37bef1192dc2f62cc/1000x1000-000000-80-0-0.jpg", + "ISRC": "USMO19985020", + "BPM": 0, + "Duration": 248, + "ReleaseDate": "1999-01-01", + "AlbumName": "702", + "Explicit": false, + "Rank": 286040, + "Tags": [ + "R&B", + "medium-length", + "year:1999" + ], + "Contributors": [ + { + "id": 13734, + "name": "702", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 598, + "Name": "You Give Love A Bad Name", + "Artists": "Bon Jovi", + "Color": "E6333A", + "DarkColor": "81051D", + "SongMetaId": null, + "SpotifyId": "0rmGAIH9LNJewFw7nKzZnc", + "DeezerID": 577487242, + "DeezerURL": "https://www.deezer.com/track/577487242", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/58ca1d20e8d19c1e5f8e821d07412c74/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/58ca1d20e8d19c1e5f8e821d07412c74/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/58ca1d20e8d19c1e5f8e821d07412c74/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/58ca1d20e8d19c1e5f8e821d07412c74/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPR39402224", + "BPM": 122.68, + "Duration": 222, + "ReleaseDate": "2010-11-15", + "AlbumName": "Bon Jovi Greatest Hits - The Ultimate Collection (Deluxe)", + "Explicit": false, + "Rank": 852714, + "Tags": [ + "Rock", + "bpm:122.68", + "fast", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 637, + "name": "Bon Jovi", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 598, + "Name": "You Give Love A Bad Name", + "Artists": "Bon Jovi", + "Color": "E6333A", + "DarkColor": "81051D", + "SongMetaId": null, + "SpotifyId": "0rmGAIH9LNJewFw7nKzZnc", + "DeezerID": 577487242, + "DeezerURL": "https://www.deezer.com/track/577487242", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/58ca1d20e8d19c1e5f8e821d07412c74/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/58ca1d20e8d19c1e5f8e821d07412c74/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/58ca1d20e8d19c1e5f8e821d07412c74/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/58ca1d20e8d19c1e5f8e821d07412c74/1000x1000-000000-80-0-0.jpg", + "ISRC": "USPR39402224", + "BPM": 122.68, + "Duration": 222, + "ReleaseDate": "2010-11-15", + "AlbumName": "Bon Jovi Greatest Hits - The Ultimate Collection (Deluxe)", + "Explicit": false, + "Rank": 852714, + "Tags": [ + "Rock", + "bpm:122.68", + "fast", + "medium-length", + "year:2010" + ], + "Contributors": [ + { + "id": 637, + "name": "Bon Jovi", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 557, + "Name": "You Got It (The Right Stuff)", + "Artists": "New Kids On The Block", + "Color": "EE492E", + "DarkColor": "980915", + "SongMetaId": null, + "SpotifyId": "4buDeg67vos7KP1yHrS9wl", + "DeezerID": 605026522, + "DeezerURL": "https://www.deezer.com/track/605026522", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8eaaaf428454f1b647f3b5ed5648bbe1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8eaaaf428454f1b647f3b5ed5648bbe1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8eaaaf428454f1b647f3b5ed5648bbe1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8eaaaf428454f1b647f3b5ed5648bbe1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM18700355", + "BPM": 0, + "Duration": 249, + "ReleaseDate": "2019-03-08", + "AlbumName": "Hangin' Tough (30th Anniversary)", + "Explicit": false, + "Rank": 439685, + "Tags": [ + "Pop", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 657, + "name": "New Kids on the Block", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 557, + "Name": "You Got It (The Right Stuff)", + "Artists": "New Kids On The Block", + "Color": "EE492E", + "DarkColor": "980915", + "SongMetaId": null, + "SpotifyId": "4buDeg67vos7KP1yHrS9wl", + "DeezerID": 605026522, + "DeezerURL": "https://www.deezer.com/track/605026522", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/8eaaaf428454f1b647f3b5ed5648bbe1/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/8eaaaf428454f1b647f3b5ed5648bbe1/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/8eaaaf428454f1b647f3b5ed5648bbe1/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/8eaaaf428454f1b647f3b5ed5648bbe1/1000x1000-000000-80-0-0.jpg", + "ISRC": "USSM18700355", + "BPM": 0, + "Duration": 249, + "ReleaseDate": "2019-03-08", + "AlbumName": "Hangin' Tough (30th Anniversary)", + "Explicit": false, + "Rank": 439685, + "Tags": [ + "Pop", + "medium-length", + "year:2019" + ], + "Contributors": [ + { + "id": 657, + "name": "New Kids on the Block", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 308, + "Name": "You Really Got Me", + "Artists": "The Kinks", + "Color": "C75E40", + "DarkColor": "9F4B39", + "SongMetaId": null, + "SpotifyId": "6tZdL3Zp8JgrfDbsSeSV1S", + "DeezerID": 143026320, + "DeezerURL": "https://www.deezer.com/track/143026320", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/b73e428af97d2748a55dad4a6e62851e/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/b73e428af97d2748a55dad4a6e62851e/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/b73e428af97d2748a55dad4a6e62851e/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/b73e428af97d2748a55dad4a6e62851e/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAJE6400005", + "BPM": 137.81, + "Duration": 131, + "ReleaseDate": "1964-10-02", + "AlbumName": "Kinks (Deluxe)", + "Explicit": false, + "Rank": 703378, + "Tags": [ + "Rock", + "bpm:137.81", + "fast", + "short", + "year:1964" + ], + "Contributors": [ + { + "id": 1415, + "name": "The Kinks", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rock" + ] + }, + { + "SongId": 51, + "Name": "you should see me in a crown", + "Artists": "Billie Eilish", + "Color": "76FF00", + "DarkColor": "005F05", + "SongMetaId": null, + "SpotifyId": "3XF5xLJHOQQRbWya6hBp7d", + "DeezerID": 655095932, + "DeezerURL": "https://www.deezer.com/track/655095932", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/6630083f454d48eadb6a9b53f035d734/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/6630083f454d48eadb6a9b53f035d734/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/6630083f454d48eadb6a9b53f035d734/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/6630083f454d48eadb6a9b53f035d734/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUM71810049", + "BPM": 150.34, + "Duration": 180, + "ReleaseDate": "2019-03-29", + "AlbumName": "WHEN WE ALL FALL ASLEEP, WHERE DO WE GO?", + "Explicit": false, + "Rank": 812757, + "Tags": [ + "Alternativo", + "bpm:150.34", + "medium-length", + "very-fast", + "year:2019" + ], + "Contributors": [ + { + "id": 9635624, + "name": "Billie Eilish", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 282, + "Name": "You Spin Me Round (Like a Record) - Murder Mix", + "Artists": "Dead Or Alive", + "Color": "607BC4", + "DarkColor": "3C4784", + "SongMetaId": null, + "SpotifyId": "6gIBeNdhyrT2nt1zEILoxc", + "DeezerID": 7411031, + "DeezerURL": "https://www.deezer.com/track/7411031", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9298871cddecf8ea79dfce085cdec59d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9298871cddecf8ea79dfce085cdec59d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9298871cddecf8ea79dfce085cdec59d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9298871cddecf8ea79dfce085cdec59d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBBN0500356", + "BPM": 128.4, + "Duration": 480, + "ReleaseDate": "2010-10-22", + "AlbumName": "That's The Way I Like It: The Best of Dead Or Alive", + "Explicit": false, + "Rank": 479973, + "Tags": [ + "Pop", + "bpm:128.4", + "fast", + "long", + "year:2010" + ], + "Contributors": [ + { + "id": 4190, + "name": "Dead or Alive", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 282, + "Name": "You Spin Me Round (Like a Record) - Murder Mix", + "Artists": "Dead Or Alive", + "Color": "607BC4", + "DarkColor": "3C4784", + "SongMetaId": null, + "SpotifyId": "6gIBeNdhyrT2nt1zEILoxc", + "DeezerID": 7411031, + "DeezerURL": "https://www.deezer.com/track/7411031", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9298871cddecf8ea79dfce085cdec59d/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9298871cddecf8ea79dfce085cdec59d/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9298871cddecf8ea79dfce085cdec59d/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9298871cddecf8ea79dfce085cdec59d/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBBBN0500356", + "BPM": 128.4, + "Duration": 480, + "ReleaseDate": "2010-10-22", + "AlbumName": "That's The Way I Like It: The Best of Dead Or Alive", + "Explicit": false, + "Rank": 479973, + "Tags": [ + "Pop", + "bpm:128.4", + "fast", + "long", + "year:2010" + ], + "Contributors": [ + { + "id": 4190, + "name": "Dead or Alive", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 478, + "Name": "Young Dumb & Broke", + "Artists": "Khalid", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "5Z3GHaZ6ec9bsiI5BenrbY", + "DeezerID": 143172406, + "DeezerURL": "https://www.deezer.com/track/143172406", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7fa1597e86f5b4283ea316f2ddb54008/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7fa1597e86f5b4283ea316f2ddb54008/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7fa1597e86f5b4283ea316f2ddb54008/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7fa1597e86f5b4283ea316f2ddb54008/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11700144", + "BPM": 136.9, + "Duration": 202, + "ReleaseDate": "2017-03-03", + "AlbumName": "American Teen", + "Explicit": false, + "Rank": 721055, + "Tags": [ + "R&B", + "bpm:136.9", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 362326, + "name": "Khalid", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 478, + "Name": "Young Dumb & Broke", + "Artists": "Khalid", + "Color": "1C7ABE", + "DarkColor": "0A3168", + "SongMetaId": null, + "SpotifyId": "5Z3GHaZ6ec9bsiI5BenrbY", + "DeezerID": 143172406, + "DeezerURL": "https://www.deezer.com/track/143172406", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/7fa1597e86f5b4283ea316f2ddb54008/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/7fa1597e86f5b4283ea316f2ddb54008/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/7fa1597e86f5b4283ea316f2ddb54008/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/7fa1597e86f5b4283ea316f2ddb54008/1000x1000-000000-80-0-0.jpg", + "ISRC": "USRC11700144", + "BPM": 136.9, + "Duration": 202, + "ReleaseDate": "2017-03-03", + "AlbumName": "American Teen", + "Explicit": false, + "Rank": 721055, + "Tags": [ + "R&B", + "bpm:136.9", + "fast", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 362326, + "name": "Khalid", + "role": "Main" + } + ], + "AlbumGenres": [ + "R&B" + ] + }, + { + "SongId": 245, + "Name": "Youngblood", + "Artists": "5 Seconds of Summer", + "Color": "CC1B71", + "DarkColor": "7A1051", + "SongMetaId": null, + "SpotifyId": "2iUXsYOEPhVqEBwsqP70rE", + "DeezerID": 483399272, + "DeezerURL": "https://www.deezer.com/track/483399272", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/3bbfddbac4bcfc7e2b19fb86619d7ee5/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/3bbfddbac4bcfc7e2b19fb86619d7ee5/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/3bbfddbac4bcfc7e2b19fb86619d7ee5/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/3bbfddbac4bcfc7e2b19fb86619d7ee5/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBUM71800366", + "BPM": 119.84, + "Duration": 203, + "ReleaseDate": "2018-04-12", + "AlbumName": "Youngblood", + "Explicit": false, + "Rank": 786036, + "Tags": [ + "Pop", + "bpm:119.84", + "medium", + "medium-length", + "year:2018" + ], + "Contributors": [ + { + "id": 4103408, + "name": "5 Seconds Of Summer", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 606, + "Name": "Your Side of Town", + "Artists": "The Killers", + "Color": "ED8251", + "DarkColor": "D85126", + "SongMetaId": null, + "SpotifyId": "3XV77GNuIPYff6T7bzjYy9", + "DeezerID": 2416726705, + "DeezerURL": "https://www.deezer.com/track/2416726705", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/21bdbc19a1b9c442315745d0ed310cd9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/21bdbc19a1b9c442315745d0ed310cd9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/21bdbc19a1b9c442315745d0ed310cd9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/21bdbc19a1b9c442315745d0ed310cd9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12207721", + "BPM": 0, + "Duration": 188, + "ReleaseDate": "2023-08-25", + "AlbumName": "Your Side of Town", + "Explicit": false, + "Rank": 399790, + "Tags": [ + "Alternativo", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 606, + "Name": "Your Side of Town", + "Artists": "The Killers", + "Color": "E96E47", + "DarkColor": "D85126", + "SongMetaId": null, + "SpotifyId": "3XV77GNuIPYff6T7bzjYy9", + "DeezerID": 2416726705, + "DeezerURL": "https://www.deezer.com/track/2416726705", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/21bdbc19a1b9c442315745d0ed310cd9/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/21bdbc19a1b9c442315745d0ed310cd9/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/21bdbc19a1b9c442315745d0ed310cd9/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/21bdbc19a1b9c442315745d0ed310cd9/1000x1000-000000-80-0-0.jpg", + "ISRC": "USUG12207721", + "BPM": 0, + "Duration": 188, + "ReleaseDate": "2023-08-25", + "AlbumName": "Your Side of Town", + "Explicit": false, + "Rank": 399790, + "Tags": [ + "Alternativo", + "medium-length", + "year:2023" + ], + "Contributors": [ + { + "id": 897, + "name": "The Killers", + "role": "Main" + } + ], + "AlbumGenres": [ + "Alternativo" + ] + }, + { + "SongId": 354, + "Name": "Your Song", + "Artists": "Rita Ora", + "Color": "DE9AA1", + "DarkColor": "A96E78", + "SongMetaId": null, + "SpotifyId": "4c2W3VKsOFoIg2SFaO6DY5", + "DeezerID": 365994881, + "DeezerURL": "https://www.deezer.com/track/365994881", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/19e3b411748ea1aba7f18cf0872c25ca/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/19e3b411748ea1aba7f18cf0872c25ca/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/19e3b411748ea1aba7f18cf0872c25ca/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/19e3b411748ea1aba7f18cf0872c25ca/1000x1000-000000-80-0-0.jpg", + "ISRC": "GBAHT1700323", + "BPM": 118.12, + "Duration": 180, + "ReleaseDate": "2017-05-26", + "AlbumName": "Your Song", + "Explicit": false, + "Rank": 635251, + "Tags": [ + "Pop", + "bpm:118.12", + "medium", + "medium-length", + "year:2017" + ], + "Contributors": [ + { + "id": 1678249, + "name": "Rita Ora", + "role": "Main" + } + ], + "AlbumGenres": [ + "Pop" + ] + }, + { + "SongId": 429, + "Name": "Yuh", + "Artists": "Illvis Freshly", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "1thVA6ddatLKqnjg7GY04X", + "DeezerID": 865648432, + "DeezerURL": "https://www.deezer.com/track/865648432", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9db5f0ce7b0ca6f7fc7dcb3c3bc688f3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9db5f0ce7b0ca6f7fc7dcb3c3bc688f3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9db5f0ce7b0ca6f7fc7dcb3c3bc688f3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9db5f0ce7b0ca6f7fc7dcb3c3bc688f3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCGH2061962", + "BPM": 0, + "Duration": 175, + "ReleaseDate": "2020-02-07", + "AlbumName": "Yuh", + "Explicit": true, + "Rank": 31810, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2020" + ], + "Contributors": [ + { + "id": 9378684, + "name": "Illvis Freshly", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + }, + { + "SongId": 429, + "Name": "Yuh", + "Artists": "Illvis Freshly", + "Color": "A74BB8", + "DarkColor": "693390", + "SongMetaId": null, + "SpotifyId": "1thVA6ddatLKqnjg7GY04X", + "DeezerID": 865648432, + "DeezerURL": "https://www.deezer.com/track/865648432", + "CoverSmall": "https://cdn-images.dzcdn.net/images/cover/9db5f0ce7b0ca6f7fc7dcb3c3bc688f3/56x56-000000-80-0-0.jpg", + "CoverMedium": "https://cdn-images.dzcdn.net/images/cover/9db5f0ce7b0ca6f7fc7dcb3c3bc688f3/250x250-000000-80-0-0.jpg", + "CoverBig": "https://cdn-images.dzcdn.net/images/cover/9db5f0ce7b0ca6f7fc7dcb3c3bc688f3/500x500-000000-80-0-0.jpg", + "CoverXL": "https://cdn-images.dzcdn.net/images/cover/9db5f0ce7b0ca6f7fc7dcb3c3bc688f3/1000x1000-000000-80-0-0.jpg", + "ISRC": "USCGH2061962", + "BPM": 0, + "Duration": 175, + "ReleaseDate": "2020-02-07", + "AlbumName": "Yuh", + "Explicit": true, + "Rank": 31810, + "Tags": [ + "Rap/Hip Hop", + "short", + "year:2020" + ], + "Contributors": [ + { + "id": 9378684, + "name": "Illvis Freshly", + "role": "Main" + } + ], + "AlbumGenres": [ + "Rap/Hip Hop" + ] + } + ], + "Artists": [ + { + "ArtistId": 1, + "Name": "Duke Dumont", + "HasPublicSongs": true, + "SongId": 1, + "Color": "E51A18", + "DarkColor": "750D0C", + "DeezerID": 397164, + "DeezerURL": "https://www.deezer.com/artist/397164", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4118024e71bd7fe8346e41042b624491/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4118024e71bd7fe8346e41042b624491/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4118024e71bd7fe8346e41042b624491/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4118024e71bd7fe8346e41042b624491/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 64, + "NbFans": 1069695, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 2, + "Name": "Gorillaz", + "HasPublicSongs": true, + "SongId": 314, + "Color": "A75365", + "DarkColor": "762235", + "DeezerID": 14, + "DeezerURL": "https://www.deezer.com/artist/14", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ee9de99dce7ffb731e0e06e8a05f6e52/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ee9de99dce7ffb731e0e06e8a05f6e52/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ee9de99dce7ffb731e0e06e8a05f6e52/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ee9de99dce7ffb731e0e06e8a05f6e52/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 83, + "NbFans": 2672621, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 3, + "Name": "The Cardigans", + "HasPublicSongs": true, + "SongId": 3, + "Color": "C49274", + "DarkColor": "8C5B50", + "DeezerID": 8405, + "DeezerURL": "https://www.deezer.com/artist/8405", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0c912c00af3dd0c50cb7ef7523c6162c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0c912c00af3dd0c50cb7ef7523c6162c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0c912c00af3dd0c50cb7ef7523c6162c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0c912c00af3dd0c50cb7ef7523c6162c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 7, + "NbFans": 3040, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 4, + "Name": "The Black Eyed Peas", + "HasPublicSongs": true, + "SongId": 95, + "Color": "68FA4E", + "DarkColor": "275D19", + "DeezerID": 4189978, + "DeezerURL": "https://www.deezer.com/artist/4189978", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist//56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist//250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist//500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist//1000x1000-000000-80-0-0.jpg", + "NbAlbums": 0, + "NbFans": 438, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 5, + "Name": "Shakira", + "HasPublicSongs": true, + "SongId": 4, + "Color": "3988CE", + "DarkColor": "31436B", + "DeezerID": 160, + "DeezerURL": "https://www.deezer.com/artist/160", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/69c569506a8ff6ab0edfecbd1adf94b0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/69c569506a8ff6ab0edfecbd1adf94b0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/69c569506a8ff6ab0edfecbd1adf94b0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/69c569506a8ff6ab0edfecbd1adf94b0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 63, + "NbFans": 11142438, + "Radio": true, + "TopGenres": [ + "Pop", + "Pop Latino" + ], + "Rank": null + }, + { + "ArtistId": 6, + "Name": "David Guetta", + "HasPublicSongs": true, + "SongId": 4, + "Color": "3988CE", + "DarkColor": "31436B", + "DeezerID": 4768753, + "DeezerURL": "https://www.deezer.com/artist/4768753", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 92, + "NbFans": 2307858, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 7, + "Name": "88rising", + "HasPublicSongs": true, + "SongId": 5, + "Color": "F86F0E", + "DarkColor": "921C0A", + "DeezerID": 14980207, + "DeezerURL": "https://www.deezer.com/artist/14980207", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/045e97bbac3be588588549beaa1a162c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/045e97bbac3be588588549beaa1a162c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/045e97bbac3be588588549beaa1a162c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/045e97bbac3be588588549beaa1a162c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 37, + "NbFans": 51249, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 8, + "Name": "NIKI", + "HasPublicSongs": true, + "SongId": 5, + "Color": "F86F0E", + "DarkColor": "921C0A", + "DeezerID": 506832, + "DeezerURL": "https://www.deezer.com/artist/506832", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/54d94f4aa3e5023bab39b98bbf2147c6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/54d94f4aa3e5023bab39b98bbf2147c6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/54d94f4aa3e5023bab39b98bbf2147c6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/54d94f4aa3e5023bab39b98bbf2147c6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 39, + "NbFans": 33519, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 9, + "Name": "Of Monsters and Men", + "HasPublicSongs": true, + "SongId": 6, + "Color": "D89FAD", + "DarkColor": "8C4557", + "DeezerID": 1581786, + "DeezerURL": "https://www.deezer.com/artist/1581786", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ae0de3dd0d95c954e2194631d6228d54/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ae0de3dd0d95c954e2194631d6228d54/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ae0de3dd0d95c954e2194631d6228d54/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ae0de3dd0d95c954e2194631d6228d54/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 16, + "NbFans": 530153, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 10, + "Name": "Sia", + "HasPublicSongs": true, + "SongId": 153, + "Color": "E9242E", + "DarkColor": "BB0023", + "DeezerID": 3469, + "DeezerURL": "https://www.deezer.com/artist/3469", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/522c7b1de6d02790c348da447d3fd2b7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/522c7b1de6d02790c348da447d3fd2b7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/522c7b1de6d02790c348da447d3fd2b7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/522c7b1de6d02790c348da447d3fd2b7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 143, + "NbFans": 8398439, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Electro", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 11, + "Name": "Lil Jon", + "HasPublicSongs": true, + "SongId": 8, + "Color": "CD073A", + "DarkColor": "96003B", + "DeezerID": 78, + "DeezerURL": "https://www.deezer.com/artist/78", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/186fd8b1daff12cf769a1990b0d273ea/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/186fd8b1daff12cf769a1990b0d273ea/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/186fd8b1daff12cf769a1990b0d273ea/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/186fd8b1daff12cf769a1990b0d273ea/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 37, + "NbFans": 2163921, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 12, + "Name": "LMFAO", + "HasPublicSongs": true, + "SongId": 8, + "Color": "CD073A", + "DarkColor": "96003B", + "DeezerID": 167225, + "DeezerURL": "https://www.deezer.com/artist/167225", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4fb4bb444f25c22f94d98fddc1e3fb77/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4fb4bb444f25c22f94d98fddc1e3fb77/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4fb4bb444f25c22f94d98fddc1e3fb77/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4fb4bb444f25c22f94d98fddc1e3fb77/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 6, + "NbFans": 4247599, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 13, + "Name": "Disclosure", + "HasPublicSongs": true, + "SongId": 9, + "Color": "682A38", + "DarkColor": "321518", + "DeezerID": 409796, + "DeezerURL": "https://www.deezer.com/artist/409796", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/83aa8d9bb361fe039ee1caf0488eb0c1/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/83aa8d9bb361fe039ee1caf0488eb0c1/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/83aa8d9bb361fe039ee1caf0488eb0c1/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/83aa8d9bb361fe039ee1caf0488eb0c1/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 82, + "NbFans": 961115, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 14, + "Name": "Sam Smith", + "HasPublicSongs": true, + "SongId": 236, + "Color": "F86F0E", + "DarkColor": "921C0A", + "DeezerID": 873890, + "DeezerURL": "https://www.deezer.com/artist/873890", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a1a45c3f65183bb267429bf92ba70279/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a1a45c3f65183bb267429bf92ba70279/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a1a45c3f65183bb267429bf92ba70279/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a1a45c3f65183bb267429bf92ba70279/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 100, + "NbFans": 1428256, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Pop", + "Pop", + "Pop internacional", + "Rap/Hip Hop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 15, + "Name": "Franz Ferdinand", + "HasPublicSongs": true, + "SongId": 10, + "Color": "F6982E", + "DarkColor": "7F3E10", + "DeezerID": 919, + "DeezerURL": "https://www.deezer.com/artist/919", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0312c5b8e0c0f9ac7b0c4a1dfbd21d4e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0312c5b8e0c0f9ac7b0c4a1dfbd21d4e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0312c5b8e0c0f9ac7b0c4a1dfbd21d4e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0312c5b8e0c0f9ac7b0c4a1dfbd21d4e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 50, + "NbFans": 1055954, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 16, + "Name": "Lady Gaga", + "HasPublicSongs": true, + "SongId": 317, + "Color": "398694", + "DarkColor": "123743", + "DeezerID": 3469, + "DeezerURL": "https://www.deezer.com/artist/3469", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/522c7b1de6d02790c348da447d3fd2b7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/522c7b1de6d02790c348da447d3fd2b7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/522c7b1de6d02790c348da447d3fd2b7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/522c7b1de6d02790c348da447d3fd2b7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 143, + "NbFans": 8398440, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Electro", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 17, + "Name": "Ariana Grande", + "HasPublicSongs": true, + "SongId": 263, + "Color": "C092AA", + "DarkColor": "9E6B86", + "DeezerID": 1562681, + "DeezerURL": "https://www.deezer.com/artist/1562681", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5fcde7fde7cde95fc36d4576afcfb49f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5fcde7fde7cde95fc36d4576afcfb49f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5fcde7fde7cde95fc36d4576afcfb49f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5fcde7fde7cde95fc36d4576afcfb49f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 59, + "NbFans": 12942203, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 18, + "Name": "Jimmy Eat World", + "HasPublicSongs": true, + "SongId": 430, + "Color": "C47B66", + "DarkColor": "812D23", + "DeezerID": 346, + "DeezerURL": "https://www.deezer.com/artist/346", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/25f9c306de8391736e0937f7239a314d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/25f9c306de8391736e0937f7239a314d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/25f9c306de8391736e0937f7239a314d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/25f9c306de8391736e0937f7239a314d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 41, + "NbFans": 204492, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 19, + "Name": "Bruno Mars", + "HasPublicSongs": true, + "SongId": 25, + "Color": "C63031", + "DarkColor": "801909", + "DeezerID": 429675, + "DeezerURL": "https://www.deezer.com/artist/429675", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7f3c0956357c326b2db2cf436f1dc8c5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7f3c0956357c326b2db2cf436f1dc8c5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7f3c0956357c326b2db2cf436f1dc8c5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7f3c0956357c326b2db2cf436f1dc8c5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 31, + "NbFans": 11822271, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 20, + "Name": "Disturbed", + "HasPublicSongs": true, + "SongId": 770, + "Color": "0C878A", + "DarkColor": "063F3C", + "DeezerID": 2127, + "DeezerURL": "https://www.deezer.com/artist/2127", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a085c12d41604321611dac74bd770add/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a085c12d41604321611dac74bd770add/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a085c12d41604321611dac74bd770add/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a085c12d41604321611dac74bd770add/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 43, + "NbFans": 1394286, + "Radio": true, + "TopGenres": [ + "Dance", + "Hard Rock", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 21, + "Name": "Yeah Yeah Yeahs", + "HasPublicSongs": true, + "SongId": 26, + "Color": "FFA90A", + "DarkColor": "E66F1D", + "DeezerID": 964, + "DeezerURL": "https://www.deezer.com/artist/964", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/474165e8b02acf8fd7d2aa19a08d7a6b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/474165e8b02acf8fd7d2aa19a08d7a6b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/474165e8b02acf8fd7d2aa19a08d7a6b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/474165e8b02acf8fd7d2aa19a08d7a6b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 332832, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 22, + "Name": "Curtis Mayfield", + "HasPublicSongs": true, + "SongId": 16, + "Color": "FAB670", + "DarkColor": "F78A5A", + "DeezerID": 2027, + "DeezerURL": "https://www.deezer.com/artist/2027", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/adafcbf1bfa081d5dd03c0b6a9893d99/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/adafcbf1bfa081d5dd03c0b6a9893d99/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/adafcbf1bfa081d5dd03c0b6a9893d99/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/adafcbf1bfa081d5dd03c0b6a9893d99/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 42, + "NbFans": 187174, + "Radio": true, + "TopGenres": [ + "Dance", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 23, + "Name": "Martin Garrix", + "HasPublicSongs": true, + "SongId": 24, + "Color": "F1B500", + "DarkColor": "DC8E00", + "DeezerID": 4768753, + "DeezerURL": "https://www.deezer.com/artist/4768753", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 92, + "NbFans": 2307858, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 24, + "Name": "The Chainsmokers", + "HasPublicSongs": true, + "SongId": 696, + "Color": "EB8D69", + "DarkColor": "C27557", + "DeezerID": 81497052, + "DeezerURL": "https://www.deezer.com/artist/81497052", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0502288cd372ef63b5800d4ce8dd7af5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0502288cd372ef63b5800d4ce8dd7af5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0502288cd372ef63b5800d4ce8dd7af5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0502288cd372ef63b5800d4ce8dd7af5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 8, + "NbFans": 410, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 25, + "Name": "Mura Masa", + "HasPublicSongs": true, + "SongId": 22, + "Color": "E6333A", + "DarkColor": "81051D", + "DeezerID": 6087776, + "DeezerURL": "https://www.deezer.com/artist/6087776", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c6fad453a374951fb03a87fd7f5443a1/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c6fad453a374951fb03a87fd7f5443a1/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c6fad453a374951fb03a87fd7f5443a1/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c6fad453a374951fb03a87fd7f5443a1/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 56, + "NbFans": 47914, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Rap/Hip Hop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 26, + "Name": "Dizzee Rascal", + "HasPublicSongs": true, + "SongId": 253, + "Color": "E7456D", + "DarkColor": "671F2D", + "DeezerID": 2388, + "DeezerURL": "https://www.deezer.com/artist/2388", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ecb726115515357ae36b559c2b5d2089/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ecb726115515357ae36b559c2b5d2089/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ecb726115515357ae36b559c2b5d2089/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ecb726115515357ae36b559c2b5d2089/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 55, + "NbFans": 269324, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Electro", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 27, + "Name": "Psy", + "HasPublicSongs": true, + "SongId": 18, + "Color": "336235", + "DarkColor": "153D1E", + "DeezerID": 2014891, + "DeezerURL": "https://www.deezer.com/artist/2014891", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ef677f77fbe58f1d86b5934eaacc7984/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ef677f77fbe58f1d86b5934eaacc7984/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ef677f77fbe58f1d86b5934eaacc7984/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ef677f77fbe58f1d86b5934eaacc7984/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 3, + "NbFans": 9, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 28, + "Name": "BABYMETAL", + "HasPublicSongs": true, + "SongId": 29, + "Color": "C9001B", + "DarkColor": "5D000B", + "DeezerID": 7805012, + "DeezerURL": "https://www.deezer.com/artist/7805012", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/2df86b455e87992af899a45c79f973f3/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/2df86b455e87992af899a45c79f973f3/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/2df86b455e87992af899a45c79f973f3/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/2df86b455e87992af899a45c79f973f3/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 28, + "NbFans": 125574, + "Radio": true, + "TopGenres": [ + "Metal", + "Rock", + "Rock e Roll/Rockabilly" + ], + "Rank": null + }, + { + "ArtistId": 29, + "Name": "Queens of the Stone Age", + "HasPublicSongs": true, + "SongId": 151, + "Color": "E12223", + "DarkColor": "79000F", + "DeezerID": 1177, + "DeezerURL": "https://www.deezer.com/artist/1177", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/95e69463782f9cdbe7a0426ed5928870/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/95e69463782f9cdbe7a0426ed5928870/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/95e69463782f9cdbe7a0426ed5928870/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/95e69463782f9cdbe7a0426ed5928870/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 1276152, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 30, + "Name": "Portugal. The Man", + "HasPublicSongs": true, + "SongId": 31, + "Color": "FB9423", + "DarkColor": "F25501", + "DeezerID": 181878, + "DeezerURL": "https://www.deezer.com/artist/181878", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5e4067820fb792242a22193e7459508f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5e4067820fb792242a22193e7459508f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5e4067820fb792242a22193e7459508f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5e4067820fb792242a22193e7459508f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 75, + "NbFans": 122101, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 31, + "Name": "The Chemical Brothers", + "HasPublicSongs": true, + "SongId": 32, + "Color": "A74BB8", + "DarkColor": "693390", + "DeezerID": 81, + "DeezerURL": "https://www.deezer.com/artist/81", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5294e68e9ef4f0359237935a4b8388f2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5294e68e9ef4f0359237935a4b8388f2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5294e68e9ef4f0359237935a4b8388f2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5294e68e9ef4f0359237935a4b8388f2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 81, + "NbFans": 1414017, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 32, + "Name": "King Krule", + "HasPublicSongs": true, + "SongId": 33, + "Color": "FF97CC", + "DarkColor": "DA5CAC", + "DeezerID": 1461568, + "DeezerURL": "https://www.deezer.com/artist/1461568", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/af1116032ceead42e929c4a4a9fb6563/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/af1116032ceead42e929c4a4a9fb6563/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/af1116032ceead42e929c4a4a9fb6563/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/af1116032ceead42e929c4a4a9fb6563/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 20, + "NbFans": 62367, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 33, + "Name": "The Pogues", + "HasPublicSongs": true, + "SongId": 34, + "Color": "DEB28C", + "DarkColor": "D3907A", + "DeezerID": 1435, + "DeezerURL": "https://www.deezer.com/artist/1435", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b30bcb09f6c6e39c900df70a7e873e97/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b30bcb09f6c6e39c900df70a7e873e97/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b30bcb09f6c6e39c900df70a7e873e97/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b30bcb09f6c6e39c900df70a7e873e97/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 104775, + "Radio": true, + "TopGenres": [ + "Folk", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 34, + "Name": "Kirsty MacColl", + "HasPublicSongs": true, + "SongId": 34, + "Color": "DEB28C", + "DarkColor": "D3907A", + "DeezerID": 173232, + "DeezerURL": "https://www.deezer.com/artist/173232", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0bc7f762d86b47bf13f789ee952917cd/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0bc7f762d86b47bf13f789ee952917cd/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0bc7f762d86b47bf13f789ee952917cd/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0bc7f762d86b47bf13f789ee952917cd/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 17, + "NbFans": 4628, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 35, + "Name": "Andrew W.K.", + "HasPublicSongs": true, + "SongId": 35, + "Color": "A3001E", + "DarkColor": "350505", + "DeezerID": 3688, + "DeezerURL": "https://www.deezer.com/artist/3688", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5d8db8297cb5aae5feaaf8556d8dbc34/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5d8db8297cb5aae5feaaf8556d8dbc34/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5d8db8297cb5aae5feaaf8556d8dbc34/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5d8db8297cb5aae5feaaf8556d8dbc34/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 5, + "NbFans": 15263, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 36, + "Name": "The Prodigy", + "HasPublicSongs": true, + "SongId": 14, + "Color": "A52501", + "DarkColor": "430000", + "DeezerID": 85, + "DeezerURL": "https://www.deezer.com/artist/85", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4d884e6864623a3446040eaa8e9fb18d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4d884e6864623a3446040eaa8e9fb18d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4d884e6864623a3446040eaa8e9fb18d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4d884e6864623a3446040eaa8e9fb18d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 61, + "NbFans": 1680375, + "Radio": true, + "TopGenres": [ + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 37, + "Name": "Bloodhound Gang", + "HasPublicSongs": true, + "SongId": 36, + "Color": "0FB3F2", + "DarkColor": "026690", + "DeezerID": 65508502, + "DeezerURL": "https://www.deezer.com/artist/65508502", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ad63c3b8df1f71dd806bd31041d8c321/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ad63c3b8df1f71dd806bd31041d8c321/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ad63c3b8df1f71dd806bd31041d8c321/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ad63c3b8df1f71dd806bd31041d8c321/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 44, + "NbFans": 5155, + "Radio": true, + "TopGenres": [ + "Dance" + ], + "Rank": null + }, + { + "ArtistId": 38, + "Name": "Tiesto", + "HasPublicSongs": true, + "SongId": 604, + "Color": "AD2429", + "DarkColor": "6E0C00", + "DeezerID": 434, + "DeezerURL": "https://www.deezer.com/artist/434", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/37106f80dfd596909845fe017e204b71/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/37106f80dfd596909845fe017e204b71/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/37106f80dfd596909845fe017e204b71/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/37106f80dfd596909845fe017e204b71/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 350, + "NbFans": 3962266, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Trance" + ], + "Rank": null + }, + { + "ArtistId": 39, + "Name": "Rammstein", + "HasPublicSongs": true, + "SongId": 38, + "Color": "50707C", + "DarkColor": "2D424C", + "DeezerID": 464, + "DeezerURL": "https://www.deezer.com/artist/464", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f22cac6a41e838f54d2c7b4ea47b5f94/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f22cac6a41e838f54d2c7b4ea47b5f94/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f22cac6a41e838f54d2c7b4ea47b5f94/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f22cac6a41e838f54d2c7b4ea47b5f94/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 2495617, + "Radio": true, + "TopGenres": [ + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 40, + "Name": "Avril Lavigne", + "HasPublicSongs": true, + "SongId": 39, + "Color": "263E7D", + "DarkColor": "192951", + "DeezerID": 104800, + "DeezerURL": "https://www.deezer.com/artist/104800", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a3ca91ae45bbf676d2542bcf6cd2a0e8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a3ca91ae45bbf676d2542bcf6cd2a0e8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a3ca91ae45bbf676d2542bcf6cd2a0e8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a3ca91ae45bbf676d2542bcf6cd2a0e8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 42, + "NbFans": 2998, + "Radio": true, + "TopGenres": [ + "J-Pop", + "Música asiática" + ], + "Rank": null + }, + { + "ArtistId": 41, + "Name": "The White Stripes", + "HasPublicSongs": true, + "SongId": 40, + "Color": "D21F24", + "DarkColor": "76050B", + "DeezerID": 636, + "DeezerURL": "https://www.deezer.com/artist/636", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/aa559e3743497b4433758c6709fb7a78/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/aa559e3743497b4433758c6709fb7a78/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/aa559e3743497b4433758c6709fb7a78/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/aa559e3743497b4433758c6709fb7a78/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 33, + "NbFans": 1253078, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Dubstep", + "Electro", + "Indie Pop", + "Indie Rock", + "Indie rock/Rock pop", + "Reggae", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 42, + "Name": "The Weeknd", + "HasPublicSongs": true, + "SongId": 41, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 6223838, + "DeezerURL": "https://www.deezer.com/artist/6223838", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/045aad27b842e647b634781c37804cdd/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/045aad27b842e647b634781c37804cdd/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/045aad27b842e647b634781c37804cdd/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/045aad27b842e647b634781c37804cdd/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 59, + "NbFans": 12408, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 43, + "Name": "Vulfpeck", + "HasPublicSongs": true, + "SongId": 42, + "Color": "C5132F", + "DarkColor": "440004", + "DeezerID": 4441488, + "DeezerURL": "https://www.deezer.com/artist/4441488", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3ec38d89f48b85df7795eead1ef5c86f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3ec38d89f48b85df7795eead1ef5c86f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3ec38d89f48b85df7795eead1ef5c86f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3ec38d89f48b85df7795eead1ef5c86f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 12, + "NbFans": 51113, + "Radio": true, + "TopGenres": [ + "Pop", + "Pop internacional", + "R&B", + "Soul & Funk" + ], + "Rank": null + }, + { + "ArtistId": 44, + "Name": "WALK THE MOON", + "HasPublicSongs": true, + "SongId": 43, + "Color": "F4DF65", + "DarkColor": "C27936", + "DeezerID": 525307, + "DeezerURL": "https://www.deezer.com/artist/525307", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1abcb392fffc4efe16df65801ccd5212/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1abcb392fffc4efe16df65801ccd5212/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1abcb392fffc4efe16df65801ccd5212/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1abcb392fffc4efe16df65801ccd5212/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 23, + "NbFans": 307642, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Filmes/Games", + "Pop", + "Pop internacional", + "Rock", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 45, + "Name": "The Vamps", + "HasPublicSongs": true, + "SongId": 44, + "Color": "EA7CA3", + "DarkColor": "A72E68", + "DeezerID": 5171069, + "DeezerURL": "https://www.deezer.com/artist/5171069", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/fa6340bf63b8c6ee424bdeb24411828a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/fa6340bf63b8c6ee424bdeb24411828a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/fa6340bf63b8c6ee424bdeb24411828a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/fa6340bf63b8c6ee424bdeb24411828a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 60, + "NbFans": 712294, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 46, + "Name": "Goldfrapp", + "HasPublicSongs": true, + "SongId": 45, + "Color": "D0AB64", + "DarkColor": "7D5B3E", + "DeezerID": 108, + "DeezerURL": "https://www.deezer.com/artist/108", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d5c87e23e207443d9edd581118b19e72/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d5c87e23e207443d9edd581118b19e72/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d5c87e23e207443d9edd581118b19e72/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d5c87e23e207443d9edd581118b19e72/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 40, + "NbFans": 186797, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 48, + "Name": "Regard", + "HasPublicSongs": true, + "SongId": 47, + "Color": "E49FB2", + "DarkColor": "895169", + "DeezerID": 8185084, + "DeezerURL": "https://www.deezer.com/artist/8185084", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/094819cde9839e3be197a7e896e58f81/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/094819cde9839e3be197a7e896e58f81/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/094819cde9839e3be197a7e896e58f81/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/094819cde9839e3be197a7e896e58f81/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 44, + "NbFans": 86636, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Pop internacional", + "Rock", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 49, + "Name": "Nirvana", + "HasPublicSongs": true, + "SongId": 48, + "Color": "0097C1", + "DarkColor": "005E98", + "DeezerID": 415, + "DeezerURL": "https://www.deezer.com/artist/415", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3ec5542ff520ee74e2befdaba32ef2ef/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3ec5542ff520ee74e2befdaba32ef2ef/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3ec5542ff520ee74e2befdaba32ef2ef/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3ec5542ff520ee74e2befdaba32ef2ef/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 9527043, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 50, + "Name": "Turbowolf", + "HasPublicSongs": true, + "SongId": 49, + "Color": "DB352C", + "DarkColor": "9E1E23", + "DeezerID": 270047, + "DeezerURL": "https://www.deezer.com/artist/270047", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8717ef97f3c78d514f15e59b9d8451f7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8717ef97f3c78d514f15e59b9d8451f7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8717ef97f3c78d514f15e59b9d8451f7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8717ef97f3c78d514f15e59b9d8451f7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 7, + "NbFans": 5236, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 51, + "Name": "Billie Eilish", + "HasPublicSongs": true, + "SongId": 69, + "Color": "76FF00", + "DarkColor": "005F05", + "DeezerID": 9635624, + "DeezerURL": "https://www.deezer.com/artist/9635624", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8eab1a9a644889aabaca1e193e05f984/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8eab1a9a644889aabaca1e193e05f984/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8eab1a9a644889aabaca1e193e05f984/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8eab1a9a644889aabaca1e193e05f984/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 31, + "NbFans": 8436952, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 52, + "Name": "Tame Impala", + "HasPublicSongs": true, + "SongId": 52, + "Color": "AF81BA", + "DarkColor": "734C8B", + "DeezerID": 8461, + "DeezerURL": "https://www.deezer.com/artist/8461", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e567d5666b81d905cf1ec395c223b8ed/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e567d5666b81d905cf1ec395c223b8ed/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e567d5666b81d905cf1ec395c223b8ed/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e567d5666b81d905cf1ec395c223b8ed/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 45, + "NbFans": 17943, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Electro", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 53, + "Name": "Simple Minds", + "HasPublicSongs": true, + "SongId": 53, + "Color": "AD8A52", + "DarkColor": "563628", + "DeezerID": 1192, + "DeezerURL": "https://www.deezer.com/artist/1192", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4c802732227999ca78fdb5c8d76eae50/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4c802732227999ca78fdb5c8d76eae50/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4c802732227999ca78fdb5c8d76eae50/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4c802732227999ca78fdb5c8d76eae50/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 31, + "NbFans": 1045582, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 54, + "Name": "Marshmello", + "HasPublicSongs": true, + "SongId": 64, + "Color": "FF5D7B", + "DarkColor": "C11A55", + "DeezerID": 266169982, + "DeezerURL": "https://www.deezer.com/artist/266169982", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/239f55228be0eb98787240c69b585e8d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/239f55228be0eb98787240c69b585e8d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/239f55228be0eb98787240c69b585e8d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/239f55228be0eb98787240c69b585e8d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 6, + "NbFans": 165, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 55, + "Name": "Bastille", + "HasPublicSongs": true, + "SongId": 54, + "Color": "F1B500", + "DarkColor": "DC8E00", + "DeezerID": 1352097, + "DeezerURL": "https://www.deezer.com/artist/1352097", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6b76e1f7a7bda7e7e41950d12c77702f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6b76e1f7a7bda7e7e41950d12c77702f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6b76e1f7a7bda7e7e41950d12c77702f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6b76e1f7a7bda7e7e41950d12c77702f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 92, + "NbFans": 2210787, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Electro", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 56, + "Name": "The Pussycat Dolls", + "HasPublicSongs": true, + "SongId": 55, + "Color": "E4996A", + "DarkColor": "C76051", + "DeezerID": 83, + "DeezerURL": "https://www.deezer.com/artist/83", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5aec3c14113eff037f4c3b0192a20f37/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5aec3c14113eff037f4c3b0192a20f37/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5aec3c14113eff037f4c3b0192a20f37/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5aec3c14113eff037f4c3b0192a20f37/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 21, + "NbFans": 1030390, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 57, + "Name": "Ed Sheeran", + "HasPublicSongs": true, + "SongId": 483, + "Color": "E70030", + "DarkColor": "AC0528", + "DeezerID": 4768753, + "DeezerURL": "https://www.deezer.com/artist/4768753", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 92, + "NbFans": 2307858, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 58, + "Name": "Kelis", + "HasPublicSongs": true, + "SongId": 57, + "Color": "C47B66", + "DarkColor": "812D23", + "DeezerID": 2514, + "DeezerURL": "https://www.deezer.com/artist/2514", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8d32fa4e3753e81b7844acc1db80ca14/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8d32fa4e3753e81b7844acc1db80ca14/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8d32fa4e3753e81b7844acc1db80ca14/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8d32fa4e3753e81b7844acc1db80ca14/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 41, + "NbFans": 95465, + "Radio": true, + "TopGenres": [ + "Dance", + "R&B", + "Rap/Hip Hop", + "Soul & Funk" + ], + "Rank": null + }, + { + "ArtistId": 59, + "Name": "Primus", + "HasPublicSongs": true, + "SongId": 58, + "Color": "38B0B3", + "DarkColor": "11708C", + "DeezerID": 4056, + "DeezerURL": "https://www.deezer.com/artist/4056", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d04a6e7b3f08e46ebbde1d61997eda73/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d04a6e7b3f08e46ebbde1d61997eda73/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d04a6e7b3f08e46ebbde1d61997eda73/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d04a6e7b3f08e46ebbde1d61997eda73/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 21, + "NbFans": 95613, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 60, + "Name": "Iron Maiden", + "HasPublicSongs": true, + "SongId": 472, + "Color": "DA4334", + "DarkColor": "BE2D1F", + "DeezerID": 67, + "DeezerURL": "https://www.deezer.com/artist/67", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d841e3ff7379c9272005e53f1c46f5b9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d841e3ff7379c9272005e53f1c46f5b9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d841e3ff7379c9272005e53f1c46f5b9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d841e3ff7379c9272005e53f1c46f5b9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 59, + "NbFans": 2741196, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 61, + "Name": "Paramore", + "HasPublicSongs": true, + "SongId": 387, + "Color": "FFC6D3", + "DarkColor": "E581B7", + "DeezerID": 467, + "DeezerURL": "https://www.deezer.com/artist/467", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ff00ebcdc6b9bc6bddd4ec16fb9279be/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ff00ebcdc6b9bc6bddd4ec16fb9279be/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ff00ebcdc6b9bc6bddd4ec16fb9279be/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ff00ebcdc6b9bc6bddd4ec16fb9279be/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 32, + "NbFans": 7341, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "Rock", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 62, + "Name": "Grimes", + "HasPublicSongs": true, + "SongId": 269, + "Color": "1E7CBF", + "DarkColor": "034B95", + "DeezerID": 807493, + "DeezerURL": "https://www.deezer.com/artist/807493", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8a207720e8bed18bab25883fba019dc7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8a207720e8bed18bab25883fba019dc7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8a207720e8bed18bab25883fba019dc7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8a207720e8bed18bab25883fba019dc7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 26, + "NbFans": 258456, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 63, + "Name": "Imagine Dragons", + "HasPublicSongs": true, + "SongId": 62, + "Color": "6075B2", + "DarkColor": "3C4784", + "DeezerID": 472399, + "DeezerURL": "https://www.deezer.com/artist/472399", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b2f2683e3b7531a956a32dd11a4b173d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b2f2683e3b7531a956a32dd11a4b173d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b2f2683e3b7531a956a32dd11a4b173d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b2f2683e3b7531a956a32dd11a4b173d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 39, + "NbFans": 69644, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 64, + "Name": "KAROL G", + "HasPublicSongs": true, + "SongId": 254, + "Color": "CE8DA7", + "DarkColor": "763C63", + "DeezerID": 69763252, + "DeezerURL": "https://www.deezer.com/artist/69763252", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/89506bf08d99196d51ed6f0de2cab31e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/89506bf08d99196d51ed6f0de2cab31e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/89506bf08d99196d51ed6f0de2cab31e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/89506bf08d99196d51ed6f0de2cab31e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 45, + "NbFans": 9461, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Reggaeton" + ], + "Rank": null + }, + { + "ArtistId": 65, + "Name": "Juice WRLD", + "HasPublicSongs": true, + "SongId": 64, + "Color": "FF5D7B", + "DarkColor": "C11A55", + "DeezerID": 49818632, + "DeezerURL": "https://www.deezer.com/artist/49818632", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9faf91af495202aeab93e2d91b975851/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9faf91af495202aeab93e2d91b975851/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9faf91af495202aeab93e2d91b975851/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9faf91af495202aeab93e2d91b975851/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 39, + "NbFans": 698294, + "Radio": true, + "TopGenres": [ + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 66, + "Name": "Master KG", + "HasPublicSongs": true, + "SongId": 65, + "Color": "9C000D", + "DarkColor": "3B010A", + "DeezerID": 15216967, + "DeezerURL": "https://www.deezer.com/artist/15216967", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d59e7069dc54809cab23c7a4775faece/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d59e7069dc54809cab23c7a4775faece/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d59e7069dc54809cab23c7a4775faece/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d59e7069dc54809cab23c7a4775faece/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 59, + "NbFans": 88688, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 67, + "Name": "Nomcebo Zikode", + "HasPublicSongs": true, + "SongId": 65, + "Color": "9C000D", + "DarkColor": "3B010A", + "DeezerID": 60344202, + "DeezerURL": "https://www.deezer.com/artist/60344202", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/77d843028890ba38ad89c1ccbda1c780/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/77d843028890ba38ad89c1ccbda1c780/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/77d843028890ba38ad89c1ccbda1c780/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/77d843028890ba38ad89c1ccbda1c780/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 11, + "NbFans": 38598, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 69, + "Name": "Ado", + "HasPublicSongs": true, + "SongId": 67, + "Color": "D94F86", + "DarkColor": "642648", + "DeezerID": 10103420, + "DeezerURL": "https://www.deezer.com/artist/10103420", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9f65c606e074b4eaa6f5a12ac61b716a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9f65c606e074b4eaa6f5a12ac61b716a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9f65c606e074b4eaa6f5a12ac61b716a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9f65c606e074b4eaa6f5a12ac61b716a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 151, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 70, + "Name": "The 1975", + "HasPublicSongs": true, + "SongId": 293, + "Color": "984F25", + "DarkColor": "852F08", + "DeezerID": 3583591, + "DeezerURL": "https://www.deezer.com/artist/3583591", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3408c43ed74f73c88281b37a62a51638/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3408c43ed74f73c88281b37a62a51638/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3408c43ed74f73c88281b37a62a51638/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3408c43ed74f73c88281b37a62a51638/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 38, + "NbFans": 576556, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 71, + "Name": "Supercell", + "HasPublicSongs": true, + "SongId": 173, + "Color": "9C56DA", + "DarkColor": "5B31A1", + "DeezerID": 184460, + "DeezerURL": "https://www.deezer.com/artist/184460", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ff6d43eb738b911f86ce82ddd1e77038/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ff6d43eb738b911f86ce82ddd1e77038/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ff6d43eb738b911f86ce82ddd1e77038/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ff6d43eb738b911f86ce82ddd1e77038/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 22, + "NbFans": 16447, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 72, + "Name": "Kygo", + "HasPublicSongs": true, + "SongId": 72, + "Color": "CA9284", + "DarkColor": "A8655B", + "DeezerID": 4768753, + "DeezerURL": "https://www.deezer.com/artist/4768753", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c3e15399350755674d0462ddf51e0008/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 92, + "NbFans": 2307858, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 73, + "Name": "Jason Mraz", + "HasPublicSongs": true, + "SongId": 73, + "Color": "1E70DF", + "DarkColor": "02204C", + "DeezerID": 4011, + "DeezerURL": "https://www.deezer.com/artist/4011", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e583babc5baa0122de654ffa872ac6e9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e583babc5baa0122de654ffa872ac6e9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e583babc5baa0122de654ffa872ac6e9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e583babc5baa0122de654ffa872ac6e9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 74, + "NbFans": 2386954, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 74, + "Name": "YELLOW MAGIC ORCHESTRA", + "HasPublicSongs": true, + "SongId": 74, + "Color": "E1473A", + "DarkColor": "C22826", + "DeezerID": 5088, + "DeezerURL": "https://www.deezer.com/artist/5088", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/cd0e93fb551fccb8f7697d5d98a8e677/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/cd0e93fb551fccb8f7697d5d98a8e677/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/cd0e93fb551fccb8f7697d5d98a8e677/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/cd0e93fb551fccb8f7697d5d98a8e677/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 28, + "NbFans": 8325, + "Radio": true, + "TopGenres": [ + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 75, + "Name": "The Hives", + "HasPublicSongs": true, + "SongId": 75, + "Color": "364E68", + "DarkColor": "12283A", + "DeezerID": 621, + "DeezerURL": "https://www.deezer.com/artist/621", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4e797c9c378f3bbb234289c1ecbef040/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4e797c9c378f3bbb234289c1ecbef040/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4e797c9c378f3bbb234289c1ecbef040/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4e797c9c378f3bbb234289c1ecbef040/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 26, + "NbFans": 222344, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Rock", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 76, + "Name": "Presets", + "HasPublicSongs": true, + "SongId": 76, + "Color": "5E80B0", + "DarkColor": "3C5480", + "DeezerID": 352180, + "DeezerURL": "https://www.deezer.com/artist/352180", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d790b5e35656a2ac3e61307b74d1b234/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d790b5e35656a2ac3e61307b74d1b234/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d790b5e35656a2ac3e61307b74d1b234/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d790b5e35656a2ac3e61307b74d1b234/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 1, + "NbFans": 265, + "Radio": true, + "TopGenres": [ + "Gospel", + "Música Religiosa" + ], + "Rank": null + }, + { + "ArtistId": 77, + "Name": "Perfume Genius", + "HasPublicSongs": true, + "SongId": 77, + "Color": "234F4F", + "DarkColor": "1B313E", + "DeezerID": 964, + "DeezerURL": "https://www.deezer.com/artist/964", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/474165e8b02acf8fd7d2aa19a08d7a6b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/474165e8b02acf8fd7d2aa19a08d7a6b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/474165e8b02acf8fd7d2aa19a08d7a6b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/474165e8b02acf8fd7d2aa19a08d7a6b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 332832, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 78, + "Name": "Clutch", + "HasPublicSongs": true, + "SongId": 78, + "Color": "B16041", + "DarkColor": "914337", + "DeezerID": 1484465, + "DeezerURL": "https://www.deezer.com/artist/1484465", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/db52f152ff2c14c32d5abce469b6d18c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/db52f152ff2c14c32d5abce469b6d18c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/db52f152ff2c14c32d5abce469b6d18c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/db52f152ff2c14c32d5abce469b6d18c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 4, + "NbFans": 249, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 79, + "Name": "Radiohead", + "HasPublicSongs": true, + "SongId": 79, + "Color": "EE492E", + "DarkColor": "980915", + "DeezerID": 399, + "DeezerURL": "https://www.deezer.com/artist/399", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9508c1217e880b52703a525d1bd5250c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9508c1217e880b52703a525d1bd5250c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9508c1217e880b52703a525d1bd5250c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9508c1217e880b52703a525d1bd5250c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 44, + "NbFans": 3705417, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 80, + "Name": "Blanco Brown", + "HasPublicSongs": true, + "SongId": 80, + "Color": "DFB231", + "DarkColor": "C27830", + "DeezerID": 64568682, + "DeezerURL": "https://www.deezer.com/artist/64568682", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/32f184734329138187088c704862f4e3/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/32f184734329138187088c704862f4e3/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/32f184734329138187088c704862f4e3/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/32f184734329138187088c704862f4e3/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 7872, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 81, + "Name": "TV on the radio", + "HasPublicSongs": true, + "SongId": 81, + "Color": "DFB231", + "DarkColor": "C27830", + "DeezerID": 1239, + "DeezerURL": "https://www.deezer.com/artist/1239", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/70c476749216375075db168a343cec28/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/70c476749216375075db168a343cec28/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/70c476749216375075db168a343cec28/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/70c476749216375075db168a343cec28/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 24, + "NbFans": 106358, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie rock/Rock pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 82, + "Name": "HAIM", + "HasPublicSongs": true, + "SongId": 82, + "Color": "00A0C4", + "DarkColor": "0C4C76", + "DeezerID": 93674, + "DeezerURL": "https://www.deezer.com/artist/93674", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c9940a2a59eeb48d74f7938c53acab1a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c9940a2a59eeb48d74f7938c53acab1a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c9940a2a59eeb48d74f7938c53acab1a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c9940a2a59eeb48d74f7938c53acab1a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 32, + "NbFans": 120559, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 83, + "Name": "Vince Staples", + "HasPublicSongs": true, + "SongId": 83, + "Color": "D17440", + "DarkColor": "852F23", + "DeezerID": 4037971, + "DeezerURL": "https://www.deezer.com/artist/4037971", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/52c68f84bdb34d5e43cda73c0c458931/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/52c68f84bdb34d5e43cda73c0c458931/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/52c68f84bdb34d5e43cda73c0c458931/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/52c68f84bdb34d5e43cda73c0c458931/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 27, + "NbFans": 80796, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Filmes/Games", + "Rap/Hip Hop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 84, + "Name": "Jaded", + "HasPublicSongs": true, + "SongId": 84, + "Color": "F7BEB5", + "DarkColor": "CE717B", + "DeezerID": 393033, + "DeezerURL": "https://www.deezer.com/artist/393033", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4d7e1ad6774b5af25c65a215bcb2f1df/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4d7e1ad6774b5af25c65a215bcb2f1df/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4d7e1ad6774b5af25c65a215bcb2f1df/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4d7e1ad6774b5af25c65a215bcb2f1df/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 22, + "NbFans": 4154, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 85, + "Name": "Cameo", + "HasPublicSongs": true, + "SongId": 86, + "Color": "E86730", + "DarkColor": "911A1A", + "DeezerID": 4459894, + "DeezerURL": "https://www.deezer.com/artist/4459894", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5d87abf237c3f2c978bc1cba4cfaa070/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5d87abf237c3f2c978bc1cba4cfaa070/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5d87abf237c3f2c978bc1cba4cfaa070/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5d87abf237c3f2c978bc1cba4cfaa070/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 29, + "NbFans": 623132, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 86, + "Name": "Supergrass", + "HasPublicSongs": true, + "SongId": 87, + "Color": "354D67", + "DarkColor": "1C3247", + "DeezerID": 1320, + "DeezerURL": "https://www.deezer.com/artist/1320", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c04011bdf16691561dc7bea2a7bd0831/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c04011bdf16691561dc7bea2a7bd0831/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c04011bdf16691561dc7bea2a7bd0831/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c04011bdf16691561dc7bea2a7bd0831/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 40, + "NbFans": 69124, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 87, + "Name": "Blondie", + "HasPublicSongs": true, + "SongId": 340, + "Color": "960019", + "DarkColor": "300505", + "DeezerID": 425, + "DeezerURL": "https://www.deezer.com/artist/425", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b70e19feb83c794c394db4a14283ffe6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b70e19feb83c794c394db4a14283ffe6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b70e19feb83c794c394db4a14283ffe6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b70e19feb83c794c394db4a14283ffe6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 67, + "NbFans": 756125, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 88, + "Name": "Jax Jones", + "HasPublicSongs": true, + "SongId": 89, + "Color": "E1473A", + "DarkColor": "C22826", + "DeezerID": 5462679, + "DeezerURL": "https://www.deezer.com/artist/5462679", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/bbdb8680e0e63b6ec99257d753d96a97/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/bbdb8680e0e63b6ec99257d753d96a97/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/bbdb8680e0e63b6ec99257d753d96a97/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/bbdb8680e0e63b6ec99257d753d96a97/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 99, + "NbFans": 394112, + "Radio": true, + "TopGenres": [ + "Dance" + ], + "Rank": null + }, + { + "ArtistId": 89, + "Name": "Mike Dunn", + "HasPublicSongs": true, + "SongId": 89, + "Color": "E1473A", + "DarkColor": "C22826", + "DeezerID": 179482, + "DeezerURL": "https://www.deezer.com/artist/179482", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/53883ba6eca0ff64d1abcaa0595b56a0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/53883ba6eca0ff64d1abcaa0595b56a0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/53883ba6eca0ff64d1abcaa0595b56a0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/53883ba6eca0ff64d1abcaa0595b56a0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 86, + "NbFans": 1088, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 90, + "Name": "MNEK", + "HasPublicSongs": true, + "SongId": 89, + "Color": "E1473A", + "DarkColor": "C22826", + "DeezerID": 1454125, + "DeezerURL": "https://www.deezer.com/artist/1454125", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ef05173de857a3c8d0d8acde8db873d7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ef05173de857a3c8d0d8acde8db873d7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ef05173de857a3c8d0d8acde8db873d7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ef05173de857a3c8d0d8acde8db873d7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 53, + "NbFans": 159174, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 93, + "Name": "NERO", + "HasPublicSongs": true, + "SongId": 202, + "Color": "3D51CD", + "DarkColor": "1D1EA1", + "DeezerID": 92883, + "DeezerURL": "https://www.deezer.com/artist/92883", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f57546e15426fe5a972d5e11b02cd721/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f57546e15426fe5a972d5e11b02cd721/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f57546e15426fe5a972d5e11b02cd721/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f57546e15426fe5a972d5e11b02cd721/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 28, + "NbFans": 212489, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 94, + "Name": "Goldfinger", + "HasPublicSongs": true, + "SongId": 92, + "Color": "E20A14", + "DarkColor": "830011", + "DeezerID": 2128, + "DeezerURL": "https://www.deezer.com/artist/2128", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f91f88eeeec24f9204d03de4e8020cb5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f91f88eeeec24f9204d03de4e8020cb5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f91f88eeeec24f9204d03de4e8020cb5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f91f88eeeec24f9204d03de4e8020cb5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 12, + "NbFans": 45607, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 95, + "Name": "City High", + "HasPublicSongs": true, + "SongId": 93, + "Color": "99392A", + "DarkColor": "432423", + "DeezerID": 7566, + "DeezerURL": "https://www.deezer.com/artist/7566", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/dc8d2eb2d9ea2268d1b3b5c540c49874/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/dc8d2eb2d9ea2268d1b3b5c540c49874/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/dc8d2eb2d9ea2268d1b3b5c540c49874/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/dc8d2eb2d9ea2268d1b3b5c540c49874/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 4, + "NbFans": 3669, + "Radio": true, + "TopGenres": [ + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 96, + "Name": "Baha Men", + "HasPublicSongs": true, + "SongId": 94, + "Color": "DF960C", + "DarkColor": "BE5F00", + "DeezerID": 690, + "DeezerURL": "https://www.deezer.com/artist/690", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/07dd288d09175aafa60cc42e74d6abd5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/07dd288d09175aafa60cc42e74d6abd5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/07dd288d09175aafa60cc42e74d6abd5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/07dd288d09175aafa60cc42e74d6abd5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 23, + "NbFans": 3853, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Filmes/Games", + "Pop", + "Rap/Hip Hop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 97, + "Name": "Ellie Goulding", + "HasPublicSongs": true, + "SongId": 96, + "Color": "D5B177", + "DarkColor": "A17D52", + "DeezerID": 311820, + "DeezerURL": "https://www.deezer.com/artist/311820", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5c824c50f3d8befaac53c64abc7416f8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5c824c50f3d8befaac53c64abc7416f8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5c824c50f3d8befaac53c64abc7416f8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5c824c50f3d8befaac53c64abc7416f8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 94, + "NbFans": 6128223, + "Radio": true, + "TopGenres": [ + "Dance", + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 98, + "Name": "Placebo", + "HasPublicSongs": true, + "SongId": 97, + "Color": "F1D20F", + "DarkColor": "C27502", + "DeezerID": 332715, + "DeezerURL": "https://www.deezer.com/artist/332715", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/21aa992995f55c16b85d6ad72af316d0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/21aa992995f55c16b85d6ad72af316d0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/21aa992995f55c16b85d6ad72af316d0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/21aa992995f55c16b85d6ad72af316d0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 3, + "NbFans": 211, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 99, + "Name": "Doja Cat", + "HasPublicSongs": true, + "SongId": 142, + "Color": "E8947B", + "DarkColor": "BF544E", + "DeezerID": 285841091, + "DeezerURL": "https://www.deezer.com/artist/285841091", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/45b3198b8f3a45c451dc5c5968338a6a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/45b3198b8f3a45c451dc5c5968338a6a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/45b3198b8f3a45c451dc5c5968338a6a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/45b3198b8f3a45c451dc5c5968338a6a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 2, + "NbFans": 89, + "Radio": true, + "TopGenres": [ + "Dance" + ], + "Rank": null + }, + { + "ArtistId": 100, + "Name": "24kGoldn", + "HasPublicSongs": true, + "SongId": 99, + "Color": "AB5624", + "DarkColor": "781A0A", + "DeezerID": 13878655, + "DeezerURL": "https://www.deezer.com/artist/13878655", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/383a35d665bb42cc5d885050f8200830/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/383a35d665bb42cc5d885050f8200830/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/383a35d665bb42cc5d885050f8200830/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/383a35d665bb42cc5d885050f8200830/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 57, + "NbFans": 244851, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Filmes/Games", + "Pop", + "Rap/Hip Hop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 101, + "Name": "Iann Dior", + "HasPublicSongs": true, + "SongId": 99, + "Color": "AB5624", + "DarkColor": "781A0A", + "DeezerID": 59936352, + "DeezerURL": "https://www.deezer.com/artist/59936352", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5986e5744113844df4866bc6d9d2ebe2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5986e5744113844df4866bc6d9d2ebe2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5986e5744113844df4866bc6d9d2ebe2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5986e5744113844df4866bc6d9d2ebe2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 44, + "NbFans": 173051, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 102, + "Name": "Avicii", + "HasPublicSongs": true, + "SongId": 100, + "Color": "FFA90A", + "DarkColor": "E66F1D", + "DeezerID": 306898, + "DeezerURL": "https://www.deezer.com/artist/306898", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/243a0ede39075f2251c3d18c4765bfed/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/243a0ede39075f2251c3d18c4765bfed/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/243a0ede39075f2251c3d18c4765bfed/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/243a0ede39075f2251c3d18c4765bfed/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 254, + "NbFans": 2056588, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 103, + "Name": "TCTS", + "HasPublicSongs": true, + "SongId": 102, + "Color": "A7E633", + "DarkColor": "368B2F", + "DeezerID": 1770011, + "DeezerURL": "https://www.deezer.com/artist/1770011", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/33fca0aa9d0e64dd6849113a019575eb/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/33fca0aa9d0e64dd6849113a019575eb/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/33fca0aa9d0e64dd6849113a019575eb/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/33fca0aa9d0e64dd6849113a019575eb/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 73, + "NbFans": 2580, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 104, + "Name": "Maya B", + "HasPublicSongs": true, + "SongId": 102, + "Color": "A7E633", + "DarkColor": "368B2F", + "DeezerID": 13261789, + "DeezerURL": "https://www.deezer.com/artist/13261789", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6e62cd33ca904509c4ac1ea71bbbc538/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6e62cd33ca904509c4ac1ea71bbbc538/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6e62cd33ca904509c4ac1ea71bbbc538/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6e62cd33ca904509c4ac1ea71bbbc538/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 16, + "NbFans": 476, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 105, + "Name": "ONE OK ROCK", + "HasPublicSongs": true, + "SongId": 161, + "Color": "2C314B", + "DarkColor": "1C1927", + "DeezerID": 469713, + "DeezerURL": "https://www.deezer.com/artist/469713", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f2e7c7631f2476c8e5d0987810eff4ea/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f2e7c7631f2476c8e5d0987810eff4ea/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f2e7c7631f2476c8e5d0987810eff4ea/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f2e7c7631f2476c8e5d0987810eff4ea/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 48, + "NbFans": 115144, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 106, + "Name": "Alkaline Trio", + "HasPublicSongs": true, + "SongId": 104, + "Color": "960019", + "DarkColor": "300505", + "DeezerID": 944, + "DeezerURL": "https://www.deezer.com/artist/944", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/cc90a95625709c91640a4e29973c96f1/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/cc90a95625709c91640a4e29973c96f1/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/cc90a95625709c91640a4e29973c96f1/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/cc90a95625709c91640a4e29973c96f1/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 31, + "NbFans": 48461, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 107, + "Name": "Justin Bieber", + "HasPublicSongs": true, + "SongId": 359, + "Color": "73FBCE", + "DarkColor": "265445", + "DeezerID": 5828, + "DeezerURL": "https://www.deezer.com/artist/5828", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f68b4f01414c76b7f36dcb979c88c367/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f68b4f01414c76b7f36dcb979c88c367/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f68b4f01414c76b7f36dcb979c88c367/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f68b4f01414c76b7f36dcb979c88c367/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 54, + "NbFans": 1609016, + "Radio": true, + "TopGenres": [ + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 108, + "Name": "Cypress Hill", + "HasPublicSongs": true, + "SongId": 106, + "Color": "C49454", + "DarkColor": "9C6A3B", + "DeezerID": 71966622, + "DeezerURL": "https://www.deezer.com/artist/71966622", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8655328f35270c0bbff2b51e481ed719/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8655328f35270c0bbff2b51e481ed719/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8655328f35270c0bbff2b51e481ed719/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8655328f35270c0bbff2b51e481ed719/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 66, + "NbFans": 1287, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 109, + "Name": "Sepultura", + "HasPublicSongs": true, + "SongId": 107, + "Color": "E1473A", + "DarkColor": "C22826", + "DeezerID": 632, + "DeezerURL": "https://www.deezer.com/artist/632", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4f49332c592e058764737acba6dd0ee2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4f49332c592e058764737acba6dd0ee2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4f49332c592e058764737acba6dd0ee2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4f49332c592e058764737acba6dd0ee2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 45, + "NbFans": 837649, + "Radio": true, + "TopGenres": [ + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 110, + "Name": "Harry Shotta", + "HasPublicSongs": true, + "SongId": 108, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 408737, + "DeezerURL": "https://www.deezer.com/artist/408737", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/114eb0826e93677fb4ad2ee0fe69e840/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/114eb0826e93677fb4ad2ee0fe69e840/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/114eb0826e93677fb4ad2ee0fe69e840/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/114eb0826e93677fb4ad2ee0fe69e840/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 60, + "NbFans": 3744, + "Radio": true, + "TopGenres": [ + "Dance", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 111, + "Name": "Brawl Stars", + "HasPublicSongs": true, + "SongId": 149, + "Color": "FA0089", + "DarkColor": "AD005E", + "DeezerID": 142401022, + "DeezerURL": "https://www.deezer.com/artist/142401022", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4a57e55375be9c64fcde8160b0a6fd87/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4a57e55375be9c64fcde8160b0a6fd87/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4a57e55375be9c64fcde8160b0a6fd87/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4a57e55375be9c64fcde8160b0a6fd87/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 16, + "NbFans": 9360, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Rock", + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 112, + "Name": "Bad Randoms", + "HasPublicSongs": true, + "SongId": 149, + "Color": "FA0089", + "DarkColor": "AD005E", + "DeezerID": 142401032, + "DeezerURL": "https://www.deezer.com/artist/142401032", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e5f8ac8f8d4ed198ab1b01960d5eed10/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e5f8ac8f8d4ed198ab1b01960d5eed10/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e5f8ac8f8d4ed198ab1b01960d5eed10/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e5f8ac8f8d4ed198ab1b01960d5eed10/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 5, + "NbFans": 3483, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Rock" + ], + "Rank": null + }, + { + "ArtistId": 113, + "Name": "Chief Keef", + "HasPublicSongs": true, + "SongId": 109, + "Color": "EEB122", + "DarkColor": "A26D13", + "DeezerID": 12431462, + "DeezerURL": "https://www.deezer.com/artist/12431462", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b09e4a95b142b80f4730ab0c64356e3c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b09e4a95b142b80f4730ab0c64356e3c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b09e4a95b142b80f4730ab0c64356e3c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b09e4a95b142b80f4730ab0c64356e3c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 32, + "NbFans": 233824, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 114, + "Name": "Erykah Badu", + "HasPublicSongs": true, + "SongId": 110, + "Color": "ED8251", + "DarkColor": "D85126", + "DeezerID": 2056, + "DeezerURL": "https://www.deezer.com/artist/2056", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6ef36c363986e04091eb72446e9a97b5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6ef36c363986e04091eb72446e9a97b5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6ef36c363986e04091eb72446e9a97b5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6ef36c363986e04091eb72446e9a97b5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 22, + "NbFans": 385926, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 116, + "Name": "Pixies", + "HasPublicSongs": true, + "SongId": 112, + "Color": "2C5964", + "DarkColor": "1C323B", + "DeezerID": 4677655, + "DeezerURL": "https://www.deezer.com/artist/4677655", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/487f1e3bd864cfc040bbe5318fc383ea/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/487f1e3bd864cfc040bbe5318fc383ea/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/487f1e3bd864cfc040bbe5318fc383ea/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/487f1e3bd864cfc040bbe5318fc383ea/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 62, + "NbFans": 401090, + "Radio": true, + "TopGenres": [ + "Dance", + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 117, + "Name": "5 Seconds of Summer", + "HasPublicSongs": true, + "SongId": 245, + "Color": "CC1B71", + "DarkColor": "7A1051", + "DeezerID": 4103408, + "DeezerURL": "https://www.deezer.com/artist/4103408", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/81903f45d95efff494934ebca164920a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/81903f45d95efff494934ebca164920a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/81903f45d95efff494934ebca164920a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/81903f45d95efff494934ebca164920a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 53, + "NbFans": 1921312, + "Radio": true, + "TopGenres": [ + "Dance", + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 118, + "Name": "CKay", + "HasPublicSongs": true, + "SongId": 113, + "Color": "4F4EFA", + "DarkColor": "2115CD", + "DeezerID": 903536, + "DeezerURL": "https://www.deezer.com/artist/903536", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/032e7d03d75414baf8b73411e6679a13/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/032e7d03d75414baf8b73411e6679a13/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/032e7d03d75414baf8b73411e6679a13/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/032e7d03d75414baf8b73411e6679a13/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 48, + "NbFans": 217145, + "Radio": true, + "TopGenres": [ + "Música Africana" + ], + "Rank": null + }, + { + "ArtistId": 119, + "Name": "6LACK", + "HasPublicSongs": true, + "SongId": 114, + "Color": "17AFB8", + "DarkColor": "052539", + "DeezerID": 10375188, + "DeezerURL": "https://www.deezer.com/artist/10375188", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/99efcda22e449394f3362defa4aeb4bb/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/99efcda22e449394f3362defa4aeb4bb/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/99efcda22e449394f3362defa4aeb4bb/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/99efcda22e449394f3362defa4aeb4bb/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 54, + "NbFans": 393169, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 120, + "Name": "702", + "HasPublicSongs": true, + "SongId": 115, + "Color": "B8286A", + "DarkColor": "511137", + "DeezerID": 13734, + "DeezerURL": "https://www.deezer.com/artist/13734", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e8f5b69f6bc294e0a5571262858091ff/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e8f5b69f6bc294e0a5571262858091ff/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e8f5b69f6bc294e0a5571262858091ff/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e8f5b69f6bc294e0a5571262858091ff/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 8, + "NbFans": 6769, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 121, + "Name": "Foo Fighters", + "HasPublicSongs": true, + "SongId": 116, + "Color": "E12223", + "DarkColor": "79000F", + "DeezerID": 566, + "DeezerURL": "https://www.deezer.com/artist/566", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c9fbc9d48786e6931dd9a671daf2a1b5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c9fbc9d48786e6931dd9a671daf2a1b5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c9fbc9d48786e6931dd9a671daf2a1b5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c9fbc9d48786e6931dd9a671daf2a1b5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 42, + "NbFans": 4379003, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Pop internacional", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 122, + "Name": "Quavo", + "HasPublicSongs": true, + "SongId": 117, + "Color": "E86730", + "DarkColor": "BE3727", + "DeezerID": 5059044, + "DeezerURL": "https://www.deezer.com/artist/5059044", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f87b58796ff9dd521718080f434df538/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f87b58796ff9dd521718080f434df538/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f87b58796ff9dd521718080f434df538/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f87b58796ff9dd521718080f434df538/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 70, + "NbFans": 703792, + "Radio": true, + "TopGenres": [ + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 123, + "Name": "Post Malone", + "HasPublicSongs": true, + "SongId": 573, + "Color": "50B8CE", + "DarkColor": "0D559D", + "DeezerID": 7543848, + "DeezerURL": "https://www.deezer.com/artist/7543848", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a5a8cca44e7eab2db7d44e039bed2574/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a5a8cca44e7eab2db7d44e039bed2574/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a5a8cca44e7eab2db7d44e039bed2574/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a5a8cca44e7eab2db7d44e039bed2574/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 38, + "NbFans": 3956744, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Rap/Hip Hop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 124, + "Name": "Sublime", + "HasPublicSongs": true, + "SongId": 244, + "Color": "8D1834", + "DarkColor": "4E1924", + "DeezerID": 468743, + "DeezerURL": "https://www.deezer.com/artist/468743", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/98463aa175a133aac8a0243af785b3ce/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/98463aa175a133aac8a0243af785b3ce/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/98463aa175a133aac8a0243af785b3ce/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/98463aa175a133aac8a0243af785b3ce/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 43, + "NbFans": 678671, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 125, + "Name": "Gym Class Heroes", + "HasPublicSongs": true, + "SongId": 119, + "Color": "89CA0D", + "DarkColor": "3D8503", + "DeezerID": 5576, + "DeezerURL": "https://www.deezer.com/artist/5576", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/81b6ad03b61a35e8aef509e63a437bc1/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/81b6ad03b61a35e8aef509e63a437bc1/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/81b6ad03b61a35e8aef509e63a437bc1/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/81b6ad03b61a35e8aef509e63a437bc1/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 307810, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 127, + "Name": "Powfu", + "HasPublicSongs": true, + "SongId": 128, + "Color": "C9A0E4", + "DarkColor": "7165A1", + "DeezerID": 14107147, + "DeezerURL": "https://www.deezer.com/artist/14107147", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1575717abe8af5e9cbc3dd81358200d9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1575717abe8af5e9cbc3dd81358200d9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1575717abe8af5e9cbc3dd81358200d9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1575717abe8af5e9cbc3dd81358200d9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 72, + "NbFans": 95022, + "Radio": true, + "TopGenres": [ + "Gospel", + "Música Religiosa", + "Pop", + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 128, + "Name": "beabadoobee", + "HasPublicSongs": true, + "SongId": 128, + "Color": "C9A0E4", + "DarkColor": "7165A1", + "DeezerID": 11573699, + "DeezerURL": "https://www.deezer.com/artist/11573699", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/933a9fcd1f1b4eae73e3f75bdf5fd3a0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/933a9fcd1f1b4eae73e3f75bdf5fd3a0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/933a9fcd1f1b4eae73e3f75bdf5fd3a0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/933a9fcd1f1b4eae73e3f75bdf5fd3a0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 22, + "NbFans": 409756, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 129, + "Name": "Royal Blood", + "HasPublicSongs": true, + "SongId": 121, + "Color": "1E70DF", + "DarkColor": "02204C", + "DeezerID": 1035806, + "DeezerURL": "https://www.deezer.com/artist/1035806", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ab2e3dd23b1d71f4c9b7403e538a7d9c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ab2e3dd23b1d71f4c9b7403e538a7d9c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ab2e3dd23b1d71f4c9b7403e538a7d9c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ab2e3dd23b1d71f4c9b7403e538a7d9c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 24, + "NbFans": 359286, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 130, + "Name": "Fall Out Boy", + "HasPublicSongs": true, + "SongId": 122, + "Color": "7F2723", + "DarkColor": "4D2321", + "DeezerID": 404, + "DeezerURL": "https://www.deezer.com/artist/404", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f53434390dd76ef724cdc26df7a0b64d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f53434390dd76ef724cdc26df7a0b64d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f53434390dd76ef724cdc26df7a0b64d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f53434390dd76ef724cdc26df7a0b64d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 52, + "NbFans": 2474450, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 131, + "Name": "Ultra Nate", + "HasPublicSongs": true, + "SongId": 125, + "Color": "E51A18", + "DarkColor": "750D0C", + "DeezerID": 9099, + "DeezerURL": "https://www.deezer.com/artist/9099", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/825f7b460438bdb5f4a52ac45a90e6ca/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/825f7b460438bdb5f4a52ac45a90e6ca/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/825f7b460438bdb5f4a52ac45a90e6ca/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/825f7b460438bdb5f4a52ac45a90e6ca/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 35, + "NbFans": 12632, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 132, + "Name": "Camila Cabello", + "HasPublicSongs": true, + "SongId": 123, + "Color": "4579C1", + "DarkColor": "2F4681", + "DeezerID": 9236850, + "DeezerURL": "https://www.deezer.com/artist/9236850", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4591e8a49868c2494652767f47695a90/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4591e8a49868c2494652767f47695a90/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4591e8a49868c2494652767f47695a90/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4591e8a49868c2494652767f47695a90/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 40, + "NbFans": 3742369, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 133, + "Name": "Zedd", + "HasPublicSongs": true, + "SongId": 12, + "Color": "F37093", + "DarkColor": "9F2F5D", + "DeezerID": 117467152, + "DeezerURL": "https://www.deezer.com/artist/117467152", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/94359bc0a80be5be25d90d6ef1a02b63/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/94359bc0a80be5be25d90d6ef1a02b63/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/94359bc0a80be5be25d90d6ef1a02b63/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/94359bc0a80be5be25d90d6ef1a02b63/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 44, + "NbFans": 18831, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 134, + "Name": "Maren Morris", + "HasPublicSongs": true, + "SongId": 129, + "Color": "E2B4C6", + "DarkColor": "9E657B", + "DeezerID": 393541, + "DeezerURL": "https://www.deezer.com/artist/393541", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/24ca53c8a34f864842b1c00ae4eec576/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/24ca53c8a34f864842b1c00ae4eec576/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/24ca53c8a34f864842b1c00ae4eec576/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/24ca53c8a34f864842b1c00ae4eec576/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 38, + "NbFans": 78007, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Filmes/Games", + "Folk", + "Indie Pop", + "Indie Rock", + "Pop", + "Rock", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 135, + "Name": "Grey", + "HasPublicSongs": true, + "SongId": 205, + "Color": "AC0620", + "DarkColor": "5A0001", + "DeezerID": 11075898, + "DeezerURL": "https://www.deezer.com/artist/11075898", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6ad401809e385b77ab976d184215c533/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6ad401809e385b77ab976d184215c533/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6ad401809e385b77ab976d184215c533/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6ad401809e385b77ab976d184215c533/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 49, + "NbFans": 18784, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "R&B", + "R&B contemporâneo" + ], + "Rank": null + }, + { + "ArtistId": 136, + "Name": "DISH//", + "HasPublicSongs": true, + "SongId": 124, + "Color": "49E569", + "DarkColor": "027954", + "DeezerID": 602, + "DeezerURL": "https://www.deezer.com/artist/602", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e7ebac99a1692e5199d79f7dbbc33762/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e7ebac99a1692e5199d79f7dbbc33762/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e7ebac99a1692e5199d79f7dbbc33762/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e7ebac99a1692e5199d79f7dbbc33762/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 27, + "NbFans": 21464, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Rock", + "Trance" + ], + "Rank": null + }, + { + "ArtistId": 137, + "Name": "Bossa Studios / Black Heron", + "HasPublicSongs": true, + "SongId": 130, + "Color": "E6333A", + "DarkColor": "81051D" + }, + { + "ArtistId": 138, + "Name": "Jim Guthrie & J.J. Ipsen", + "HasPublicSongs": true, + "SongId": 131, + "Color": "D57A9D", + "DarkColor": "B93359" + }, + { + "ArtistId": 139, + "Name": "Roberto Bazzoni / Nitrome", + "HasPublicSongs": true, + "SongId": 132, + "Color": "B2FA00", + "DarkColor": "00653C" + }, + { + "ArtistId": 141, + "Name": "Coldplay", + "HasPublicSongs": true, + "SongId": 672, + "Color": "2E3D62", + "DarkColor": "1C1B36", + "DeezerID": 892, + "DeezerURL": "https://www.deezer.com/artist/892", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3087954bca22f306324912e5ac8375c3/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3087954bca22f306324912e5ac8375c3/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3087954bca22f306324912e5ac8375c3/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3087954bca22f306324912e5ac8375c3/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 115, + "NbFans": 17545344, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 143, + "Name": "Stan Bush", + "HasPublicSongs": true, + "SongId": 134, + "Color": "EB4E24", + "DarkColor": "830011", + "DeezerID": 558195, + "DeezerURL": "https://www.deezer.com/artist/558195", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3794a685a36df3edb760fbb9ff2aede2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3794a685a36df3edb760fbb9ff2aede2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3794a685a36df3edb760fbb9ff2aede2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3794a685a36df3edb760fbb9ff2aede2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 21, + "NbFans": 2655, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "Rock", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 144, + "Name": "Lynyrd Skynyrd", + "HasPublicSongs": true, + "SongId": 426, + "Color": "F6982E", + "DarkColor": "7F3E10", + "DeezerID": 1385, + "DeezerURL": "https://www.deezer.com/artist/1385", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0f08bbef7a986ec1a26e8207949e2132/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0f08bbef7a986ec1a26e8207949e2132/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0f08bbef7a986ec1a26e8207949e2132/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0f08bbef7a986ec1a26e8207949e2132/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 30, + "NbFans": 354043, + "Radio": true, + "TopGenres": [ + "Clássica", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 145, + "Name": "Tessa Violet", + "HasPublicSongs": true, + "SongId": 136, + "Color": "EE6B27", + "DarkColor": "C93B02", + "DeezerID": 5578516, + "DeezerURL": "https://www.deezer.com/artist/5578516", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/954bb721453a3630b724e70d001446a7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/954bb721453a3630b724e70d001446a7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/954bb721453a3630b724e70d001446a7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/954bb721453a3630b724e70d001446a7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 27, + "NbFans": 25935, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Pop", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 146, + "Name": "Fireboy DML", + "HasPublicSongs": true, + "SongId": 137, + "Color": "F7784A", + "DarkColor": "E24339", + "DeezerID": 15190997, + "DeezerURL": "https://www.deezer.com/artist/15190997", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/816e7dc6e0a1520f537256ccad521921/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/816e7dc6e0a1520f537256ccad521921/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/816e7dc6e0a1520f537256ccad521921/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/816e7dc6e0a1520f537256ccad521921/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 41, + "NbFans": 328665, + "Radio": true, + "TopGenres": [ + "Música Africana", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 147, + "Name": "Leikeli47", + "HasPublicSongs": true, + "SongId": 287, + "Color": "E20A14", + "DarkColor": "830011", + "DeezerID": 5463220, + "DeezerURL": "https://www.deezer.com/artist/5463220", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c0f5f66fe0e8f629fe7c52596ac57690/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c0f5f66fe0e8f629fe7c52596ac57690/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c0f5f66fe0e8f629fe7c52596ac57690/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c0f5f66fe0e8f629fe7c52596ac57690/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 26, + "NbFans": 4650, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 148, + "Name": "Backstreet Boys", + "HasPublicSongs": true, + "SongId": 138, + "Color": "2A4386", + "DarkColor": "19274B", + "DeezerID": 1861, + "DeezerURL": "https://www.deezer.com/artist/1861", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/02ec5b15a36c4452ee15d91c3357de3b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/02ec5b15a36c4452ee15d91c3357de3b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/02ec5b15a36c4452ee15d91c3357de3b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/02ec5b15a36c4452ee15d91c3357de3b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 17, + "NbFans": 190845, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 149, + "Name": "Sam Feldt", + "HasPublicSongs": true, + "SongId": 139, + "Color": "14D4C6", + "DarkColor": "006E77", + "DeezerID": 5967050, + "DeezerURL": "https://www.deezer.com/artist/5967050", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b677089d471f0376dd80940baeacad0c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b677089d471f0376dd80940baeacad0c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b677089d471f0376dd80940baeacad0c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b677089d471f0376dd80940baeacad0c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 146, + "NbFans": 132858, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House", + "Trance" + ], + "Rank": null + }, + { + "ArtistId": 150, + "Name": "The XX", + "HasPublicSongs": true, + "SongId": 140, + "Color": "C97B8D", + "DarkColor": "963C52", + "DeezerID": 808980, + "DeezerURL": "https://www.deezer.com/artist/808980", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/70dbe25ea73d45141c79192872c5b3e8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/70dbe25ea73d45141c79192872c5b3e8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/70dbe25ea73d45141c79192872c5b3e8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/70dbe25ea73d45141c79192872c5b3e8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 29, + "NbFans": 86287, + "Radio": true, + "TopGenres": [ + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 151, + "Name": "Muse", + "HasPublicSongs": true, + "SongId": 279, + "Color": "50849E", + "DarkColor": "003348", + "DeezerID": 705, + "DeezerURL": "https://www.deezer.com/artist/705", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/cd7c5861be0009d3b75d4d3c069317a7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/cd7c5861be0009d3b75d4d3c069317a7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/cd7c5861be0009d3b75d4d3c069317a7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/cd7c5861be0009d3b75d4d3c069317a7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 62, + "NbFans": 4799017, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie rock/Rock pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 152, + "Name": "Kelly Clarkson", + "HasPublicSongs": true, + "SongId": 246, + "Color": "DA9770", + "DarkColor": "541B14", + "DeezerID": 68, + "DeezerURL": "https://www.deezer.com/artist/68", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9f4f6890ab265a4f2f2b8dc5ac006910/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9f4f6890ab265a4f2f2b8dc5ac006910/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9f4f6890ab265a4f2f2b8dc5ac006910/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9f4f6890ab265a4f2f2b8dc5ac006910/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 151, + "NbFans": 3081343, + "Radio": true, + "TopGenres": [ + "Pop", + "Pop internacional", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 153, + "Name": "DNCE", + "HasPublicSongs": true, + "SongId": 144, + "Color": "984F25", + "DarkColor": "852F08", + "DeezerID": 8898108, + "DeezerURL": "https://www.deezer.com/artist/8898108", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b18545270ea0a7996ef06156297f0f82/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b18545270ea0a7996ef06156297f0f82/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b18545270ea0a7996ef06156297f0f82/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b18545270ea0a7996ef06156297f0f82/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 12, + "NbFans": 369718, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 154, + "Name": "21 Savage", + "HasPublicSongs": true, + "SongId": 399, + "Color": "CA6271", + "DarkColor": "7A2A32", + "DeezerID": 6853403, + "DeezerURL": "https://www.deezer.com/artist/6853403", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/76b4cd56c7e94e8d2bdc3e2157e1080f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/76b4cd56c7e94e8d2bdc3e2157e1080f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/76b4cd56c7e94e8d2bdc3e2157e1080f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/76b4cd56c7e94e8d2bdc3e2157e1080f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 49, + "NbFans": 1338880, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 155, + "Name": "Run-D.M.C.", + "HasPublicSongs": true, + "SongId": 147, + "Color": "9C56DA", + "DarkColor": "5B31A1", + "DeezerID": 79236, + "DeezerURL": "https://www.deezer.com/artist/79236", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/19b54ef583e6e709239ad8ea020526e0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/19b54ef583e6e709239ad8ea020526e0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/19b54ef583e6e709239ad8ea020526e0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/19b54ef583e6e709239ad8ea020526e0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 34, + "NbFans": 281453, + "Radio": true, + "TopGenres": [ + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 156, + "Name": "P!nk", + "HasPublicSongs": true, + "SongId": 20, + "Color": "D57A9D", + "DarkColor": "B93359", + "DeezerID": 69925, + "DeezerURL": "https://www.deezer.com/artist/69925", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/429e67544862ed2b4c820a02acc24ad1/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/429e67544862ed2b4c820a02acc24ad1/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/429e67544862ed2b4c820a02acc24ad1/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/429e67544862ed2b4c820a02acc24ad1/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 65, + "NbFans": 4417396, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop", + "Pop internacional", + "R&B", + "Rap/Hip Hop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 157, + "Name": "Bon Jovi", + "HasPublicSongs": true, + "SongId": 148, + "Color": "E6333A", + "DarkColor": "81051D", + "DeezerID": 637, + "DeezerURL": "https://www.deezer.com/artist/637", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3ebdb0ff80286da236109a0fc79d0cb5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3ebdb0ff80286da236109a0fc79d0cb5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3ebdb0ff80286da236109a0fc79d0cb5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3ebdb0ff80286da236109a0fc79d0cb5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 70, + "NbFans": 5020284, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 158, + "Name": "Dagny", + "HasPublicSongs": true, + "SongId": 19, + "Color": "E7B208", + "DarkColor": "CE820A", + "DeezerID": 4086636, + "DeezerURL": "https://www.deezer.com/artist/4086636", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/07d0fa64cbbc065eb80ad13155cfaaf0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/07d0fa64cbbc065eb80ad13155cfaaf0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/07d0fa64cbbc065eb80ad13155cfaaf0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/07d0fa64cbbc065eb80ad13155cfaaf0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 40, + "NbFans": 7635, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 160, + "Name": "Mrs.GREEN APPLE", + "HasPublicSongs": true, + "SongId": 111, + "Color": "EC345F", + "DarkColor": "9C142D" + }, + { + "ArtistId": 161, + "Name": "Basement Jaxx", + "HasPublicSongs": true, + "SongId": 154, + "Color": "D5A983", + "DarkColor": "C76051", + "DeezerID": 795, + "DeezerURL": "https://www.deezer.com/artist/795", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a75bf098e16a70543a0812e41ff33665/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a75bf098e16a70543a0812e41ff33665/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a75bf098e16a70543a0812e41ff33665/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a75bf098e16a70543a0812e41ff33665/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 122, + "NbFans": 84951, + "Radio": true, + "TopGenres": [ + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 162, + "Name": "Jessie J", + "HasPublicSongs": true, + "SongId": 156, + "Color": "BD9C62", + "DarkColor": "796044", + "DeezerID": 985109, + "DeezerURL": "https://www.deezer.com/artist/985109", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c1295c11ba738dbdb62d972fd2d22d20/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c1295c11ba738dbdb62d972fd2d22d20/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c1295c11ba738dbdb62d972fd2d22d20/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c1295c11ba738dbdb62d972fd2d22d20/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 36, + "NbFans": 5037680, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 163, + "Name": "Nicki Minaj", + "HasPublicSongs": true, + "SongId": 758, + "Color": "E44A8C", + "DarkColor": "C52066", + "DeezerID": 304545, + "DeezerURL": "https://www.deezer.com/artist/304545", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ba9b357bfbfd82c019c4cc1085610178/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ba9b357bfbfd82c019c4cc1085610178/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ba9b357bfbfd82c019c4cc1085610178/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ba9b357bfbfd82c019c4cc1085610178/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 153, + "NbFans": 3455906, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 164, + "Name": "Amy Winehouse", + "HasPublicSongs": true, + "SongId": 157, + "Color": "CA626E", + "DarkColor": "AD2A31", + "DeezerID": 6495271, + "DeezerURL": "https://www.deezer.com/artist/6495271", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4cb1b0cf416491bcb01b0278b09078b5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4cb1b0cf416491bcb01b0278b09078b5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4cb1b0cf416491bcb01b0278b09078b5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4cb1b0cf416491bcb01b0278b09078b5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 35, + "NbFans": 14878, + "Radio": true, + "TopGenres": [ + "Blues", + "Filmes/Games", + "R&B", + "Rock", + "Rock e Roll/Rockabilly", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 165, + "Name": "Smashing Pumpkins", + "HasPublicSongs": true, + "SongId": 185, + "Color": "F59925", + "DarkColor": "9B4909", + "DeezerID": 193331, + "DeezerURL": "https://www.deezer.com/artist/193331", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/86b9157b38f9a2254785152a6d67f190/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/86b9157b38f9a2254785152a6d67f190/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/86b9157b38f9a2254785152a6d67f190/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/86b9157b38f9a2254785152a6d67f190/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 28, + "NbFans": 1644037, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 166, + "Name": "The Libertines", + "HasPublicSongs": true, + "SongId": 160, + "Color": "F0931E", + "DarkColor": "7C3B13", + "DeezerID": 1357, + "DeezerURL": "https://www.deezer.com/artist/1357", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/378f1be84213f37cb2ceab765e85fbf2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/378f1be84213f37cb2ceab765e85fbf2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/378f1be84213f37cb2ceab765e85fbf2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/378f1be84213f37cb2ceab765e85fbf2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 50, + "NbFans": 25984, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Rock", + "Indie rock/Rock pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 167, + "Name": "Gary Numan", + "HasPublicSongs": true, + "SongId": 162, + "Color": "23767D", + "DarkColor": "1A5559", + "DeezerID": 2706, + "DeezerURL": "https://www.deezer.com/artist/2706", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/574493a72bad3dedcc8c71b04abedc7a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/574493a72bad3dedcc8c71b04abedc7a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/574493a72bad3dedcc8c71b04abedc7a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/574493a72bad3dedcc8c71b04abedc7a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 101, + "NbFans": 26204, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 168, + "Name": "Dominic Fike", + "HasPublicSongs": true, + "SongId": 165, + "Color": "E7AF2C", + "DarkColor": "CA7F04", + "DeezerID": 13864157, + "DeezerURL": "https://www.deezer.com/artist/13864157", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e0b1589f2025116e79a400b37790edd5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e0b1589f2025116e79a400b37790edd5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e0b1589f2025116e79a400b37790edd5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e0b1589f2025116e79a400b37790edd5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 20, + "NbFans": 43078, + "Radio": true, + "TopGenres": [ + "Alternativo", + "K-Pop", + "Música asiática", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 169, + "Name": "Christina Aguilera", + "HasPublicSongs": true, + "SongId": 166, + "Color": "E4C188", + "DarkColor": "97551D", + "DeezerID": 9551216, + "DeezerURL": "https://www.deezer.com/artist/9551216", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/167fb02065dd16eb22890ef1c22355f5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/167fb02065dd16eb22890ef1c22355f5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/167fb02065dd16eb22890ef1c22355f5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/167fb02065dd16eb22890ef1c22355f5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 56, + "NbFans": 96249, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Pop", + "K-Pop", + "Música asiática", + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 170, + "Name": "Waka Flocka Flame", + "HasPublicSongs": true, + "SongId": 175, + "Color": "A3001E", + "DarkColor": "350505", + "DeezerID": 413051, + "DeezerURL": "https://www.deezer.com/artist/413051", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/fa2491ce6c55b2f43d4859b784dbb28a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/fa2491ce6c55b2f43d4859b784dbb28a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/fa2491ce6c55b2f43d4859b784dbb28a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/fa2491ce6c55b2f43d4859b784dbb28a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 73, + "NbFans": 411947, + "Radio": true, + "TopGenres": [ + "Dance", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 171, + "Name": "Roscoe Dash", + "HasPublicSongs": true, + "SongId": 175, + "Color": "A3001E", + "DarkColor": "350505", + "DeezerID": 517615, + "DeezerURL": "https://www.deezer.com/artist/517615", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/31d5309363cd9e72ce6609d880f7d4af/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/31d5309363cd9e72ce6609d880f7d4af/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/31d5309363cd9e72ce6609d880f7d4af/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/31d5309363cd9e72ce6609d880f7d4af/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 30, + "NbFans": 21646, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 172, + "Name": "Wale", + "HasPublicSongs": true, + "SongId": 175, + "Color": "A3001E", + "DarkColor": "350505", + "DeezerID": 281561, + "DeezerURL": "https://www.deezer.com/artist/281561", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f25c602519deae777ac11934722d3e24/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f25c602519deae777ac11934722d3e24/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f25c602519deae777ac11934722d3e24/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f25c602519deae777ac11934722d3e24/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 67, + "NbFans": 594337, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 173, + "Name": "Macklemore", + "HasPublicSongs": true, + "SongId": 176, + "Color": "E1B47B", + "DarkColor": "97551D", + "DeezerID": 893222, + "DeezerURL": "https://www.deezer.com/artist/893222", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7b626fd854d98dc1d98b7062ff8b4b0b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7b626fd854d98dc1d98b7062ff8b4b0b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7b626fd854d98dc1d98b7062ff8b4b0b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7b626fd854d98dc1d98b7062ff8b4b0b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 7, + "NbFans": 1199356, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 174, + "Name": "Ryan Lewis", + "HasPublicSongs": true, + "SongId": 176, + "Color": "E1B47B", + "DarkColor": "97551D", + "DeezerID": 893222, + "DeezerURL": "https://www.deezer.com/artist/893222", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7b626fd854d98dc1d98b7062ff8b4b0b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7b626fd854d98dc1d98b7062ff8b4b0b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7b626fd854d98dc1d98b7062ff8b4b0b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7b626fd854d98dc1d98b7062ff8b4b0b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 7, + "NbFans": 1199356, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 175, + "Name": "Princess Nokia", + "HasPublicSongs": true, + "SongId": 168, + "Color": "FD5D8C", + "DarkColor": "BF4F7C", + "DeezerID": 5899243, + "DeezerURL": "https://www.deezer.com/artist/5899243", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/975a4c7232888f084ecfb9e49fc86174/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/975a4c7232888f084ecfb9e49fc86174/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/975a4c7232888f084ecfb9e49fc86174/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/975a4c7232888f084ecfb9e49fc86174/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 29167, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 176, + "Name": "Demi Lovato", + "HasPublicSongs": true, + "SongId": 169, + "Color": "8B1108", + "DarkColor": "5E1207", + "DeezerID": 193875, + "DeezerURL": "https://www.deezer.com/artist/193875", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/fba1cc929490c37d7a836a644c0383ea/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/fba1cc929490c37d7a836a644c0383ea/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/fba1cc929490c37d7a836a644c0383ea/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/fba1cc929490c37d7a836a644c0383ea/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 76, + "NbFans": 6928906, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 177, + "Name": "The Rapture", + "HasPublicSongs": true, + "SongId": 170, + "Color": "3D51CD", + "DarkColor": "1D1EA1", + "DeezerID": 1363, + "DeezerURL": "https://www.deezer.com/artist/1363", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/694c78bc6b1f8b76a3d7c98f661bef89/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/694c78bc6b1f8b76a3d7c98f661bef89/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/694c78bc6b1f8b76a3d7c98f661bef89/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/694c78bc6b1f8b76a3d7c98f661bef89/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 10, + "NbFans": 64816, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 178, + "Name": "Dillinger Escape Plan", + "HasPublicSongs": true, + "SongId": 171, + "Color": "7B1E41", + "DarkColor": "591437", + "DeezerID": 1784, + "DeezerURL": "https://www.deezer.com/artist/1784", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/726f4d7e28c7809622c7d6ce5d3b6f80/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/726f4d7e28c7809622c7d6ce5d3b6f80/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/726f4d7e28c7809622c7d6ce5d3b6f80/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/726f4d7e28c7809622c7d6ce5d3b6f80/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 15, + "NbFans": 40597, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Rock", + "Metal", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 179, + "Name": "CHVRCHES", + "HasPublicSongs": true, + "SongId": 177, + "Color": "D18C91", + "DarkColor": "522A39", + "DeezerID": 4052518, + "DeezerURL": "https://www.deezer.com/artist/4052518", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9136348db47351619a1627c74a7244c8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9136348db47351619a1627c74a7244c8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9136348db47351619a1627c74a7244c8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9136348db47351619a1627c74a7244c8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 42, + "NbFans": 173457, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 180, + "Name": "Sigala", + "HasPublicSongs": true, + "SongId": 413, + "Color": "B58C9C", + "DarkColor": "936D7C", + "DeezerID": 5203250, + "DeezerURL": "https://www.deezer.com/artist/5203250", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/bc10c50fe81d7a4cd6492650b57724df/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/bc10c50fe81d7a4cd6492650b57724df/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/bc10c50fe81d7a4cd6492650b57724df/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/bc10c50fe81d7a4cd6492650b57724df/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 105, + "NbFans": 276041, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "R&B", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 181, + "Name": "Paloma Faith", + "HasPublicSongs": true, + "SongId": 178, + "Color": "FEA607", + "DarkColor": "EB7A03", + "DeezerID": 259131, + "DeezerURL": "https://www.deezer.com/artist/259131", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4150616e792457ceb0a6a58658a45b7a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4150616e792457ceb0a6a58658a45b7a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4150616e792457ceb0a6a58658a45b7a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4150616e792457ceb0a6a58658a45b7a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 41, + "NbFans": 766836, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop", + "R&B", + "Singer & Songwriter" + ], + "Rank": null + }, + { + "ArtistId": 182, + "Name": "Wiz Khalifa", + "HasPublicSongs": true, + "SongId": 172, + "Color": "C3C63F", + "DarkColor": "264A23", + "DeezerID": 304545, + "DeezerURL": "https://www.deezer.com/artist/304545", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ba9b357bfbfd82c019c4cc1085610178/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ba9b357bfbfd82c019c4cc1085610178/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ba9b357bfbfd82c019c4cc1085610178/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ba9b357bfbfd82c019c4cc1085610178/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 153, + "NbFans": 3455906, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 183, + "Name": "Green Day", + "HasPublicSongs": true, + "SongId": 719, + "Color": "C13031", + "DarkColor": "6E1D1E", + "DeezerID": 52, + "DeezerURL": "https://www.deezer.com/artist/52", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/690381cc69a21802b5d95b0460afb6a3/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/690381cc69a21802b5d95b0460afb6a3/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/690381cc69a21802b5d95b0460afb6a3/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/690381cc69a21802b5d95b0460afb6a3/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 82, + "NbFans": 4935153, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie rock/Rock pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 184, + "Name": "Rae Sremmurd", + "HasPublicSongs": true, + "SongId": 227, + "Color": "AB5624", + "DarkColor": "781A0A", + "DeezerID": 5575762, + "DeezerURL": "https://www.deezer.com/artist/5575762", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3c49e7b66a17d5f37a739d732151c77f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3c49e7b66a17d5f37a739d732151c77f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3c49e7b66a17d5f37a739d732151c77f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3c49e7b66a17d5f37a739d732151c77f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 18, + "NbFans": 1041903, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 185, + "Name": "Lewis Capaldi", + "HasPublicSongs": true, + "SongId": 15, + "Color": "CA2728", + "DarkColor": "7E000F", + "DeezerID": 12088868, + "DeezerURL": "https://www.deezer.com/artist/12088868", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/433eff954f3a209dfe87707d19934ac8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/433eff954f3a209dfe87707d19934ac8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/433eff954f3a209dfe87707d19934ac8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/433eff954f3a209dfe87707d19934ac8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 42, + "NbFans": 1064223, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 186, + "Name": "Owl City", + "HasPublicSongs": true, + "SongId": 189, + "Color": "1C7ABE", + "DarkColor": "0A3168", + "DeezerID": 183201, + "DeezerURL": "https://www.deezer.com/artist/183201", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/12114991d5d983405568cc0ac0107293/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/12114991d5d983405568cc0ac0107293/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/12114991d5d983405568cc0ac0107293/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/12114991d5d983405568cc0ac0107293/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 30, + "NbFans": 747027, + "Radio": true, + "TopGenres": [ + "Electro", + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 187, + "Name": "Carly Rae Jepsen", + "HasPublicSongs": true, + "SongId": 375, + "Color": "28AEAA", + "DarkColor": "1C6A86", + "DeezerID": 1002521, + "DeezerURL": "https://www.deezer.com/artist/1002521", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/537273948f5d7a2bce98897703330ca0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/537273948f5d7a2bce98897703330ca0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/537273948f5d7a2bce98897703330ca0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/537273948f5d7a2bce98897703330ca0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 37, + "NbFans": 2472754, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 188, + "Name": "Porno Graffitti", + "HasPublicSongs": true, + "SongId": 184, + "Color": "F1D20F", + "DarkColor": "AB7911", + "DeezerID": 10039830, + "DeezerURL": "https://www.deezer.com/artist/10039830", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8bba572c2728a468c5888167be8eadb5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8bba572c2728a468c5888167be8eadb5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8bba572c2728a468c5888167be8eadb5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8bba572c2728a468c5888167be8eadb5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 108, + "NbFans": 24990, + "Radio": true, + "TopGenres": [ + "J-Pop", + "Música asiática" + ], + "Rank": null + }, + { + "ArtistId": 189, + "Name": "Julia Michaels", + "HasPublicSongs": true, + "SongId": 186, + "Color": "EBB0A5", + "DarkColor": "D3817A", + "DeezerID": 2110321, + "DeezerURL": "https://www.deezer.com/artist/2110321", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/09fb971f6e831fd97394323e6c4886c9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/09fb971f6e831fd97394323e6c4886c9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/09fb971f6e831fd97394323e6c4886c9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/09fb971f6e831fd97394323e6c4886c9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 94, + "NbFans": 286276, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 190, + "Name": "The Ting Tings", + "HasPublicSongs": true, + "SongId": 187, + "Color": "E32633", + "DarkColor": "970D26", + "DeezerID": 69171, + "DeezerURL": "https://www.deezer.com/artist/69171", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e2a4e216d2cbaecea38e5f1d85c8094c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e2a4e216d2cbaecea38e5f1d85c8094c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e2a4e216d2cbaecea38e5f1d85c8094c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e2a4e216d2cbaecea38e5f1d85c8094c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 59, + "NbFans": 207453, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Pop", + "Indie Rock", + "Pop", + "Pop internacional", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 191, + "Name": "Edward Sharpe & The Magnetic Zeros", + "HasPublicSongs": true, + "SongId": 188, + "Color": "D08343", + "DarkColor": "7B390E", + "DeezerID": 248102, + "DeezerURL": "https://www.deezer.com/artist/248102", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c8a2e0aa6eab33e3799c587690600da6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c8a2e0aa6eab33e3799c587690600da6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c8a2e0aa6eab33e3799c587690600da6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c8a2e0aa6eab33e3799c587690600da6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 11, + "NbFans": 84917, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 192, + "Name": "Alok & Alan Walker", + "HasPublicSongs": true, + "SongId": 190, + "Color": "2CE7EC", + "DarkColor": "104A60" + }, + { + "ArtistId": 193, + "Name": "Kiddo", + "HasPublicSongs": true, + "SongId": 190, + "Color": "2CE7EC", + "DarkColor": "104A60", + "DeezerID": 6165, + "DeezerURL": "https://www.deezer.com/artist/6165", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/83771f0dd8587bbfc4f145f2c37830e9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/83771f0dd8587bbfc4f145f2c37830e9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/83771f0dd8587bbfc4f145f2c37830e9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/83771f0dd8587bbfc4f145f2c37830e9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 42, + "NbFans": 90001, + "Radio": true, + "TopGenres": [ + "Dance", + "Jazz", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 194, + "Name": "Tove Lo", + "HasPublicSongs": true, + "SongId": 191, + "Color": "B83564", + "DarkColor": "6E184D", + "DeezerID": 285841091, + "DeezerURL": "https://www.deezer.com/artist/285841091", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/45b3198b8f3a45c451dc5c5968338a6a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/45b3198b8f3a45c451dc5c5968338a6a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/45b3198b8f3a45c451dc5c5968338a6a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/45b3198b8f3a45c451dc5c5968338a6a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 2, + "NbFans": 89, + "Radio": true, + "TopGenres": [ + "Dance" + ], + "Rank": null + }, + { + "ArtistId": 195, + "Name": "Jonas Blue", + "HasPublicSongs": true, + "SongId": 192, + "Color": "5E80B0", + "DarkColor": "3C5480", + "DeezerID": 5306539, + "DeezerURL": "https://www.deezer.com/artist/5306539", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/49f84318807cd6e2ba0acf4986f66ea6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/49f84318807cd6e2ba0acf4986f66ea6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/49f84318807cd6e2ba0acf4986f66ea6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/49f84318807cd6e2ba0acf4986f66ea6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 125, + "NbFans": 705848, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 196, + "Name": "Chamillionaire", + "HasPublicSongs": true, + "SongId": 193, + "Color": "3F6781", + "DarkColor": "0F2234", + "DeezerID": 378, + "DeezerURL": "https://www.deezer.com/artist/378", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9afd9624a221e96ce66b8deb453e6056/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9afd9624a221e96ce66b8deb453e6056/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9afd9624a221e96ce66b8deb453e6056/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9afd9624a221e96ce66b8deb453e6056/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 37, + "NbFans": 200047, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 197, + "Name": "AlunaGeorge", + "HasPublicSongs": true, + "SongId": 194, + "Color": "DE9F4C", + "DarkColor": "C48145", + "DeezerID": 1209072, + "DeezerURL": "https://www.deezer.com/artist/1209072", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/fb8c759775108d9b1fa0dcd2e39aa48e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/fb8c759775108d9b1fa0dcd2e39aa48e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/fb8c759775108d9b1fa0dcd2e39aa48e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/fb8c759775108d9b1fa0dcd2e39aa48e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 37, + "NbFans": 841890, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Filmes/Games", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 198, + "Name": "Nelly", + "HasPublicSongs": true, + "SongId": 370, + "Color": "BDAA8B", + "DarkColor": "453B33", + "DeezerID": 105, + "DeezerURL": "https://www.deezer.com/artist/105", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/48486c0c3c8cccee05f6b8d87ce99227/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/48486c0c3c8cccee05f6b8d87ce99227/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/48486c0c3c8cccee05f6b8d87ce99227/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/48486c0c3c8cccee05f6b8d87ce99227/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 61, + "NbFans": 1523636, + "Radio": true, + "TopGenres": [ + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 199, + "Name": "Kelly Rowland", + "HasPublicSongs": true, + "SongId": 757, + "Color": "C49454", + "DarkColor": "9C6A3B", + "DeezerID": 13124, + "DeezerURL": "https://www.deezer.com/artist/13124", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/22f82a773ac7f5d0755bb290c7051204/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/22f82a773ac7f5d0755bb290c7051204/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/22f82a773ac7f5d0755bb290c7051204/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/22f82a773ac7f5d0755bb290c7051204/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 59, + "NbFans": 793103, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop", + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 200, + "Name": "Bazzi", + "HasPublicSongs": true, + "SongId": 196, + "Color": "FFB01F", + "DarkColor": "BF740B", + "DeezerID": 5484712, + "DeezerURL": "https://www.deezer.com/artist/5484712", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/caa9f35182af03bd3fd6c27585f2234b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/caa9f35182af03bd3fd6c27585f2234b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/caa9f35182af03bd3fd6c27585f2234b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/caa9f35182af03bd3fd6c27585f2234b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 39, + "NbFans": 271931, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 201, + "Name": "Lil Nas X", + "HasPublicSongs": true, + "SongId": 258, + "Color": "37CACE", + "DarkColor": "284E6A", + "DeezerID": 15166511, + "DeezerURL": "https://www.deezer.com/artist/15166511", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0f5f0e176c544db5f89b5cd837e279aa/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0f5f0e176c544db5f89b5cd837e279aa/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0f5f0e176c544db5f89b5cd837e279aa/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0f5f0e176c544db5f89b5cd837e279aa/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 36, + "NbFans": 1667694, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 202, + "Name": "Sister Sledge", + "HasPublicSongs": true, + "SongId": 295, + "Color": "E86730", + "DarkColor": "911A1A", + "DeezerID": 2397, + "DeezerURL": "https://www.deezer.com/artist/2397", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/11d172632b613f1c15dd5a570a599e26/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/11d172632b613f1c15dd5a570a599e26/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/11d172632b613f1c15dd5a570a599e26/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/11d172632b613f1c15dd5a570a599e26/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 23, + "NbFans": 140052, + "Radio": true, + "TopGenres": [ + "Dance", + "Disco", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 203, + "Name": "Ne-Yo", + "HasPublicSongs": true, + "SongId": 201, + "Color": "E3B88B", + "DarkColor": "A36D3B", + "DeezerID": 562618, + "DeezerURL": "https://www.deezer.com/artist/562618", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f4a15657c36e35b2a39ef5c548b6f1b8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f4a15657c36e35b2a39ef5c548b6f1b8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f4a15657c36e35b2a39ef5c548b6f1b8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f4a15657c36e35b2a39ef5c548b6f1b8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 5, + "NbFans": 15, + "Radio": true, + "TopGenres": [ + "Clássica" + ], + "Rank": null + }, + { + "ArtistId": 204, + "Name": "Pharrell Williams", + "HasPublicSongs": true, + "SongId": 203, + "Color": "FFB01F", + "DarkColor": "BF740B", + "DeezerID": 5898689, + "DeezerURL": "https://www.deezer.com/artist/5898689", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e5d00fb9e4f087d27823ffbe0ae8b5a3/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e5d00fb9e4f087d27823ffbe0ae8b5a3/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e5d00fb9e4f087d27823ffbe0ae8b5a3/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e5d00fb9e4f087d27823ffbe0ae8b5a3/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 21, + "NbFans": 72965, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Filmes/Games", + "Rap/Hip Hop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 205, + "Name": "Bob Marley & The Wailers", + "HasPublicSongs": true, + "SongId": 744, + "Color": "83B713", + "DarkColor": "32770D", + "DeezerID": 719, + "DeezerURL": "https://www.deezer.com/artist/719", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c8241e15efdefa9465c7b470643efb3b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c8241e15efdefa9465c7b470643efb3b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c8241e15efdefa9465c7b470643efb3b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c8241e15efdefa9465c7b470643efb3b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 80, + "NbFans": 11952791, + "Radio": true, + "TopGenres": [ + "Reggae" + ], + "Rank": null + }, + { + "ArtistId": 206, + "Name": "Hailee Steinfeld", + "HasPublicSongs": true, + "SongId": 205, + "Color": "AC0620", + "DarkColor": "5A0001", + "DeezerID": 5961630, + "DeezerURL": "https://www.deezer.com/artist/5961630", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a7fcba9c1749bee6ca469cb9b6411aa5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a7fcba9c1749bee6ca469cb9b6411aa5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a7fcba9c1749bee6ca469cb9b6411aa5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a7fcba9c1749bee6ca469cb9b6411aa5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 16, + "NbFans": 414462, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 207, + "Name": "Los Hermanos", + "HasPublicSongs": true, + "SongId": 206, + "Color": "F5346D", + "DarkColor": "9A1545", + "DeezerID": 4617291, + "DeezerURL": "https://www.deezer.com/artist/4617291", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f7f1a812c29ac6fbcfb77fc632a30fef/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f7f1a812c29ac6fbcfb77fc632a30fef/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f7f1a812c29ac6fbcfb77fc632a30fef/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f7f1a812c29ac6fbcfb77fc632a30fef/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 14538, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 208, + "Name": "MC Hammer", + "HasPublicSongs": true, + "SongId": 208, + "Color": "1A94E2", + "DarkColor": "1168C6", + "DeezerID": 1092533, + "DeezerURL": "https://www.deezer.com/artist/1092533", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d23c527f584558c4c2de747154c09488/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d23c527f584558c4c2de747154c09488/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d23c527f584558c4c2de747154c09488/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d23c527f584558c4c2de747154c09488/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 36, + "NbFans": 1305, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 209, + "Name": "Bag Raiders", + "HasPublicSongs": true, + "SongId": 211, + "Color": "654CE8", + "DarkColor": "2115CD", + "DeezerID": 166729, + "DeezerURL": "https://www.deezer.com/artist/166729", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e991416bf4361b8ec1117c2e67227f50/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e991416bf4361b8ec1117c2e67227f50/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e991416bf4361b8ec1117c2e67227f50/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e991416bf4361b8ec1117c2e67227f50/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 26, + "NbFans": 29180, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 210, + "Name": "The Kid LAROI", + "HasPublicSongs": true, + "SongId": 212, + "Color": "7F2723", + "DarkColor": "4D212E", + "DeezerID": 51204222, + "DeezerURL": "https://www.deezer.com/artist/51204222", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/361d7116a0f388bef33410c71599a764/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/361d7116a0f388bef33410c71599a764/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/361d7116a0f388bef33410c71599a764/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/361d7116a0f388bef33410c71599a764/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 39, + "NbFans": 397833, + "Radio": true, + "TopGenres": [ + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 211, + "Name": "Train", + "HasPublicSongs": true, + "SongId": 214, + "Color": "94CCDF", + "DarkColor": "428284", + "DeezerID": 685, + "DeezerURL": "https://www.deezer.com/artist/685", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8f2e3b879df8a4fe0d8d16125ddc9c07/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8f2e3b879df8a4fe0d8d16125ddc9c07/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8f2e3b879df8a4fe0d8d16125ddc9c07/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8f2e3b879df8a4fe0d8d16125ddc9c07/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 55, + "NbFans": 1007196, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Pop", + "Indie Pop/Folk", + "Indie Rock", + "Pop", + "Pop internacional", + "Rock", + "Rock e Roll/Rockabilly" + ], + "Rank": null + }, + { + "ArtistId": 212, + "Name": "OutKast", + "HasPublicSongs": true, + "SongId": 215, + "Color": "78C0E6", + "DarkColor": "1F327A", + "DeezerID": 9, + "DeezerURL": "https://www.deezer.com/artist/9", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/32b909447841adfe4fd4770b1c1530ed/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/32b909447841adfe4fd4770b1c1530ed/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/32b909447841adfe4fd4770b1c1530ed/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/32b909447841adfe4fd4770b1c1530ed/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 31, + "NbFans": 825074, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 213, + "Name": "Anitta", + "HasPublicSongs": true, + "SongId": 217, + "Color": "FD5D8C", + "DarkColor": "BF4F7C", + "DeezerID": 15335167, + "DeezerURL": "https://www.deezer.com/artist/15335167", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b2f2b6bf5ad23aa96189d956838d6c3a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b2f2b6bf5ad23aa96189d956838d6c3a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b2f2b6bf5ad23aa96189d956838d6c3a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b2f2b6bf5ad23aa96189d956838d6c3a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 32, + "NbFans": 1309, + "Radio": true, + "TopGenres": [ + "Flamenco", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 214, + "Name": "Vanessa Carlton", + "HasPublicSongs": true, + "SongId": 218, + "Color": "B23F27", + "DarkColor": "7A1E14", + "DeezerID": 456, + "DeezerURL": "https://www.deezer.com/artist/456", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/977ff3f459dcc13e32e6dbfb45afc885/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/977ff3f459dcc13e32e6dbfb45afc885/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/977ff3f459dcc13e32e6dbfb45afc885/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/977ff3f459dcc13e32e6dbfb45afc885/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 29, + "NbFans": 50254, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 215, + "Name": "Mabel", + "HasPublicSongs": true, + "SongId": 219, + "Color": "BC3672", + "DarkColor": "571636", + "DeezerID": 103103, + "DeezerURL": "https://www.deezer.com/artist/103103", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/190bf7450fc19fda4c939737ab060df7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/190bf7450fc19fda4c939737ab060df7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/190bf7450fc19fda4c939737ab060df7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/190bf7450fc19fda4c939737ab060df7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 83, + "NbFans": 358424, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 216, + "Name": "Interpol", + "HasPublicSongs": true, + "SongId": 220, + "Color": "E3B88B", + "DarkColor": "A36D3B", + "DeezerID": 1652, + "DeezerURL": "https://www.deezer.com/artist/1652", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ca11e5724bfd7be68c0db67ee474bc9f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ca11e5724bfd7be68c0db67ee474bc9f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ca11e5724bfd7be68c0db67ee474bc9f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ca11e5724bfd7be68c0db67ee474bc9f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 39, + "NbFans": 450388, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 217, + "Name": "Clean Bandit", + "HasPublicSongs": true, + "SongId": 232, + "Color": "EE8C78", + "DarkColor": "E26C54", + "DeezerID": 1000956, + "DeezerURL": "https://www.deezer.com/artist/1000956", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f305de60e321bbc56de18da0d6d63231/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f305de60e321bbc56de18da0d6d63231/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f305de60e321bbc56de18da0d6d63231/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f305de60e321bbc56de18da0d6d63231/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 131, + "NbFans": 4116773, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 218, + "Name": "Zara Larsson", + "HasPublicSongs": true, + "SongId": 232, + "Color": "EE8C78", + "DarkColor": "E26C54", + "DeezerID": 83017792, + "DeezerURL": "https://www.deezer.com/artist/83017792", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6fcb0b788e647260dc01a20c5361eb77/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6fcb0b788e647260dc01a20c5361eb77/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6fcb0b788e647260dc01a20c5361eb77/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6fcb0b788e647260dc01a20c5361eb77/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 24, + "NbFans": 8781, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 219, + "Name": "GAYLE", + "HasPublicSongs": true, + "SongId": 221, + "Color": "B83564", + "DarkColor": "6E184D", + "DeezerID": 4946605, + "DeezerURL": "https://www.deezer.com/artist/4946605", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1dbf4b101753aac8efca9276d4419531/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1dbf4b101753aac8efca9276d4419531/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1dbf4b101753aac8efca9276d4419531/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1dbf4b101753aac8efca9276d4419531/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 37, + "NbFans": 65941, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 220, + "Name": "Papa Roach", + "HasPublicSongs": true, + "SongId": 223, + "Color": "D33643", + "DarkColor": "7F1436", + "DeezerID": 89, + "DeezerURL": "https://www.deezer.com/artist/89", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0552943ebc46bc507c72bcc2135b68b8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0552943ebc46bc507c72bcc2135b68b8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0552943ebc46bc507c72bcc2135b68b8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0552943ebc46bc507c72bcc2135b68b8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 70, + "NbFans": 1867903, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 221, + "Name": "Feeder", + "HasPublicSongs": true, + "SongId": 225, + "Color": "CC1B71", + "DarkColor": "7A1051", + "DeezerID": 2305, + "DeezerURL": "https://www.deezer.com/artist/2305", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/bf51c1124c44ccce0aa5ed0ea8b6fad2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/bf51c1124c44ccce0aa5ed0ea8b6fad2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/bf51c1124c44ccce0aa5ed0ea8b6fad2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/bf51c1124c44ccce0aa5ed0ea8b6fad2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 77, + "NbFans": 39226, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Filmes/Games", + "Rock", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 222, + "Name": "Lil Tecca", + "HasPublicSongs": true, + "SongId": 234, + "Color": "9BFA4E", + "DarkColor": "275D19", + "DeezerID": 219393955, + "DeezerURL": "https://www.deezer.com/artist/219393955", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d816b3326d1ab68fc016aa06aff75227/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d816b3326d1ab68fc016aa06aff75227/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d816b3326d1ab68fc016aa06aff75227/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d816b3326d1ab68fc016aa06aff75227/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 8167, + "Radio": true, + "TopGenres": [ + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 223, + "Name": "Lauv", + "HasPublicSongs": true, + "SongId": 226, + "Color": "1E70DF", + "DarkColor": "02204C", + "DeezerID": 4677655, + "DeezerURL": "https://www.deezer.com/artist/4677655", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/487f1e3bd864cfc040bbe5318fc383ea/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/487f1e3bd864cfc040bbe5318fc383ea/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/487f1e3bd864cfc040bbe5318fc383ea/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/487f1e3bd864cfc040bbe5318fc383ea/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 62, + "NbFans": 401090, + "Radio": true, + "TopGenres": [ + "Dance", + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 224, + "Name": "Logic", + "HasPublicSongs": true, + "SongId": 454, + "Color": "F0B175", + "DarkColor": "906B48", + "DeezerID": 72660, + "DeezerURL": "https://www.deezer.com/artist/72660", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6929bd41e02067da3d8640f4d4c7114a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6929bd41e02067da3d8640f4d4c7114a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6929bd41e02067da3d8640f4d4c7114a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6929bd41e02067da3d8640f4d4c7114a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 67, + "NbFans": 465255, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 226, + "Name": "blink-182", + "HasPublicSongs": true, + "SongId": 716, + "Color": "00B0E9", + "DarkColor": "0059BB", + "DeezerID": 409, + "DeezerURL": "https://www.deezer.com/artist/409", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3c60337b3a7cf8d3740bcea4c277f4e1/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3c60337b3a7cf8d3740bcea4c277f4e1/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3c60337b3a7cf8d3740bcea4c277f4e1/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3c60337b3a7cf8d3740bcea4c277f4e1/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 45, + "NbFans": 2171178, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 227, + "Name": "MGMT", + "HasPublicSongs": true, + "SongId": 229, + "Color": "696BB0", + "DarkColor": "364376", + "DeezerID": 69627, + "DeezerURL": "https://www.deezer.com/artist/69627", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0260c3e6e76812d73f50719292985f01/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0260c3e6e76812d73f50719292985f01/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0260c3e6e76812d73f50719292985f01/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0260c3e6e76812d73f50719292985f01/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 32, + "NbFans": 1141221, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 228, + "Name": "Tones and I", + "HasPublicSongs": true, + "SongId": 469, + "Color": "E46988", + "DarkColor": "BF4F7C", + "DeezerID": 59070642, + "DeezerURL": "https://www.deezer.com/artist/59070642", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7b9ba9e0270547736f3eab22ed3a40de/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7b9ba9e0270547736f3eab22ed3a40de/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7b9ba9e0270547736f3eab22ed3a40de/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7b9ba9e0270547736f3eab22ed3a40de/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 37, + "NbFans": 528523, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 229, + "Name": "Willow", + "HasPublicSongs": true, + "SongId": 238, + "Color": "21D25A", + "DarkColor": "005F14", + "DeezerID": 70942, + "DeezerURL": "https://www.deezer.com/artist/70942", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e2124f9500fac7bd567c7ef4efc715f9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e2124f9500fac7bd567c7ef4efc715f9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e2124f9500fac7bd567c7ef4efc715f9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e2124f9500fac7bd567c7ef4efc715f9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 26, + "NbFans": 693346, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 230, + "Name": "Khalid", + "HasPublicSongs": true, + "SongId": 230, + "Color": "EB9A07", + "DarkColor": "BD6300", + "DeezerID": 362326, + "DeezerURL": "https://www.deezer.com/artist/362326", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b6ee64d5f34d77e8645e248000327cad/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b6ee64d5f34d77e8645e248000327cad/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b6ee64d5f34d77e8645e248000327cad/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b6ee64d5f34d77e8645e248000327cad/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 90, + "NbFans": 1701620, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 231, + "Name": "Craig David", + "HasPublicSongs": true, + "SongId": 237, + "Color": "BD572B", + "DarkColor": "793823", + "DeezerID": 110, + "DeezerURL": "https://www.deezer.com/artist/110", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a71d78fc107b9b0f8254bf43561fa76c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a71d78fc107b9b0f8254bf43561fa76c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a71d78fc107b9b0f8254bf43561fa76c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a71d78fc107b9b0f8254bf43561fa76c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 49, + "NbFans": 297650, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 232, + "Name": "bbno$", + "HasPublicSongs": true, + "SongId": 251, + "Color": "F5537A", + "DarkColor": "C03152", + "DeezerID": 11136812, + "DeezerURL": "https://www.deezer.com/artist/11136812", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/573812afa4a89994bbcffa5fea2f3f57/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/573812afa4a89994bbcffa5fea2f3f57/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/573812afa4a89994bbcffa5fea2f3f57/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/573812afa4a89994bbcffa5fea2f3f57/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 118, + "NbFans": 82910, + "Radio": true, + "TopGenres": [ + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 233, + "Name": "Y2K", + "HasPublicSongs": true, + "SongId": 251, + "Color": "F5537A", + "DarkColor": "C03152", + "DeezerID": 999832, + "DeezerURL": "https://www.deezer.com/artist/999832", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/46aa70205002951b6a912519f83c7e52/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/46aa70205002951b6a912519f83c7e52/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/46aa70205002951b6a912519f83c7e52/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/46aa70205002951b6a912519f83c7e52/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 29, + "NbFans": 56009, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 235, + "Name": "Pabllo Vittar", + "HasPublicSongs": true, + "SongId": 252, + "Color": "E44A8C", + "DarkColor": "C52066", + "DeezerID": 11301722, + "DeezerURL": "https://www.deezer.com/artist/11301722", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a4468089c7f7e5cb62f3f9b47c0cc142/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a4468089c7f7e5cb62f3f9b47c0cc142/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a4468089c7f7e5cb62f3f9b47c0cc142/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a4468089c7f7e5cb62f3f9b47c0cc142/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 86, + "NbFans": 1556595, + "Radio": true, + "TopGenres": [ + "Axé/Forró", + "Pop", + "Reggaeton", + "Sertanejo" + ], + "Rank": null + }, + { + "ArtistId": 236, + "Name": "Charli XCX", + "HasPublicSongs": true, + "SongId": 316, + "Color": "F2A3C9", + "DarkColor": "BF4F7C", + "DeezerID": 5112343, + "DeezerURL": "https://www.deezer.com/artist/5112343", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8dd8bc5a839c1854984b77f1bde6254b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8dd8bc5a839c1854984b77f1bde6254b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8dd8bc5a839c1854984b77f1bde6254b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8dd8bc5a839c1854984b77f1bde6254b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 33, + "NbFans": 30403, + "Radio": true, + "TopGenres": [ + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 237, + "Name": "Armand Van Helden", + "HasPublicSongs": true, + "SongId": 253, + "Color": "E7456D", + "DarkColor": "671F2D", + "DeezerID": 1079, + "DeezerURL": "https://www.deezer.com/artist/1079", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e2f524943fa31f17cc9c3e8a67fc9a64/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e2f524943fa31f17cc9c3e8a67fc9a64/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e2f524943fa31f17cc9c3e8a67fc9a64/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e2f524943fa31f17cc9c3e8a67fc9a64/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 149, + "NbFans": 54897, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 238, + "Name": "Emmy Meli", + "HasPublicSongs": true, + "SongId": 242, + "Color": "D15C3F", + "DarkColor": "CE3C29", + "DeezerID": 101023822, + "DeezerURL": "https://www.deezer.com/artist/101023822", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7dad238f98c30760ddc3258a317b6079/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7dad238f98c30760ddc3258a317b6079/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7dad238f98c30760ddc3258a317b6079/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7dad238f98c30760ddc3258a317b6079/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 14, + "NbFans": 6351, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 239, + "Name": "Bring Me The Horizon", + "HasPublicSongs": true, + "SongId": 248, + "Color": "1C6543", + "DarkColor": "0E402E", + "DeezerID": 12874, + "DeezerURL": "https://www.deezer.com/artist/12874", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d159e783c1f419ae27fd2deca5b89b54/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d159e783c1f419ae27fd2deca5b89b54/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d159e783c1f419ae27fd2deca5b89b54/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d159e783c1f419ae27fd2deca5b89b54/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 51, + "NbFans": 1175722, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 240, + "Name": "Darude", + "HasPublicSongs": true, + "SongId": 249, + "Color": "1C7ABE", + "DarkColor": "0A3168", + "DeezerID": 306898, + "DeezerURL": "https://www.deezer.com/artist/306898", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/243a0ede39075f2251c3d18c4765bfed/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/243a0ede39075f2251c3d18c4765bfed/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/243a0ede39075f2251c3d18c4765bfed/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/243a0ede39075f2251c3d18c4765bfed/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 254, + "NbFans": 2056588, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 241, + "Name": "Machine Gun Kelly", + "HasPublicSongs": true, + "SongId": 261, + "Color": "5E80B0", + "DarkColor": "3C5480", + "DeezerID": 1704313, + "DeezerURL": "https://www.deezer.com/artist/1704313", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist//56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist//250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist//500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist//1000x1000-000000-80-0-0.jpg", + "NbAlbums": 0, + "NbFans": 929, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 242, + "Name": "Spin Doctors", + "HasPublicSongs": true, + "SongId": 250, + "Color": "2B2981", + "DarkColor": "171648", + "DeezerID": 1950, + "DeezerURL": "https://www.deezer.com/artist/1950", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e7334d182623f907fde70abca5fcc894/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e7334d182623f907fde70abca5fcc894/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e7334d182623f907fde70abca5fcc894/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e7334d182623f907fde70abca5fcc894/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 14, + "NbFans": 47048, + "Radio": true, + "TopGenres": [ + "Blues", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 243, + "Name": "Glass Animals", + "HasPublicSongs": true, + "SongId": 259, + "Color": "A74BB8", + "DarkColor": "693390", + "DeezerID": 2489131, + "DeezerURL": "https://www.deezer.com/artist/2489131", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b2e9164dfa2a293330ce341905710034/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b2e9164dfa2a293330ce341905710034/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b2e9164dfa2a293330ce341905710034/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b2e9164dfa2a293330ce341905710034/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 41, + "NbFans": 285873, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 244, + "Name": "globe", + "HasPublicSongs": true, + "SongId": 262, + "Color": "BD572B", + "DarkColor": "781A02", + "DeezerID": 1416414, + "DeezerURL": "https://www.deezer.com/artist/1416414", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a0fead27aeebf7341e2a51e22e27b6d7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a0fead27aeebf7341e2a51e22e27b6d7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a0fead27aeebf7341e2a51e22e27b6d7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a0fead27aeebf7341e2a51e22e27b6d7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 48, + "NbFans": 224, + "Radio": true, + "TopGenres": [ + "J-Pop", + "Música asiática" + ], + "Rank": null + }, + { + "ArtistId": 245, + "Name": "Ava Max", + "HasPublicSongs": true, + "SongId": 264, + "Color": "EB4166", + "DarkColor": "B4243D", + "DeezerID": 12948083, + "DeezerURL": "https://www.deezer.com/artist/12948083", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/65555134702967d4d78dee0ca043b24d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/65555134702967d4d78dee0ca043b24d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/65555134702967d4d78dee0ca043b24d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/65555134702967d4d78dee0ca043b24d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 96, + "NbFans": 1113911, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Pop internacional", + "Rock", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 246, + "Name": "DJ Fresh", + "HasPublicSongs": true, + "SongId": 256, + "Color": "53DFE5", + "DarkColor": "1B6D90", + "DeezerID": 6310106, + "DeezerURL": "https://www.deezer.com/artist/6310106", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/dafc5bc00f75b54f2ece6b65266af3e6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/dafc5bc00f75b54f2ece6b65266af3e6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/dafc5bc00f75b54f2ece6b65266af3e6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/dafc5bc00f75b54f2ece6b65266af3e6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 2, + "NbFans": 200, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 247, + "Name": "Gossip", + "HasPublicSongs": true, + "SongId": 257, + "Color": "E44A8C", + "DarkColor": "E44A8C", + "DeezerID": 166714, + "DeezerURL": "https://www.deezer.com/artist/166714", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/78fb2ac99275517b0862b4bb51b9c83c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/78fb2ac99275517b0862b4bb51b9c83c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/78fb2ac99275517b0862b4bb51b9c83c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/78fb2ac99275517b0862b4bb51b9c83c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 43, + "NbFans": 461, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 248, + "Name": "Salt-N-Pepa", + "HasPublicSongs": true, + "SongId": 266, + "Color": "685A8C", + "DarkColor": "413A65", + "DeezerID": 2940, + "DeezerURL": "https://www.deezer.com/artist/2940", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/88dec9ef7e1374c648f2eebf7d767cfd/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/88dec9ef7e1374c648f2eebf7d767cfd/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/88dec9ef7e1374c648f2eebf7d767cfd/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/88dec9ef7e1374c648f2eebf7d767cfd/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 31, + "NbFans": 48531, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 249, + "Name": "Blu Cantrell", + "HasPublicSongs": true, + "SongId": 268, + "Color": "B8286A", + "DarkColor": "511137", + "DeezerID": 223, + "DeezerURL": "https://www.deezer.com/artist/223", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b1fba9ceec9093a2dbc9b42d24f611d5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b1fba9ceec9093a2dbc9b42d24f611d5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b1fba9ceec9093a2dbc9b42d24f611d5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b1fba9ceec9093a2dbc9b42d24f611d5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 12, + "NbFans": 33293, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B", + "Soul & Funk" + ], + "Rank": null + }, + { + "ArtistId": 251, + "Name": "Years & Years", + "HasPublicSongs": true, + "SongId": 255, + "Color": "8CDB68", + "DarkColor": "2C9969", + "DeezerID": 964, + "DeezerURL": "https://www.deezer.com/artist/964", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/474165e8b02acf8fd7d2aa19a08d7a6b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/474165e8b02acf8fd7d2aa19a08d7a6b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/474165e8b02acf8fd7d2aa19a08d7a6b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/474165e8b02acf8fd7d2aa19a08d7a6b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 332831, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 252, + "Name": "KC & The Sunshine Band", + "HasPublicSongs": true, + "SongId": 260, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 86548, + "DeezerURL": "https://www.deezer.com/artist/86548", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4a3c1b3a31f83f002b7ede437ad4f343/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4a3c1b3a31f83f002b7ede437ad4f343/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4a3c1b3a31f83f002b7ede437ad4f343/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4a3c1b3a31f83f002b7ede437ad4f343/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 10, + "NbFans": 69061, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 253, + "Name": "Charlie Puth", + "HasPublicSongs": true, + "SongId": 441, + "Color": "A10F1A", + "DarkColor": "731D07", + "DeezerID": 1362735, + "DeezerURL": "https://www.deezer.com/artist/1362735", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3e724b6b2ec8188af3e71dfaeac243ff/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3e724b6b2ec8188af3e71dfaeac243ff/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3e724b6b2ec8188af3e71dfaeac243ff/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3e724b6b2ec8188af3e71dfaeac243ff/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 90, + "NbFans": 2207901, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 254, + "Name": "Jung Kook of BTS", + "HasPublicSongs": true, + "SongId": 275, + "Color": "FA0089", + "DarkColor": "AD005E", + "DeezerID": 197876737, + "DeezerURL": "https://www.deezer.com/artist/197876737", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist//56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist//250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist//500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist//1000x1000-000000-80-0-0.jpg", + "NbAlbums": 0, + "NbFans": 83, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 255, + "Name": "Hot Chip", + "HasPublicSongs": true, + "SongId": 296, + "Color": "EBC146", + "DarkColor": "CE7A2F", + "DeezerID": 7455976, + "DeezerURL": "https://www.deezer.com/artist/7455976", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/20f14f3e3f62c1a2b8f0a0a61436d967/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/20f14f3e3f62c1a2b8f0a0a61436d967/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/20f14f3e3f62c1a2b8f0a0a61436d967/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/20f14f3e3f62c1a2b8f0a0a61436d967/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 34, + "NbFans": 22251, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 256, + "Name": "Dinosaur Pile-Up", + "HasPublicSongs": true, + "SongId": 278, + "Color": "D08343", + "DarkColor": "7B390E", + "DeezerID": 282471, + "DeezerURL": "https://www.deezer.com/artist/282471", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9832398c4c539e5a2793f85e0eb4ed8c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9832398c4c539e5a2793f85e0eb4ed8c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9832398c4c539e5a2793f85e0eb4ed8c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9832398c4c539e5a2793f85e0eb4ed8c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 15, + "NbFans": 5599, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie rock/Rock pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 257, + "Name": "Jurassic 5", + "HasPublicSongs": true, + "SongId": 280, + "Color": "EB9A07", + "DarkColor": "BD6300", + "DeezerID": 2952, + "DeezerURL": "https://www.deezer.com/artist/2952", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/08450c206d09231eff0edc3769beb78d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/08450c206d09231eff0edc3769beb78d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/08450c206d09231eff0edc3769beb78d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/08450c206d09231eff0edc3769beb78d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 10, + "NbFans": 56904, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 258, + "Name": "3 Doors Down", + "HasPublicSongs": true, + "SongId": 283, + "Color": "7D6F4A", + "DarkColor": "5B430F", + "DeezerID": 340, + "DeezerURL": "https://www.deezer.com/artist/340", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/95c0f863446276ddfa55f525c1afca68/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/95c0f863446276ddfa55f525c1afca68/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/95c0f863446276ddfa55f525c1afca68/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/95c0f863446276ddfa55f525c1afca68/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 24, + "NbFans": 1197360, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 259, + "Name": "Chumbawamba", + "HasPublicSongs": true, + "SongId": 281, + "Color": "78E957", + "DarkColor": "00653C", + "DeezerID": 3238, + "DeezerURL": "https://www.deezer.com/artist/3238", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3c4fa1323062c32e264a3da12789c4ca/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3c4fa1323062c32e264a3da12789c4ca/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3c4fa1323062c32e264a3da12789c4ca/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3c4fa1323062c32e264a3da12789c4ca/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 16, + "NbFans": 12664, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 260, + "Name": "Dead Or Alive", + "HasPublicSongs": true, + "SongId": 282, + "Color": "607BC4", + "DarkColor": "3C4784", + "DeezerID": 4190, + "DeezerURL": "https://www.deezer.com/artist/4190", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/bb74300a220b9b4cfbdbfbb3ede8a1f7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/bb74300a220b9b4cfbdbfbb3ede8a1f7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/bb74300a220b9b4cfbdbfbb3ede8a1f7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/bb74300a220b9b4cfbdbfbb3ede8a1f7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 36, + "NbFans": 22963, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 261, + "Name": "Jukio Kallio & Daniel Hagström", + "HasPublicSongs": true, + "SongId": 298, + "Color": "E004BF", + "DarkColor": "693390" + }, + { + "ArtistId": 262, + "Name": "Wheatus", + "HasPublicSongs": true, + "SongId": 285, + "Color": "00FFFF", + "DarkColor": "00B9B9", + "DeezerID": 3210, + "DeezerURL": "https://www.deezer.com/artist/3210", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/be15138f543ddd792b3db5d10a358f18/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/be15138f543ddd792b3db5d10a358f18/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/be15138f543ddd792b3db5d10a358f18/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/be15138f543ddd792b3db5d10a358f18/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 37, + "NbFans": 16300, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 263, + "Name": "Alessia Cara", + "HasPublicSongs": true, + "SongId": 299, + "Color": "A54482", + "DarkColor": "611A6E", + "DeezerID": 7890062, + "DeezerURL": "https://www.deezer.com/artist/7890062", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/bad25f2acb3eb34706b681b729d93dd9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/bad25f2acb3eb34706b681b729d93dd9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/bad25f2acb3eb34706b681b729d93dd9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/bad25f2acb3eb34706b681b729d93dd9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 44, + "NbFans": 673227, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 264, + "Name": "Sigrid", + "HasPublicSongs": true, + "SongId": 286, + "Color": "DB352C", + "DarkColor": "9E1E23", + "DeezerID": 11924667, + "DeezerURL": "https://www.deezer.com/artist/11924667", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/19818765cce5e1959899d08c190686ae/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/19818765cce5e1959899d08c190686ae/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/19818765cce5e1959899d08c190686ae/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/19818765cce5e1959899d08c190686ae/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 51, + "NbFans": 42318, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 265, + "Name": "Öwnboss", + "HasPublicSongs": true, + "SongId": 288, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 11546917, + "DeezerURL": "https://www.deezer.com/artist/11546917", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b4257d2b281e6784687819fc57e4dc87/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b4257d2b281e6784687819fc57e4dc87/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b4257d2b281e6784687819fc57e4dc87/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b4257d2b281e6784687819fc57e4dc87/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 106, + "NbFans": 18203, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 266, + "Name": "Sevek", + "HasPublicSongs": true, + "SongId": 288, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 9172904, + "DeezerURL": "https://www.deezer.com/artist/9172904", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/32b1d4df0570439277e798f1aac1746c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/32b1d4df0570439277e798f1aac1746c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/32b1d4df0570439277e798f1aac1746c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/32b1d4df0570439277e798f1aac1746c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 20, + "NbFans": 350156, + "Radio": true, + "TopGenres": [ + "K-Pop", + "Música asiática" + ], + "Rank": null + }, + { + "ArtistId": 267, + "Name": "D'Angelo", + "HasPublicSongs": true, + "SongId": 290, + "Color": "AB5624", + "DarkColor": "781A0A", + "DeezerID": 5004, + "DeezerURL": "https://www.deezer.com/artist/5004", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/24f0e20428849e448f893e582788bb90/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/24f0e20428849e448f893e582788bb90/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/24f0e20428849e448f893e582788bb90/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/24f0e20428849e448f893e582788bb90/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 6, + "NbFans": 137497, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "R&B", + "Rap/Hip Hop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 268, + "Name": "All Time Low", + "HasPublicSongs": true, + "SongId": 291, + "Color": "F1B500", + "DarkColor": "DC8E00", + "DeezerID": 13191, + "DeezerURL": "https://www.deezer.com/artist/13191", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/000e1a8c96772f9c91250974c3737cd3/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/000e1a8c96772f9c91250974c3737cd3/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/000e1a8c96772f9c91250974c3737cd3/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/000e1a8c96772f9c91250974c3737cd3/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 80, + "NbFans": 366878, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 269, + "Name": "Chaka Demus & Pliers", + "HasPublicSongs": true, + "SongId": 289, + "Color": "F86F0E", + "DarkColor": "921C0A", + "DeezerID": 800, + "DeezerURL": "https://www.deezer.com/artist/800", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ba42b586c478203433f2fd40068438b2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ba42b586c478203433f2fd40068438b2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ba42b586c478203433f2fd40068438b2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ba42b586c478203433f2fd40068438b2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 8, + "NbFans": 153400, + "Radio": true, + "TopGenres": [ + "Pop", + "Reggae" + ], + "Rank": null + }, + { + "ArtistId": 270, + "Name": "Gnarls Barkley", + "HasPublicSongs": true, + "SongId": 752, + "Color": "EEA825", + "DarkColor": "E27C09", + "DeezerID": 3467, + "DeezerURL": "https://www.deezer.com/artist/3467", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a049d03a2aeaed63bb5556beea268d60/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a049d03a2aeaed63bb5556beea268d60/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a049d03a2aeaed63bb5556beea268d60/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a049d03a2aeaed63bb5556beea268d60/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 12, + "NbFans": 126174, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 271, + "Name": "The Primitives", + "HasPublicSongs": true, + "SongId": 294, + "Color": "263E7D", + "DarkColor": "192951", + "DeezerID": 10735, + "DeezerURL": "https://www.deezer.com/artist/10735", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c21d970ca038a24d0f5ba1467087b2b7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c21d970ca038a24d0f5ba1467087b2b7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c21d970ca038a24d0f5ba1467087b2b7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c21d970ca038a24d0f5ba1467087b2b7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 145, + "NbFans": 21002, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 272, + "Name": "Metrik", + "HasPublicSongs": true, + "SongId": 300, + "Color": "22B1C0", + "DarkColor": "006977", + "DeezerID": 469495, + "DeezerURL": "https://www.deezer.com/artist/469495", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/bc1842616a3bbd64e84c61c660d7b967/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/bc1842616a3bbd64e84c61c660d7b967/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/bc1842616a3bbd64e84c61c660d7b967/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/bc1842616a3bbd64e84c61c660d7b967/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 33, + "NbFans": 20055, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 273, + "Name": "Grafix", + "HasPublicSongs": true, + "SongId": 300, + "Color": "22B1C0", + "DarkColor": "006977", + "DeezerID": 1401462, + "DeezerURL": "https://www.deezer.com/artist/1401462", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3e1115be52eac01bddb619af8b3b2e32/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3e1115be52eac01bddb619af8b3b2e32/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3e1115be52eac01bddb619af8b3b2e32/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3e1115be52eac01bddb619af8b3b2e32/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 31, + "NbFans": 4159, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 274, + "Name": "Wanz", + "HasPublicSongs": true, + "SongId": 301, + "Color": "EAD534", + "DarkColor": "EB7A03", + "DeezerID": 105535192, + "DeezerURL": "https://www.deezer.com/artist/105535192", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e534645229ebb0f7e84d11e5e892a3a7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e534645229ebb0f7e84d11e5e892a3a7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e534645229ebb0f7e84d11e5e892a3a7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e534645229ebb0f7e84d11e5e892a3a7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 2, + "NbFans": 5, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 275, + "Name": "Diplo", + "HasPublicSongs": true, + "SongId": 511, + "Color": "4FB6FA", + "DarkColor": "0D559D", + "DeezerID": 1846, + "DeezerURL": "https://www.deezer.com/artist/1846", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e26fa83b67df45f262ce0181c3b86463/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e26fa83b67df45f262ce0181c3b86463/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e26fa83b67df45f262ce0181c3b86463/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e26fa83b67df45f262ce0181c3b86463/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 158, + "NbFans": 1279524, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 276, + "Name": "Labyrinth", + "HasPublicSongs": true, + "SongId": 511, + "Color": "4FB6FA", + "DarkColor": "0D559D", + "DeezerID": 161193, + "DeezerURL": "https://www.deezer.com/artist/161193", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/fa76bcaa8281788427730ddb73d5e656/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/fa76bcaa8281788427730ddb73d5e656/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/fa76bcaa8281788427730ddb73d5e656/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/fa76bcaa8281788427730ddb73d5e656/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 49, + "NbFans": 5267, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 277, + "Name": "Megadeth", + "HasPublicSongs": true, + "SongId": 476, + "Color": "A55732", + "DarkColor": "552C19", + "DeezerID": 3487, + "DeezerURL": "https://www.deezer.com/artist/3487", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/cff12b4ef973a62d886d69bf056941ec/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/cff12b4ef973a62d886d69bf056941ec/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/cff12b4ef973a62d886d69bf056941ec/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/cff12b4ef973a62d886d69bf056941ec/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 41, + "NbFans": 1668888, + "Radio": true, + "TopGenres": [ + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 278, + "Name": "A$AP Rocky", + "HasPublicSongs": true, + "SongId": 240, + "Color": "E4C188", + "DarkColor": "97551D", + "DeezerID": 1518490, + "DeezerURL": "https://www.deezer.com/artist/1518490", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5eebb137c5f4d0eb8fb5f9227e1b6288/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5eebb137c5f4d0eb8fb5f9227e1b6288/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5eebb137c5f4d0eb8fb5f9227e1b6288/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5eebb137c5f4d0eb8fb5f9227e1b6288/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 48, + "NbFans": 1933452, + "Radio": true, + "TopGenres": [ + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 279, + "Name": "ZHU", + "HasPublicSongs": true, + "SongId": 297, + "Color": "E51A18", + "DarkColor": "750D0C", + "DeezerID": 1514401, + "DeezerURL": "https://www.deezer.com/artist/1514401", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ad7bd627b3b1326a2086fa38f3afdd07/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ad7bd627b3b1326a2086fa38f3afdd07/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ad7bd627b3b1326a2086fa38f3afdd07/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ad7bd627b3b1326a2086fa38f3afdd07/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 1, + "NbFans": 55, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 280, + "Name": "Ultimate Studio", + "HasPublicSongs": true, + "SongId": 303, + "Color": "E6333A", + "DarkColor": "81051D", + "DeezerID": 287569741, + "DeezerURL": "https://www.deezer.com/artist/287569741", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist//56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist//250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist//500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist//1000x1000-000000-80-0-0.jpg", + "NbAlbums": 2, + "NbFans": 0, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 281, + "Name": "Tim Spicer", + "HasPublicSongs": true, + "SongId": 303, + "Color": "E6333A", + "DarkColor": "81051D", + "DeezerID": 13370061, + "DeezerURL": "https://www.deezer.com/artist/13370061", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist//56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist//250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist//500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist//1000x1000-000000-80-0-0.jpg", + "NbAlbums": 0, + "NbFans": 1, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 282, + "Name": "Yahor Milkota", + "HasPublicSongs": true, + "SongId": 303, + "Color": "E6333A", + "DarkColor": "81051D" + }, + { + "ArtistId": 284, + "Name": "Eminem", + "HasPublicSongs": true, + "SongId": 306, + "Color": "654CE8", + "DarkColor": "2115CD", + "DeezerID": 13, + "DeezerURL": "https://www.deezer.com/artist/13", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/19cc38f9d69b352f718782e7a22f9c32/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/19cc38f9d69b352f718782e7a22f9c32/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/19cc38f9d69b352f718782e7a22f9c32/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/19cc38f9d69b352f718782e7a22f9c32/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 66, + "NbFans": 18086295, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 285, + "Name": "Snoop Dogg", + "HasPublicSongs": true, + "SongId": 754, + "Color": "2A4B47", + "DarkColor": "1A302D", + "DeezerID": 167095, + "DeezerURL": "https://www.deezer.com/artist/167095", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7be1be44b68b21641c2511e1034bc4c9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7be1be44b68b21641c2511e1034bc4c9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7be1be44b68b21641c2511e1034bc4c9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7be1be44b68b21641c2511e1034bc4c9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 22, + "NbFans": 3821139, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 286, + "Name": "Rihanna", + "HasPublicSongs": true, + "SongId": 307, + "Color": "952992", + "DarkColor": "300461", + "DeezerID": 564, + "DeezerURL": "https://www.deezer.com/artist/564", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3461977558f68c352862c00bee35603b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3461977558f68c352862c00bee35603b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3461977558f68c352862c00bee35603b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3461977558f68c352862c00bee35603b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 98, + "NbFans": 17141523, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 287, + "Name": "The Kinks", + "HasPublicSongs": true, + "SongId": 308, + "Color": "C75E40", + "DarkColor": "9F4B39", + "DeezerID": 1415, + "DeezerURL": "https://www.deezer.com/artist/1415", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/72b207adbd41f6ae13b84c041e8f965f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/72b207adbd41f6ae13b84c041e8f965f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/72b207adbd41f6ae13b84c041e8f965f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/72b207adbd41f6ae13b84c041e8f965f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 76, + "NbFans": 641705, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 288, + "Name": "Electric Enemy", + "HasPublicSongs": true, + "SongId": 428, + "Color": "682A38", + "DarkColor": "321518", + "DeezerID": 5712230, + "DeezerURL": "https://www.deezer.com/artist/5712230", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c79814dc7b88d7c1b842ddd3d3d9c66f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c79814dc7b88d7c1b842ddd3d3d9c66f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c79814dc7b88d7c1b842ddd3d3d9c66f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c79814dc7b88d7c1b842ddd3d3d9c66f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 11, + "NbFans": 269, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 289, + "Name": "J Hus", + "HasPublicSongs": true, + "SongId": 310, + "Color": "940706", + "DarkColor": "4D2321", + "DeezerID": 8657430, + "DeezerURL": "https://www.deezer.com/artist/8657430", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/56b2b7cb226e9d6f96d55b772505ab43/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/56b2b7cb226e9d6f96d55b772505ab43/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/56b2b7cb226e9d6f96d55b772505ab43/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/56b2b7cb226e9d6f96d55b772505ab43/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 27, + "NbFans": 614457, + "Radio": true, + "TopGenres": [ + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 290, + "Name": "Elton John", + "HasPublicSongs": true, + "SongId": 311, + "Color": "8EC585", + "DarkColor": "1E8871", + "DeezerID": 186727, + "DeezerURL": "https://www.deezer.com/artist/186727", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a2125199bffc5d80cffd855e5cc86c1f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a2125199bffc5d80cffd855e5cc86c1f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a2125199bffc5d80cffd855e5cc86c1f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a2125199bffc5d80cffd855e5cc86c1f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 1, + "NbFans": 25, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 291, + "Name": "Dua Lipa", + "HasPublicSongs": true, + "SongId": 311, + "Color": "8EC585", + "DarkColor": "1E8871", + "DeezerID": 57503302, + "DeezerURL": "https://www.deezer.com/artist/57503302", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1269dfe14709466c267e7cba2923dd45/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1269dfe14709466c267e7cba2923dd45/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1269dfe14709466c267e7cba2923dd45/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1269dfe14709466c267e7cba2923dd45/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 8080, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 292, + "Name": "Fatboy Slim", + "HasPublicSongs": true, + "SongId": 312, + "Color": "2291BC", + "DarkColor": "0D559D", + "DeezerID": 76, + "DeezerURL": "https://www.deezer.com/artist/76", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f6ea7bd64ec1902feff17935fdfea263/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f6ea7bd64ec1902feff17935fdfea263/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f6ea7bd64ec1902feff17935fdfea263/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f6ea7bd64ec1902feff17935fdfea263/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 134, + "NbFans": 1213582, + "Radio": true, + "TopGenres": [ + "Dance" + ], + "Rank": null + }, + { + "ArtistId": 293, + "Name": "The Fratellis", + "HasPublicSongs": true, + "SongId": 313, + "Color": "ECD599", + "DarkColor": "A5703C", + "DeezerID": 9083, + "DeezerURL": "https://www.deezer.com/artist/9083", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/84f269e7745cb740fc92ecc32a31c82c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/84f269e7745cb740fc92ecc32a31c82c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/84f269e7745cb740fc92ecc32a31c82c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/84f269e7745cb740fc92ecc32a31c82c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 40, + "NbFans": 143491, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 294, + "Name": "The Proclaimers", + "HasPublicSongs": true, + "SongId": 315, + "Color": "00AEEB", + "DarkColor": "08658D", + "DeezerID": 2887, + "DeezerURL": "https://www.deezer.com/artist/2887", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/172f17296631f017226354438fea676e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/172f17296631f017226354438fea676e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/172f17296631f017226354438fea676e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/172f17296631f017226354438fea676e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 32, + "NbFans": 22930, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 295, + "Name": "MK xyz", + "HasPublicSongs": true, + "SongId": 318, + "Color": "DAB624", + "DarkColor": "DCA100", + "DeezerID": 95431562, + "DeezerURL": "https://www.deezer.com/artist/95431562", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/30a5496fcd85bd7b4c7229b48706c944/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/30a5496fcd85bd7b4c7229b48706c944/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/30a5496fcd85bd7b4c7229b48706c944/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/30a5496fcd85bd7b4c7229b48706c944/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 8, + "NbFans": 312, + "Radio": true, + "TopGenres": [ + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 296, + "Name": "Robyn", + "HasPublicSongs": true, + "SongId": 319, + "Color": "6FCEE7", + "DarkColor": "0D9FC1", + "DeezerID": 2648, + "DeezerURL": "https://www.deezer.com/artist/2648", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1de7f8f949ad42080ecacc93c3b3d813/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1de7f8f949ad42080ecacc93c3b3d813/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1de7f8f949ad42080ecacc93c3b3d813/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1de7f8f949ad42080ecacc93c3b3d813/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 63, + "NbFans": 166785, + "Radio": true, + "TopGenres": [ + "Electro", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 297, + "Name": "Corinne Bailey Rae", + "HasPublicSongs": true, + "SongId": 320, + "Color": "DFA564", + "DarkColor": "A55E46", + "DeezerID": 3595, + "DeezerURL": "https://www.deezer.com/artist/3595", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/21e2c4357d49281172c8dd7a718c9749/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/21e2c4357d49281172c8dd7a718c9749/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/21e2c4357d49281172c8dd7a718c9749/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/21e2c4357d49281172c8dd7a718c9749/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 27, + "NbFans": 111749, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 298, + "Name": "Rick Astley", + "HasPublicSongs": true, + "SongId": 321, + "Color": "1C7ABE", + "DarkColor": "0A3168", + "DeezerID": 6160, + "DeezerURL": "https://www.deezer.com/artist/6160", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6759ecf77a12ffbd9b642ce4b2c53ef0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6759ecf77a12ffbd9b642ce4b2c53ef0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6759ecf77a12ffbd9b642ce4b2c53ef0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6759ecf77a12ffbd9b642ce4b2c53ef0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 49, + "NbFans": 206543, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 299, + "Name": "Stefflon Don", + "HasPublicSongs": true, + "SongId": 322, + "Color": "DC5B9E", + "DarkColor": "852856", + "DeezerID": 3972081, + "DeezerURL": "https://www.deezer.com/artist/3972081", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/edb9ef74764787f99da4af6e66da07b2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/edb9ef74764787f99da4af6e66da07b2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/edb9ef74764787f99da4af6e66da07b2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/edb9ef74764787f99da4af6e66da07b2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 74, + "NbFans": 160213, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 300, + "Name": "Alien Ant Farm", + "HasPublicSongs": true, + "SongId": 323, + "Color": "F04321", + "DarkColor": "89230D", + "DeezerID": 420, + "DeezerURL": "https://www.deezer.com/artist/420", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/555c54a75a700b4da1ee2915aa40cd37/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/555c54a75a700b4da1ee2915aa40cd37/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/555c54a75a700b4da1ee2915aa40cd37/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/555c54a75a700b4da1ee2915aa40cd37/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 4, + "NbFans": 49772, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 301, + "Name": "JID", + "HasPublicSongs": true, + "SongId": 326, + "Color": "B63287", + "DarkColor": "411448", + "DeezerID": 8409650, + "DeezerURL": "https://www.deezer.com/artist/8409650", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/fa5da4839b0a492fa231398a08b24a35/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/fa5da4839b0a492fa231398a08b24a35/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/fa5da4839b0a492fa231398a08b24a35/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/fa5da4839b0a492fa231398a08b24a35/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 23, + "NbFans": 145927, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 302, + "Name": "2 Unlimited", + "HasPublicSongs": true, + "SongId": 330, + "Color": "925CAC", + "DarkColor": "602046", + "DeezerID": 1163, + "DeezerURL": "https://www.deezer.com/artist/1163", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f2558dbd2959f59c1c812d2b1dc1b63e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f2558dbd2959f59c1c812d2b1dc1b63e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f2558dbd2959f59c1c812d2b1dc1b63e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f2558dbd2959f59c1c812d2b1dc1b63e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 23, + "NbFans": 59236, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 303, + "Name": "Junior Senior", + "HasPublicSongs": true, + "SongId": 331, + "Color": "89CA0D", + "DarkColor": "3D8503", + "DeezerID": 6891, + "DeezerURL": "https://www.deezer.com/artist/6891", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/98fd7c8b9f626c180d0723a1136351a4/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/98fd7c8b9f626c180d0723a1136351a4/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/98fd7c8b9f626c180d0723a1136351a4/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/98fd7c8b9f626c180d0723a1136351a4/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 10, + "NbFans": 10071, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Pop", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 304, + "Name": "Montell Jordan", + "HasPublicSongs": true, + "SongId": 333, + "Color": "1E70DF", + "DarkColor": "02204C", + "DeezerID": 258, + "DeezerURL": "https://www.deezer.com/artist/258", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f7bce0ed2ce197a9a9ca9d00f37b6c6e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f7bce0ed2ce197a9a9ca9d00f37b6c6e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f7bce0ed2ce197a9a9ca9d00f37b6c6e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f7bce0ed2ce197a9a9ca9d00f37b6c6e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 21, + "NbFans": 57041, + "Radio": true, + "TopGenres": [ + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 305, + "Name": "Timmy Trumpet", + "HasPublicSongs": true, + "SongId": 334, + "Color": "CC2827", + "DarkColor": "4C0D05", + "DeezerID": 661247, + "DeezerURL": "https://www.deezer.com/artist/661247", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4286a6cb7feff213d6c96a876a40ed88/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4286a6cb7feff213d6c96a876a40ed88/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4286a6cb7feff213d6c96a876a40ed88/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4286a6cb7feff213d6c96a876a40ed88/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 197, + "NbFans": 502526, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 306, + "Name": "Sub Zero Project", + "HasPublicSongs": true, + "SongId": 334, + "Color": "CC2827", + "DarkColor": "4C0D05", + "DeezerID": 4804, + "DeezerURL": "https://www.deezer.com/artist/4804", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a9b25a64be161bf648640d4d6eb5c0a6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a9b25a64be161bf648640d4d6eb5c0a6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a9b25a64be161bf648640d4d6eb5c0a6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a9b25a64be161bf648640d4d6eb5c0a6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 45, + "NbFans": 31056, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Hard Rock", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 307, + "Name": "DV8", + "HasPublicSongs": true, + "SongId": 334, + "Color": "CC2827", + "DarkColor": "4C0D05", + "DeezerID": 208249, + "DeezerURL": "https://www.deezer.com/artist/208249", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/69ba20adb84a8a9fcdc644838ecdcbb7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/69ba20adb84a8a9fcdc644838ecdcbb7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/69ba20adb84a8a9fcdc644838ecdcbb7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/69ba20adb84a8a9fcdc644838ecdcbb7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 30, + "NbFans": 280, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 308, + "Name": "Ciara", + "HasPublicSongs": true, + "SongId": 335, + "Color": "B8286A", + "DarkColor": "511137", + "DeezerID": 2619, + "DeezerURL": "https://www.deezer.com/artist/2619", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/df99697608cac4108951a3b7c6225f1f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/df99697608cac4108951a3b7c6225f1f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/df99697608cac4108951a3b7c6225f1f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/df99697608cac4108951a3b7c6225f1f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 94, + "NbFans": 2261008, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 309, + "Name": "Petey Pablo", + "HasPublicSongs": true, + "SongId": 335, + "Color": "B8286A", + "DarkColor": "511137", + "DeezerID": 3826, + "DeezerURL": "https://www.deezer.com/artist/3826", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ece9526c71e304812795b09afdbf19ab/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ece9526c71e304812795b09afdbf19ab/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ece9526c71e304812795b09afdbf19ab/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ece9526c71e304812795b09afdbf19ab/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 15, + "NbFans": 28960, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Rap/Hip Hop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 310, + "Name": "Reel 2 Real", + "HasPublicSongs": true, + "SongId": 336, + "Color": "FA6E11", + "DarkColor": "E23000", + "DeezerID": 998, + "DeezerURL": "https://www.deezer.com/artist/998", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ee3bbc10f7c6ea4cf600044812594baa/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ee3bbc10f7c6ea4cf600044812594baa/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ee3bbc10f7c6ea4cf600044812594baa/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ee3bbc10f7c6ea4cf600044812594baa/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 17, + "NbFans": 6070, + "Radio": true, + "TopGenres": [ + "Dance" + ], + "Rank": null + }, + { + "ArtistId": 311, + "Name": "The Mad Stuntman", + "HasPublicSongs": true, + "SongId": 336, + "Color": "FA6E11", + "DarkColor": "E23000", + "DeezerID": 4769359, + "DeezerURL": "https://www.deezer.com/artist/4769359", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/525aec2ad9ba84d87f2f1c0403d0b7a2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/525aec2ad9ba84d87f2f1c0403d0b7a2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/525aec2ad9ba84d87f2f1c0403d0b7a2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/525aec2ad9ba84d87f2f1c0403d0b7a2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 32, + "NbFans": 209, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 312, + "Name": "No Doubt", + "HasPublicSongs": true, + "SongId": 498, + "Color": "0D447C", + "DarkColor": "092C4F", + "DeezerID": 79, + "DeezerURL": "https://www.deezer.com/artist/79", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f156764b381f913de87cd4fcc46cf33f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f156764b381f913de87cd4fcc46cf33f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f156764b381f913de87cd4fcc46cf33f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f156764b381f913de87cd4fcc46cf33f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 16, + "NbFans": 815578, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 313, + "Name": "AURORA", + "HasPublicSongs": true, + "SongId": 338, + "Color": "E86730", + "DarkColor": "911A1A", + "DeezerID": 7699874, + "DeezerURL": "https://www.deezer.com/artist/7699874", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3597bce10bd3284fb54b04a89511dddf/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3597bce10bd3284fb54b04a89511dddf/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3597bce10bd3284fb54b04a89511dddf/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3597bce10bd3284fb54b04a89511dddf/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 81, + "NbFans": 455258, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 314, + "Name": "Enter Shikari", + "HasPublicSongs": true, + "SongId": 339, + "Color": "EB4E24", + "DarkColor": "830011", + "DeezerID": 12107, + "DeezerURL": "https://www.deezer.com/artist/12107", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/fb603eef8140f54756c5f83789592cfd/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/fb603eef8140f54756c5f83789592cfd/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/fb603eef8140f54756c5f83789592cfd/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/fb603eef8140f54756c5f83789592cfd/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 79, + "NbFans": 92164, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 315, + "Name": "Blue Öyster Cult", + "HasPublicSongs": true, + "SongId": 342, + "Color": "2E3D62", + "DarkColor": "1C1B36", + "DeezerID": 692, + "DeezerURL": "https://www.deezer.com/artist/692", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/00d8a05835354c1bce2868dafd7dca7c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/00d8a05835354c1bce2868dafd7dca7c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/00d8a05835354c1bce2868dafd7dca7c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/00d8a05835354c1bce2868dafd7dca7c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 56, + "NbFans": 128353, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 316, + "Name": "Muni Long", + "HasPublicSongs": true, + "SongId": 343, + "Color": "AB5624", + "DarkColor": "781A0A", + "DeezerID": 230831685, + "DeezerURL": "https://www.deezer.com/artist/230831685", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e74ab3b46c604c1b8584fe2c8a13f9cd/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e74ab3b46c604c1b8584fe2c8a13f9cd/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e74ab3b46c604c1b8584fe2c8a13f9cd/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e74ab3b46c604c1b8584fe2c8a13f9cd/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 33, + "NbFans": 16409, + "Radio": true, + "TopGenres": [ + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 317, + "Name": "Lupe Fiasco", + "HasPublicSongs": true, + "SongId": 344, + "Color": "DECB42", + "DarkColor": "DCA700", + "DeezerID": 5047, + "DeezerURL": "https://www.deezer.com/artist/5047", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f76f59a8a1786fd6a29fd69cbffd5a8f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f76f59a8a1786fd6a29fd69cbffd5a8f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f76f59a8a1786fd6a29fd69cbffd5a8f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f76f59a8a1786fd6a29fd69cbffd5a8f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 49, + "NbFans": 304407, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 318, + "Name": "Matthew Santos", + "HasPublicSongs": true, + "SongId": 344, + "Color": "DECB42", + "DarkColor": "DCA700", + "DeezerID": 392888, + "DeezerURL": "https://www.deezer.com/artist/392888", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/03b1d59962db55caa236e6e7ce4e9c83/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/03b1d59962db55caa236e6e7ce4e9c83/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/03b1d59962db55caa236e6e7ce4e9c83/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/03b1d59962db55caa236e6e7ce4e9c83/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 10, + "NbFans": 789, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Folk", + "Indie rock/Rock pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 319, + "Name": "Nicky Youre", + "HasPublicSongs": true, + "SongId": 345, + "Color": "93D8FF", + "DarkColor": "447EAB", + "DeezerID": 95585462, + "DeezerURL": "https://www.deezer.com/artist/95585462", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3918f4029d297522f27357c6dbd4bc9a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3918f4029d297522f27357c6dbd4bc9a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3918f4029d297522f27357c6dbd4bc9a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3918f4029d297522f27357c6dbd4bc9a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 8, + "NbFans": 4198, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 320, + "Name": "dazy", + "HasPublicSongs": true, + "SongId": 345, + "Color": "93D8FF", + "DarkColor": "447EAB", + "DeezerID": 5356688, + "DeezerURL": "https://www.deezer.com/artist/5356688", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8eac3fc54b1ba1ba1a86b577c02871eb/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8eac3fc54b1ba1ba1a86b577c02871eb/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8eac3fc54b1ba1ba1a86b577c02871eb/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8eac3fc54b1ba1ba1a86b577c02871eb/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 35, + "NbFans": 935, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie rock/Rock pop", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 321, + "Name": "Steppenwolf", + "HasPublicSongs": true, + "SongId": 346, + "Color": "BB3E4E", + "DarkColor": "601F2A", + "DeezerID": 1172, + "DeezerURL": "https://www.deezer.com/artist/1172", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1509b6e66be067d038f502eac3b8732d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1509b6e66be067d038f502eac3b8732d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1509b6e66be067d038f502eac3b8732d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1509b6e66be067d038f502eac3b8732d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 235099, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 322, + "Name": "Ginuwine", + "HasPublicSongs": true, + "SongId": 347, + "Color": "BDAA8B", + "DarkColor": "453B33", + "DeezerID": 191, + "DeezerURL": "https://www.deezer.com/artist/191", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f4615e90f3d4793bc80fcf827b8c655d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f4615e90f3d4793bc80fcf827b8c655d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f4615e90f3d4793bc80fcf827b8c655d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f4615e90f3d4793bc80fcf827b8c655d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 27, + "NbFans": 257321, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 323, + "Name": "Lily Allen", + "HasPublicSongs": true, + "SongId": 348, + "Color": "D18C91", + "DarkColor": "522A39", + "DeezerID": 5475026, + "DeezerURL": "https://www.deezer.com/artist/5475026", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/79972499ba13a74051ab9a9c523d3a91/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/79972499ba13a74051ab9a9c523d3a91/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/79972499ba13a74051ab9a9c523d3a91/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/79972499ba13a74051ab9a9c523d3a91/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 20, + "NbFans": 417, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 324, + "Name": "S1mba", + "HasPublicSongs": true, + "SongId": 349, + "Color": "89CA0D", + "DarkColor": "3D8503", + "DeezerID": 14991905, + "DeezerURL": "https://www.deezer.com/artist/14991905", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a699a537abdae86fa7a63999537db1e8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a699a537abdae86fa7a63999537db1e8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a699a537abdae86fa7a63999537db1e8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a699a537abdae86fa7a63999537db1e8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 37, + "NbFans": 7694, + "Radio": true, + "TopGenres": [ + "Dance", + "Música Africana", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 325, + "Name": "DTG", + "HasPublicSongs": true, + "SongId": 349, + "Color": "89CA0D", + "DarkColor": "3D8503", + "DeezerID": 10139880, + "DeezerURL": "https://www.deezer.com/artist/10139880", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6d633b98bb4e42918ff8ebab658cd252/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6d633b98bb4e42918ff8ebab658cd252/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6d633b98bb4e42918ff8ebab658cd252/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6d633b98bb4e42918ff8ebab658cd252/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 35, + "NbFans": 413, + "Radio": true, + "TopGenres": [ + "Música Africana", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 326, + "Name": "Bomfunk MC's", + "HasPublicSongs": true, + "SongId": 351, + "Color": "1467A1", + "DarkColor": "00254C", + "DeezerID": 1006, + "DeezerURL": "https://www.deezer.com/artist/1006", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/427cc6c551b16f0b512fe4f2a13960bd/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/427cc6c551b16f0b512fe4f2a13960bd/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/427cc6c551b16f0b512fe4f2a13960bd/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/427cc6c551b16f0b512fe4f2a13960bd/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 8, + "NbFans": 11208, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House", + "Trance" + ], + "Rank": null + }, + { + "ArtistId": 327, + "Name": "Saint Motel", + "HasPublicSongs": true, + "SongId": 352, + "Color": "C47B66", + "DarkColor": "812D23", + "DeezerID": 522224, + "DeezerURL": "https://www.deezer.com/artist/522224", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e1e240da2fccc296f73efefa5f9f8b6e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e1e240da2fccc296f73efefa5f9f8b6e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e1e240da2fccc296f73efefa5f9f8b6e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e1e240da2fccc296f73efefa5f9f8b6e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 35, + "NbFans": 56285, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie rock/Rock pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 328, + "Name": "OK Go", + "HasPublicSongs": true, + "SongId": 353, + "Color": "E45942", + "DarkColor": "9A3421", + "DeezerID": 1279, + "DeezerURL": "https://www.deezer.com/artist/1279", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d66e3fb6d631b1bf10be876db4c26ec9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d66e3fb6d631b1bf10be876db4c26ec9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d66e3fb6d631b1bf10be876db4c26ec9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d66e3fb6d631b1bf10be876db4c26ec9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 29, + "NbFans": 80690, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Rock" + ], + "Rank": null + }, + { + "ArtistId": 329, + "Name": "Rita Ora", + "HasPublicSongs": true, + "SongId": 558, + "Color": "B58C9C", + "DarkColor": "936D7C", + "DeezerID": 1678249, + "DeezerURL": "https://www.deezer.com/artist/1678249", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6b4dc2c26dbaaf6e4cd1ab116636cbd4/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6b4dc2c26dbaaf6e4cd1ab116636cbd4/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6b4dc2c26dbaaf6e4cd1ab116636cbd4/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6b4dc2c26dbaaf6e4cd1ab116636cbd4/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 106, + "NbFans": 2745058, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 330, + "Name": "Oliver Heldens", + "HasPublicSongs": true, + "SongId": 355, + "Color": "52935F", + "DarkColor": "1C5A26", + "DeezerID": 4777520, + "DeezerURL": "https://www.deezer.com/artist/4777520", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/fd587dfb0676388e355597b901a9618a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/fd587dfb0676388e355597b901a9618a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/fd587dfb0676388e355597b901a9618a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/fd587dfb0676388e355597b901a9618a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 135, + "NbFans": 379420, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop", + "Pop internacional", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 331, + "Name": "Becky Hill", + "HasPublicSongs": true, + "SongId": 355, + "Color": "52935F", + "DarkColor": "1C5A26", + "DeezerID": 2699221, + "DeezerURL": "https://www.deezer.com/artist/2699221", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/eeeb3ca2782a7f53edfaa9c787770c3d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/eeeb3ca2782a7f53edfaa9c787770c3d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/eeeb3ca2782a7f53edfaa9c787770c3d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/eeeb3ca2782a7f53edfaa9c787770c3d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 150, + "NbFans": 232391, + "Radio": true, + "TopGenres": [ + "Dance" + ], + "Rank": null + }, + { + "ArtistId": 332, + "Name": "Luke Combs", + "HasPublicSongs": true, + "SongId": 360, + "Color": "8EC585", + "DarkColor": "1E8871", + "DeezerID": 9626504, + "DeezerURL": "https://www.deezer.com/artist/9626504", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0b3f460cec77fbd2039a33c56fe39a22/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0b3f460cec77fbd2039a33c56fe39a22/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0b3f460cec77fbd2039a33c56fe39a22/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0b3f460cec77fbd2039a33c56fe39a22/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 32, + "NbFans": 297733, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 333, + "Name": "Luke Bryan", + "HasPublicSongs": true, + "SongId": 357, + "Color": "AD694D", + "DarkColor": "812D23", + "DeezerID": 6803, + "DeezerURL": "https://www.deezer.com/artist/6803", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/41c434708d2aea1459c4a139a1b4949a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/41c434708d2aea1459c4a139a1b4949a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/41c434708d2aea1459c4a139a1b4949a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/41c434708d2aea1459c4a139a1b4949a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 15, + "NbFans": 10528, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 334, + "Name": "Walker Hayes", + "HasPublicSongs": true, + "SongId": 361, + "Color": "567C89", + "DarkColor": "2C4E62", + "DeezerID": 398476, + "DeezerURL": "https://www.deezer.com/artist/398476", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9c51a6447c5658bb8decf7d8a27992e2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9c51a6447c5658bb8decf7d8a27992e2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9c51a6447c5658bb8decf7d8a27992e2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9c51a6447c5658bb8decf7d8a27992e2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 33, + "NbFans": 53941, + "Radio": true, + "TopGenres": [ + "Gospel", + "Música Religiosa", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 335, + "Name": "Bailey Zimmerman", + "HasPublicSongs": true, + "SongId": 356, + "Color": "C9001B", + "DarkColor": "5D000B", + "DeezerID": 75832332, + "DeezerURL": "https://www.deezer.com/artist/75832332", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e70a9436db38afc2957b5eac21924a99/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e70a9436db38afc2957b5eac21924a99/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e70a9436db38afc2957b5eac21924a99/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e70a9436db38afc2957b5eac21924a99/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 49, + "NbFans": 14297, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 336, + "Name": "Dolly Parton", + "HasPublicSongs": true, + "SongId": 425, + "Color": "FA597F", + "DarkColor": "842D42", + "DeezerID": 8741, + "DeezerURL": "https://www.deezer.com/artist/8741", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3237db03da2df4d5b2e8c93e8bfeeefa/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3237db03da2df4d5b2e8c93e8bfeeefa/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3237db03da2df4d5b2e8c93e8bfeeefa/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3237db03da2df4d5b2e8c93e8bfeeefa/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 131, + "NbFans": 411459, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 337, + "Name": "Dan + Shay", + "HasPublicSongs": true, + "SongId": 359, + "Color": "73FBCE", + "DarkColor": "265445", + "DeezerID": 5112746, + "DeezerURL": "https://www.deezer.com/artist/5112746", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0ab55d0e5ef6ae9b2d8e398fbdf930fd/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0ab55d0e5ef6ae9b2d8e398fbdf930fd/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0ab55d0e5ef6ae9b2d8e398fbdf930fd/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0ab55d0e5ef6ae9b2d8e398fbdf930fd/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 44, + "NbFans": 119216, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 338, + "Name": "Monster Magnet", + "HasPublicSongs": true, + "SongId": 362, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 3095, + "DeezerURL": "https://www.deezer.com/artist/3095", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f0ab63844546b9b6adf8795da431df28/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f0ab63844546b9b6adf8795da431df28/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f0ab63844546b9b6adf8795da431df28/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f0ab63844546b9b6adf8795da431df28/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 26672, + "Radio": true, + "TopGenres": [ + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 339, + "Name": "Knife Party", + "HasPublicSongs": true, + "SongId": 363, + "Color": "E51A18", + "DarkColor": "750D0C", + "DeezerID": 541764, + "DeezerURL": "https://www.deezer.com/artist/541764", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b9bab7f315c3e9200ef9ebd2cb41f316/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b9bab7f315c3e9200ef9ebd2cb41f316/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b9bab7f315c3e9200ef9ebd2cb41f316/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b9bab7f315c3e9200ef9ebd2cb41f316/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 521461, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 340, + "Name": "Don McLean", + "HasPublicSongs": true, + "SongId": 364, + "Color": "960019", + "DarkColor": "300505", + "DeezerID": 2224, + "DeezerURL": "https://www.deezer.com/artist/2224", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ea4ca273ee3a5fdcda212615a78445d5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ea4ca273ee3a5fdcda212615a78445d5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ea4ca273ee3a5fdcda212615a78445d5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ea4ca273ee3a5fdcda212615a78445d5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 27, + "NbFans": 37998, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 341, + "Name": "Shania Twain", + "HasPublicSongs": true, + "SongId": 512, + "Color": "1E7CBF", + "DarkColor": "034B95", + "DeezerID": 3134, + "DeezerURL": "https://www.deezer.com/artist/3134", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ec103974a92b28768561da39848b0675/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ec103974a92b28768561da39848b0675/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ec103974a92b28768561da39848b0675/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ec103974a92b28768561da39848b0675/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 65, + "NbFans": 914313, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 342, + "Name": "Elle King", + "HasPublicSongs": true, + "SongId": 366, + "Color": "E14281", + "DarkColor": "671E3B", + "DeezerID": 1709730, + "DeezerURL": "https://www.deezer.com/artist/1709730", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8dfb9894783a5b5f24552bce8c6ab74e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8dfb9894783a5b5f24552bce8c6ab74e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8dfb9894783a5b5f24552bce8c6ab74e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8dfb9894783a5b5f24552bce8c6ab74e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 38, + "NbFans": 142424, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Blues", + "Filmes/Games", + "Indie rock/Rock pop", + "Pop", + "R&B", + "Rock", + "Soul OldSchool ", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 343, + "Name": "Miranda Lambert", + "HasPublicSongs": true, + "SongId": 366, + "Color": "E14281", + "DarkColor": "671E3B", + "DeezerID": 407361, + "DeezerURL": "https://www.deezer.com/artist/407361", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ff2fa9697793410ef70b26dabe498ef8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ff2fa9697793410ef70b26dabe498ef8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ff2fa9697793410ef70b26dabe498ef8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ff2fa9697793410ef70b26dabe498ef8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 15, + "NbFans": 4089, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Rock", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 344, + "Name": "Kane Brown", + "HasPublicSongs": true, + "SongId": 367, + "Color": "F5C056", + "DarkColor": "996F13", + "DeezerID": 827425, + "DeezerURL": "https://www.deezer.com/artist/827425", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0814321537330c4589086fde79b439f4/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0814321537330c4589086fde79b439f4/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0814321537330c4589086fde79b439f4/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0814321537330c4589086fde79b439f4/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 59, + "NbFans": 227663, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 345, + "Name": "The Killers", + "HasPublicSongs": true, + "SongId": 605, + "Color": "67AAF0", + "DarkColor": "334989", + "DeezerID": 897, + "DeezerURL": "https://www.deezer.com/artist/897", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/979d671d4b391bc07747bd1569e51997/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/979d671d4b391bc07747bd1569e51997/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/979d671d4b391bc07747bd1569e51997/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/979d671d4b391bc07747bd1569e51997/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 45, + "NbFans": 2118039, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 346, + "Name": "Breland", + "HasPublicSongs": true, + "SongId": 369, + "Color": "D5B177", + "DarkColor": "A17D52", + "DeezerID": 4860242, + "DeezerURL": "https://www.deezer.com/artist/4860242", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5691fbcdf340c706aba71feee5781631/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5691fbcdf340c706aba71feee5781631/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5691fbcdf340c706aba71feee5781631/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5691fbcdf340c706aba71feee5781631/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 26, + "NbFans": 1832, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 347, + "Name": "Tyler Hubbard", + "HasPublicSongs": true, + "SongId": 370, + "Color": "BDAA8B", + "DarkColor": "453B33", + "DeezerID": 4434338, + "DeezerURL": "https://www.deezer.com/artist/4434338", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f3f79dfc52865bd298b9ce3e110f776d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f3f79dfc52865bd298b9ce3e110f776d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f3f79dfc52865bd298b9ce3e110f776d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f3f79dfc52865bd298b9ce3e110f776d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 17, + "NbFans": 8301, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 348, + "Name": "Andy Grammer", + "HasPublicSongs": true, + "SongId": 371, + "Color": "7B334A", + "DarkColor": "54253D", + "DeezerID": 864595, + "DeezerURL": "https://www.deezer.com/artist/864595", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/fdda41152bb6f913fa41ab1fe829451c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/fdda41152bb6f913fa41ab1fe829451c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/fdda41152bb6f913fa41ab1fe829451c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/fdda41152bb6f913fa41ab1fe829451c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 43, + "NbFans": 133851, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 349, + "Name": "Korn", + "HasPublicSongs": true, + "SongId": 708, + "Color": "2E3D62", + "DarkColor": "1C1B36", + "DeezerID": 16648, + "DeezerURL": "https://www.deezer.com/artist/16648", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/259cef3fe597410e19690b3bc6a7fbf1/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/259cef3fe597410e19690b3bc6a7fbf1/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/259cef3fe597410e19690b3bc6a7fbf1/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/259cef3fe597410e19690b3bc6a7fbf1/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 313, + "NbFans": 2943, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 350, + "Name": "Yelawolf", + "HasPublicSongs": true, + "SongId": 372, + "Color": "22B1C0", + "DarkColor": "006977", + "DeezerID": 410734, + "DeezerURL": "https://www.deezer.com/artist/410734", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9ba20b3046e83b8d6d08f830c0b85570/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9ba20b3046e83b8d6d08f830c0b85570/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9ba20b3046e83b8d6d08f830c0b85570/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9ba20b3046e83b8d6d08f830c0b85570/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 50, + "NbFans": 216609, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rap/Hip Hop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 351, + "Name": "Panic! At The Disco", + "HasPublicSongs": true, + "SongId": 373, + "Color": "32868D", + "DarkColor": "144D51", + "DeezerID": 402, + "DeezerURL": "https://www.deezer.com/artist/402", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c601aa8551d9e0bc345d2d75934db733/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c601aa8551d9e0bc345d2d75934db733/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c601aa8551d9e0bc345d2d75934db733/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c601aa8551d9e0bc345d2d75934db733/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 39, + "NbFans": 1601620, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 352, + "Name": "Maroon 5", + "HasPublicSongs": true, + "SongId": 559, + "Color": "C47B66", + "DarkColor": "812D23", + "DeezerID": 1188, + "DeezerURL": "https://www.deezer.com/artist/1188", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/bbb526b9666c7e31dee295bcabbbdd8e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/bbb526b9666c7e31dee295bcabbbdd8e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/bbb526b9666c7e31dee295bcabbbdd8e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/bbb526b9666c7e31dee295bcabbbdd8e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 61, + "NbFans": 11086134, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 353, + "Name": "Starley", + "HasPublicSongs": true, + "SongId": 376, + "Color": "28AEAA", + "DarkColor": "1C6A86", + "DeezerID": 10156246, + "DeezerURL": "https://www.deezer.com/artist/10156246", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a233d3f542068cf13834857b16112155/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a233d3f542068cf13834857b16112155/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a233d3f542068cf13834857b16112155/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a233d3f542068cf13834857b16112155/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 0, + "NbFans": 27410, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Electro", + "Indie Pop", + "Indie Rock", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 354, + "Name": "Ryan Riback", + "HasPublicSongs": true, + "SongId": 376, + "Color": "28AEAA", + "DarkColor": "1C6A86", + "DeezerID": 995377, + "DeezerURL": "https://www.deezer.com/artist/995377", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/64b6b5b240028fdeb7e84207da45a803/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/64b6b5b240028fdeb7e84207da45a803/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/64b6b5b240028fdeb7e84207da45a803/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/64b6b5b240028fdeb7e84207da45a803/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 50, + "NbFans": 1686, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 355, + "Name": "Vengaboys", + "HasPublicSongs": true, + "SongId": 377, + "Color": "8791FC", + "DarkColor": "313072", + "DeezerID": 765, + "DeezerURL": "https://www.deezer.com/artist/765", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a0344756c4c3e1fa6f7cacd8be742ed5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a0344756c4c3e1fa6f7cacd8be742ed5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a0344756c4c3e1fa6f7cacd8be742ed5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a0344756c4c3e1fa6f7cacd8be742ed5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 26, + "NbFans": 77154, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 356, + "Name": "Polo G", + "HasPublicSongs": true, + "SongId": 378, + "Color": "D33648", + "DarkColor": "670A1A", + "DeezerID": 49818632, + "DeezerURL": "https://www.deezer.com/artist/49818632", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9faf91af495202aeab93e2d91b975851/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9faf91af495202aeab93e2d91b975851/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9faf91af495202aeab93e2d91b975851/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9faf91af495202aeab93e2d91b975851/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 39, + "NbFans": 698294, + "Radio": true, + "TopGenres": [ + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 357, + "Name": "Red Hot Chili Peppers", + "HasPublicSongs": true, + "SongId": 379, + "Color": "DB352C", + "DarkColor": "9E1E23", + "DeezerID": 7455976, + "DeezerURL": "https://www.deezer.com/artist/7455976", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/20f14f3e3f62c1a2b8f0a0a61436d967/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/20f14f3e3f62c1a2b8f0a0a61436d967/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/20f14f3e3f62c1a2b8f0a0a61436d967/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/20f14f3e3f62c1a2b8f0a0a61436d967/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 34, + "NbFans": 22251, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 359, + "Name": "Garmiani", + "HasPublicSongs": true, + "SongId": 381, + "Color": "D18552", + "DarkColor": "A64E40", + "DeezerID": 2968101, + "DeezerURL": "https://www.deezer.com/artist/2968101", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/08f8c191a560958313d65e3d91d5938b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/08f8c191a560958313d65e3d91d5938b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/08f8c191a560958313d65e3d91d5938b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/08f8c191a560958313d65e3d91d5938b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 20, + "NbFans": 9728, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 360, + "Name": "Julimar Santos", + "HasPublicSongs": true, + "SongId": 381, + "Color": "D18552", + "DarkColor": "A64E40", + "DeezerID": 4443980, + "DeezerURL": "https://www.deezer.com/artist/4443980", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1cf49fde5c1e075fa91989e0b0ab2b54/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1cf49fde5c1e075fa91989e0b0ab2b54/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1cf49fde5c1e075fa91989e0b0ab2b54/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1cf49fde5c1e075fa91989e0b0ab2b54/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 5, + "NbFans": 28, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 361, + "Name": "JVKE", + "HasPublicSongs": true, + "SongId": 383, + "Color": "EEFC45", + "DarkColor": "203A12", + "DeezerID": 14486481, + "DeezerURL": "https://www.deezer.com/artist/14486481", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a983e18e13119336db35e5ed47044c3d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a983e18e13119336db35e5ed47044c3d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a983e18e13119336db35e5ed47044c3d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a983e18e13119336db35e5ed47044c3d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 69, + "NbFans": 104158, + "Radio": true, + "TopGenres": [ + "Gospel", + "Música Religiosa", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 362, + "Name": "Meghan Trainor", + "HasPublicSongs": true, + "SongId": 504, + "Color": "2E9AAA", + "DarkColor": "257E8B", + "DeezerID": 1181430, + "DeezerURL": "https://www.deezer.com/artist/1181430", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8b70ca380fbdf0998c0c3a4d60fbbcec/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8b70ca380fbdf0998c0c3a4d60fbbcec/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8b70ca380fbdf0998c0c3a4d60fbbcec/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8b70ca380fbdf0998c0c3a4d60fbbcec/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 77, + "NbFans": 1663834, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 364, + "Name": "Kendrick Lamar", + "HasPublicSongs": true, + "SongId": 548, + "Color": "7B334A", + "DarkColor": "54253D", + "DeezerID": 339209, + "DeezerURL": "https://www.deezer.com/artist/339209", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a1eb64503d4f864fcd0b677de99df49c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a1eb64503d4f864fcd0b677de99df49c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a1eb64503d4f864fcd0b677de99df49c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a1eb64503d4f864fcd0b677de99df49c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 41, + "NbFans": 2619501, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 365, + "Name": "The Darkness", + "HasPublicSongs": true, + "SongId": 389, + "Color": "594D87", + "DarkColor": "331A36", + "DeezerID": 57605702, + "DeezerURL": "https://www.deezer.com/artist/57605702", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/90bc15c36529fb54f7c89b5bf9a3f81f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/90bc15c36529fb54f7c89b5bf9a3f81f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/90bc15c36529fb54f7c89b5bf9a3f81f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/90bc15c36529fb54f7c89b5bf9a3f81f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 13, + "NbFans": 76, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie rock/Rock pop", + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 366, + "Name": "Beatstar Originals", + "HasPublicSongs": true, + "SongId": 473, + "Color": "2781E2", + "DarkColor": "2549AF" + }, + { + "ArtistId": 367, + "Name": "Justin Timberlake", + "HasPublicSongs": true, + "SongId": 535, + "Color": "F5537A", + "DarkColor": "C03152", + "DeezerID": 9662, + "DeezerURL": "https://www.deezer.com/artist/9662", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c6da109d5a23ff93eefeba0649653cc3/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c6da109d5a23ff93eefeba0649653cc3/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c6da109d5a23ff93eefeba0649653cc3/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c6da109d5a23ff93eefeba0649653cc3/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 49, + "NbFans": 1123661, + "Radio": true, + "TopGenres": [ + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 368, + "Name": "Imanbek", + "HasPublicSongs": true, + "SongId": 395, + "Color": "D370AD", + "DarkColor": "3F2E5C", + "DeezerID": 73101792, + "DeezerURL": "https://www.deezer.com/artist/73101792", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7fb5aea10cac18f450d4d30e59d80a95/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7fb5aea10cac18f450d4d30e59d80a95/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7fb5aea10cac18f450d4d30e59d80a95/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7fb5aea10cac18f450d4d30e59d80a95/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 72, + "NbFans": 51318, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 369, + "Name": "BYOR", + "HasPublicSongs": true, + "SongId": 395, + "Color": "D370AD", + "DarkColor": "3F2E5C", + "DeezerID": 9511278, + "DeezerURL": "https://www.deezer.com/artist/9511278", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/2128652183360042fec3133f13f5bf00/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/2128652183360042fec3133f13f5bf00/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/2128652183360042fec3133f13f5bf00/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/2128652183360042fec3133f13f5bf00/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 70, + "NbFans": 5515, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 370, + "Name": "Livin’ Joy", + "HasPublicSongs": true, + "SongId": 397, + "Color": "76FF00", + "DarkColor": "005F05", + "DeezerID": 16750, + "DeezerURL": "https://www.deezer.com/artist/16750", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/92b9e1675a869caa3db6199b5239e48f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/92b9e1675a869caa3db6199b5239e48f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/92b9e1675a869caa3db6199b5239e48f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/92b9e1675a869caa3db6199b5239e48f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 7, + "NbFans": 2408, + "Radio": true, + "TopGenres": [ + "Dance" + ], + "Rank": null + }, + { + "ArtistId": 371, + "Name": "Billy Talent", + "HasPublicSongs": true, + "SongId": 398, + "Color": "AC0620", + "DarkColor": "5A0001", + "DeezerID": 2830, + "DeezerURL": "https://www.deezer.com/artist/2830", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/85a34aefba04a1223ff1d6b0fe08fc63/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/85a34aefba04a1223ff1d6b0fe08fc63/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/85a34aefba04a1223ff1d6b0fe08fc63/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/85a34aefba04a1223ff1d6b0fe08fc63/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 30, + "NbFans": 395499, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Rock", + "Indie rock/Rock pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 372, + "Name": "Magnificence & 7 Skies", + "HasPublicSongs": true, + "SongId": 400, + "Color": "22B1C0", + "DarkColor": "006977" + }, + { + "ArtistId": 373, + "Name": "Cage the Elephant", + "HasPublicSongs": true, + "SongId": 402, + "Color": "0096AD", + "DarkColor": "1C6A86", + "DeezerID": 214810, + "DeezerURL": "https://www.deezer.com/artist/214810", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9f9eee0cfa9246bf9dc057c384b36269/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9f9eee0cfa9246bf9dc057c384b36269/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9f9eee0cfa9246bf9dc057c384b36269/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9f9eee0cfa9246bf9dc057c384b36269/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 17, + "NbFans": 511849, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 374, + "Name": "Slipknot", + "HasPublicSongs": true, + "SongId": 773, + "Color": "EF323D", + "DarkColor": "3B010A", + "DeezerID": 632, + "DeezerURL": "https://www.deezer.com/artist/632", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4f49332c592e058764737acba6dd0ee2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4f49332c592e058764737acba6dd0ee2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4f49332c592e058764737acba6dd0ee2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4f49332c592e058764737acba6dd0ee2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 45, + "NbFans": 837649, + "Radio": true, + "TopGenres": [ + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 375, + "Name": "Britney Spears", + "HasPublicSongs": true, + "SongId": 407, + "Color": "F1A9C9", + "DarkColor": "8C4564", + "DeezerID": 483, + "DeezerURL": "https://www.deezer.com/artist/483", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/caea45732bb52679494602c60430435a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/caea45732bb52679494602c60430435a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/caea45732bb52679494602c60430435a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/caea45732bb52679494602c60430435a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 22, + "NbFans": 5212556, + "Radio": true, + "TopGenres": [ + "Pop", + "Pop internacional", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 376, + "Name": "TLC", + "HasPublicSongs": true, + "SongId": 409, + "Color": "739CAF", + "DarkColor": "224D60", + "DeezerID": 183, + "DeezerURL": "https://www.deezer.com/artist/183", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b52b19f2068e59e6a79796b14bdc87a8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b52b19f2068e59e6a79796b14bdc87a8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b52b19f2068e59e6a79796b14bdc87a8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b52b19f2068e59e6a79796b14bdc87a8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 31, + "NbFans": 570394, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 377, + "Name": "Mario", + "HasPublicSongs": true, + "SongId": 410, + "Color": "2291BC", + "DarkColor": "0D559D", + "DeezerID": 465, + "DeezerURL": "https://www.deezer.com/artist/465", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d1be58541949168b996f7f886f4fca50/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d1be58541949168b996f7f886f4fca50/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d1be58541949168b996f7f886f4fca50/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d1be58541949168b996f7f886f4fca50/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 66, + "NbFans": 471238, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 378, + "Name": "Coi Leray", + "HasPublicSongs": true, + "SongId": 411, + "Color": "A2C337", + "DarkColor": "4B5A1B", + "DeezerID": 49825112, + "DeezerURL": "https://www.deezer.com/artist/49825112", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/46cc8c3c961d382d2caa28e33ff1b9fa/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/46cc8c3c961d382d2caa28e33ff1b9fa/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/46cc8c3c961d382d2caa28e33ff1b9fa/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/46cc8c3c961d382d2caa28e33ff1b9fa/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 65, + "NbFans": 52671, + "Radio": true, + "TopGenres": [ + "Dance", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 379, + "Name": "Lipps Inc.", + "HasPublicSongs": true, + "SongId": 412, + "Color": "F381B5", + "DarkColor": "E23680", + "DeezerID": 160511, + "DeezerURL": "https://www.deezer.com/artist/160511", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b7cbe8c8ff7aae191702c2dcd3bc17a1/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b7cbe8c8ff7aae191702c2dcd3bc17a1/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b7cbe8c8ff7aae191702c2dcd3bc17a1/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b7cbe8c8ff7aae191702c2dcd3bc17a1/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 3, + "NbFans": 13734, + "Radio": true, + "TopGenres": [ + "Dance", + "Disco", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 380, + "Name": "Kim Petras", + "HasPublicSongs": true, + "SongId": 408, + "Color": "DE9F4C", + "DarkColor": "C48145", + "DeezerID": 4652821, + "DeezerURL": "https://www.deezer.com/artist/4652821", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d4125288c9f0581d7fa51d538b14e50e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d4125288c9f0581d7fa51d538b14e50e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d4125288c9f0581d7fa51d538b14e50e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d4125288c9f0581d7fa51d538b14e50e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 66, + "NbFans": 127003, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 381, + "Name": "Billy Ray Cyrus", + "HasPublicSongs": true, + "SongId": 273, + "Color": "D18552", + "DarkColor": "A64E40", + "DeezerID": 14440, + "DeezerURL": "https://www.deezer.com/artist/14440", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/bdee8d05f9e13b16dee9d8e01752800d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/bdee8d05f9e13b16dee9d8e01752800d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/bdee8d05f9e13b16dee9d8e01752800d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/bdee8d05f9e13b16dee9d8e01752800d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 37, + "NbFans": 106801, + "Radio": true, + "TopGenres": [ + "Dance", + "Dubstep", + "Electro", + "Filmes/Games", + "Pop", + "Rap/Hip Hop", + "Sertanejo", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 382, + "Name": "Tyga", + "HasPublicSongs": true, + "SongId": 142, + "Color": "E8947B", + "DarkColor": "BF544E", + "DeezerID": 304545, + "DeezerURL": "https://www.deezer.com/artist/304545", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ba9b357bfbfd82c019c4cc1085610178/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ba9b357bfbfd82c019c4cc1085610178/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ba9b357bfbfd82c019c4cc1085610178/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ba9b357bfbfd82c019c4cc1085610178/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 153, + "NbFans": 3455906, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 383, + "Name": "Matoma", + "HasPublicSongs": true, + "SongId": 44, + "Color": "EA7CA3", + "DarkColor": "A72E68", + "DeezerID": 6557769, + "DeezerURL": "https://www.deezer.com/artist/6557769", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f93748abc049d5e2594d2e7b8254bb31/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f93748abc049d5e2594d2e7b8254bb31/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f93748abc049d5e2594d2e7b8254bb31/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f93748abc049d5e2594d2e7b8254bb31/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 107, + "NbFans": 136710, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 384, + "Name": "CECILE", + "HasPublicSongs": true, + "SongId": 256, + "Color": "53DFE5", + "DarkColor": "1B6D90", + "DeezerID": 16877, + "DeezerURL": "https://www.deezer.com/artist/16877", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/43994d3fa711906adad1c433378f7e54/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/43994d3fa711906adad1c433378f7e54/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/43994d3fa711906adad1c433378f7e54/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/43994d3fa711906adad1c433378f7e54/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 70, + "NbFans": 34988, + "Radio": true, + "TopGenres": [ + "Clássica", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 385, + "Name": "YUNGBLUD", + "HasPublicSongs": true, + "SongId": 261, + "Color": "5E80B0", + "DarkColor": "3C5480", + "DeezerID": 12133088, + "DeezerURL": "https://www.deezer.com/artist/12133088", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/78fba265e3f87ddd4d204eb07803938a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/78fba265e3f87ddd4d204eb07803938a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/78fba265e3f87ddd4d204eb07803938a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/78fba265e3f87ddd4d204eb07803938a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 43, + "NbFans": 361039, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 386, + "Name": "Travis Barker", + "HasPublicSongs": true, + "SongId": 261, + "Color": "5E80B0", + "DarkColor": "3C5480", + "DeezerID": 891621, + "DeezerURL": "https://www.deezer.com/artist/891621", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ef008c0f8b838356db94bffa4d28ddc6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ef008c0f8b838356db94bffa4d28ddc6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ef008c0f8b838356db94bffa4d28ddc6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ef008c0f8b838356db94bffa4d28ddc6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 38, + "NbFans": 241953, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Electro", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 388, + "Name": "The Knack", + "HasPublicSongs": true, + "SongId": 415, + "Color": "E7456D", + "DarkColor": "671F2D", + "DeezerID": 4660, + "DeezerURL": "https://www.deezer.com/artist/4660", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f32a7e4cb51ca2f654d6fd5a37ff3fbb/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f32a7e4cb51ca2f654d6fd5a37ff3fbb/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f32a7e4cb51ca2f654d6fd5a37ff3fbb/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f32a7e4cb51ca2f654d6fd5a37ff3fbb/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 6, + "NbFans": 9665, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 389, + "Name": "Beastie Boys", + "HasPublicSongs": true, + "SongId": 465, + "Color": "4C9979", + "DarkColor": "224C55", + "DeezerID": 3233, + "DeezerURL": "https://www.deezer.com/artist/3233", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/077ea2a7a0e05d7ec0fb5a792a5e94a7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/077ea2a7a0e05d7ec0fb5a792a5e94a7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/077ea2a7a0e05d7ec0fb5a792a5e94a7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/077ea2a7a0e05d7ec0fb5a792a5e94a7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 30, + "NbFans": 227312, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Electro", + "Rap/Hip Hop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 390, + "Name": "Lizzo", + "HasPublicSongs": true, + "SongId": 418, + "Color": "A54482", + "DarkColor": "611A6E", + "DeezerID": 366, + "DeezerURL": "https://www.deezer.com/artist/366", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5b4d5cc0aeaf942b259956efc72c962b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5b4d5cc0aeaf942b259956efc72c962b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5b4d5cc0aeaf942b259956efc72c962b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5b4d5cc0aeaf942b259956efc72c962b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 20, + "NbFans": 147457, + "Radio": true, + "TopGenres": [ + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 391, + "Name": "Metallica", + "HasPublicSongs": true, + "SongId": 720, + "Color": "739CAF", + "DarkColor": "224D60", + "DeezerID": 632, + "DeezerURL": "https://www.deezer.com/artist/632", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4f49332c592e058764737acba6dd0ee2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4f49332c592e058764737acba6dd0ee2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4f49332c592e058764737acba6dd0ee2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4f49332c592e058764737acba6dd0ee2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 45, + "NbFans": 837649, + "Radio": true, + "TopGenres": [ + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 392, + "Name": "Selena Gomez", + "HasPublicSongs": true, + "SongId": 496, + "Color": "5E80B0", + "DarkColor": "3C5480", + "DeezerID": 292185, + "DeezerURL": "https://www.deezer.com/artist/292185", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/26b3660183a4a626bb185a7089f090b4/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/26b3660183a4a626bb185a7089f090b4/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/26b3660183a4a626bb185a7089f090b4/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/26b3660183a4a626bb185a7089f090b4/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 64, + "NbFans": 5345556, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 393, + "Name": "Fountains Of Wayne", + "HasPublicSongs": true, + "SongId": 717, + "Color": "E70030", + "DarkColor": "AC0528", + "DeezerID": 1750, + "DeezerURL": "https://www.deezer.com/artist/1750", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6be811e77004a67af13d0ea3ff026c13/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6be811e77004a67af13d0ea3ff026c13/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6be811e77004a67af13d0ea3ff026c13/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6be811e77004a67af13d0ea3ff026c13/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 10, + "NbFans": 12379, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 394, + "Name": "Halo Sol", + "HasPublicSongs": true, + "SongId": 422, + "Color": "D07C43", + "DarkColor": "BF4E2F", + "DeezerID": 13588009, + "DeezerURL": "https://www.deezer.com/artist/13588009", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1622a30d98b4e328aa224fa7d80b7c5b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1622a30d98b4e328aa224fa7d80b7c5b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1622a30d98b4e328aa224fa7d80b7c5b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1622a30d98b4e328aa224fa7d80b7c5b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 21, + "NbFans": 24, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop", + "Pop Latino", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 395, + "Name": "Aphyxion", + "HasPublicSongs": true, + "SongId": 423, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 5866635, + "DeezerURL": "https://www.deezer.com/artist/5866635", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3b570df381d66f93a1b0ebb4e83eced5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3b570df381d66f93a1b0ebb4e83eced5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3b570df381d66f93a1b0ebb4e83eced5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3b570df381d66f93a1b0ebb4e83eced5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 6, + "NbFans": 732, + "Radio": true, + "TopGenres": [ + "Hard Rock", + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 396, + "Name": "Harry Styles", + "HasPublicSongs": true, + "SongId": 427, + "Color": "D5B177", + "DarkColor": "A17D52", + "DeezerID": 5313805, + "DeezerURL": "https://www.deezer.com/artist/5313805", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/2b44a30475448e49add6f1c63c6f77b8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/2b44a30475448e49add6f1c63c6f77b8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/2b44a30475448e49add6f1c63c6f77b8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/2b44a30475448e49add6f1c63c6f77b8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 5, + "NbFans": 1998885, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 397, + "Name": "Illvis Freshly", + "HasPublicSongs": true, + "SongId": 429, + "Color": "A74BB8", + "DarkColor": "693390", + "DeezerID": 9378684, + "DeezerURL": "https://www.deezer.com/artist/9378684", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6d1dbbb177be33f78520388f23f491d0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6d1dbbb177be33f78520388f23f491d0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6d1dbbb177be33f78520388f23f491d0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6d1dbbb177be33f78520388f23f491d0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 97, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 398, + "Name": "Ja Rule", + "HasPublicSongs": true, + "SongId": 431, + "Color": "AD2429", + "DarkColor": "6E0C00", + "DeezerID": 105, + "DeezerURL": "https://www.deezer.com/artist/105", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/48486c0c3c8cccee05f6b8d87ce99227/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/48486c0c3c8cccee05f6b8d87ce99227/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/48486c0c3c8cccee05f6b8d87ce99227/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/48486c0c3c8cccee05f6b8d87ce99227/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 61, + "NbFans": 1523638, + "Radio": true, + "TopGenres": [ + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 399, + "Name": "Jonas Brothers", + "HasPublicSongs": true, + "SongId": 432, + "Color": "7F2723", + "DarkColor": "4D2321", + "DeezerID": 15888, + "DeezerURL": "https://www.deezer.com/artist/15888", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8fe5d85f5e3424d4b31e9698cbeacbcb/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8fe5d85f5e3424d4b31e9698cbeacbcb/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8fe5d85f5e3424d4b31e9698cbeacbcb/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8fe5d85f5e3424d4b31e9698cbeacbcb/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 46, + "NbFans": 1649692, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 400, + "Name": "Jungle", + "HasPublicSongs": true, + "SongId": 433, + "Color": "DECB42", + "DarkColor": "DCA700", + "DeezerID": 436163, + "DeezerURL": "https://www.deezer.com/artist/436163", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/693efdefac1813e0f2b5143c1c13932c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/693efdefac1813e0f2b5143c1c13932c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/693efdefac1813e0f2b5143c1c13932c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/693efdefac1813e0f2b5143c1c13932c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 45, + "NbFans": 226293, + "Radio": true, + "TopGenres": [ + "Dance", + "Disco", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 401, + "Name": "Snow", + "HasPublicSongs": true, + "SongId": 434, + "Color": "F8480E", + "DarkColor": "921C0A", + "DeezerID": 1642, + "DeezerURL": "https://www.deezer.com/artist/1642", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8856639fe173383221d8219042156a3c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8856639fe173383221d8219042156a3c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8856639fe173383221d8219042156a3c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8856639fe173383221d8219042156a3c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 53, + "NbFans": 1254722, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 402, + "Name": "Morgan Wallen", + "HasPublicSongs": true, + "SongId": 656, + "Color": "739CAF", + "DarkColor": "224D60", + "DeezerID": 7188840, + "DeezerURL": "https://www.deezer.com/artist/7188840", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/dc2a1e695359dfada6257c94a91d5b28/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/dc2a1e695359dfada6257c94a91d5b28/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/dc2a1e695359dfada6257c94a91d5b28/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/dc2a1e695359dfada6257c94a91d5b28/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 33, + "NbFans": 197694, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 403, + "Name": "Nickelback", + "HasPublicSongs": true, + "SongId": 778, + "Color": "7FB6C0", + "DarkColor": "231443", + "DeezerID": 338, + "DeezerURL": "https://www.deezer.com/artist/338", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/330ba45fea5de7a576b4a6c30b266157/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/330ba45fea5de7a576b4a6c30b266157/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/330ba45fea5de7a576b4a6c30b266157/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/330ba45fea5de7a576b4a6c30b266157/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 30, + "NbFans": 3051412, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 404, + "Name": "Skan", + "HasPublicSongs": true, + "SongId": 437, + "Color": "39ABD7", + "DarkColor": "08658D", + "DeezerID": 2152461, + "DeezerURL": "https://www.deezer.com/artist/2152461", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/12c0acf287faf26aaa8d51bb15ad3303/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/12c0acf287faf26aaa8d51bb15ad3303/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/12c0acf287faf26aaa8d51bb15ad3303/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/12c0acf287faf26aaa8d51bb15ad3303/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 93, + "NbFans": 4125, + "Radio": true, + "TopGenres": [ + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 405, + "Name": "CHAOSBAY", + "HasPublicSongs": true, + "SongId": 438, + "Color": "F6982E", + "DarkColor": "7F3E10", + "DeezerID": 7242032, + "DeezerURL": "https://www.deezer.com/artist/7242032", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5a3031268e3f8c4acfbb733165c46b98/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5a3031268e3f8c4acfbb733165c46b98/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5a3031268e3f8c4acfbb733165c46b98/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5a3031268e3f8c4acfbb733165c46b98/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 24, + "NbFans": 1110, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Hard Rock", + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 406, + "Name": "Nemesy", + "HasPublicSongs": true, + "SongId": 439, + "Color": "5E80B0", + "DarkColor": "3C5480", + "DeezerID": 11648685, + "DeezerURL": "https://www.deezer.com/artist/11648685", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/df7fec111148d3886efcd9e34247c357/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/df7fec111148d3886efcd9e34247c357/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/df7fec111148d3886efcd9e34247c357/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/df7fec111148d3886efcd9e34247c357/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 27, + "NbFans": 21, + "Radio": true, + "TopGenres": [ + "Dance" + ], + "Rank": null + }, + { + "ArtistId": 407, + "Name": "OneRepublic", + "HasPublicSongs": true, + "SongId": 562, + "Color": "EB9A07", + "DarkColor": "BD6300", + "DeezerID": 3841221, + "DeezerURL": "https://www.deezer.com/artist/3841221", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b8d61c61f33867c7cddcd27f34a02238/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b8d61c61f33867c7cddcd27f34a02238/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b8d61c61f33867c7cddcd27f34a02238/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b8d61c61f33867c7cddcd27f34a02238/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 36, + "NbFans": 1271921, + "Radio": true, + "TopGenres": [ + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 408, + "Name": "Amor Amor", + "HasPublicSongs": true, + "SongId": 445, + "Color": "CC3F5D", + "DarkColor": "B42942", + "DeezerID": 5549375, + "DeezerURL": "https://www.deezer.com/artist/5549375", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b7a15c028468e7590f9303cf2e249e8b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b7a15c028468e7590f9303cf2e249e8b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b7a15c028468e7590f9303cf2e249e8b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b7a15c028468e7590f9303cf2e249e8b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 18, + "NbFans": 56827, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 409, + "Name": "Decora", + "HasPublicSongs": true, + "SongId": 446, + "Color": "ED0100", + "DarkColor": "AC0528", + "DeezerID": 112016, + "DeezerURL": "https://www.deezer.com/artist/112016", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/2d667cd296c5eae41978563af4f5b22c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/2d667cd296c5eae41978563af4f5b22c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/2d667cd296c5eae41978563af4f5b22c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/2d667cd296c5eae41978563af4f5b22c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 30, + "NbFans": 44, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 410, + "Name": "Knock2", + "HasPublicSongs": true, + "SongId": 448, + "Color": "E46988", + "DarkColor": "BF4F7C", + "DeezerID": 7540570, + "DeezerURL": "https://www.deezer.com/artist/7540570", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c965ee53088e26e893f7f1ededf32a34/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c965ee53088e26e893f7f1ededf32a34/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c965ee53088e26e893f7f1ededf32a34/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c965ee53088e26e893f7f1ededf32a34/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 29, + "NbFans": 2067, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 411, + "Name": "New Order", + "HasPublicSongs": true, + "SongId": 625, + "Color": "B0C0DB", + "DarkColor": "768CAF", + "DeezerID": 2016, + "DeezerURL": "https://www.deezer.com/artist/2016", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7a60db32b394f37c68beb282d146da22/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7a60db32b394f37c68beb282d146da22/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7a60db32b394f37c68beb282d146da22/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7a60db32b394f37c68beb282d146da22/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 62, + "NbFans": 879648, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 412, + "Name": "Boston", + "HasPublicSongs": true, + "SongId": 748, + "Color": "E86730", + "DarkColor": "B62221", + "DeezerID": 3339, + "DeezerURL": "https://www.deezer.com/artist/3339", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/2d9b94d5d2b644a3e6df016c7d49cbea/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/2d9b94d5d2b644a3e6df016c7d49cbea/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/2d9b94d5d2b644a3e6df016c7d49cbea/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/2d9b94d5d2b644a3e6df016c7d49cbea/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 9, + "NbFans": 216031, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 413, + "Name": "Linkin Park", + "HasPublicSongs": true, + "SongId": 681, + "Color": "99392A", + "DarkColor": "432423", + "DeezerID": 152798, + "DeezerURL": "https://www.deezer.com/artist/152798", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a891a83e7195dd5861c274389f2782bc/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a891a83e7195dd5861c274389f2782bc/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a891a83e7195dd5861c274389f2782bc/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a891a83e7195dd5861c274389f2782bc/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 8, + "NbFans": 65182, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 414, + "Name": "Luxxly", + "HasPublicSongs": true, + "SongId": 456, + "Color": "46B4AB", + "DarkColor": "55ADA6", + "DeezerID": 101536502, + "DeezerURL": "https://www.deezer.com/artist/101536502", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d4c9f2f6dd25a971c93f17ad867bc15f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d4c9f2f6dd25a971c93f17ad867bc15f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d4c9f2f6dd25a971c93f17ad867bc15f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d4c9f2f6dd25a971c93f17ad867bc15f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 5, + "NbFans": 23, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 415, + "Name": "J. Worra", + "HasPublicSongs": true, + "SongId": 457, + "Color": "DA4334", + "DarkColor": "BE2D1F", + "DeezerID": 7499596, + "DeezerURL": "https://www.deezer.com/artist/7499596", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ae3180f5119e58b4091fcb3986372c79/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ae3180f5119e58b4091fcb3986372c79/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ae3180f5119e58b4091fcb3986372c79/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ae3180f5119e58b4091fcb3986372c79/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 30, + "NbFans": 559, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 416, + "Name": "Kylie Minogue", + "HasPublicSongs": true, + "SongId": 458, + "Color": "A10000", + "DarkColor": "780000", + "DeezerID": 5068032, + "DeezerURL": "https://www.deezer.com/artist/5068032", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0e1234064d31d5346d65136c83a48652/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0e1234064d31d5346d65136c83a48652/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0e1234064d31d5346d65136c83a48652/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0e1234064d31d5346d65136c83a48652/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 121, + "NbFans": 740519, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 417, + "Name": "Orchestral Manoeuvres In The Dark", + "HasPublicSongs": true, + "SongId": 459, + "Color": "B0C0DB", + "DarkColor": "768CAF", + "DeezerID": 966, + "DeezerURL": "https://www.deezer.com/artist/966", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d23e86950fc16a2ddf50b02dcb9cb7bf/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d23e86950fc16a2ddf50b02dcb9cb7bf/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d23e86950fc16a2ddf50b02dcb9cb7bf/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d23e86950fc16a2ddf50b02dcb9cb7bf/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 68, + "NbFans": 368234, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 418, + "Name": "Daði Freyr", + "HasPublicSongs": true, + "SongId": 461, + "Color": "35B4A1", + "DarkColor": "2B8D7E", + "DeezerID": 12779993, + "DeezerURL": "https://www.deezer.com/artist/12779993", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5c2649aca658a086f272d9b3a0f924bc/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5c2649aca658a086f272d9b3a0f924bc/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5c2649aca658a086f272d9b3a0f924bc/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5c2649aca658a086f272d9b3a0f924bc/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 31, + "NbFans": 9871, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Indie Pop", + "Indie Pop/Folk", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 419, + "Name": "Fleetwood Mac", + "HasPublicSongs": true, + "SongId": 742, + "Color": "ADA183", + "DarkColor": "81775C", + "DeezerID": 169, + "DeezerURL": "https://www.deezer.com/artist/169", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ef23278cf3a67a3ca8404ddaa38699d4/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ef23278cf3a67a3ca8404ddaa38699d4/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ef23278cf3a67a3ca8404ddaa38699d4/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ef23278cf3a67a3ca8404ddaa38699d4/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 75, + "NbFans": 1445658, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 420, + "Name": "Little Boots", + "HasPublicSongs": true, + "SongId": 457, + "Color": "DA4334", + "DarkColor": "BE2D1F", + "DeezerID": 153739, + "DeezerURL": "https://www.deezer.com/artist/153739", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c2ed12683469816445e6aa5b8f3b9ce6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c2ed12683469816445e6aa5b8f3b9ce6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c2ed12683469816445e6aa5b8f3b9ce6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c2ed12683469816445e6aa5b8f3b9ce6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 50, + "NbFans": 22138, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 421, + "Name": "Powertrain", + "HasPublicSongs": true, + "SongId": 463, + "Color": "F86F0E", + "DarkColor": "921C0A", + "DeezerID": 5328960, + "DeezerURL": "https://www.deezer.com/artist/5328960", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/024c7260c6ac69761c9ff2ef6575cdf9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/024c7260c6ac69761c9ff2ef6575cdf9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/024c7260c6ac69761c9ff2ef6575cdf9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/024c7260c6ac69761c9ff2ef6575cdf9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 4, + "NbFans": 16, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 422, + "Name": "James Elsey", + "HasPublicSongs": true, + "SongId": 463, + "Color": "F86F0E", + "DarkColor": "921C0A", + "DeezerID": 2266, + "DeezerURL": "https://www.deezer.com/artist/2266", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist//56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist//250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist//500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist//1000x1000-000000-80-0-0.jpg", + "NbAlbums": 0, + "NbFans": 2878, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 423, + "Name": "Mastodon", + "HasPublicSongs": true, + "SongId": 464, + "Color": "52935F", + "DarkColor": "1C5A26", + "DeezerID": 9267, + "DeezerURL": "https://www.deezer.com/artist/9267", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/af45126915cbb781b16ecae51d2c8a46/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/af45126915cbb781b16ecae51d2c8a46/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/af45126915cbb781b16ecae51d2c8a46/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/af45126915cbb781b16ecae51d2c8a46/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 37, + "NbFans": 188301, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Rock", + "Metal", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 424, + "Name": "Wanne", + "HasPublicSongs": true, + "SongId": 466, + "Color": "A54482", + "DarkColor": "611A6E", + "DeezerID": 13418007, + "DeezerURL": "https://www.deezer.com/artist/13418007", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a82b80e6bbad05918393fef7df19fc59/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a82b80e6bbad05918393fef7df19fc59/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a82b80e6bbad05918393fef7df19fc59/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a82b80e6bbad05918393fef7df19fc59/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 6, + "NbFans": 7, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 425, + "Name": "Drunk Girl", + "HasPublicSongs": true, + "SongId": 468, + "Color": "A10000", + "DarkColor": "780000", + "DeezerID": 5974710, + "DeezerURL": "https://www.deezer.com/artist/5974710", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/08e899fd3d7d753311f901193bc2c328/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/08e899fd3d7d753311f901193bc2c328/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/08e899fd3d7d753311f901193bc2c328/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/08e899fd3d7d753311f901193bc2c328/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 56, + "NbFans": 269, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Dubstep", + "Electro", + "Indie Pop", + "Indie Rock", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 426, + "Name": "Griff", + "HasPublicSongs": true, + "SongId": 470, + "Color": "2E3D62", + "DarkColor": "1C1B36", + "DeezerID": 68939572, + "DeezerURL": "https://www.deezer.com/artist/68939572", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e4928081301d1f5f21a45f210ec95282/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e4928081301d1f5f21a45f210ec95282/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e4928081301d1f5f21a45f210ec95282/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e4928081301d1f5f21a45f210ec95282/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 56, + "NbFans": 11666, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 427, + "Name": "Empire of the Sun", + "HasPublicSongs": true, + "SongId": 471, + "Color": "00B0E9", + "DarkColor": "0059BB", + "DeezerID": 185473, + "DeezerURL": "https://www.deezer.com/artist/185473", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/184c6de579fb4725581927c44d073087/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/184c6de579fb4725581927c44d073087/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/184c6de579fb4725581927c44d073087/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/184c6de579fb4725581927c44d073087/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 32, + "NbFans": 398322, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Electro", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 428, + "Name": "KULLAH", + "HasPublicSongs": true, + "SongId": 475, + "Color": "7FB6C0", + "DarkColor": "231443", + "DeezerID": 91515192, + "DeezerURL": "https://www.deezer.com/artist/91515192", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/73de51011a4f74a8accbe899693fdda7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/73de51011a4f74a8accbe899693fdda7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/73de51011a4f74a8accbe899693fdda7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/73de51011a4f74a8accbe899693fdda7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 51, + "NbFans": 4, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 429, + "Name": "Jessy Covets", + "HasPublicSongs": true, + "SongId": 475, + "Color": "7FB6C0", + "DarkColor": "231443", + "DeezerID": 58612732, + "DeezerURL": "https://www.deezer.com/artist/58612732", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f6db3140a89c7530dee664d39da9b339/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f6db3140a89c7530dee664d39da9b339/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f6db3140a89c7530dee664d39da9b339/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f6db3140a89c7530dee664d39da9b339/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 11, + "NbFans": 3, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 430, + "Name": "Jaylon Ashaun", + "HasPublicSongs": true, + "SongId": 477, + "Color": "F0B175", + "DarkColor": "906B48", + "DeezerID": 9058938, + "DeezerURL": "https://www.deezer.com/artist/9058938", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7a7120f650210f94ec97afe8173c89c0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7a7120f650210f94ec97afe8173c89c0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7a7120f650210f94ec97afe8173c89c0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7a7120f650210f94ec97afe8173c89c0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 109, + "NbFans": 340, + "Radio": true, + "TopGenres": [ + "Gospel", + "Música Religiosa", + "Pop", + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 431, + "Name": "Lil Uzi Vert", + "HasPublicSongs": true, + "SongId": 479, + "Color": "B0C0DB", + "DarkColor": "768CAF", + "DeezerID": 7101343, + "DeezerURL": "https://www.deezer.com/artist/7101343", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1b584e2ef712bbef4a4dcc535d1aca37/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1b584e2ef712bbef4a4dcc535d1aca37/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1b584e2ef712bbef4a4dcc535d1aca37/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1b584e2ef712bbef4a4dcc535d1aca37/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 63, + "NbFans": 1134860, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 432, + "Name": "Busta Rhymes", + "HasPublicSongs": true, + "SongId": 481, + "Color": "E86730", + "DarkColor": "B62221", + "DeezerID": 13057, + "DeezerURL": "https://www.deezer.com/artist/13057", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7bd33f3fa14225d75b854a44e886e7a0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7bd33f3fa14225d75b854a44e886e7a0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7bd33f3fa14225d75b854a44e886e7a0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7bd33f3fa14225d75b854a44e886e7a0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 11, + "NbFans": 14892, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 433, + "Name": "Miley Cyrus", + "HasPublicSongs": true, + "SongId": 649, + "Color": "F885A0", + "DarkColor": "E23680", + "DeezerID": 12436, + "DeezerURL": "https://www.deezer.com/artist/12436", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e72e2ada062f2cffc770cf35608bc6d2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e72e2ada062f2cffc770cf35608bc6d2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e72e2ada062f2cffc770cf35608bc6d2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e72e2ada062f2cffc770cf35608bc6d2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 48, + "NbFans": 7000660, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 434, + "Name": "Krayzie Bone", + "HasPublicSongs": true, + "SongId": 193, + "Color": "3F6781", + "DarkColor": "0F2234", + "DeezerID": 11346, + "DeezerURL": "https://www.deezer.com/artist/11346", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c36ae3bafcb745bf45062666508c7eff/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c36ae3bafcb745bf45062666508c7eff/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c36ae3bafcb745bf45062666508c7eff/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c36ae3bafcb745bf45062666508c7eff/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 76, + "NbFans": 28470, + "Radio": true, + "TopGenres": [ + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 435, + "Name": "Flipp Dinero", + "HasPublicSongs": true, + "SongId": 484, + "Color": "F0931E", + "DarkColor": "7C3B13", + "DeezerID": 11711231, + "DeezerURL": "https://www.deezer.com/artist/11711231", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b7f9162245dd3aabf40bc4a7d1a58e65/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b7f9162245dd3aabf40bc4a7d1a58e65/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b7f9162245dd3aabf40bc4a7d1a58e65/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b7f9162245dd3aabf40bc4a7d1a58e65/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 15683, + "Radio": true, + "TopGenres": [ + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 436, + "Name": "Nase Foai", + "HasPublicSongs": true, + "SongId": 485, + "Color": "DE9F4C", + "DarkColor": "C48145", + "DeezerID": 10822324, + "DeezerURL": "https://www.deezer.com/artist/10822324", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ec9e9c8f683908c5661efb4d615bf8ad/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ec9e9c8f683908c5661efb4d615bf8ad/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ec9e9c8f683908c5661efb4d615bf8ad/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ec9e9c8f683908c5661efb4d615bf8ad/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 8, + "NbFans": 7, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 437, + "Name": "Luxar", + "HasPublicSongs": true, + "SongId": 486, + "Color": "C3ACF5", + "DarkColor": "5950AE", + "DeezerID": 122062332, + "DeezerURL": "https://www.deezer.com/artist/122062332", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/03f159cfe423d5104939e1ff502cdec2/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/03f159cfe423d5104939e1ff502cdec2/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/03f159cfe423d5104939e1ff502cdec2/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/03f159cfe423d5104939e1ff502cdec2/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 2, + "NbFans": 1, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 438, + "Name": "Delfy", + "HasPublicSongs": true, + "SongId": 486, + "Color": "C3ACF5", + "DarkColor": "5950AE", + "DeezerID": 13255625, + "DeezerURL": "https://www.deezer.com/artist/13255625", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist//56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist//250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist//500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist//1000x1000-000000-80-0-0.jpg", + "NbAlbums": 8, + "NbFans": 1, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 439, + "Name": "Johnny Winter", + "HasPublicSongs": true, + "SongId": 487, + "Color": "A79273", + "DarkColor": "453B33", + "DeezerID": 4191, + "DeezerURL": "https://www.deezer.com/artist/4191", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d6c03fde3330148ffa56708ba4e295d8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d6c03fde3330148ffa56708ba4e295d8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d6c03fde3330148ffa56708ba4e295d8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d6c03fde3330148ffa56708ba4e295d8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 36, + "NbFans": 144815, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 440, + "Name": "Two Door Cinema Club", + "HasPublicSongs": true, + "SongId": 490, + "Color": "2E3D62", + "DarkColor": "1C1B36", + "DeezerID": 173612, + "DeezerURL": "https://www.deezer.com/artist/173612", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/fdda4a6426606458b5ad22d5cf4a7f24/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/fdda4a6426606458b5ad22d5cf4a7f24/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/fdda4a6426606458b5ad22d5cf4a7f24/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/fdda4a6426606458b5ad22d5cf4a7f24/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 39, + "NbFans": 581532, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 441, + "Name": "Kero Kero Bonito", + "HasPublicSongs": true, + "SongId": 489, + "Color": "F381B5", + "DarkColor": "E23680", + "DeezerID": 4673985, + "DeezerURL": "https://www.deezer.com/artist/4673985", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9177bdb241f2bc6f7cfa2251948183be/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9177bdb241f2bc6f7cfa2251948183be/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9177bdb241f2bc6f7cfa2251948183be/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9177bdb241f2bc6f7cfa2251948183be/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 35, + "NbFans": 14636, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Indie Pop", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 442, + "Name": "Vance Joy", + "HasPublicSongs": true, + "SongId": 491, + "Color": "AD2429", + "DarkColor": "6E0C00", + "DeezerID": 887565, + "DeezerURL": "https://www.deezer.com/artist/887565", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b50836bc5fdf0270a52083b977e302aa/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b50836bc5fdf0270a52083b977e302aa/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b50836bc5fdf0270a52083b977e302aa/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b50836bc5fdf0270a52083b977e302aa/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 24, + "NbFans": 91326, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 443, + "Name": "Judas Priest", + "HasPublicSongs": true, + "SongId": 492, + "Color": "7F2723", + "DarkColor": "4D2321", + "DeezerID": 533, + "DeezerURL": "https://www.deezer.com/artist/533", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3780a546a18503f1ca1e67358750847e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3780a546a18503f1ca1e67358750847e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3780a546a18503f1ca1e67358750847e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3780a546a18503f1ca1e67358750847e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 35, + "NbFans": 1169014, + "Radio": true, + "TopGenres": [ + "Hard Rock", + "Metal", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 444, + "Name": "Steve Lacy", + "HasPublicSongs": true, + "SongId": 493, + "Color": "AD2429", + "DarkColor": "6E0C00", + "DeezerID": 65574, + "DeezerURL": "https://www.deezer.com/artist/65574", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/2243d94cb2e5ced691142983a2ebe222/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/2243d94cb2e5ced691142983a2ebe222/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/2243d94cb2e5ced691142983a2ebe222/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/2243d94cb2e5ced691142983a2ebe222/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 20, + "NbFans": 180808, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 445, + "Name": "Lex Da Funk", + "HasPublicSongs": true, + "SongId": 494, + "Color": "CC3F5D", + "DarkColor": "B42942", + "DeezerID": 477342, + "DeezerURL": "https://www.deezer.com/artist/477342", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8ece49bdf47ee2cc4724fc2e098b92fc/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8ece49bdf47ee2cc4724fc2e098b92fc/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8ece49bdf47ee2cc4724fc2e098b92fc/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8ece49bdf47ee2cc4724fc2e098b92fc/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 13, + "NbFans": 53, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 446, + "Name": "IMMERSE", + "HasPublicSongs": true, + "SongId": 495, + "Color": "C49454", + "DarkColor": "9C6A3B", + "DeezerID": 6905487, + "DeezerURL": "https://www.deezer.com/artist/6905487", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d49e9b63cdcaaf7892bcdab2406e9763/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d49e9b63cdcaaf7892bcdab2406e9763/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d49e9b63cdcaaf7892bcdab2406e9763/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d49e9b63cdcaaf7892bcdab2406e9763/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 285, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Hard Rock", + "Indie Rock", + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 447, + "Name": "Offset", + "HasPublicSongs": true, + "SongId": 497, + "Color": "A10000", + "DarkColor": "780000", + "DeezerID": 11215694, + "DeezerURL": "https://www.deezer.com/artist/11215694", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d8a2ca08badd09f69f62868516a5f513/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d8a2ca08badd09f69f62868516a5f513/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d8a2ca08badd09f69f62868516a5f513/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d8a2ca08badd09f69f62868516a5f513/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 8, + "NbFans": 3177, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 448, + "Name": "Mallory Knox", + "HasPublicSongs": true, + "SongId": 499, + "Color": "2781E2", + "DarkColor": "2549AF", + "DeezerID": 632970, + "DeezerURL": "https://www.deezer.com/artist/632970", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1602d9e3a3186fbbcc94577f04d863a4/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1602d9e3a3186fbbcc94577f04d863a4/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1602d9e3a3186fbbcc94577f04d863a4/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1602d9e3a3186fbbcc94577f04d863a4/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 17322, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 449, + "Name": "The Nah", + "HasPublicSongs": true, + "SongId": 509, + "Color": "39ABD7", + "DarkColor": "08658D", + "DeezerID": 13409787, + "DeezerURL": "https://www.deezer.com/artist/13409787", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/97582765263190ea2d113c06c0a468ae/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/97582765263190ea2d113c06c0a468ae/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/97582765263190ea2d113c06c0a468ae/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/97582765263190ea2d113c06c0a468ae/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 10, + "NbFans": 2, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 450, + "Name": "Pitbull", + "HasPublicSongs": true, + "SongId": 501, + "Color": "35B4A1", + "DarkColor": "2B8D7E", + "DeezerID": 776, + "DeezerURL": "https://www.deezer.com/artist/776", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f755bcad19948129e670598a52d3f874/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f755bcad19948129e670598a52d3f874/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f755bcad19948129e670598a52d3f874/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f755bcad19948129e670598a52d3f874/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 150, + "NbFans": 7053156, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Pop Latino", + "R&B", + "Rap/Hip Hop", + "Rock", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 451, + "Name": "Thirty Seconds To Mars", + "HasPublicSongs": true, + "SongId": 510, + "Color": "2291BC", + "DarkColor": "0D559D", + "DeezerID": 390183, + "DeezerURL": "https://www.deezer.com/artist/390183", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d1bff43f270c25bc9d3d45f100cf2251/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d1bff43f270c25bc9d3d45f100cf2251/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d1bff43f270c25bc9d3d45f100cf2251/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d1bff43f270c25bc9d3d45f100cf2251/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 39, + "NbFans": 1703366, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 452, + "Name": "Klaxons", + "HasPublicSongs": true, + "SongId": 505, + "Color": "E26336", + "DarkColor": "CE4913", + "DeezerID": 5912, + "DeezerURL": "https://www.deezer.com/artist/5912", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7c1eb9820face1ef5ce715283d46d61f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7c1eb9820face1ef5ce715283d46d61f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7c1eb9820face1ef5ce715283d46d61f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7c1eb9820face1ef5ce715283d46d61f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 20, + "NbFans": 99403, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 453, + "Name": "Sharks", + "HasPublicSongs": true, + "SongId": 507, + "Color": "AF81BA", + "DarkColor": "734C8B", + "DeezerID": 5860869, + "DeezerURL": "https://www.deezer.com/artist/5860869", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/519c67e76debcdafc17224d045f2c4fb/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/519c67e76debcdafc17224d045f2c4fb/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/519c67e76debcdafc17224d045f2c4fb/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/519c67e76debcdafc17224d045f2c4fb/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 5, + "NbFans": 22, + "Radio": true, + "TopGenres": [ + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 454, + "Name": "Sam Sparro", + "HasPublicSongs": true, + "SongId": 502, + "Color": "DECB42", + "DarkColor": "DCA700", + "DeezerID": 74327, + "DeezerURL": "https://www.deezer.com/artist/74327", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0b7708f9dc341015dd5e0b92bc7ebe00/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0b7708f9dc341015dd5e0b92bc7ebe00/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0b7708f9dc341015dd5e0b92bc7ebe00/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0b7708f9dc341015dd5e0b92bc7ebe00/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 32, + "NbFans": 11358, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "R&B", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 455, + "Name": "Mobdiva", + "HasPublicSongs": true, + "SongId": 513, + "Color": "DECB42", + "DarkColor": "DCA700", + "DeezerID": 10448950, + "DeezerURL": "https://www.deezer.com/artist/10448950", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/92cb49dcfd7e63365ce6d7dcb0838b66/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/92cb49dcfd7e63365ce6d7dcb0838b66/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/92cb49dcfd7e63365ce6d7dcb0838b66/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/92cb49dcfd7e63365ce6d7dcb0838b66/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 2, + "NbFans": 20, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 456, + "Name": "MADZI", + "HasPublicSongs": true, + "SongId": 603, + "Color": "682A38", + "DarkColor": "321518", + "DeezerID": 140955992, + "DeezerURL": "https://www.deezer.com/artist/140955992", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ae5407fb47ea4f1664224681d2e1c2b0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ae5407fb47ea4f1664224681d2e1c2b0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ae5407fb47ea4f1664224681d2e1c2b0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ae5407fb47ea4f1664224681d2e1c2b0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 39, + "NbFans": 58, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 457, + "Name": "The Mighty Mighty Bosstones", + "HasPublicSongs": true, + "SongId": 515, + "Color": "ED0100", + "DarkColor": "AC0528", + "DeezerID": 2577, + "DeezerURL": "https://www.deezer.com/artist/2577", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/774d637d31838efa13dfb617500049ff/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/774d637d31838efa13dfb617500049ff/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/774d637d31838efa13dfb617500049ff/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/774d637d31838efa13dfb617500049ff/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 20, + "NbFans": 14994, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Pop", + "Indie Pop/Folk", + "Indie Rock", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 458, + "Name": "Fickle Friends", + "HasPublicSongs": true, + "SongId": 516, + "Color": "C3ACF5", + "DarkColor": "5950AE", + "DeezerID": 5427320, + "DeezerURL": "https://www.deezer.com/artist/5427320", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/298ac33586717f52642bbf4c65c6300d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/298ac33586717f52642bbf4c65c6300d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/298ac33586717f52642bbf4c65c6300d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/298ac33586717f52642bbf4c65c6300d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 30, + "NbFans": 3613, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Pop", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 459, + "Name": "Jess Glynne", + "HasPublicSongs": true, + "SongId": 518, + "Color": "F1A9C9", + "DarkColor": "8C4564", + "DeezerID": 5245171, + "DeezerURL": "https://www.deezer.com/artist/5245171", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ceec8684241b9e7ea0db352a2b5ae5d0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ceec8684241b9e7ea0db352a2b5ae5d0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ceec8684241b9e7ea0db352a2b5ae5d0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ceec8684241b9e7ea0db352a2b5ae5d0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 56, + "NbFans": 580041, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 460, + "Name": "Kaleo", + "HasPublicSongs": true, + "SongId": 519, + "Color": "AD8A52", + "DarkColor": "563628", + "DeezerID": 1138351, + "DeezerURL": "https://www.deezer.com/artist/1138351", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5c0937e089e732dbab60a487f857026a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5c0937e089e732dbab60a487f857026a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5c0937e089e732dbab60a487f857026a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5c0937e089e732dbab60a487f857026a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 21, + "NbFans": 248946, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 461, + "Name": "Tokyo Machine", + "HasPublicSongs": true, + "SongId": 709, + "Color": "E86730", + "DarkColor": "B62221", + "DeezerID": 10705001, + "DeezerURL": "https://www.deezer.com/artist/10705001", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/dfcc1a1e21c3e911e4445593c1c6025b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/dfcc1a1e21c3e911e4445593c1c6025b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/dfcc1a1e21c3e911e4445593c1c6025b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/dfcc1a1e21c3e911e4445593c1c6025b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 57, + "NbFans": 14291, + "Radio": true, + "TopGenres": [ + "Dance", + "Dubstep", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 462, + "Name": "Sullivan King", + "HasPublicSongs": true, + "SongId": 521, + "Color": "7F2723", + "DarkColor": "4D2321", + "DeezerID": 5590006, + "DeezerURL": "https://www.deezer.com/artist/5590006", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/baf870b01d64ebda36900b5b56b2b633/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/baf870b01d64ebda36900b5b56b2b633/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/baf870b01d64ebda36900b5b56b2b633/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/baf870b01d64ebda36900b5b56b2b633/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 73, + "NbFans": 14260, + "Radio": true, + "TopGenres": [ + "Dance", + "Dubstep", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 463, + "Name": "THIRST", + "HasPublicSongs": true, + "SongId": 522, + "Color": "358B84", + "DarkColor": "368C85", + "DeezerID": 105023, + "DeezerURL": "https://www.deezer.com/artist/105023", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b1ff6529b91861a63e39af1e49ca19f3/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b1ff6529b91861a63e39af1e49ca19f3/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b1ff6529b91861a63e39af1e49ca19f3/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b1ff6529b91861a63e39af1e49ca19f3/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 112, + "NbFans": 236, + "Radio": true, + "TopGenres": [ + "Dance", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 464, + "Name": "CHYL", + "HasPublicSongs": true, + "SongId": 522, + "Color": "358B84", + "DarkColor": "368C85", + "DeezerID": 85856192, + "DeezerURL": "https://www.deezer.com/artist/85856192", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4b057ba5d253f16c03a7f56ec75bc7ab/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4b057ba5d253f16c03a7f56ec75bc7ab/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4b057ba5d253f16c03a7f56ec75bc7ab/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4b057ba5d253f16c03a7f56ec75bc7ab/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 1, + "NbFans": 6, + "Radio": true, + "TopGenres": [ + "Jazz" + ], + "Rank": null + }, + { + "ArtistId": 465, + "Name": "Thundercat", + "HasPublicSongs": true, + "SongId": 524, + "Color": "A55732", + "DarkColor": "552C19", + "DeezerID": 546520, + "DeezerURL": "https://www.deezer.com/artist/546520", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b2860b5439b003147cbe69c85135d484/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b2860b5439b003147cbe69c85135d484/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b2860b5439b003147cbe69c85135d484/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b2860b5439b003147cbe69c85135d484/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 24, + "NbFans": 46313, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Filmes/Games", + "Indie Pop", + "Indie Rock", + "R&B", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 466, + "Name": "Mark Morrison", + "HasPublicSongs": true, + "SongId": 526, + "Color": "0D447C", + "DarkColor": "092C4F", + "DeezerID": 6466, + "DeezerURL": "https://www.deezer.com/artist/6466", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/545ce087a36b0e985071e4a7b82ccb4c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/545ce087a36b0e985071e4a7b82ccb4c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/545ce087a36b0e985071e4a7b82ccb4c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/545ce087a36b0e985071e4a7b82ccb4c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 17, + "NbFans": 18078, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B", + "Rap/Hip Hop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 467, + "Name": "New Found Glory", + "HasPublicSongs": true, + "SongId": 527, + "Color": "336235", + "DarkColor": "153D1E", + "DeezerID": 5700, + "DeezerURL": "https://www.deezer.com/artist/5700", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/84a9a0f577f3e4d95fe11f77cd9a6893/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/84a9a0f577f3e4d95fe11f77cd9a6893/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/84a9a0f577f3e4d95fe11f77cd9a6893/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/84a9a0f577f3e4d95fe11f77cd9a6893/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 54, + "NbFans": 103353, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie rock/Rock pop", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 468, + "Name": "MARINA", + "HasPublicSongs": true, + "SongId": 528, + "Color": "2291BC", + "DarkColor": "0D559D", + "DeezerID": 74357, + "DeezerURL": "https://www.deezer.com/artist/74357", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f87ea698d46025e5f6b8594ba6359ccb/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f87ea698d46025e5f6b8594ba6359ccb/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f87ea698d46025e5f6b8594ba6359ccb/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f87ea698d46025e5f6b8594ba6359ccb/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 53, + "NbFans": 444631, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 469, + "Name": "Dryskill", + "HasPublicSongs": true, + "SongId": 529, + "Color": "DA4334", + "DarkColor": "BE2D1F", + "DeezerID": 5314010, + "DeezerURL": "https://www.deezer.com/artist/5314010", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c75446ffce5f8595aa027ce75474cc9f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c75446ffce5f8595aa027ce75474cc9f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c75446ffce5f8595aa027ce75474cc9f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c75446ffce5f8595aa027ce75474cc9f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 7, + "NbFans": 87, + "Radio": true, + "TopGenres": [ + "Electro", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 470, + "Name": "Max Brhon", + "HasPublicSongs": true, + "SongId": 529, + "Color": "DA4334", + "DarkColor": "BE2D1F", + "DeezerID": 57527262, + "DeezerURL": "https://www.deezer.com/artist/57527262", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a7e99b4f91092db15ac1040e1610291f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a7e99b4f91092db15ac1040e1610291f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a7e99b4f91092db15ac1040e1610291f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a7e99b4f91092db15ac1040e1610291f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 16, + "NbFans": 2418, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 471, + "Name": "George Ezra", + "HasPublicSongs": true, + "SongId": 531, + "Color": "52935F", + "DarkColor": "1C5A26", + "DeezerID": 5241932, + "DeezerURL": "https://www.deezer.com/artist/5241932", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/2685c0d156a661d3fc28678de3416750/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/2685c0d156a661d3fc28678de3416750/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/2685c0d156a661d3fc28678de3416750/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/2685c0d156a661d3fc28678de3416750/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 29, + "NbFans": 1263719, + "Radio": true, + "TopGenres": [ + "Pop", + "Singer & Songwriter" + ], + "Rank": null + }, + { + "ArtistId": 472, + "Name": "Katrina and The Waves", + "HasPublicSongs": true, + "SongId": 532, + "Color": "DEB242", + "DarkColor": "AF8C32", + "DeezerID": 183587, + "DeezerURL": "https://www.deezer.com/artist/183587", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b4aca8f5affbc5507e6633415597fa6d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b4aca8f5affbc5507e6633415597fa6d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b4aca8f5affbc5507e6633415597fa6d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b4aca8f5affbc5507e6633415597fa6d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 6, + "NbFans": 8648, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 473, + "Name": "Madness", + "HasPublicSongs": true, + "SongId": 533, + "Color": "ED0100", + "DarkColor": "AC0528", + "DeezerID": 1825, + "DeezerURL": "https://www.deezer.com/artist/1825", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/76c0cb14def12fece488487efd2de5eb/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/76c0cb14def12fece488487efd2de5eb/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/76c0cb14def12fece488487efd2de5eb/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/76c0cb14def12fece488487efd2de5eb/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 71, + "NbFans": 241829, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 474, + "Name": "Justin Hawkes", + "HasPublicSongs": true, + "SongId": 534, + "Color": "B0C0DB", + "DarkColor": "768CAF", + "DeezerID": 108797512, + "DeezerURL": "https://www.deezer.com/artist/108797512", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7044e1576ba7314bfcb253bf120205b1/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7044e1576ba7314bfcb253bf120205b1/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7044e1576ba7314bfcb253bf120205b1/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7044e1576ba7314bfcb253bf120205b1/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 24, + "NbFans": 598, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 475, + "Name": "NSYNC", + "HasPublicSongs": true, + "SongId": 535, + "Color": "F5537A", + "DarkColor": "C03152", + "DeezerID": 520, + "DeezerURL": "https://www.deezer.com/artist/520", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/cbb059fc78d77ff1c8a96aabf34811e1/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/cbb059fc78d77ff1c8a96aabf34811e1/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/cbb059fc78d77ff1c8a96aabf34811e1/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/cbb059fc78d77ff1c8a96aabf34811e1/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 23, + "NbFans": 275452, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 476, + "Name": "Lenny Kravitz", + "HasPublicSongs": true, + "SongId": 536, + "Color": "2E3D62", + "DarkColor": "1C1B36", + "DeezerID": 7948, + "DeezerURL": "https://www.deezer.com/artist/7948", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ffd62919647cc043a62d81d2c779ad4f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ffd62919647cc043a62d81d2c779ad4f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ffd62919647cc043a62d81d2c779ad4f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ffd62919647cc043a62d81d2c779ad4f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 7, + "NbFans": 3774, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 477, + "Name": "Kiss", + "HasPublicSongs": true, + "SongId": 537, + "Color": "739CAF", + "DarkColor": "224D60", + "DeezerID": 67, + "DeezerURL": "https://www.deezer.com/artist/67", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d841e3ff7379c9272005e53f1c46f5b9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d841e3ff7379c9272005e53f1c46f5b9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d841e3ff7379c9272005e53f1c46f5b9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d841e3ff7379c9272005e53f1c46f5b9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 59, + "NbFans": 2741196, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 478, + "Name": "Noisestorm", + "HasPublicSongs": true, + "SongId": 539, + "Color": "336235", + "DarkColor": "153D1E", + "DeezerID": 1190014, + "DeezerURL": "https://www.deezer.com/artist/1190014", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6c8c4f6bc885f60072710a789f7565c6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6c8c4f6bc885f60072710a789f7565c6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6c8c4f6bc885f60072710a789f7565c6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6c8c4f6bc885f60072710a789f7565c6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 15, + "NbFans": 13483, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 479, + "Name": "Peaks!", + "HasPublicSongs": true, + "SongId": 687, + "Color": "F8480E", + "DarkColor": "921C0A", + "DeezerID": 60234302, + "DeezerURL": "https://www.deezer.com/artist/60234302", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ad1e86d7668042252a12aa8dda80f279/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ad1e86d7668042252a12aa8dda80f279/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ad1e86d7668042252a12aa8dda80f279/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ad1e86d7668042252a12aa8dda80f279/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 6, + "NbFans": 190, + "Radio": true, + "TopGenres": [ + "Folk", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 480, + "Name": "Cream", + "HasPublicSongs": true, + "SongId": 542, + "Color": "CF2380", + "DarkColor": "A31763", + "DeezerID": 15219, + "DeezerURL": "https://www.deezer.com/artist/15219", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/38ad60ed94bef5e6fc05bd70f3299e4e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/38ad60ed94bef5e6fc05bd70f3299e4e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/38ad60ed94bef5e6fc05bd70f3299e4e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/38ad60ed94bef5e6fc05bd70f3299e4e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 28, + "NbFans": 212992, + "Radio": true, + "TopGenres": [ + "Electro", + "K-Pop", + "Música asiática" + ], + "Rank": null + }, + { + "ArtistId": 481, + "Name": "Earth, Wind & Fire", + "HasPublicSongs": true, + "SongId": 543, + "Color": "E86730", + "DarkColor": "B62221", + "DeezerID": 248, + "DeezerURL": "https://www.deezer.com/artist/248", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/80ac7359c762580576e4fa6ab29e6810/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/80ac7359c762580576e4fa6ab29e6810/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/80ac7359c762580576e4fa6ab29e6810/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/80ac7359c762580576e4fa6ab29e6810/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 38, + "NbFans": 1123640, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 482, + "Name": "Radiant Knife", + "HasPublicSongs": true, + "SongId": 544, + "Color": "D5B177", + "DarkColor": "A17D52", + "DeezerID": 11734559, + "DeezerURL": "https://www.deezer.com/artist/11734559", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b8064eb1098b5d8a236248cabc5f4a40/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b8064eb1098b5d8a236248cabc5f4a40/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b8064eb1098b5d8a236248cabc5f4a40/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b8064eb1098b5d8a236248cabc5f4a40/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 6, + "NbFans": 26, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Rock", + "Metal" + ], + "Rank": null + }, + { + "ArtistId": 483, + "Name": "DEQN SUE", + "HasPublicSongs": true, + "SongId": 545, + "Color": "4AB96C", + "DarkColor": "297541", + "DeezerID": 4049877, + "DeezerURL": "https://www.deezer.com/artist/4049877", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/73bfa551d508d3c5a2e17822b610a405/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/73bfa551d508d3c5a2e17822b610a405/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/73bfa551d508d3c5a2e17822b610a405/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/73bfa551d508d3c5a2e17822b610a405/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 16, + "NbFans": 212, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 484, + "Name": "Neil Diamond", + "HasPublicSongs": true, + "SongId": 546, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 3094, + "DeezerURL": "https://www.deezer.com/artist/3094", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f8d9c9544b79f651d1520857c6905a9d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f8d9c9544b79f651d1520857c6905a9d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f8d9c9544b79f651d1520857c6905a9d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f8d9c9544b79f651d1520857c6905a9d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 96, + "NbFans": 361916, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 485, + "Name": "FLIPPENDO !", + "HasPublicSongs": true, + "SongId": 547, + "Color": "EB8D69", + "DarkColor": "C27557", + "DeezerID": 239137191, + "DeezerURL": "https://www.deezer.com/artist/239137191", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ad8a740cb3c9b9c4fc996cd20da46b03/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ad8a740cb3c9b9c4fc996cd20da46b03/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ad8a740cb3c9b9c4fc996cd20da46b03/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ad8a740cb3c9b9c4fc996cd20da46b03/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 1, + "NbFans": 9, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 486, + "Name": "HCK9", + "HasPublicSongs": true, + "SongId": 551, + "Color": "1C7ABE", + "DarkColor": "0A3168", + "DeezerID": 92321912, + "DeezerURL": "https://www.deezer.com/artist/92321912", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/bed2e8e1d347995b9bec7574822e8ea3/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/bed2e8e1d347995b9bec7574822e8ea3/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/bed2e8e1d347995b9bec7574822e8ea3/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/bed2e8e1d347995b9bec7574822e8ea3/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 18, + "NbFans": 31, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 487, + "Name": "Nate Rose", + "HasPublicSongs": true, + "SongId": 552, + "Color": "EB8D69", + "DarkColor": "C27557", + "DeezerID": 10941348, + "DeezerURL": "https://www.deezer.com/artist/10941348", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4fa1a528aefa04e628ab7b08d0eb0111/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4fa1a528aefa04e628ab7b08d0eb0111/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4fa1a528aefa04e628ab7b08d0eb0111/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4fa1a528aefa04e628ab7b08d0eb0111/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 79, + "NbFans": 1119, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 488, + "Name": "Cesqeaux", + "HasPublicSongs": true, + "SongId": 554, + "Color": "D5B177", + "DarkColor": "A17D52", + "DeezerID": 6764829, + "DeezerURL": "https://www.deezer.com/artist/6764829", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ed501b9be62b03929558c8fb4f125f52/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ed501b9be62b03929558c8fb4f125f52/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ed501b9be62b03929558c8fb4f125f52/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ed501b9be62b03929558c8fb4f125f52/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 48, + "NbFans": 4956, + "Radio": true, + "TopGenres": [ + "Dance" + ], + "Rank": null + }, + { + "ArtistId": 489, + "Name": "Tisoki", + "HasPublicSongs": true, + "SongId": 554, + "Color": "D5B177", + "DarkColor": "A17D52", + "DeezerID": 2767951, + "DeezerURL": "https://www.deezer.com/artist/2767951", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7f6bf243c2422ab8a13e766147da1b7d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7f6bf243c2422ab8a13e766147da1b7d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7f6bf243c2422ab8a13e766147da1b7d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7f6bf243c2422ab8a13e766147da1b7d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 84, + "NbFans": 3309, + "Radio": true, + "TopGenres": [ + "Dance", + "Dubstep", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 490, + "Name": "A-Ha", + "HasPublicSongs": true, + "SongId": 556, + "Color": "828282", + "DarkColor": "545454", + "DeezerID": 3106, + "DeezerURL": "https://www.deezer.com/artist/3106", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1e692684744294e88afae569686828a6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1e692684744294e88afae569686828a6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1e692684744294e88afae569686828a6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1e692684744294e88afae569686828a6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 47, + "NbFans": 1051412, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 491, + "Name": "New Kids On The Block", + "HasPublicSongs": true, + "SongId": 557, + "Color": "EE492E", + "DarkColor": "980915", + "DeezerID": 657, + "DeezerURL": "https://www.deezer.com/artist/657", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/46b29333f37255bb0d73e7b31e526c05/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/46b29333f37255bb0d73e7b31e526c05/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/46b29333f37255bb0d73e7b31e526c05/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/46b29333f37255bb0d73e7b31e526c05/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 32, + "NbFans": 109891, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 492, + "Name": "Sandro Cavazza", + "HasPublicSongs": true, + "SongId": 72, + "Color": "CA9284", + "DarkColor": "A8655B", + "DeezerID": 10349386, + "DeezerURL": "https://www.deezer.com/artist/10349386", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ebaab5cad362fa98132cb50985ef5b94/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ebaab5cad362fa98132cb50985ef5b94/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ebaab5cad362fa98132cb50985ef5b94/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ebaab5cad362fa98132cb50985ef5b94/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 74027, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Electro Pop/Electro Rock", + "Pop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 493, + "Name": "Survivor", + "HasPublicSongs": true, + "SongId": 769, + "Color": "DE9F4C", + "DarkColor": "C48145", + "DeezerID": 39, + "DeezerURL": "https://www.deezer.com/artist/39", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7e359a16dc6221a897eef6736051856e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7e359a16dc6221a897eef6736051856e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7e359a16dc6221a897eef6736051856e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7e359a16dc6221a897eef6736051856e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 15, + "NbFans": 239760, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 494, + "Name": "X2H", + "HasPublicSongs": true, + "SongId": 563, + "Color": "C3ACF5", + "DarkColor": "5950AE", + "DeezerID": 14523939, + "DeezerURL": "https://www.deezer.com/artist/14523939", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9be887d9abd9c5972b9456cf313fd75f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9be887d9abd9c5972b9456cf313fd75f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9be887d9abd9c5972b9456cf313fd75f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9be887d9abd9c5972b9456cf313fd75f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 16, + "NbFans": 2, + "Radio": true, + "TopGenres": [ + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 495, + "Name": "Adrian Daniel", + "HasPublicSongs": true, + "SongId": 564, + "Color": "4AB96C", + "DarkColor": "297541", + "DeezerID": 6983471, + "DeezerURL": "https://www.deezer.com/artist/6983471", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6096fcba723b64bf5190a73b57b67b0e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6096fcba723b64bf5190a73b57b67b0e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6096fcba723b64bf5190a73b57b67b0e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6096fcba723b64bf5190a73b57b67b0e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 24, + "NbFans": 577, + "Radio": true, + "TopGenres": [ + "Dance", + "R&B", + "Trance" + ], + "Rank": null + }, + { + "ArtistId": 496, + "Name": "Depeche Mode", + "HasPublicSongs": true, + "SongId": 565, + "Color": "ED0100", + "DarkColor": "AC0528", + "DeezerID": 5164, + "DeezerURL": "https://www.deezer.com/artist/5164", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/089f50ca938357f25f1f629302d586a5/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/089f50ca938357f25f1f629302d586a5/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/089f50ca938357f25f1f629302d586a5/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/089f50ca938357f25f1f629302d586a5/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 11, + "NbFans": 105570, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 497, + "Name": "Olivia Rodrigo", + "HasPublicSongs": true, + "SongId": 568, + "Color": "C3ACF5", + "DarkColor": "5950AE", + "DeezerID": 11152580, + "DeezerURL": "https://www.deezer.com/artist/11152580", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/245d3346a03388562d56ab5a63f6549d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/245d3346a03388562d56ab5a63f6549d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/245d3346a03388562d56ab5a63f6549d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/245d3346a03388562d56ab5a63f6549d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 21, + "NbFans": 1484362, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 498, + "Name": "Bryce Green", + "HasPublicSongs": true, + "SongId": 566, + "Color": "FCBC4D", + "DarkColor": "CA7F04", + "DeezerID": 10821172, + "DeezerURL": "https://www.deezer.com/artist/10821172", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/dceb35fd212b2ad5d7a95f75b881bffb/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/dceb35fd212b2ad5d7a95f75b881bffb/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/dceb35fd212b2ad5d7a95f75b881bffb/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/dceb35fd212b2ad5d7a95f75b881bffb/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 45, + "NbFans": 8, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 499, + "Name": "81maantra", + "HasPublicSongs": true, + "SongId": 566, + "Color": "FCBC4D", + "DarkColor": "CA7F04", + "DeezerID": 77029092, + "DeezerURL": "https://www.deezer.com/artist/77029092", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1b522d312286b91a65109c25fb030cdd/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1b522d312286b91a65109c25fb030cdd/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1b522d312286b91a65109c25fb030cdd/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1b522d312286b91a65109c25fb030cdd/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 31, + "NbFans": 1, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 500, + "Name": "The Indiana Drones", + "HasPublicSongs": true, + "SongId": 569, + "Color": "B58C9C", + "DarkColor": "936D7C", + "DeezerID": 11717641, + "DeezerURL": "https://www.deezer.com/artist/11717641", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/22c958cb2112cab7fb5c9579bcb537e4/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/22c958cb2112cab7fb5c9579bcb537e4/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/22c958cb2112cab7fb5c9579bcb537e4/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/22c958cb2112cab7fb5c9579bcb537e4/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 44, + "NbFans": 62, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 501, + "Name": "The Offspring", + "HasPublicSongs": true, + "SongId": 657, + "Color": "4F4EFA", + "DarkColor": "2115CD", + "DeezerID": 882, + "DeezerURL": "https://www.deezer.com/artist/882", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/cb39bd249507f7f66782834195be99de/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/cb39bd249507f7f66782834195be99de/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/cb39bd249507f7f66782834195be99de/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/cb39bd249507f7f66782834195be99de/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 28, + "NbFans": 1820203, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 502, + "Name": "Alphascan", + "HasPublicSongs": true, + "SongId": 571, + "Color": "B0C0DB", + "DarkColor": "768CAF", + "DeezerID": 5755651, + "DeezerURL": "https://www.deezer.com/artist/5755651", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/31c713e35d623f4cc278dad20194801c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/31c713e35d623f4cc278dad20194801c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/31c713e35d623f4cc278dad20194801c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/31c713e35d623f4cc278dad20194801c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 13, + "NbFans": 57, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 503, + "Name": "Theraphosa", + "HasPublicSongs": true, + "SongId": 572, + "Color": "ADA183", + "DarkColor": "81775C", + "DeezerID": 1269047, + "DeezerURL": "https://www.deezer.com/artist/1269047", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/88b4d447f10ed29f6960bf32afd32d22/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/88b4d447f10ed29f6960bf32afd32d22/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/88b4d447f10ed29f6960bf32afd32d22/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/88b4d447f10ed29f6960bf32afd32d22/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 12, + "NbFans": 695, + "Radio": true, + "TopGenres": [ + "Hard Rock", + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 504, + "Name": "TOTO", + "HasPublicSongs": true, + "SongId": 574, + "Color": "ED0100", + "DarkColor": "AC0528", + "DeezerID": 215, + "DeezerURL": "https://www.deezer.com/artist/215", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/dec90cec1498c2ae96f34e53a8ff218d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/dec90cec1498c2ae96f34e53a8ff218d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/dec90cec1498c2ae96f34e53a8ff218d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/dec90cec1498c2ae96f34e53a8ff218d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 47, + "NbFans": 873427, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 505, + "Name": "Twenty-one Pilots", + "HasPublicSongs": true, + "SongId": 575, + "Color": "ED0100", + "DarkColor": "AC0528", + "DeezerID": 647650, + "DeezerURL": "https://www.deezer.com/artist/647650", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3afef5e2e201c409c50b9a81cc27171b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3afef5e2e201c409c50b9a81cc27171b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3afef5e2e201c409c50b9a81cc27171b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3afef5e2e201c409c50b9a81cc27171b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 36, + "NbFans": 4738472, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 506, + "Name": "Aerosmith", + "HasPublicSongs": true, + "SongId": 684, + "Color": "E86730", + "DarkColor": "B62221", + "DeezerID": 1005, + "DeezerURL": "https://www.deezer.com/artist/1005", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/943fbb5cf257b6a275bf6f4f39df26b9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/943fbb5cf257b6a275bf6f4f39df26b9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/943fbb5cf257b6a275bf6f4f39df26b9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/943fbb5cf257b6a275bf6f4f39df26b9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 40, + "NbFans": 5094473, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 507, + "Name": "Jenn Morel", + "HasPublicSongs": true, + "SongId": 577, + "Color": "D383B2", + "DarkColor": "905577", + "DeezerID": 11710965, + "DeezerURL": "https://www.deezer.com/artist/11710965", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/bb9d333ff3de4639845d293afccf57df/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/bb9d333ff3de4639845d293afccf57df/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/bb9d333ff3de4639845d293afccf57df/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/bb9d333ff3de4639845d293afccf57df/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 43, + "NbFans": 1783, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 508, + "Name": "Toby Sebastian", + "HasPublicSongs": true, + "SongId": 578, + "Color": "2E9AAA", + "DarkColor": "257E8B", + "DeezerID": 4349934, + "DeezerURL": "https://www.deezer.com/artist/4349934", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3837ea0f06bd7bc08fa7a1ba1d52e37f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3837ea0f06bd7bc08fa7a1ba1d52e37f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3837ea0f06bd7bc08fa7a1ba1d52e37f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3837ea0f06bd7bc08fa7a1ba1d52e37f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 459, + "Radio": true, + "TopGenres": [ + "Folk", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 509, + "Name": "INXS", + "HasPublicSongs": true, + "SongId": 579, + "Color": "DA4334", + "DarkColor": "BE2D1F", + "DeezerID": 3991451, + "DeezerURL": "https://www.deezer.com/artist/3991451", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8926f677223556454aa19bee21fa90cd/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8926f677223556454aa19bee21fa90cd/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8926f677223556454aa19bee21fa90cd/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8926f677223556454aa19bee21fa90cd/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 22, + "NbFans": 24, + "Radio": true, + "TopGenres": [ + "Infantil" + ], + "Rank": null + }, + { + "ArtistId": 510, + "Name": "Luna Kills", + "HasPublicSongs": true, + "SongId": 580, + "Color": "984F25", + "DarkColor": "852F08", + "DeezerID": 68770512, + "DeezerURL": "https://www.deezer.com/artist/68770512", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/abff55eaa99b53dd87eea33cccaaeeb6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/abff55eaa99b53dd87eea33cccaaeeb6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/abff55eaa99b53dd87eea33cccaaeeb6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/abff55eaa99b53dd87eea33cccaaeeb6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 9, + "NbFans": 141, + "Radio": true, + "TopGenres": [ + "Metal" + ], + "Rank": null + }, + { + "ArtistId": 511, + "Name": "SZA", + "HasPublicSongs": true, + "SongId": 597, + "Color": "2E3D62", + "DarkColor": "1C1B36", + "DeezerID": 5531258, + "DeezerURL": "https://www.deezer.com/artist/5531258", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8ced041da2bed70d5715f0860956169b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8ced041da2bed70d5715f0860956169b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8ced041da2bed70d5715f0860956169b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8ced041da2bed70d5715f0860956169b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 37, + "NbFans": 1063606, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 512, + "Name": "Chiara Nova", + "HasPublicSongs": true, + "SongId": 582, + "Color": "5A6FE3", + "DarkColor": "384592", + "DeezerID": 166604437, + "DeezerURL": "https://www.deezer.com/artist/166604437", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8723e3f875dbbd634aa9c5b68444512b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8723e3f875dbbd634aa9c5b68444512b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8723e3f875dbbd634aa9c5b68444512b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8723e3f875dbbd634aa9c5b68444512b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 4, + "NbFans": 5, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 513, + "Name": "Cyril", + "HasPublicSongs": true, + "SongId": 583, + "Color": "398694", + "DarkColor": "123743", + "DeezerID": 10355750, + "DeezerURL": "https://www.deezer.com/artist/10355750", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3db311cf9192812f7be8cd07563d0474/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3db311cf9192812f7be8cd07563d0474/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3db311cf9192812f7be8cd07563d0474/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3db311cf9192812f7be8cd07563d0474/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 8, + "NbFans": 26, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 514, + "Name": "Swae Lee", + "HasPublicSongs": true, + "SongId": 756, + "Color": "739CAF", + "DarkColor": "224D60", + "DeezerID": 7627172, + "DeezerURL": "https://www.deezer.com/artist/7627172", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3d1effd006d598d5804933bf76d309ee/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3d1effd006d598d5804933bf76d309ee/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3d1effd006d598d5804933bf76d309ee/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3d1effd006d598d5804933bf76d309ee/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 28, + "NbFans": 456288, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "Pop Latino", + "Rap/Hip Hop", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 515, + "Name": "Shawn Mendes", + "HasPublicSongs": true, + "SongId": 587, + "Color": "2781E2", + "DarkColor": "2549AF", + "DeezerID": 5962948, + "DeezerURL": "https://www.deezer.com/artist/5962948", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3d8ed563d628c5c61ec4569d032ab682/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3d8ed563d628c5c61ec4569d032ab682/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3d8ed563d628c5c61ec4569d032ab682/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3d8ed563d628c5c61ec4569d032ab682/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 38, + "NbFans": 6573497, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 516, + "Name": "Travis Scott", + "HasPublicSongs": true, + "SongId": 588, + "Color": "984F25", + "DarkColor": "852F08", + "DeezerID": 13631667, + "DeezerURL": "https://www.deezer.com/artist/13631667", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/881a10c54b47201c8c850ecddaf4bb1c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/881a10c54b47201c8c850ecddaf4bb1c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/881a10c54b47201c8c850ecddaf4bb1c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/881a10c54b47201c8c850ecddaf4bb1c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 56, + "NbFans": 396523, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 517, + "Name": "Barang", + "HasPublicSongs": true, + "SongId": 589, + "Color": "E359D8", + "DarkColor": "974190", + "DeezerID": 56611542, + "DeezerURL": "https://www.deezer.com/artist/56611542", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6ef52dbd060e95ec21fd3c5de58cd0e3/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6ef52dbd060e95ec21fd3c5de58cd0e3/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6ef52dbd060e95ec21fd3c5de58cd0e3/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6ef52dbd060e95ec21fd3c5de58cd0e3/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 16, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 518, + "Name": "MRSHL", + "HasPublicSongs": true, + "SongId": 590, + "Color": "A74BB8", + "DarkColor": "693390", + "DeezerID": 10092626, + "DeezerURL": "https://www.deezer.com/artist/10092626", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ad3379cb37305f03f6057afe1fad7e61/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ad3379cb37305f03f6057afe1fad7e61/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ad3379cb37305f03f6057afe1fad7e61/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ad3379cb37305f03f6057afe1fad7e61/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 1, + "NbFans": 0, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 519, + "Name": "Madison Beer", + "HasPublicSongs": true, + "SongId": 593, + "Color": "2E3D62", + "DarkColor": "1C1B36", + "DeezerID": 52823842, + "DeezerURL": "https://www.deezer.com/artist/52823842", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e347783eaab94f2bb84c55b6cad7f532/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e347783eaab94f2bb84c55b6cad7f532/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e347783eaab94f2bb84c55b6cad7f532/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e347783eaab94f2bb84c55b6cad7f532/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 4, + "NbFans": 230935, + "Radio": true, + "TopGenres": [ + "K-Pop", + "Música asiática", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 520, + "Name": "Hozier", + "HasPublicSongs": true, + "SongId": 594, + "Color": "F6982E", + "DarkColor": "7F3E10", + "DeezerID": 5062414, + "DeezerURL": "https://www.deezer.com/artist/5062414", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4970da41372f40bb2d85b71d41c359e8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4970da41372f40bb2d85b71d41c359e8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4970da41372f40bb2d85b71d41c359e8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4970da41372f40bb2d85b71d41c359e8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 26, + "NbFans": 1271349, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Folk" + ], + "Rank": null + }, + { + "ArtistId": 521, + "Name": "Nathan Fouts", + "HasPublicSongs": true, + "SongId": 595, + "Color": "50B8CE", + "DarkColor": "0D559D", + "DeezerID": 15090429, + "DeezerURL": "https://www.deezer.com/artist/15090429", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/417e1a2e9f01f4904ad9ca7121a46f04/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/417e1a2e9f01f4904ad9ca7121a46f04/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/417e1a2e9f01f4904ad9ca7121a46f04/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/417e1a2e9f01f4904ad9ca7121a46f04/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 38, + "NbFans": 20, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 522, + "Name": "The Grid", + "HasPublicSongs": true, + "SongId": 596, + "Color": "39ABD7", + "DarkColor": "08658D", + "DeezerID": 15587, + "DeezerURL": "https://www.deezer.com/artist/15587", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/54e3b549b89637bd19cf58e1c4ae0f8f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/54e3b549b89637bd19cf58e1c4ae0f8f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/54e3b549b89637bd19cf58e1c4ae0f8f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/54e3b549b89637bd19cf58e1c4ae0f8f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 14, + "NbFans": 938, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 523, + "Name": "Europe", + "HasPublicSongs": true, + "SongId": 600, + "Color": "C3ACF5", + "DarkColor": "5950AE", + "DeezerID": 1903, + "DeezerURL": "https://www.deezer.com/artist/1903", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7110003612d4daa58fec30763f085971/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7110003612d4daa58fec30763f085971/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7110003612d4daa58fec30763f085971/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7110003612d4daa58fec30763f085971/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 33, + "NbFans": 815564, + "Radio": true, + "TopGenres": [ + "Hard Rock", + "Metal", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 524, + "Name": "Abramo Abramo", + "HasPublicSongs": true, + "SongId": 601, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 183216, + "DeezerURL": "https://www.deezer.com/artist/183216", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b1bed1db6b69db1e904822b02719ec69/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b1bed1db6b69db1e904822b02719ec69/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b1bed1db6b69db1e904822b02719ec69/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b1bed1db6b69db1e904822b02719ec69/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 44610, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 525, + "Name": "Loving Caliber", + "HasPublicSongs": true, + "SongId": 602, + "Color": "2781E2", + "DarkColor": "2549AF", + "DeezerID": 14580005, + "DeezerURL": "https://www.deezer.com/artist/14580005", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/689bee7a0e1506ed336264a10b6019a8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/689bee7a0e1506ed336264a10b6019a8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/689bee7a0e1506ed336264a10b6019a8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/689bee7a0e1506ed336264a10b6019a8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 2, + "NbFans": 4129, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 526, + "Name": "Dire Straits", + "HasPublicSongs": true, + "SongId": 608, + "Color": "7DA5D9", + "DarkColor": "506D92", + "DeezerID": 176, + "DeezerURL": "https://www.deezer.com/artist/176", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/400d3ece017a3482e9aae5d0c0a951f6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/400d3ece017a3482e9aae5d0c0a951f6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/400d3ece017a3482e9aae5d0c0a951f6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/400d3ece017a3482e9aae5d0c0a951f6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 28, + "NbFans": 1991349, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 527, + "Name": "Stephen Sanchez", + "HasPublicSongs": true, + "SongId": 609, + "Color": "EF323D", + "DarkColor": "3B010A", + "DeezerID": 13129925, + "DeezerURL": "https://www.deezer.com/artist/13129925", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/acce3669f0944595429798cba0672645/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/acce3669f0944595429798cba0672645/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/acce3669f0944595429798cba0672645/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/acce3669f0944595429798cba0672645/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 17, + "NbFans": 26508, + "Radio": true, + "TopGenres": [ + "Singer & Songwriter" + ], + "Rank": null + }, + { + "ArtistId": 528, + "Name": "S Y Z Y G Y X", + "HasPublicSongs": true, + "SongId": 611, + "Color": "2E3D62", + "DarkColor": "1C1B36", + "DeezerID": 14487291, + "DeezerURL": "https://www.deezer.com/artist/14487291", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/94a320b4097754e26db7dbfbc195abe6/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/94a320b4097754e26db7dbfbc195abe6/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/94a320b4097754e26db7dbfbc195abe6/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/94a320b4097754e26db7dbfbc195abe6/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 18, + "NbFans": 385, + "Radio": true, + "TopGenres": [ + "Electro", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 529, + "Name": "The Undertones", + "HasPublicSongs": true, + "SongId": 612, + "Color": "358B84", + "DarkColor": "368C85", + "DeezerID": 1154631, + "DeezerURL": "https://www.deezer.com/artist/1154631", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c8e65ac909c196b3eaab164821ac5258/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c8e65ac909c196b3eaab164821ac5258/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c8e65ac909c196b3eaab164821ac5258/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c8e65ac909c196b3eaab164821ac5258/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 21, + "NbFans": 24067, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Electro", + "R&B", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 530, + "Name": "The Police", + "HasPublicSongs": true, + "SongId": 613, + "Color": "019EE5", + "DarkColor": "0072A5", + "DeezerID": 1981, + "DeezerURL": "https://www.deezer.com/artist/1981", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5b4796f1d81da41fa45db0eda8d51b04/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5b4796f1d81da41fa45db0eda8d51b04/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5b4796f1d81da41fa45db0eda8d51b04/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5b4796f1d81da41fa45db0eda8d51b04/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 15, + "NbFans": 3085295, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 531, + "Name": "IVE", + "HasPublicSongs": true, + "SongId": 614, + "Color": "E359D8", + "DarkColor": "974190", + "DeezerID": 153042292, + "DeezerURL": "https://www.deezer.com/artist/153042292", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6a97d96f2f1293e8524adbcec6241aa0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6a97d96f2f1293e8524adbcec6241aa0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6a97d96f2f1293e8524adbcec6241aa0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6a97d96f2f1293e8524adbcec6241aa0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 198016, + "Radio": true, + "TopGenres": [ + "Dance", + "K-Pop", + "Música asiática" + ], + "Rank": null + }, + { + "ArtistId": 532, + "Name": "Saweetie", + "HasPublicSongs": true, + "SongId": 614, + "Color": "E359D8", + "DarkColor": "974190", + "DeezerID": 13641829, + "DeezerURL": "https://www.deezer.com/artist/13641829", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a9ae8f4e77f39b5874c512dabe7c2c70/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a9ae8f4e77f39b5874c512dabe7c2c70/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a9ae8f4e77f39b5874c512dabe7c2c70/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a9ae8f4e77f39b5874c512dabe7c2c70/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 79, + "NbFans": 383402, + "Radio": true, + "TopGenres": [ + "K-Pop", + "Música asiática", + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 533, + "Name": "Electric Light Orchestra", + "HasPublicSongs": true, + "SongId": 615, + "Color": "A55732", + "DarkColor": "552C19", + "DeezerID": 207, + "DeezerURL": "https://www.deezer.com/artist/207", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/cc0082dd703e5288c85c777a46e1bb65/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/cc0082dd703e5288c85c777a46e1bb65/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/cc0082dd703e5288c85c777a46e1bb65/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/cc0082dd703e5288c85c777a46e1bb65/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 29, + "NbFans": 421152, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 534, + "Name": "Kali Uchis", + "HasPublicSongs": true, + "SongId": 616, + "Color": "E86730", + "DarkColor": "B62221", + "DeezerID": 6043160, + "DeezerURL": "https://www.deezer.com/artist/6043160", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9d0d52af2e1e4ec56b67b495b87fc4c0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9d0d52af2e1e4ec56b67b495b87fc4c0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9d0d52af2e1e4ec56b67b495b87fc4c0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9d0d52af2e1e4ec56b67b495b87fc4c0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 44, + "NbFans": 395467, + "Radio": true, + "TopGenres": [ + "K-Pop", + "Música asiática", + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 535, + "Name": "U2", + "HasPublicSongs": true, + "SongId": 617, + "Color": "C4973E", + "DarkColor": "C48145", + "DeezerID": 163, + "DeezerURL": "https://www.deezer.com/artist/163", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d61d888a9cb658f8fe0a28d88167e858/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d61d888a9cb658f8fe0a28d88167e858/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d61d888a9cb658f8fe0a28d88167e858/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d61d888a9cb658f8fe0a28d88167e858/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 95, + "NbFans": 6938139, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 536, + "Name": "Dasloe", + "HasPublicSongs": true, + "SongId": 618, + "Color": "39ABD7", + "DarkColor": "08658D", + "DeezerID": 12622539, + "DeezerURL": "https://www.deezer.com/artist/12622539", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9597be7eddcf3f729128f68c47b12800/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9597be7eddcf3f729128f68c47b12800/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9597be7eddcf3f729128f68c47b12800/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9597be7eddcf3f729128f68c47b12800/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 30, + "NbFans": 44, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 537, + "Name": "Adelyn Paik", + "HasPublicSongs": true, + "SongId": 618, + "Color": "39ABD7", + "DarkColor": "08658D", + "DeezerID": 12272762, + "DeezerURL": "https://www.deezer.com/artist/12272762", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/bf025f69ab24ddd40b474343bfa86e1f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/bf025f69ab24ddd40b474343bfa86e1f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/bf025f69ab24ddd40b474343bfa86e1f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/bf025f69ab24ddd40b474343bfa86e1f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 54, + "NbFans": 111, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 538, + "Name": "Grum", + "HasPublicSongs": true, + "SongId": 619, + "Color": "DECB42", + "DarkColor": "DCA700", + "DeezerID": 169423, + "DeezerURL": "https://www.deezer.com/artist/169423", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7b579173d04b8c49296cb88e414eabcb/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7b579173d04b8c49296cb88e414eabcb/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7b579173d04b8c49296cb88e414eabcb/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7b579173d04b8c49296cb88e414eabcb/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 68, + "NbFans": 8401, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Techno/House", + "Trance" + ], + "Rank": null + }, + { + "ArtistId": 539, + "Name": "Panteros 666", + "HasPublicSongs": true, + "SongId": 620, + "Color": "50B8CE", + "DarkColor": "0D559D" + }, + { + "ArtistId": 540, + "Name": "Disco Lines", + "HasPublicSongs": true, + "SongId": 621, + "Color": "C3ACF5", + "DarkColor": "5950AE", + "DeezerID": 65148802, + "DeezerURL": "https://www.deezer.com/artist/65148802", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/528ade283cd51fddff3744dba7c57cb1/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/528ade283cd51fddff3744dba7c57cb1/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/528ade283cd51fddff3744dba7c57cb1/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/528ade283cd51fddff3744dba7c57cb1/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 47, + "NbFans": 1899, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 541, + "Name": "GUDFELLA", + "HasPublicSongs": true, + "SongId": 621, + "Color": "C3ACF5", + "DarkColor": "5950AE", + "DeezerID": 183779, + "DeezerURL": "https://www.deezer.com/artist/183779", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b94e8c27414cf1d7c01f2d2bf5b261ee/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b94e8c27414cf1d7c01f2d2bf5b261ee/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b94e8c27414cf1d7c01f2d2bf5b261ee/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b94e8c27414cf1d7c01f2d2bf5b261ee/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 15, + "NbFans": 472, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 542, + "Name": "Natasha Bedingfield", + "HasPublicSongs": true, + "SongId": 622, + "Color": "EB8D69", + "DarkColor": "C27557", + "DeezerID": 1489, + "DeezerURL": "https://www.deezer.com/artist/1489", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e7dcb01cb5c448d12ae1768cabd52eae/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e7dcb01cb5c448d12ae1768cabd52eae/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e7dcb01cb5c448d12ae1768cabd52eae/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e7dcb01cb5c448d12ae1768cabd52eae/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 47, + "NbFans": 147830, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 543, + "Name": "Holly Humberstone", + "HasPublicSongs": true, + "SongId": 624, + "Color": "2781E2", + "DarkColor": "2549AF", + "DeezerID": 83527112, + "DeezerURL": "https://www.deezer.com/artist/83527112", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6b6edaf774613a1c78cc42cf42723413/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6b6edaf774613a1c78cc42cf42723413/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6b6edaf774613a1c78cc42cf42723413/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6b6edaf774613a1c78cc42cf42723413/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 32, + "NbFans": 8816, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 544, + "Name": "Chime", + "HasPublicSongs": true, + "SongId": 626, + "Color": "E359D8", + "DarkColor": "974190", + "DeezerID": 468436, + "DeezerURL": "https://www.deezer.com/artist/468436", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/165d15346b119028e45f3e1248601887/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/165d15346b119028e45f3e1248601887/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/165d15346b119028e45f3e1248601887/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/165d15346b119028e45f3e1248601887/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 20, + "NbFans": 14113, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Trance" + ], + "Rank": null + }, + { + "ArtistId": 545, + "Name": "Cher", + "HasPublicSongs": true, + "SongId": 627, + "Color": "739CAF", + "DarkColor": "224D60", + "DeezerID": 3156, + "DeezerURL": "https://www.deezer.com/artist/3156", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/9a958ac5c45361acf68918c0db5834e8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/9a958ac5c45361acf68918c0db5834e8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/9a958ac5c45361acf68918c0db5834e8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/9a958ac5c45361acf68918c0db5834e8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 82, + "NbFans": 525445, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 546, + "Name": "Whitney Houston", + "HasPublicSongs": true, + "SongId": 628, + "Color": "2781E2", + "DarkColor": "2549AF", + "DeezerID": 174, + "DeezerURL": "https://www.deezer.com/artist/174", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7d7916383f536969db91430a2707d3c0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7d7916383f536969db91430a2707d3c0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7d7916383f536969db91430a2707d3c0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7d7916383f536969db91430a2707d3c0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 55, + "NbFans": 3690945, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "R&B", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 547, + "Name": "Shredtune", + "HasPublicSongs": true, + "SongId": 630, + "Color": "EE492E", + "DarkColor": "980915", + "DeezerID": 212380937, + "DeezerURL": "https://www.deezer.com/artist/212380937", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist//56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist//250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist//500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist//1000x1000-000000-80-0-0.jpg", + "NbAlbums": 0, + "NbFans": 0, + "Radio": true, + "TopGenres": [ + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 548, + "Name": "Tsatsamis", + "HasPublicSongs": true, + "SongId": 631, + "Color": "398694", + "DarkColor": "123743", + "DeezerID": 12469746, + "DeezerURL": "https://www.deezer.com/artist/12469746", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/80164d783a641b6e37392199a5d6b10e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/80164d783a641b6e37392199a5d6b10e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/80164d783a641b6e37392199a5d6b10e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/80164d783a641b6e37392199a5d6b10e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 12, + "NbFans": 61, + "Radio": true, + "TopGenres": [ + "Electro", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 549, + "Name": "Greta Van Fleet", + "HasPublicSongs": true, + "SongId": 632, + "Color": "F6982E", + "DarkColor": "7F3E10", + "DeezerID": 5674606, + "DeezerURL": "https://www.deezer.com/artist/5674606", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/58d987cc1ad2fdcfc2fdd3f08fe1a164/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/58d987cc1ad2fdcfc2fdd3f08fe1a164/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/58d987cc1ad2fdcfc2fdd3f08fe1a164/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/58d987cc1ad2fdcfc2fdd3f08fe1a164/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 14, + "NbFans": 174364, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 550, + "Name": "Call Me Amour", + "HasPublicSongs": true, + "SongId": 633, + "Color": "E4323D", + "DarkColor": "3B010A", + "DeezerID": 52887012, + "DeezerURL": "https://www.deezer.com/artist/52887012", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/04c659b0382b19a5900167f3c8b0cf21/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/04c659b0382b19a5900167f3c8b0cf21/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/04c659b0382b19a5900167f3c8b0cf21/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/04c659b0382b19a5900167f3c8b0cf21/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 8, + "NbFans": 103, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Electro", + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 551, + "Name": "FWLR", + "HasPublicSongs": true, + "SongId": 634, + "Color": "F1A9C9", + "DarkColor": "8C4564", + "DeezerID": 8982886, + "DeezerURL": "https://www.deezer.com/artist/8982886", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/400aba630661cdadb1ad33b7acf74f02/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/400aba630661cdadb1ad33b7acf74f02/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/400aba630661cdadb1ad33b7acf74f02/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/400aba630661cdadb1ad33b7acf74f02/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 40, + "NbFans": 966, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 552, + "Name": "Sophie Ellis-Bextor", + "HasPublicSongs": true, + "SongId": 636, + "Color": "BC0E0E", + "DarkColor": "780000", + "DeezerID": 961, + "DeezerURL": "https://www.deezer.com/artist/961", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8e679b7c3a157606b2f2191f64b1d992/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8e679b7c3a157606b2f2191f64b1d992/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8e679b7c3a157606b2f2191f64b1d992/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8e679b7c3a157606b2f2191f64b1d992/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 57, + "NbFans": 90111, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop", + "Trance" + ], + "Rank": null + }, + { + "ArtistId": 553, + "Name": "Case Arnold", + "HasPublicSongs": true, + "SongId": 637, + "Color": "739CAF", + "DarkColor": "224D60", + "DeezerID": 5518517, + "DeezerURL": "https://www.deezer.com/artist/5518517", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0bc18acbbce15e96d2e6732804673b54/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0bc18acbbce15e96d2e6732804673b54/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0bc18acbbce15e96d2e6732804673b54/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0bc18acbbce15e96d2e6732804673b54/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 29, + "NbFans": 131, + "Radio": true, + "TopGenres": [ + "Rap/Hip Hop", + "Reggae" + ], + "Rank": null + }, + { + "ArtistId": 554, + "Name": "Never Back Down", + "HasPublicSongs": true, + "SongId": 638, + "Color": "BD9C62", + "DarkColor": "796044", + "DeezerID": 6757865, + "DeezerURL": "https://www.deezer.com/artist/6757865", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/e0a580dfc279183fc7377e705f50c26d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/e0a580dfc279183fc7377e705f50c26d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/e0a580dfc279183fc7377e705f50c26d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/e0a580dfc279183fc7377e705f50c26d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 24, + "NbFans": 744, + "Radio": true, + "TopGenres": [ + "Hard Rock", + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 555, + "Name": "Bryan Adams", + "HasPublicSongs": true, + "SongId": 639, + "Color": "FCBC4D", + "DarkColor": "CA7F04", + "DeezerID": 170, + "DeezerURL": "https://www.deezer.com/artist/170", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/85d6a14a21da43928992c586fe8a2b41/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/85d6a14a21da43928992c586fe8a2b41/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/85d6a14a21da43928992c586fe8a2b41/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/85d6a14a21da43928992c586fe8a2b41/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 59, + "NbFans": 1632825, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 556, + "Name": "Santana", + "HasPublicSongs": true, + "SongId": 640, + "Color": "173094", + "DarkColor": "2115CD", + "DeezerID": 1264078, + "DeezerURL": "https://www.deezer.com/artist/1264078", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/38565abd42a683c4585efdd3b8a53154/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/38565abd42a683c4585efdd3b8a53154/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/38565abd42a683c4585efdd3b8a53154/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/38565abd42a683c4585efdd3b8a53154/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 89, + "NbFans": 4836349, + "Radio": true, + "TopGenres": [ + "Sertanejo" + ], + "Rank": null + }, + { + "ArtistId": 557, + "Name": "Braken", + "HasPublicSongs": true, + "SongId": 641, + "Color": "D383B2", + "DarkColor": "905577", + "DeezerID": 5292010, + "DeezerURL": "https://www.deezer.com/artist/5292010", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4099c0818f84dcedaed696b25ab824b8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4099c0818f84dcedaed696b25ab824b8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4099c0818f84dcedaed696b25ab824b8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4099c0818f84dcedaed696b25ab824b8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 4, + "NbFans": 2617, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 558, + "Name": "Tate McRae", + "HasPublicSongs": true, + "SongId": 642, + "Color": "C47B66", + "DarkColor": "812D23", + "DeezerID": 234168061, + "DeezerURL": "https://www.deezer.com/artist/234168061", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4ee0b7e71f38106bcff900960cebbd81/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4ee0b7e71f38106bcff900960cebbd81/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4ee0b7e71f38106bcff900960cebbd81/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4ee0b7e71f38106bcff900960cebbd81/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 15, + "NbFans": 225, + "Radio": true, + "TopGenres": [ + "Dance", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 559, + "Name": "The Warning", + "HasPublicSongs": true, + "SongId": 643, + "Color": "BC0E0E", + "DarkColor": "780000", + "DeezerID": 7716640, + "DeezerURL": "https://www.deezer.com/artist/7716640", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b8204cc3bac78d3c84b4959e0a4324ce/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b8204cc3bac78d3c84b4959e0a4324ce/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b8204cc3bac78d3c84b4959e0a4324ce/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b8204cc3bac78d3c84b4959e0a4324ce/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 16, + "NbFans": 33796, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 560, + "Name": "Dwonji", + "HasPublicSongs": true, + "SongId": 644, + "Color": "A10F1A", + "DarkColor": "731D07", + "DeezerID": 6732105, + "DeezerURL": "https://www.deezer.com/artist/6732105", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7ace0ae20a4f1fece5b454c699e92a62/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7ace0ae20a4f1fece5b454c699e92a62/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7ace0ae20a4f1fece5b454c699e92a62/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7ace0ae20a4f1fece5b454c699e92a62/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 1, + "NbFans": 129, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 561, + "Name": "Benson Boone", + "HasPublicSongs": true, + "SongId": 702, + "Color": "BD9C62", + "DarkColor": "796044", + "DeezerID": 146543992, + "DeezerURL": "https://www.deezer.com/artist/146543992", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/15608ab38a5bc94138dc3909a68245d9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/15608ab38a5bc94138dc3909a68245d9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/15608ab38a5bc94138dc3909a68245d9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/15608ab38a5bc94138dc3909a68245d9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 24, + "NbFans": 269133, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 562, + "Name": "Tipa Tipo", + "HasPublicSongs": true, + "SongId": 646, + "Color": "F46277", + "DarkColor": "842D42", + "DeezerID": 111309, + "DeezerURL": "https://www.deezer.com/artist/111309", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/09081cfd5175523dd0e0b6d8c68d07ac/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/09081cfd5175523dd0e0b6d8c68d07ac/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/09081cfd5175523dd0e0b6d8c68d07ac/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/09081cfd5175523dd0e0b6d8c68d07ac/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 57, + "NbFans": 1240, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Rap/Hip Hop", + "Reggae" + ], + "Rank": null + }, + { + "ArtistId": 563, + "Name": "Aquadrop", + "HasPublicSongs": true, + "SongId": 647, + "Color": "E70030", + "DarkColor": "AC0528", + "DeezerID": 252957, + "DeezerURL": "https://www.deezer.com/artist/252957", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/41e422c9b468238e0526ffa5bf08ee4a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/41e422c9b468238e0526ffa5bf08ee4a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/41e422c9b468238e0526ffa5bf08ee4a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/41e422c9b468238e0526ffa5bf08ee4a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 6, + "NbFans": 8923, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 564, + "Name": "The Golden Toyz", + "HasPublicSongs": true, + "SongId": 647, + "Color": "E70030", + "DarkColor": "AC0528", + "DeezerID": 1421464, + "DeezerURL": "https://www.deezer.com/artist/1421464", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist//56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist//250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist//500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist//1000x1000-000000-80-0-0.jpg", + "NbAlbums": 0, + "NbFans": 0, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 565, + "Name": "Becky G", + "HasPublicSongs": true, + "SongId": 648, + "Color": "C10909", + "DarkColor": "780000", + "DeezerID": 4698748, + "DeezerURL": "https://www.deezer.com/artist/4698748", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4592b032de9d1393fcd1c32780755372/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4592b032de9d1393fcd1c32780755372/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4592b032de9d1393fcd1c32780755372/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4592b032de9d1393fcd1c32780755372/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 100, + "NbFans": 1817005, + "Radio": true, + "TopGenres": [ + "Pop", + "Pop Latino", + "Rap/Hip Hop", + "Reggaeton" + ], + "Rank": null + }, + { + "ArtistId": 566, + "Name": "NATTI NATASHA", + "HasPublicSongs": true, + "SongId": 648, + "Color": "C10909", + "DarkColor": "780000", + "DeezerID": 2829671, + "DeezerURL": "https://www.deezer.com/artist/2829671", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a25e772e5eff34271c59a4038b610056/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a25e772e5eff34271c59a4038b610056/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a25e772e5eff34271c59a4038b610056/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a25e772e5eff34271c59a4038b610056/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 77, + "NbFans": 1277232, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Pop", + "Pop Latino", + "Rap/Hip Hop", + "Reggaeton", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 567, + "Name": "F.O.O.L", + "HasPublicSongs": true, + "SongId": 650, + "Color": "EF323D", + "DarkColor": "3B010A", + "DeezerID": 7104069, + "DeezerURL": "https://www.deezer.com/artist/7104069", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b0c8ee1a8180826839f41b6aff38c99f/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b0c8ee1a8180826839f41b6aff38c99f/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b0c8ee1a8180826839f41b6aff38c99f/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b0c8ee1a8180826839f41b6aff38c99f/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 18, + "NbFans": 484, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 568, + "Name": "Teddy Swims", + "HasPublicSongs": true, + "SongId": 651, + "Color": "DA4334", + "DarkColor": "BE2D1F", + "DeezerID": 2021921, + "DeezerURL": "https://www.deezer.com/artist/2021921", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1439e2c0b31a7ccd933d39cff6b7f201/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1439e2c0b31a7ccd933d39cff6b7f201/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1439e2c0b31a7ccd933d39cff6b7f201/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1439e2c0b31a7ccd933d39cff6b7f201/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 51, + "NbFans": 162131, + "Radio": true, + "TopGenres": [ + "Gospel", + "Música Religiosa", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 569, + "Name": "Limp Bizkit", + "HasPublicSongs": true, + "SongId": 652, + "Color": "D5B177", + "DarkColor": "A17D52", + "DeezerID": 93, + "DeezerURL": "https://www.deezer.com/artist/93", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/63fd0602291ed4f3b564558525baa795/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/63fd0602291ed4f3b564558525baa795/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/63fd0602291ed4f3b564558525baa795/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/63fd0602291ed4f3b564558525baa795/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 21, + "NbFans": 1945720, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 570, + "Name": "We Are PIGS", + "HasPublicSongs": true, + "SongId": 653, + "Color": "607BC4", + "DarkColor": "3C4784", + "DeezerID": 117232942, + "DeezerURL": "https://www.deezer.com/artist/117232942", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6ce62fb553691fa00e962161b3fd43f0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6ce62fb553691fa00e962161b3fd43f0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6ce62fb553691fa00e962161b3fd43f0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6ce62fb553691fa00e962161b3fd43f0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 188, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Hard Rock", + "Metal", + "Rap/Hip Hop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 571, + "Name": "Lit", + "HasPublicSongs": true, + "SongId": 654, + "Color": "DA4334", + "DarkColor": "BE2D1F", + "DeezerID": 5478963, + "DeezerURL": "https://www.deezer.com/artist/5478963", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/427a63ccf1c3f62db7918c3f76a2ba64/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/427a63ccf1c3f62db7918c3f76a2ba64/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/427a63ccf1c3f62db7918c3f76a2ba64/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/427a63ccf1c3f62db7918c3f76a2ba64/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 0, + "NbFans": 110, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 572, + "Name": "gürl", + "HasPublicSongs": true, + "SongId": 655, + "Color": "E359D8", + "DarkColor": "974190", + "DeezerID": 14100685, + "DeezerURL": "https://www.deezer.com/artist/14100685", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0dac3d4451e32707096fcbd03fc122a3/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0dac3d4451e32707096fcbd03fc122a3/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0dac3d4451e32707096fcbd03fc122a3/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0dac3d4451e32707096fcbd03fc122a3/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 45, + "NbFans": 163, + "Radio": true, + "TopGenres": [ + "Dance", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 573, + "Name": "Bronnie", + "HasPublicSongs": true, + "SongId": 655, + "Color": "E359D8", + "DarkColor": "974190", + "DeezerID": 9546474, + "DeezerURL": "https://www.deezer.com/artist/9546474", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/383dbf478b1fb2868356c9fb9eeb47f4/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/383dbf478b1fb2868356c9fb9eeb47f4/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/383dbf478b1fb2868356c9fb9eeb47f4/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/383dbf478b1fb2868356c9fb9eeb47f4/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 49, + "NbFans": 287, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 574, + "Name": "Viva La Viiv", + "HasPublicSongs": true, + "SongId": 660, + "Color": "EB9A07", + "DarkColor": "BD6300", + "DeezerID": 56415102, + "DeezerURL": "https://www.deezer.com/artist/56415102", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/59462d8d8d3d6389736853975b1889ba/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/59462d8d8d3d6389736853975b1889ba/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/59462d8d8d3d6389736853975b1889ba/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/59462d8d8d3d6389736853975b1889ba/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 6, + "NbFans": 8, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 575, + "Name": "just_omalley", + "HasPublicSongs": true, + "SongId": 660, + "Color": "EB9A07", + "DarkColor": "BD6300", + "DeezerID": 144315652, + "DeezerURL": "https://www.deezer.com/artist/144315652", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0c8e24a1f5c9b29f53ff14cd5894fb1e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0c8e24a1f5c9b29f53ff14cd5894fb1e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0c8e24a1f5c9b29f53ff14cd5894fb1e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0c8e24a1f5c9b29f53ff14cd5894fb1e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 9, + "NbFans": 5, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 576, + "Name": "Key-Key", + "HasPublicSongs": true, + "SongId": 661, + "Color": "ED8251", + "DarkColor": "D85126", + "DeezerID": 2768, + "DeezerURL": "https://www.deezer.com/artist/2768", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4d7ac0943e8a99e6ec071a510803cda7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4d7ac0943e8a99e6ec071a510803cda7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4d7ac0943e8a99e6ec071a510803cda7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4d7ac0943e8a99e6ec071a510803cda7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 142, + "NbFans": 128825, + "Radio": true, + "TopGenres": [ + "Reggae" + ], + "Rank": null + }, + { + "ArtistId": 577, + "Name": "Samuei", + "HasPublicSongs": true, + "SongId": 662, + "Color": "7F2723", + "DarkColor": "4D2321", + "DeezerID": 185131, + "DeezerURL": "https://www.deezer.com/artist/185131", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/60e7c9d880ed722a3ac6d0f8f25f944d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/60e7c9d880ed722a3ac6d0f8f25f944d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/60e7c9d880ed722a3ac6d0f8f25f944d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/60e7c9d880ed722a3ac6d0f8f25f944d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 56, + "NbFans": 142838, + "Radio": true, + "TopGenres": [ + "Música Africana", + "Soul & Funk" + ], + "Rank": null + }, + { + "ArtistId": 578, + "Name": "Lkhn", + "HasPublicSongs": true, + "SongId": 662, + "Color": "7F2723", + "DarkColor": "4D2321", + "DeezerID": 11710663, + "DeezerURL": "https://www.deezer.com/artist/11710663", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/70d7976175817699b7b65292ecd992cd/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/70d7976175817699b7b65292ecd992cd/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/70d7976175817699b7b65292ecd992cd/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/70d7976175817699b7b65292ecd992cd/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 27, + "NbFans": 31, + "Radio": true, + "TopGenres": [ + "Pop", + "Pop internacional", + "Reggae", + "Reggaeton" + ], + "Rank": null + }, + { + "ArtistId": 579, + "Name": "Andrew Bayer", + "HasPublicSongs": true, + "SongId": 664, + "Color": "1A3AA1", + "DarkColor": "132769", + "DeezerID": 1435297, + "DeezerURL": "https://www.deezer.com/artist/1435297", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/0eb70d4d6ea45f9466484f50b4a3351e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/0eb70d4d6ea45f9466484f50b4a3351e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/0eb70d4d6ea45f9466484f50b4a3351e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/0eb70d4d6ea45f9466484f50b4a3351e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 83, + "NbFans": 11773, + "Radio": true, + "TopGenres": [ + "Dance", + "Electro", + "Trance" + ], + "Rank": null + }, + { + "ArtistId": 580, + "Name": "Oliver Smith", + "HasPublicSongs": true, + "SongId": 664, + "Color": "1A3AA1", + "DarkColor": "132769", + "DeezerID": 248205, + "DeezerURL": "https://www.deezer.com/artist/248205", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d12624b9a403285ae5f2af4321997008/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d12624b9a403285ae5f2af4321997008/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d12624b9a403285ae5f2af4321997008/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d12624b9a403285ae5f2af4321997008/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 63, + "NbFans": 3812, + "Radio": true, + "TopGenres": [ + "Dance", + "Trance" + ], + "Rank": null + }, + { + "ArtistId": 581, + "Name": "Marvin Gaye", + "HasPublicSongs": true, + "SongId": 746, + "Color": "EB9A07", + "DarkColor": "BD6300", + "DeezerID": 1154, + "DeezerURL": "https://www.deezer.com/artist/1154", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/982782bd6fa80399163f60ea480aac32/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/982782bd6fa80399163f60ea480aac32/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/982782bd6fa80399163f60ea480aac32/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/982782bd6fa80399163f60ea480aac32/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 81, + "NbFans": 1780855, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Pop", + "R&B", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 582, + "Name": "Tammi Terrell", + "HasPublicSongs": true, + "SongId": 746, + "Color": "EB9A07", + "DarkColor": "BD6300", + "DeezerID": 110513, + "DeezerURL": "https://www.deezer.com/artist/110513", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/5066136492be40922660ae14bf886fe7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/5066136492be40922660ae14bf886fe7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/5066136492be40922660ae14bf886fe7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/5066136492be40922660ae14bf886fe7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 10, + "NbFans": 54847, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 583, + "Name": "Seal", + "HasPublicSongs": true, + "SongId": 667, + "Color": "F1A9C9", + "DarkColor": "8C4564", + "DeezerID": 1444, + "DeezerURL": "https://www.deezer.com/artist/1444", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/39b0754d3eefa7cae5dda34e4149157a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/39b0754d3eefa7cae5dda34e4149157a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/39b0754d3eefa7cae5dda34e4149157a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/39b0754d3eefa7cae5dda34e4149157a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 55, + "NbFans": 551455, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 584, + "Name": "Tina Turner", + "HasPublicSongs": true, + "SongId": 668, + "Color": "C49454", + "DarkColor": "9C6A3B", + "DeezerID": 1454, + "DeezerURL": "https://www.deezer.com/artist/1454", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6dfabac67edec77d322a2d85be60d87a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6dfabac67edec77d322a2d85be60d87a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6dfabac67edec77d322a2d85be60d87a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6dfabac67edec77d322a2d85be60d87a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 64, + "NbFans": 1509512, + "Radio": true, + "TopGenres": [ + "Pop", + "R&B" + ], + "Rank": null + }, + { + "ArtistId": 585, + "Name": "The Rolling Stones", + "HasPublicSongs": true, + "SongId": 669, + "Color": "CC3F5D", + "DarkColor": "B42942", + "DeezerID": 11, + "DeezerURL": "https://www.deezer.com/artist/11", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/2ceac184bc846327f60c5b0d4247cc7a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/2ceac184bc846327f60c5b0d4247cc7a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/2ceac184bc846327f60c5b0d4247cc7a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/2ceac184bc846327f60c5b0d4247cc7a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 126, + "NbFans": 6695594, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 586, + "Name": "R.E.M.", + "HasPublicSongs": true, + "SongId": 670, + "Color": "D5B177", + "DarkColor": "A17D52", + "DeezerID": 129, + "DeezerURL": "https://www.deezer.com/artist/129", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3a7f353f78c9a2cb48c50ea554d877d7/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3a7f353f78c9a2cb48c50ea554d877d7/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3a7f353f78c9a2cb48c50ea554d877d7/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3a7f353f78c9a2cb48c50ea554d877d7/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 54, + "NbFans": 2521282, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 587, + "Name": "Deee-Lite", + "HasPublicSongs": true, + "SongId": 671, + "Color": "E44A8C", + "DarkColor": "E44A8C", + "DeezerID": 1014, + "DeezerURL": "https://www.deezer.com/artist/1014", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ca4725e30cd37d07958504bb817d21a8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ca4725e30cd37d07958504bb817d21a8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ca4725e30cd37d07958504bb817d21a8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ca4725e30cd37d07958504bb817d21a8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 12, + "NbFans": 10439, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 588, + "Name": "San Holo", + "HasPublicSongs": true, + "SongId": 673, + "Color": "E70030", + "DarkColor": "AC0528", + "DeezerID": 5696423, + "DeezerURL": "https://www.deezer.com/artist/5696423", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f86cf8a6efa6fbf18a9087fcb5200229/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f86cf8a6efa6fbf18a9087fcb5200229/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f86cf8a6efa6fbf18a9087fcb5200229/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f86cf8a6efa6fbf18a9087fcb5200229/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 80, + "NbFans": 39825, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Electro", + "Indie Pop", + "Indie Rock" + ], + "Rank": null + }, + { + "ArtistId": 589, + "Name": "LINK", + "HasPublicSongs": true, + "SongId": 674, + "Color": "0D447C", + "DarkColor": "092C4F", + "DeezerID": 79017912, + "DeezerURL": "https://www.deezer.com/artist/79017912", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3f8cd4bd00bc48612681f96f8824bdec/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3f8cd4bd00bc48612681f96f8824bdec/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3f8cd4bd00bc48612681f96f8824bdec/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3f8cd4bd00bc48612681f96f8824bdec/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 29, + "NbFans": 3824, + "Radio": true, + "TopGenres": [ + "MPB", + "Rap/Hip Hop", + "Soul & Funk" + ], + "Rank": null + }, + { + "ArtistId": 590, + "Name": "Joy Killed The Duke", + "HasPublicSongs": true, + "SongId": 675, + "Color": "7FB6C0", + "DarkColor": "231443", + "DeezerID": 85439452, + "DeezerURL": "https://www.deezer.com/artist/85439452", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1e0e217a986bd52571d208e50749da0b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1e0e217a986bd52571d208e50749da0b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1e0e217a986bd52571d208e50749da0b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1e0e217a986bd52571d208e50749da0b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 10, + "NbFans": 9, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 591, + "Name": "Ayra Starr", + "HasPublicSongs": true, + "SongId": 677, + "Color": "1C7ABE", + "DarkColor": "0A3168", + "DeezerID": 110616822, + "DeezerURL": "https://www.deezer.com/artist/110616822", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/dbbf92fde4a28452a455f885b065008e/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/dbbf92fde4a28452a455f885b065008e/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/dbbf92fde4a28452a455f885b065008e/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/dbbf92fde4a28452a455f885b065008e/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 47, + "NbFans": 175570, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Música Africana", + "Pop", + "Rap/Hip Hop" + ], + "Rank": null + }, + { + "ArtistId": 592, + "Name": "Rogue", + "HasPublicSongs": true, + "SongId": 678, + "Color": "834BD8", + "DarkColor": "583292", + "DeezerID": 4372, + "DeezerURL": "https://www.deezer.com/artist/4372", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/4848761b5d492ae1af0701b119ff0917/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/4848761b5d492ae1af0701b119ff0917/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/4848761b5d492ae1af0701b119ff0917/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/4848761b5d492ae1af0701b119ff0917/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 9361, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 593, + "Name": "Evanescence", + "HasPublicSongs": true, + "SongId": 768, + "Color": "50B8CE", + "DarkColor": "0D559D", + "DeezerID": 98, + "DeezerURL": "https://www.deezer.com/artist/98", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f833f7b583847c251f0286961f338551/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f833f7b583847c251f0286961f338551/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f833f7b583847c251f0286961f338551/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f833f7b583847c251f0286961f338551/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 25, + "NbFans": 3579599, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 594, + "Name": "Avenged Sevenfold", + "HasPublicSongs": true, + "SongId": 680, + "Color": "D0AB64", + "DarkColor": "7D5B3E", + "DeezerID": 406, + "DeezerURL": "https://www.deezer.com/artist/406", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/6577dccc570c0c95fbcf09c7bf66cbbe/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/6577dccc570c0c95fbcf09c7bf66cbbe/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/6577dccc570c0c95fbcf09c7bf66cbbe/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/6577dccc570c0c95fbcf09c7bf66cbbe/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 33, + "NbFans": 1785949, + "Radio": true, + "TopGenres": [ + "Hard Rock", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 595, + "Name": "The Arbitrary", + "HasPublicSongs": true, + "SongId": 686, + "Color": "5E80B0", + "DarkColor": "3C5480", + "DeezerID": 10047912, + "DeezerURL": "https://www.deezer.com/artist/10047912", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b55e0c3ba8e7494a287a92e79cf1ad4c/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b55e0c3ba8e7494a287a92e79cf1ad4c/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b55e0c3ba8e7494a287a92e79cf1ad4c/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b55e0c3ba8e7494a287a92e79cf1ad4c/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 9, + "NbFans": 42, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Indie Rock", + "Metal" + ], + "Rank": null + }, + { + "ArtistId": 596, + "Name": "The Plain White T's", + "HasPublicSongs": true, + "SongId": 688, + "Color": "E70030", + "DarkColor": "AC0528", + "DeezerID": 5095188, + "DeezerURL": "https://www.deezer.com/artist/5095188", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist//56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist//250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist//500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist//1000x1000-000000-80-0-0.jpg", + "NbAlbums": 0, + "NbFans": 70, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 597, + "Name": "Def Leppard", + "HasPublicSongs": true, + "SongId": 689, + "Color": "E70030", + "DarkColor": "AC0528", + "DeezerID": 2557, + "DeezerURL": "https://www.deezer.com/artist/2557", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/3bdeca50c4e450cf6e5c5ae0aa4f7a2a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/3bdeca50c4e450cf6e5c5ae0aa4f7a2a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/3bdeca50c4e450cf6e5c5ae0aa4f7a2a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/3bdeca50c4e450cf6e5c5ae0aa4f7a2a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 54, + "NbFans": 821379, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 598, + "Name": "Cal Sy", + "HasPublicSongs": true, + "SongId": 690, + "Color": "EB9A07", + "DarkColor": "BD6300", + "DeezerID": 53764682, + "DeezerURL": "https://www.deezer.com/artist/53764682", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b948ee3b26d0bb190cd503d784d72d3b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b948ee3b26d0bb190cd503d784d72d3b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b948ee3b26d0bb190cd503d784d72d3b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b948ee3b26d0bb190cd503d784d72d3b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 13, + "NbFans": 4, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 599, + "Name": "Kelsey Coockson", + "HasPublicSongs": true, + "SongId": 691, + "Color": "C47B66", + "DarkColor": "812D23", + "DeezerID": 61111642, + "DeezerURL": "https://www.deezer.com/artist/61111642", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/46bb7e4d0a4b9d7710e8e8fc694d2672/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/46bb7e4d0a4b9d7710e8e8fc694d2672/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/46bb7e4d0a4b9d7710e8e8fc694d2672/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/46bb7e4d0a4b9d7710e8e8fc694d2672/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 9, + "NbFans": 8, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 600, + "Name": "Cafuné", + "HasPublicSongs": true, + "SongId": 692, + "Color": "7FB6C0", + "DarkColor": "231443", + "DeezerID": 7171490, + "DeezerURL": "https://www.deezer.com/artist/7171490", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/8de5a2e7a3581d53dd81b6f5045d5221/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/8de5a2e7a3581d53dd81b6f5045d5221/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/8de5a2e7a3581d53dd81b6f5045d5221/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/8de5a2e7a3581d53dd81b6f5045d5221/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 11, + "NbFans": 11741, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 601, + "Name": "Abraysiv", + "HasPublicSongs": true, + "SongId": 693, + "Color": "828282", + "DarkColor": "545454", + "DeezerID": 13103087, + "DeezerURL": "https://www.deezer.com/artist/13103087", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/079771f5c9e4aa20acf845857f9c7a35/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/079771f5c9e4aa20acf845857f9c7a35/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/079771f5c9e4aa20acf845857f9c7a35/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/079771f5c9e4aa20acf845857f9c7a35/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 5, + "NbFans": 2, + "Radio": true, + "TopGenres": [], + "Rank": null + }, + { + "ArtistId": 602, + "Name": "Casein", + "HasPublicSongs": true, + "SongId": 693, + "Color": "828282", + "DarkColor": "545454", + "DeezerID": 63550712, + "DeezerURL": "https://www.deezer.com/artist/63550712", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/bd1ab3ef0c22547d5ca4dc7a6e0aa8a0/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/bd1ab3ef0c22547d5ca4dc7a6e0aa8a0/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/bd1ab3ef0c22547d5ca4dc7a6e0aa8a0/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/bd1ab3ef0c22547d5ca4dc7a6e0aa8a0/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 149, + "NbFans": 21, + "Radio": true, + "TopGenres": [ + "Chill Out/Trip-Hop/Lounge", + "Dance", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 603, + "Name": "Chappell Roan", + "HasPublicSongs": true, + "SongId": 694, + "Color": "2E9AAA", + "DarkColor": "257E8B", + "DeezerID": 12945219, + "DeezerURL": "https://www.deezer.com/artist/12945219", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/694ecb4e4cf168450300fd47be89fd5d/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/694ecb4e4cf168450300fd47be89fd5d/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/694ecb4e4cf168450300fd47be89fd5d/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/694ecb4e4cf168450300fd47be89fd5d/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 18, + "NbFans": 114653, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 604, + "Name": "SikTh", + "HasPublicSongs": true, + "SongId": 695, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 2217, + "DeezerURL": "https://www.deezer.com/artist/2217", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/106a776e2d5d4fbaf6f52116d41620d1/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/106a776e2d5d4fbaf6f52116d41620d1/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/106a776e2d5d4fbaf6f52116d41620d1/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/106a776e2d5d4fbaf6f52116d41620d1/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 14, + "NbFans": 5730, + "Radio": true, + "TopGenres": [ + "Hard Rock", + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 605, + "Name": "Halsey", + "HasPublicSongs": true, + "SongId": 696, + "Color": "EB8D69", + "DarkColor": "C27557", + "DeezerID": 5292512, + "DeezerURL": "https://www.deezer.com/artist/5292512", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/dbfcb38ac398f2c09d18b16868426f41/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/dbfcb38ac398f2c09d18b16868426f41/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/dbfcb38ac398f2c09d18b16868426f41/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/dbfcb38ac398f2c09d18b16868426f41/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 49, + "NbFans": 1978442, + "Radio": true, + "TopGenres": [ + "Alternativo", + "Dance", + "Electro", + "Indie Pop", + "Indie Rock", + "Pop", + "Rap/Hip Hop", + "Techno/House" + ], + "Rank": null + }, + { + "ArtistId": 606, + "Name": "Pantera", + "HasPublicSongs": true, + "SongId": 697, + "Color": "A10000", + "DarkColor": "780000", + "DeezerID": 2969, + "DeezerURL": "https://www.deezer.com/artist/2969", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f4ee6ca8f9cd27a944de0476776fee50/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f4ee6ca8f9cd27a944de0476776fee50/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f4ee6ca8f9cd27a944de0476776fee50/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f4ee6ca8f9cd27a944de0476776fee50/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 15, + "NbFans": 1506011, + "Radio": true, + "TopGenres": [ + "Hard Rock", + "Metal", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 607, + "Name": "Desx", + "HasPublicSongs": true, + "SongId": 698, + "Color": "A74BB8", + "DarkColor": "693390", + "DeezerID": 50982882, + "DeezerURL": "https://www.deezer.com/artist/50982882", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/a77e7ab1e99e6c477ed3050a257008ef/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/a77e7ab1e99e6c477ed3050a257008ef/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/a77e7ab1e99e6c477ed3050a257008ef/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/a77e7ab1e99e6c477ed3050a257008ef/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 17, + "NbFans": 6, + "Radio": true, + "TopGenres": [ + "Dubstep", + "Electro" + ], + "Rank": null + }, + { + "ArtistId": 608, + "Name": "Conro", + "HasPublicSongs": true, + "SongId": 699, + "Color": "659B84", + "DarkColor": "436758", + "DeezerID": 2974, + "DeezerURL": "https://www.deezer.com/artist/2974", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f5b687db2edbdb4695728f24254cc3dd/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f5b687db2edbdb4695728f24254cc3dd/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f5b687db2edbdb4695728f24254cc3dd/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f5b687db2edbdb4695728f24254cc3dd/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 27, + "NbFans": 119463, + "Radio": true, + "TopGenres": [ + "Pop", + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 609, + "Name": "Joe Satriani", + "HasPublicSongs": true, + "SongId": 700, + "Color": "EE492E", + "DarkColor": "980915", + "DeezerID": 496, + "DeezerURL": "https://www.deezer.com/artist/496", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7aaf130ad719c8d4ca40d14ed5ad12e9/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7aaf130ad719c8d4ca40d14ed5ad12e9/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7aaf130ad719c8d4ca40d14ed5ad12e9/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7aaf130ad719c8d4ca40d14ed5ad12e9/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 72, + "NbFans": 344295, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 610, + "Name": "John Lennon", + "HasPublicSongs": true, + "SongId": 701, + "Color": "AD2429", + "DarkColor": "6E0C00", + "DeezerID": 226, + "DeezerURL": "https://www.deezer.com/artist/226", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/ef6244c655e8cbe91eeb56bb6f934176/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/ef6244c655e8cbe91eeb56bb6f934176/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/ef6244c655e8cbe91eeb56bb6f934176/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/ef6244c655e8cbe91eeb56bb6f934176/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 34, + "NbFans": 2504604, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 611, + "Name": "Yoko Ono", + "HasPublicSongs": true, + "SongId": 701, + "Color": "AD2429", + "DarkColor": "6E0C00", + "DeezerID": 174087, + "DeezerURL": "https://www.deezer.com/artist/174087", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/1dc142fe2ea61352e6d1deed8a24f285/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/1dc142fe2ea61352e6d1deed8a24f285/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/1dc142fe2ea61352e6d1deed8a24f285/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/1dc142fe2ea61352e6d1deed8a24f285/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 43, + "NbFans": 63686, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 612, + "Name": "Drvmmer", + "HasPublicSongs": true, + "SongId": 703, + "Color": "EB9A07", + "DarkColor": "BD6300", + "DeezerID": 64549102, + "DeezerURL": "https://www.deezer.com/artist/64549102", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f0bf8a5fe4f5bcf45fb55d4df9df1897/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f0bf8a5fe4f5bcf45fb55d4df9df1897/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f0bf8a5fe4f5bcf45fb55d4df9df1897/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f0bf8a5fe4f5bcf45fb55d4df9df1897/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 19, + "NbFans": 25, + "Radio": true, + "TopGenres": [ + "Dance", + "Dubstep", + "Electro", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 613, + "Name": "Onyra", + "HasPublicSongs": true, + "SongId": 703, + "Color": "EB9A07", + "DarkColor": "BD6300", + "DeezerID": 65839432, + "DeezerURL": "https://www.deezer.com/artist/65839432", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f3d05a102182e67e327e4411ca08ba80/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f3d05a102182e67e327e4411ca08ba80/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f3d05a102182e67e327e4411ca08ba80/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f3d05a102182e67e327e4411ca08ba80/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 33, + "NbFans": 16, + "Radio": true, + "TopGenres": [ + "Dance", + "Dubstep", + "Electro", + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 614, + "Name": "Noah Kahan", + "HasPublicSongs": true, + "SongId": 704, + "Color": "ACBE73", + "DarkColor": "425531", + "DeezerID": 11819131, + "DeezerURL": "https://www.deezer.com/artist/11819131", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/70a9065ae554c514f90544e2b41702f4/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/70a9065ae554c514f90544e2b41702f4/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/70a9065ae554c514f90544e2b41702f4/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/70a9065ae554c514f90544e2b41702f4/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 35, + "NbFans": 111869, + "Radio": true, + "TopGenres": [ + "Alternativo" + ], + "Rank": null + }, + { + "ArtistId": 615, + "Name": "Hippies and Cowboys", + "HasPublicSongs": true, + "SongId": 710, + "Color": "D0AB64", + "DarkColor": "7D5B3E", + "DeezerID": 157850242, + "DeezerURL": "https://www.deezer.com/artist/157850242", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/90c7be0e3aadbdad21913adeceb2bfd4/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/90c7be0e3aadbdad21913adeceb2bfd4/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/90c7be0e3aadbdad21913adeceb2bfd4/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/90c7be0e3aadbdad21913adeceb2bfd4/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 14, + "NbFans": 14, + "Radio": true, + "TopGenres": [ + "Rock" + ], + "Rank": null + }, + { + "ArtistId": 616, + "Name": "Brooklyn Van Zandt", + "HasPublicSongs": true, + "SongId": 749, + "Color": "E44A8C", + "DarkColor": "C52066", + "DeezerID": 89656842, + "DeezerURL": "https://www.deezer.com/artist/89656842", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d00768c23214c6171be543da60e8a91a/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d00768c23214c6171be543da60e8a91a/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d00768c23214c6171be543da60e8a91a/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d00768c23214c6171be543da60e8a91a/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 7, + "NbFans": 46, + "Radio": true, + "TopGenres": [ + "Pop" + ], + "Rank": null + }, + { + "ArtistId": 617, + "Name": "Mykel Dunn", + "HasPublicSongs": true, + "SongId": 759, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 88156322, + "DeezerURL": "https://www.deezer.com/artist/88156322", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/7c50df7eafce8fb4aa70f47037966779/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/7c50df7eafce8fb4aa70f47037966779/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/7c50df7eafce8fb4aa70f47037966779/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/7c50df7eafce8fb4aa70f47037966779/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 1, + "NbFans": 1, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 618, + "Name": "Jagex Audio Team", + "HasPublicSongs": true, + "SongId": 759, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 186970647, + "DeezerURL": "https://www.deezer.com/artist/186970647", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b2939a89fa29e5ba82d21bbd35e3ce99/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b2939a89fa29e5ba82d21bbd35e3ce99/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b2939a89fa29e5ba82d21bbd35e3ce99/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b2939a89fa29e5ba82d21bbd35e3ce99/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 18, + "NbFans": 23, + "Radio": true, + "TopGenres": [ + "Filmes/Games", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 619, + "Name": "Johann Strauss II", + "HasPublicSongs": true, + "SongId": 760, + "Color": "5E80B0", + "DarkColor": "3C5480", + "DeezerID": 10718, + "DeezerURL": "https://www.deezer.com/artist/10718", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/c57e2220b38c1356b1ee570692ecade3/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/c57e2220b38c1356b1ee570692ecade3/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/c57e2220b38c1356b1ee570692ecade3/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/c57e2220b38c1356b1ee570692ecade3/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 158, + "NbFans": 25131, + "Radio": true, + "TopGenres": [ + "Clássica" + ], + "Rank": null + }, + { + "ArtistId": 620, + "Name": "Richard Wagner", + "HasPublicSongs": true, + "SongId": 761, + "Color": "A10F1A", + "DarkColor": "731D07", + "DeezerID": 10523, + "DeezerURL": "https://www.deezer.com/artist/10523", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/eb70de526f4c85b07583aa4c2fee1d56/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/eb70de526f4c85b07583aa4c2fee1d56/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/eb70de526f4c85b07583aa4c2fee1d56/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/eb70de526f4c85b07583aa4c2fee1d56/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 391, + "NbFans": 76138, + "Radio": true, + "TopGenres": [ + "Clássica" + ], + "Rank": null + }, + { + "ArtistId": 621, + "Name": "Gioachino Rossini", + "HasPublicSongs": true, + "SongId": 774, + "Color": "FCBC4D", + "DarkColor": "CA7F04", + "DeezerID": 437167, + "DeezerURL": "https://www.deezer.com/artist/437167", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f4776a731af6abfda2c6024b2255e934/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f4776a731af6abfda2c6024b2255e934/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f4776a731af6abfda2c6024b2255e934/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f4776a731af6abfda2c6024b2255e934/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 109, + "NbFans": 13512, + "Radio": true, + "TopGenres": [ + "Clássica", + "Electro", + "Filmes/Games", + "Infantil", + "Trilhas de filmes" + ], + "Rank": null + }, + { + "ArtistId": 622, + "Name": "Johann Sebastian Bach", + "HasPublicSongs": true, + "SongId": 763, + "Color": "AD8A52", + "DarkColor": "563628", + "DeezerID": 1900, + "DeezerURL": "https://www.deezer.com/artist/1900", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/d84d324b290e8a1be4a6951db2d9692b/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/d84d324b290e8a1be4a6951db2d9692b/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/d84d324b290e8a1be4a6951db2d9692b/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/d84d324b290e8a1be4a6951db2d9692b/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 411, + "NbFans": 956638, + "Radio": true, + "TopGenres": [ + "Clássica", + "Infantil" + ], + "Rank": null + }, + { + "ArtistId": 623, + "Name": "Antonio Vivaldi", + "HasPublicSongs": true, + "SongId": 764, + "Color": "F28E24", + "DarkColor": "C94603", + "DeezerID": 4081, + "DeezerURL": "https://www.deezer.com/artist/4081", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b2db4f4aeb6284f7f3273bf51a2a8bed/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b2db4f4aeb6284f7f3273bf51a2a8bed/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b2db4f4aeb6284f7f3273bf51a2a8bed/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b2db4f4aeb6284f7f3273bf51a2a8bed/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 383, + "NbFans": 778990, + "Radio": true, + "TopGenres": [ + "Clássica", + "Infantil" + ], + "Rank": null + }, + { + "ArtistId": 624, + "Name": "Georges Bizet", + "HasPublicSongs": true, + "SongId": 765, + "Color": "E70030", + "DarkColor": "AC0528", + "DeezerID": 8762, + "DeezerURL": "https://www.deezer.com/artist/8762", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/fb92701ba6ea6d6d8cbd4dd6d88c05b8/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/fb92701ba6ea6d6d8cbd4dd6d88c05b8/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/fb92701ba6ea6d6d8cbd4dd6d88c05b8/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/fb92701ba6ea6d6d8cbd4dd6d88c05b8/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 236, + "NbFans": 13550, + "Radio": true, + "TopGenres": [ + "Clássica" + ], + "Rank": null + }, + { + "ArtistId": 625, + "Name": "Nikolai Nekrasov", + "HasPublicSongs": true, + "SongId": 775, + "Color": "EB8D69", + "DarkColor": "C27557", + "DeezerID": 166323667, + "DeezerURL": "https://www.deezer.com/artist/166323667", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/b3460b7902b86c86e385f44b4481eb51/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/b3460b7902b86c86e385f44b4481eb51/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/b3460b7902b86c86e385f44b4481eb51/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/b3460b7902b86c86e385f44b4481eb51/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 1, + "NbFans": 0, + "Radio": true, + "TopGenres": [ + "Clássica" + ], + "Rank": null + }, + { + "ArtistId": 626, + "Name": "Ludwig van Beethoven", + "HasPublicSongs": true, + "SongId": 776, + "Color": "D0AB64", + "DarkColor": "7D5B3E", + "DeezerID": 6144, + "DeezerURL": "https://www.deezer.com/artist/6144", + "PictureSmall": "https://cdn-images.dzcdn.net/images/artist/f16a31a3fe85c5a14debb1f811be1325/56x56-000000-80-0-0.jpg", + "PictureMedium": "https://cdn-images.dzcdn.net/images/artist/f16a31a3fe85c5a14debb1f811be1325/250x250-000000-80-0-0.jpg", + "PictureBig": "https://cdn-images.dzcdn.net/images/artist/f16a31a3fe85c5a14debb1f811be1325/500x500-000000-80-0-0.jpg", + "PictureXL": "https://cdn-images.dzcdn.net/images/artist/f16a31a3fe85c5a14debb1f811be1325/1000x1000-000000-80-0-0.jpg", + "NbAlbums": 433, + "NbFans": 1348813, + "Radio": true, + "TopGenres": [ + "Clássica", + "Infantil", + "Pop" + ], + "Rank": null + } + ] +} \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..12d6ce2 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,12 @@ +services: + frontend: + container_name: frontend + build: ./frontend + ports: + - "8083:80" + depends_on: + - backend + + backend: + container_name: backend + build: ./backend \ No newline at end of file diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/frontend/Dockerfile b/frontend/Dockerfile new file mode 100644 index 0000000..8cc6810 --- /dev/null +++ b/frontend/Dockerfile @@ -0,0 +1,31 @@ +# Build stage +FROM node:20-alpine AS build + +WORKDIR /app + +# Copy package files +COPY package*.json ./ + +# Install dependencies +RUN npm ci + +# Copy source code +COPY . . + +# Build the application +RUN npm run build + +# Production stage +FROM nginx:alpine + +# Copy built assets +COPY --from=build /app/dist /usr/share/nginx/html + +# Copy nginx configuration +COPY nginx.conf /etc/nginx/conf.d/default.conf + +# Expose port 80 +EXPOSE 80 + +# Start nginx +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000..40ede56 --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,54 @@ +# React + TypeScript + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh + +## Expanding the ESLint configuration + +If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules: + +```js +export default tseslint.config({ + extends: [ + // Remove ...tseslint.configs.recommended and replace with this + ...tseslint.configs.recommendedTypeChecked, + // Alternatively, use this for stricter rules + ...tseslint.configs.strictTypeChecked, + // Optionally, add this for stylistic rules + ...tseslint.configs.stylisticTypeChecked, + ], + languageOptions: { + // other options... + parserOptions: { + project: ['./tsconfig.node.json', './tsconfig.app.json'], + tsconfigRootDir: import.meta.dirname, + }, + }, +}) +``` + +You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules: + +```js +// eslint.config.js +import reactX from 'eslint-plugin-react-x' +import reactDom from 'eslint-plugin-react-dom' + +export default tseslint.config({ + plugins: { + // Add the react-x and react-dom plugins + 'react-x': reactX, + 'react-dom': reactDom, + }, + rules: { + // other rules... + // Enable its recommended typescript rules + ...reactX.configs['recommended-typescript'].rules, + ...reactDom.configs.recommended.rules, + }, +}) +``` diff --git a/frontend/eslint.config.js b/frontend/eslint.config.js new file mode 100644 index 0000000..092408a --- /dev/null +++ b/frontend/eslint.config.js @@ -0,0 +1,28 @@ +import js from '@eslint/js' +import globals from 'globals' +import reactHooks from 'eslint-plugin-react-hooks' +import reactRefresh from 'eslint-plugin-react-refresh' +import tseslint from 'typescript-eslint' + +export default tseslint.config( + { ignores: ['dist'] }, + { + extends: [js.configs.recommended, ...tseslint.configs.recommended], + files: ['**/*.{ts,tsx}'], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + plugins: { + 'react-hooks': reactHooks, + 'react-refresh': reactRefresh, + }, + rules: { + ...reactHooks.configs.recommended.rules, + 'react-refresh/only-export-components': [ + 'warn', + { allowConstantExport: true }, + ], + }, + }, +) diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000..b2d4acb --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,15 @@ + + + + + + + + + Ovo Quiz + + +
+ + + diff --git a/frontend/nginx.conf b/frontend/nginx.conf new file mode 100644 index 0000000..c2cc38f --- /dev/null +++ b/frontend/nginx.conf @@ -0,0 +1,42 @@ +server { + listen 80; + server_name localhost; + root /usr/share/nginx/html; + index index.html; + + # API proxy + location /api/ { + proxy_pass http://backend:8000; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection 'upgrade'; + proxy_set_header Host $host; + proxy_cache_bypass $http_upgrade; + } + + # Handle React router + location / { + try_files $uri $uri/ /index.html; + } + + # Enable gzip compression + gzip on; + gzip_vary on; + gzip_min_length 10240; + gzip_proxied expired no-cache no-store private auth; + gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml; + gzip_disable "MSIE [1-6]\."; + + # Security headers + add_header X-Frame-Options "SAMEORIGIN" always; + add_header X-XSS-Protection "1; mode=block" always; + add_header X-Content-Type-Options "nosniff" always; + add_header Referrer-Policy "no-referrer-when-downgrade" always; + add_header Content-Security-Policy "default-src 'self' http: https: data: blob: 'unsafe-inline'" always; + + # Cache control for static assets + location ~* \.(jpg|jpeg|png|gif|ico|css|js|svg)$ { + expires 7d; + add_header Cache-Control "public, no-transform"; + } +} \ No newline at end of file diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 0000000..12d68b4 --- /dev/null +++ b/frontend/package-lock.json @@ -0,0 +1,4078 @@ +{ + "name": "frontend", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "frontend", + "version": "0.0.0", + "dependencies": { + "@fontsource/inter": "^5.2.5", + "@fortawesome/fontawesome-svg-core": "^6.7.2", + "@fortawesome/free-solid-svg-icons": "^6.7.2", + "@fortawesome/react-fontawesome": "^0.2.2", + "axios": "^1.8.4", + "framer-motion": "^12.5.0", + "react": "^19.0.0", + "react-dom": "^19.0.0", + "react-router-dom": "^7.4.0", + "sass": "^1.86.0" + }, + "devDependencies": { + "@eslint/js": "^9.21.0", + "@types/react": "^19.0.10", + "@types/react-dom": "^19.0.4", + "@vitejs/plugin-react": "^4.3.4", + "eslint": "^9.21.0", + "eslint-plugin-react-hooks": "^5.1.0", + "eslint-plugin-react-refresh": "^0.4.19", + "globals": "^15.15.0", + "typescript": "~5.7.2", + "typescript-eslint": "^8.24.1", + "vite": "^6.2.0" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz", + "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.10.tgz", + "integrity": "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.10", + "@babel/helper-compilation-targets": "^7.26.5", + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helpers": "^7.26.10", + "@babel/parser": "^7.26.10", + "@babel/template": "^7.26.9", + "@babel/traverse": "^7.26.10", + "@babel/types": "^7.26.10", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.10.tgz", + "integrity": "sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.26.10", + "@babel/types": "^7.26.10", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz", + "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.26.5", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", + "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.10.tgz", + "integrity": "sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.10" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.10.tgz", + "integrity": "sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.26.10" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz", + "integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz", + "integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz", + "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.10.tgz", + "integrity": "sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.10", + "@babel/parser": "^7.26.10", + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.10", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/types": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.10.tgz", + "integrity": "sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz", + "integrity": "sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.1.tgz", + "integrity": "sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz", + "integrity": "sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.1.tgz", + "integrity": "sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz", + "integrity": "sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz", + "integrity": "sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz", + "integrity": "sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz", + "integrity": "sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz", + "integrity": "sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz", + "integrity": "sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz", + "integrity": "sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz", + "integrity": "sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz", + "integrity": "sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz", + "integrity": "sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz", + "integrity": "sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz", + "integrity": "sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz", + "integrity": "sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz", + "integrity": "sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz", + "integrity": "sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz", + "integrity": "sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz", + "integrity": "sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz", + "integrity": "sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz", + "integrity": "sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz", + "integrity": "sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz", + "integrity": "sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.1.tgz", + "integrity": "sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.2.tgz", + "integrity": "sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.6", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.0.tgz", + "integrity": "sha512-yJLLmLexii32mGrhW29qvU3QBVTu0GUmEf/J4XsBtVhp4JkIUFN/BjWqTF63yRvGApIDpZm5fa97LtYtINmfeQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz", + "integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.23.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.23.0.tgz", + "integrity": "sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz", + "integrity": "sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.12.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@fontsource/inter": { + "version": "5.2.5", + "resolved": "https://registry.npmjs.org/@fontsource/inter/-/inter-5.2.5.tgz", + "integrity": "sha512-kbsPKj0S4p44JdYRFiW78Td8Ge2sBVxi/PIBwmih+RpSXUdvS9nbs1HIiuUSPtRMi14CqLEZ/fbk7dj7vni1Sg==", + "license": "OFL-1.1", + "funding": { + "url": "https://github.com/sponsors/ayuhito" + } + }, + "node_modules/@fortawesome/fontawesome-common-types": { + "version": "6.7.2", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.7.2.tgz", + "integrity": "sha512-Zs+YeHUC5fkt7Mg1l6XTniei3k4bwG/yo3iFUtZWd/pMx9g3fdvkSK9E0FOC+++phXOka78uJcYb8JaFkW52Xg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/fontawesome-svg-core": { + "version": "6.7.2", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.7.2.tgz", + "integrity": "sha512-yxtOBWDrdi5DD5o1pmVdq3WMCvnobT0LU6R8RyyVXPvFRd2o79/0NCuQoCjNTeZz9EzA9xS3JxNWfv54RIHFEA==", + "license": "MIT", + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.7.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/free-solid-svg-icons": { + "version": "6.7.2", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.7.2.tgz", + "integrity": "sha512-GsBrnOzU8uj0LECDfD5zomZJIjrPhIlWU82AHwa2s40FKH+kcxQaBvBo3Z4TxyZHIyX8XTDxsyA33/Vx9eFuQA==", + "license": "(CC-BY-4.0 AND MIT)", + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.7.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/react-fontawesome": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@fortawesome/react-fontawesome/-/react-fontawesome-0.2.2.tgz", + "integrity": "sha512-EnkrprPNqI6SXJl//m29hpaNzOp1bruISWaOiRtkMi/xSvHJlzc2j2JAYS7egxt/EbjSNV/k6Xy0AQI6vB2+1g==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.8.1" + }, + "peerDependencies": { + "@fortawesome/fontawesome-svg-core": "~1 || ~6", + "react": ">=16.3" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.3.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", + "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@parcel/watcher": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz", + "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.1", + "@parcel/watcher-darwin-arm64": "2.5.1", + "@parcel/watcher-darwin-x64": "2.5.1", + "@parcel/watcher-freebsd-x64": "2.5.1", + "@parcel/watcher-linux-arm-glibc": "2.5.1", + "@parcel/watcher-linux-arm-musl": "2.5.1", + "@parcel/watcher-linux-arm64-glibc": "2.5.1", + "@parcel/watcher-linux-arm64-musl": "2.5.1", + "@parcel/watcher-linux-x64-glibc": "2.5.1", + "@parcel/watcher-linux-x64-musl": "2.5.1", + "@parcel/watcher-win32-arm64": "2.5.1", + "@parcel/watcher-win32-ia32": "2.5.1", + "@parcel/watcher-win32-x64": "2.5.1" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", + "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", + "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", + "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", + "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", + "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", + "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", + "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", + "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", + "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", + "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", + "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", + "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", + "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.36.0.tgz", + "integrity": "sha512-jgrXjjcEwN6XpZXL0HUeOVGfjXhPyxAbbhD0BlXUB+abTOpbPiN5Wb3kOT7yb+uEtATNYF5x5gIfwutmuBA26w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.36.0.tgz", + "integrity": "sha512-NyfuLvdPdNUfUNeYKUwPwKsE5SXa2J6bCt2LdB/N+AxShnkpiczi3tcLJrm5mA+eqpy0HmaIY9F6XCa32N5yzg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.36.0.tgz", + "integrity": "sha512-JQ1Jk5G4bGrD4pWJQzWsD8I1n1mgPXq33+/vP4sk8j/z/C2siRuxZtaUA7yMTf71TCZTZl/4e1bfzwUmFb3+rw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.36.0.tgz", + "integrity": "sha512-6c6wMZa1lrtiRsbDziCmjE53YbTkxMYhhnWnSW8R/yqsM7a6mSJ3uAVT0t8Y/DGt7gxUWYuFM4bwWk9XCJrFKA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.36.0.tgz", + "integrity": "sha512-KXVsijKeJXOl8QzXTsA+sHVDsFOmMCdBRgFmBb+mfEb/7geR7+C8ypAml4fquUt14ZyVXaw2o1FWhqAfOvA4sg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.36.0.tgz", + "integrity": "sha512-dVeWq1ebbvByI+ndz4IJcD4a09RJgRYmLccwlQ8bPd4olz3Y213uf1iwvc7ZaxNn2ab7bjc08PrtBgMu6nb4pQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.36.0.tgz", + "integrity": "sha512-bvXVU42mOVcF4le6XSjscdXjqx8okv4n5vmwgzcmtvFdifQ5U4dXFYaCB87namDRKlUL9ybVtLQ9ztnawaSzvg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.36.0.tgz", + "integrity": "sha512-JFIQrDJYrxOnyDQGYkqnNBtjDwTgbasdbUiQvcU8JmGDfValfH1lNpng+4FWlhaVIR4KPkeddYjsVVbmJYvDcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.36.0.tgz", + "integrity": "sha512-KqjYVh3oM1bj//5X7k79PSCZ6CvaVzb7Qs7VMWS+SlWB5M8p3FqufLP9VNp4CazJ0CsPDLwVD9r3vX7Ci4J56A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.36.0.tgz", + "integrity": "sha512-QiGnhScND+mAAtfHqeT+cB1S9yFnNQ/EwCg5yE3MzoaZZnIV0RV9O5alJAoJKX/sBONVKeZdMfO8QSaWEygMhw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.36.0.tgz", + "integrity": "sha512-1ZPyEDWF8phd4FQtTzMh8FQwqzvIjLsl6/84gzUxnMNFBtExBtpL51H67mV9xipuxl1AEAerRBgBwFNpkw8+Lg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.36.0.tgz", + "integrity": "sha512-VMPMEIUpPFKpPI9GZMhJrtu8rxnp6mJR3ZzQPykq4xc2GmdHj3Q4cA+7avMyegXy4n1v+Qynr9fR88BmyO74tg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.36.0.tgz", + "integrity": "sha512-ttE6ayb/kHwNRJGYLpuAvB7SMtOeQnVXEIpMtAvx3kepFQeowVED0n1K9nAdraHUPJ5hydEMxBpIR7o4nrm8uA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.36.0.tgz", + "integrity": "sha512-4a5gf2jpS0AIe7uBjxDeUMNcFmaRTbNv7NxI5xOCs4lhzsVyGR/0qBXduPnoWf6dGC365saTiwag8hP1imTgag==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.36.0.tgz", + "integrity": "sha512-5KtoW8UWmwFKQ96aQL3LlRXX16IMwyzMq/jSSVIIyAANiE1doaQsx/KRyhAvpHlPjPiSU/AYX/8m+lQ9VToxFQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.36.0.tgz", + "integrity": "sha512-sycrYZPrv2ag4OCvaN5js+f01eoZ2U+RmT5as8vhxiFz+kxwlHrsxOwKPSA8WyS+Wc6Epid9QeI/IkQ9NkgYyQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.36.0.tgz", + "integrity": "sha512-qbqt4N7tokFwwSVlWDsjfoHgviS3n/vZ8LK0h1uLG9TYIRuUTJC88E1xb3LM2iqZ/WTqNQjYrtmtGmrmmawB6A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.36.0.tgz", + "integrity": "sha512-t+RY0JuRamIocMuQcfwYSOkmdX9dtkr1PbhKW42AMvaDQa+jOdpUYysroTF/nuPpAaQMWp7ye+ndlmmthieJrQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.36.0.tgz", + "integrity": "sha512-aRXd7tRZkWLqGbChgcMMDEHjOKudo1kChb1Jt1IfR8cY/KIpgNviLeJy5FUb9IpSuQj8dU2fAYNMPW/hLKOSTw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "19.0.12", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.12.tgz", + "integrity": "sha512-V6Ar115dBDrjbtXSrS+/Oruobc+qVbbUxDFC1RSbRqLt5SYvxxyIDrSC85RWml54g+jfNeEMZhEj7wW07ONQhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.0.4", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.0.4.tgz", + "integrity": "sha512-4fSQ8vWFkg+TGhePfUzVmat3eC14TXYSsiiDSLI0dVLsrm9gZFABjPy/Qu6TKgl1tq1Bu1yDsuQgY3A3DOjCcg==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.27.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.27.0.tgz", + "integrity": "sha512-4henw4zkePi5p252c8ncBLzLce52SEUz2Ebj8faDnuUXz2UuHEONYcJ+G0oaCF+bYCWVZtrGzq3FD7YXetmnSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.27.0", + "@typescript-eslint/type-utils": "8.27.0", + "@typescript-eslint/utils": "8.27.0", + "@typescript-eslint/visitor-keys": "8.27.0", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.27.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.27.0.tgz", + "integrity": "sha512-XGwIabPallYipmcOk45DpsBSgLC64A0yvdAkrwEzwZ2viqGqRUJ8eEYoPz0CWnutgAFbNMPdsGGvzjSmcWVlEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.27.0", + "@typescript-eslint/types": "8.27.0", + "@typescript-eslint/typescript-estree": "8.27.0", + "@typescript-eslint/visitor-keys": "8.27.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.27.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.27.0.tgz", + "integrity": "sha512-8oI9GwPMQmBryaaxG1tOZdxXVeMDte6NyJA4i7/TWa4fBwgnAXYlIQP+uYOeqAaLJ2JRxlG9CAyL+C+YE9Xknw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.27.0", + "@typescript-eslint/visitor-keys": "8.27.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.27.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.27.0.tgz", + "integrity": "sha512-wVArTVcz1oJOIEJxui/nRhV0TXzD/zMSOYi/ggCfNq78EIszddXcJb7r4RCp/oBrjt8n9A0BSxRMKxHftpDxDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "8.27.0", + "@typescript-eslint/utils": "8.27.0", + "debug": "^4.3.4", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.27.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.27.0.tgz", + "integrity": "sha512-/6cp9yL72yUHAYq9g6DsAU+vVfvQmd1a8KyA81uvfDE21O2DwQ/qxlM4AR8TSdAu+kJLBDrEHKC5/W2/nxsY0A==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.27.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.27.0.tgz", + "integrity": "sha512-BnKq8cqPVoMw71O38a1tEb6iebEgGA80icSxW7g+kndx0o6ot6696HjG7NdgfuAVmVEtwXUr3L8R9ZuVjoQL6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.27.0", + "@typescript-eslint/visitor-keys": "8.27.0", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.27.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.27.0.tgz", + "integrity": "sha512-njkodcwH1yvmo31YWgRHNb/x1Xhhq4/m81PhtvmRngD8iHPehxffz1SNCO+kwaePhATC+kOa/ggmvPoPza5i0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "8.27.0", + "@typescript-eslint/types": "8.27.0", + "@typescript-eslint/typescript-estree": "8.27.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.27.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.27.0.tgz", + "integrity": "sha512-WsXQwMkILJvffP6z4U3FYJPlbf/j07HIxmDjZpbNvBJkMfvwXj5ACRkkHwBDvLBbDbtX5TdU64/rcvKJ/vuInQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.27.0", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.4.tgz", + "integrity": "sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.26.0", + "@babel/plugin-transform-react-jsx-self": "^7.25.9", + "@babel/plugin-transform-react-jsx-source": "^7.25.9", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.14.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0" + } + }, + "node_modules/acorn": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.8.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.4.tgz", + "integrity": "sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.24.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", + "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001706", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001706.tgz", + "integrity": "sha512-3ZczoTApMAZwPKYWmwVbQMFpXBDds3/0VciVoUwPUbldlYyVLmRVuRs/PcUZtHpbLRpzzDvrvnFuREsGt6lUug==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cookie": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz", + "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "license": "Apache-2.0", + "optional": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.123", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.123.tgz", + "integrity": "sha512-refir3NlutEZqlKaBLK0tzlVLe5P2wDKS7UQt/3SpibizgsRAPOsqQC3ffw1nlv3ze5gjRQZYHoPymgVZkplFA==", + "dev": true, + "license": "ISC" + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/esbuild": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.1.tgz", + "integrity": "sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.1", + "@esbuild/android-arm": "0.25.1", + "@esbuild/android-arm64": "0.25.1", + "@esbuild/android-x64": "0.25.1", + "@esbuild/darwin-arm64": "0.25.1", + "@esbuild/darwin-x64": "0.25.1", + "@esbuild/freebsd-arm64": "0.25.1", + "@esbuild/freebsd-x64": "0.25.1", + "@esbuild/linux-arm": "0.25.1", + "@esbuild/linux-arm64": "0.25.1", + "@esbuild/linux-ia32": "0.25.1", + "@esbuild/linux-loong64": "0.25.1", + "@esbuild/linux-mips64el": "0.25.1", + "@esbuild/linux-ppc64": "0.25.1", + "@esbuild/linux-riscv64": "0.25.1", + "@esbuild/linux-s390x": "0.25.1", + "@esbuild/linux-x64": "0.25.1", + "@esbuild/netbsd-arm64": "0.25.1", + "@esbuild/netbsd-x64": "0.25.1", + "@esbuild/openbsd-arm64": "0.25.1", + "@esbuild/openbsd-x64": "0.25.1", + "@esbuild/sunos-x64": "0.25.1", + "@esbuild/win32-arm64": "0.25.1", + "@esbuild/win32-ia32": "0.25.1", + "@esbuild/win32-x64": "0.25.1" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.23.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.23.0.tgz", + "integrity": "sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.19.2", + "@eslint/config-helpers": "^0.2.0", + "@eslint/core": "^0.12.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.23.0", + "@eslint/plugin-kit": "^0.2.7", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.3.0", + "eslint-visitor-keys": "^4.2.0", + "espree": "^10.3.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", + "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.19", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.19.tgz", + "integrity": "sha512-eyy8pcr/YxSYjBoqIFSrlbn9i/xvxUFa8CjzAYo9cFjgGXqq1hyjihcpZvxRLalpaWmueWR81xn7vuKmAFijDQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "eslint": ">=8.40" + } + }, + "node_modules/eslint-scope": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", + "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.14.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", + "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/framer-motion": { + "version": "12.5.0", + "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.5.0.tgz", + "integrity": "sha512-buPlioFbH9/W7rDzYh1C09AuZHAk2D1xTA1BlounJ2Rb9aRg84OXexP0GLd+R83v0khURdMX7b5MKnGTaSg5iA==", + "license": "MIT", + "dependencies": { + "motion-dom": "^12.5.0", + "motion-utils": "^12.5.0", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "@emotion/is-prop-valid": "*", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/is-prop-valid": { + "optional": true + }, + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "15.15.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz", + "integrity": "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immutable": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz", + "integrity": "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==", + "license": "MIT" + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/motion-dom": { + "version": "12.5.0", + "resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.5.0.tgz", + "integrity": "sha512-uH2PETDh7m+Hjd1UQQ56yHqwn83SAwNjimNPE/kC+Kds0t4Yh7+29rfo5wezVFpPOv57U4IuWved5d1x0kNhbQ==", + "license": "MIT", + "dependencies": { + "motion-utils": "^12.5.0" + } + }, + "node_modules/motion-utils": { + "version": "12.5.0", + "resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.5.0.tgz", + "integrity": "sha512-+hFFzvimn0sBMP9iPxBa9OtRX35ZQ3py0UHnb8U29VD+d8lQ8zH3dTygJWqK7av2v6yhg7scj9iZuvTS0f4+SA==", + "license": "MIT" + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "license": "MIT", + "optional": true + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true, + "license": "MIT" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", + "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/react/-/react-19.0.0.tgz", + "integrity": "sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0.tgz", + "integrity": "sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.25.0" + }, + "peerDependencies": { + "react": "^19.0.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-router": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.4.0.tgz", + "integrity": "sha512-Y2g5ObjkvX3VFeVt+0CIPuYd9PpgqCslG7ASSIdN73LwA1nNWzcMLaoMRJfP3prZFI92svxFwbn7XkLJ+UPQ6A==", + "license": "MIT", + "dependencies": { + "@types/cookie": "^0.6.0", + "cookie": "^1.0.1", + "set-cookie-parser": "^2.6.0", + "turbo-stream": "2.4.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + } + } + }, + "node_modules/react-router-dom": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.4.0.tgz", + "integrity": "sha512-VlksBPf3n2bijPvnA7nkTsXxMAKOj+bWp4R9c3i+bnwlSOFAGOkJkKhzy/OsRkWaBMICqcAl1JDzh9ZSOze9CA==", + "license": "MIT", + "dependencies": { + "react-router": "7.4.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.36.0.tgz", + "integrity": "sha512-zwATAXNQxUcd40zgtQG0ZafcRK4g004WtEl7kbuhTWPvf07PsfohXl39jVUvPF7jvNAIkKPQ2XrsDlWuxBd++Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.36.0", + "@rollup/rollup-android-arm64": "4.36.0", + "@rollup/rollup-darwin-arm64": "4.36.0", + "@rollup/rollup-darwin-x64": "4.36.0", + "@rollup/rollup-freebsd-arm64": "4.36.0", + "@rollup/rollup-freebsd-x64": "4.36.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.36.0", + "@rollup/rollup-linux-arm-musleabihf": "4.36.0", + "@rollup/rollup-linux-arm64-gnu": "4.36.0", + "@rollup/rollup-linux-arm64-musl": "4.36.0", + "@rollup/rollup-linux-loongarch64-gnu": "4.36.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.36.0", + "@rollup/rollup-linux-riscv64-gnu": "4.36.0", + "@rollup/rollup-linux-s390x-gnu": "4.36.0", + "@rollup/rollup-linux-x64-gnu": "4.36.0", + "@rollup/rollup-linux-x64-musl": "4.36.0", + "@rollup/rollup-win32-arm64-msvc": "4.36.0", + "@rollup/rollup-win32-ia32-msvc": "4.36.0", + "@rollup/rollup-win32-x64-msvc": "4.36.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/sass": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.86.0.tgz", + "integrity": "sha512-zV8vGUld/+mP4KbMLJMX7TyGCuUp7hnkOScgCMsWuHtns8CWBoz+vmEhoGMXsaJrbUP8gj+F1dLvVe79sK8UdA==", + "license": "MIT", + "dependencies": { + "chokidar": "^4.0.0", + "immutable": "^5.0.2", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.4.1" + } + }, + "node_modules/scheduler": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz", + "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/set-cookie-parser": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", + "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", + "license": "MIT" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/turbo-stream": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/turbo-stream/-/turbo-stream-2.4.0.tgz", + "integrity": "sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g==", + "license": "ISC" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typescript": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", + "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.27.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.27.0.tgz", + "integrity": "sha512-ZZ/8+Y0rRUMuW1gJaPtLWe4ryHbsPLzzibk5Sq+IFa2aOH1Vo0gPr1fbA6pOnzBke7zC2Da4w8AyCgxKXo3lqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.27.0", + "@typescript-eslint/parser": "8.27.0", + "@typescript-eslint/utils": "8.27.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/vite": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.2.tgz", + "integrity": "sha512-yW7PeMM+LkDzc7CgJuRLMW2Jz0FxMOsVJ8Lv3gpgW9WLcb9cTW+121UEr1hvmfR7w3SegR5ItvYyzVz1vxNJgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "postcss": "^8.5.3", + "rollup": "^4.30.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..b0f7f82 --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,37 @@ +{ + "name": "frontend", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc -b && vite build", + "lint": "eslint .", + "preview": "vite preview" + }, + "dependencies": { + "@fontsource/inter": "^5.2.5", + "@fortawesome/fontawesome-svg-core": "^6.7.2", + "@fortawesome/free-solid-svg-icons": "^6.7.2", + "@fortawesome/react-fontawesome": "^0.2.2", + "axios": "^1.8.4", + "framer-motion": "^12.5.0", + "react": "^19.0.0", + "react-dom": "^19.0.0", + "react-router-dom": "^7.4.0", + "sass": "^1.86.0" + }, + "devDependencies": { + "@eslint/js": "^9.21.0", + "@types/react": "^19.0.10", + "@types/react-dom": "^19.0.4", + "@vitejs/plugin-react": "^4.3.4", + "eslint": "^9.21.0", + "eslint-plugin-react-hooks": "^5.1.0", + "eslint-plugin-react-refresh": "^0.4.19", + "globals": "^15.15.0", + "typescript": "~5.7.2", + "typescript-eslint": "^8.24.1", + "vite": "^6.2.0" + } +} diff --git a/frontend/public/logo.svg b/frontend/public/logo.svg new file mode 100644 index 0000000..6eafbdc --- /dev/null +++ b/frontend/public/logo.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/frontend/public/vite.svg b/frontend/public/vite.svg new file mode 100644 index 0000000..e7b8dfb --- /dev/null +++ b/frontend/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/src/App.css b/frontend/src/App.css new file mode 100644 index 0000000..b9d355d --- /dev/null +++ b/frontend/src/App.css @@ -0,0 +1,42 @@ +#root { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +.logo { + height: 6em; + padding: 1.5em; + will-change: filter; + transition: filter 300ms; +} +.logo:hover { + filter: drop-shadow(0 0 2em #646cffaa); +} +.logo.react:hover { + filter: drop-shadow(0 0 2em #61dafbaa); +} + +@keyframes logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +@media (prefers-reduced-motion: no-preference) { + a:nth-of-type(2) .logo { + animation: logo-spin infinite 20s linear; + } +} + +.card { + padding: 2em; +} + +.read-the-docs { + color: #888; +} diff --git a/frontend/src/App.scss b/frontend/src/App.scss new file mode 100644 index 0000000..0d03742 --- /dev/null +++ b/frontend/src/App.scss @@ -0,0 +1,21 @@ +@use 'styles/variables.scss'; +@use 'styles/mixins.scss'; +@use 'styles/reset.scss'; +@use 'styles/global.scss'; + +.app-container { + width: 100%; + height: 100%; + padding: variables.$spacing-md; + display: flex; + justify-content: center; + align-items: center; + + @include mixins.tablet { + padding: variables.$spacing-lg; + } + + @include mixins.desktop { + padding: variables.$spacing-xl; + } +} \ No newline at end of file diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx new file mode 100644 index 0000000..37a4642 --- /dev/null +++ b/frontend/src/App.tsx @@ -0,0 +1,50 @@ +import React, { useState } from 'react'; +import { AnimatePresence } from 'framer-motion'; +import AppLayout from './components/layout/AppLayout'; +import WelcomeScreen from './components/game/WelcomeScreen'; +import GameScreen from './components/game/GameScreen'; +import DynamicTheme from './components/DynamicTheme'; +import { GameSettings } from './types/game'; +import './App.scss'; + +// App name centralized here for easy updates +export const APP_NAME = 'Ovo Quiz'; + +const App: React.FC = () => { + const [gameState, setGameState] = useState<'welcome' | 'playing'>('welcome'); + const [gameSettings, setGameSettings] = useState({ + numSongs: 5, + numChoices: 4 + }); + + const handleStartGame = (numSongs: number, numChoices: number, genres?: string[], playlistId?: string) => { + setGameSettings({ numSongs, numChoices, genres, playlist_id: playlistId }); + setGameState('playing'); + }; + + const handleExitGame = () => { + setGameState('welcome'); + }; + + return ( + + +
+ + {gameState === 'welcome' && ( + + )} + {gameState === 'playing' && ( + + )} + +
+
+ ); +}; + +export default App; diff --git a/frontend/src/api/api.ts b/frontend/src/api/api.ts new file mode 100644 index 0000000..74e5ee3 --- /dev/null +++ b/frontend/src/api/api.ts @@ -0,0 +1,94 @@ +import axios from 'axios'; +import { + Song, + GameSettings, + GameSession, + GameResponse, + AnswerRequest, + AnswerResponse, + GameSummary +} from '../types/game'; + +// Create axios instance with base URL +const api = axios.create({ + baseURL: import.meta.env.VITE_API_URL || '/api', + headers: { + 'Content-Type': 'application/json', + }, +}); + +// Song API +export const getSongs = async (limit = 20, offset = 0): Promise => { + const response = await api.get(`/songs?limit=${limit}&offset=${offset}`); + return response.data; +}; + +export const getSongCount = async (): Promise => { + const response = await api.get('/songs/count'); + return response.data.count; +}; + +export const getGenres = async (): Promise => { + const response = await api.get('/songs/genres'); + return response.data; +}; + +export const getSongById = async (songId: number): Promise => { + const response = await api.get(`/songs/${songId}`); + return response.data; +}; + +export const getRandomSongs = async (count = 5): Promise => { + const response = await api.get(`/songs/random?count=${count}`); + return response.data; +}; + +// Game API +export const createGame = async (settings: GameSettings): Promise => { + // Map frontend settings to API settings format + const apiSettings = { + num_songs: settings.numSongs, + num_choices: settings.numChoices, + genres: settings.genres + }; + + console.log('Creating game with settings:', apiSettings); + + const response = await api.post('/game/create', apiSettings); + return response.data; +}; + +export const startGame = async (sessionId: string): Promise => { + const response = await api.post(`/game/start/${sessionId}`); + return response.data; +}; + +export const getGameState = async (sessionId: string): Promise => { + const response = await api.get(`/game/state/${sessionId}`); + return response.data; +}; + +export const answerQuestion = async (answerRequest: AnswerRequest): Promise => { + const response = await api.post('/game/answer', answerRequest); + return response.data; +}; + +export const getGameSummary = async (sessionId: string): Promise => { + const response = await api.get(`/game/summary/${sessionId}`); + return response.data; +}; + +// Preview API +export const getAudioPreview = async (songId: number): Promise => { + const response = await api.get(`/preview/audio/${songId}`); + return response.data.preview_url; +}; + +export const getBlurredCover = async (songId: number, blurLevel = 10): Promise<{ + blurred_url: string; + original_url: string; + blur_level: number; +}> => { + const response = await api.get(`/preview/cover/${songId}?blur_level=${blurLevel}`); + return response.data; +}; \ No newline at end of file diff --git a/frontend/src/assets/react.svg b/frontend/src/assets/react.svg new file mode 100644 index 0000000..6c87de9 --- /dev/null +++ b/frontend/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/src/components/DynamicTheme.tsx b/frontend/src/components/DynamicTheme.tsx new file mode 100644 index 0000000..2ea6dd7 --- /dev/null +++ b/frontend/src/components/DynamicTheme.tsx @@ -0,0 +1,98 @@ +import React from 'react'; +import { useTheme } from '../contexts/ThemeContext'; + +const DynamicTheme: React.FC = () => { + const { songColor, getColorRgb, getLighterColor } = useTheme(); + const { r, g, b } = getColorRgb(); + + // Create CSS variables for different shades and opacities + const variables = { + '--accent-color': `#${songColor}`, + '--accent-rgb': `${r}, ${g}, ${b}`, + '--accent-light': getLighterColor(0.2), + '--accent-glow': `0 0 20px rgba(${r}, ${g}, ${b}, 0.4)`, + '--accent-border': `rgba(${r}, ${g}, ${b}, 0.7)`, + }; + + // Generate CSS string + const cssVariables = Object.entries(variables) + .map(([key, value]) => `${key}: ${value};`) + .join('\n'); + + return ( + + ); +}; + +export default DynamicTheme; \ No newline at end of file diff --git a/frontend/src/components/game/GameScreen/GameScreen.scss b/frontend/src/components/game/GameScreen/GameScreen.scss new file mode 100644 index 0000000..4345027 --- /dev/null +++ b/frontend/src/components/game/GameScreen/GameScreen.scss @@ -0,0 +1,623 @@ +@use "sass:color"; +@use '../../../styles/variables.scss' as variables; +@use '../../../styles/mixins.scss' as mixins; + +.game-screen { + width: 100%; + max-width: 1200px; + margin: 0 auto; + padding: 1rem; + height: 100%; + display: flex; + flex-direction: column; + color: rgba(255, 255, 255, 0.9); + position: relative; + overflow: hidden; + + .loading { + display: flex; + justify-content: center; + align-items: center; + height: 100%; + width: 100%; + + h2 { + color: var(--text-primary); + font-size: 1.5rem; + } + } + + .game-header { + display: flex; + align-items: center; + padding: 0.75rem 1rem; + background-color: rgba(0, 0, 0, 0.25); + backdrop-filter: blur(15px); + -webkit-backdrop-filter: blur(15px); + border-radius: 12px; + margin-bottom: 1.25rem; + flex-wrap: wrap; + gap: 0.5rem; + box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); + border: 1px solid rgba(255, 255, 255, 0.05); + transition: all 0.3s ease; + + .back-button, .exit-button { + padding: 0.4rem 0.8rem; + background-color: rgba(0, 0, 0, 0.2); + border: 1px solid rgba(255, 255, 255, 0.1); + border-radius: 8px; + color: #fff; + cursor: pointer; + transition: all 0.2s ease; + font-size: 0.9rem; + font-weight: 500; + + &:hover { + background-color: rgba(255, 255, 255, 0.15); + transform: translateY(-1px); + } + + &:active { + transform: translateY(1px); + } + } + + .score-display { + font-size: 1rem; + font-weight: bold; + color: var(--text-primary); + margin-left: auto; + transition: all 0.3s ease; + + span { + padding: 0.5rem 1rem; + background-color: rgba(0, 0, 0, 0.3); + border: 1px solid rgba(var(--accent-rgb), 0.5); + border-radius: 10px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); + display: inline-block; + } + } + + .timer-bar { + width: 100%; + height: 8px; + background-color: rgba(255, 255, 255, 0.1); + border-radius: 4px; + margin-top: 0.5rem; + overflow: hidden; + order: 3; + position: relative; + + .timer-progress { + height: 100%; + background: linear-gradient(90deg, var(--accent-color), var(--accent-light)); + border-radius: 4px; + transition: width 1s linear; + position: relative; + overflow: hidden; + + &::after { + content: ''; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: linear-gradient( + 90deg, + transparent 0%, + rgba(255, 255, 255, 0.1) 50%, + transparent 100% + ); + animation: shimmer 2s infinite; + } + } + } + + .volume-control { + display: flex; + align-items: center; + margin-left: 0.5rem; + gap: 8px; + } + + .volume-icon { + color: rgba(255, 255, 255, 0.7); + font-size: 16px; + } + + .volume-slider { + -webkit-appearance: none; + appearance: none; + width: 80px; + height: 4px; + background: rgba(255, 255, 255, 0.15); + border-radius: 2px; + transition: all 0.2s ease; + + &:hover { + background: rgba(255, 255, 255, 0.25); + } + + &::-webkit-slider-thumb { + -webkit-appearance: none; + appearance: none; + width: 14px; + height: 14px; + border-radius: 50%; + background: var(--accent-color); + cursor: pointer; + box-shadow: 0 0 5px rgba(var(--accent-rgb), 0.5); + transition: all 0.2s ease; + } + + &::-moz-range-thumb { + width: 14px; + height: 14px; + border-radius: 50%; + background: var(--accent-color); + cursor: pointer; + box-shadow: 0 0 5px rgba(var(--accent-rgb), 0.5); + transition: all 0.2s ease; + } + + &::-webkit-slider-thumb:hover { + transform: scale(1.1); + } + + &::-moz-range-thumb:hover { + transform: scale(1.1); + } + } + } + + .game-content { + flex: 1; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + padding: 1rem; + + .question-container { + width: 100%; + max-width: 600px; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 16px; + padding: 2rem; + display: flex; + flex-direction: column; + align-items: center; + backdrop-filter: blur(15px); + -webkit-backdrop-filter: blur(15px); + border: 1px solid rgba(255, 255, 255, 0.05); + box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); + transition: all 0.3s ease; + + h2 { + margin-bottom: 1.5rem; + font-size: 1.8rem; + color: var(--text-primary); + position: relative; + font-weight: 700; + + &::after { + content: ''; + position: absolute; + bottom: -8px; + left: 50%; + transform: translateX(-50%); + width: 40px; + height: 3px; + background: var(--accent-color); + border-radius: 2px; + } + } + + .audio-player { + width: 100%; + display: flex; + justify-content: center; + align-items: center; + margin-bottom: 2rem; + + .play-status { + padding: 0.6rem 1.2rem; + text-align: center; + font-weight: bold; + color: var(--accent-color); + background-color: rgba(0, 0, 0, 0.2); + border: 1px solid rgba(var(--accent-rgb), 0.2); + border-radius: 30px; + backdrop-filter: blur(8px); + -webkit-backdrop-filter: blur(8px); + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); + transition: all 0.3s ease; + + &:hover { + background-color: rgba(0, 0, 0, 0.25); + box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); + } + } + + .loading-spinner { + font-style: italic; + color: rgba(255, 255, 255, 0.7); + display: flex; + align-items: center; + gap: 8px; + + &::before { + content: ''; + display: inline-block; + width: 16px; + height: 16px; + border: 2px solid rgba(255, 255, 255, 0.3); + border-top-color: var(--accent-color); + border-radius: 50%; + animation: spin 1s linear infinite; + } + } + } + + .cover-image-container { + display: flex; + flex-direction: column; + align-items: center; + margin-bottom: 1.5rem; + transition: all 0.5s ease; + + &.reveal-mode { + margin-bottom: 2.5rem; + } + } + + .cover-image { + width: 220px; + height: 220px; + margin-bottom: 0.5rem; + border-radius: 12px; + overflow: hidden; + box-shadow: var(--accent-glow), 0 8px 20px rgba(0, 0, 0, 0.3); + border: 1px solid rgba(var(--accent-rgb), 0.3); + transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); + transform-style: preserve-3d; + perspective: 1000px; + + &.blurred { + filter: blur(10px); + transform: scale(0.95); + } + + &.clear { + filter: blur(0); + transform: scale(1) rotateY(360deg); + } + + img { + width: 100%; + height: 100%; + object-fit: cover; + transition: all 0.5s ease; + } + } + + .song-details { + display: flex; + flex-direction: column; + align-items: center; + text-align: center; + margin-top: 1rem; + padding: 0.8rem 1.5rem; + border-radius: 12px; + background: rgba(0, 0, 0, 0.35); + min-width: 220px; + max-width: 90%; + backdrop-filter: blur(10px); + -webkit-backdrop-filter: blur(10px); + box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); + border: 1px solid rgba(255, 255, 255, 0.05); + transform: translateY(0); + transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); + + .song-title { + font-size: 1.3rem; + font-weight: 700; + color: white; + margin: 0 0 0.3rem 0; + width: 100%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); + } + + .song-artists { + font-size: 1rem; + color: rgba(255, 255, 255, 0.85); + margin: 0; + font-weight: 400; + width: 100%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + } + + .options-container { + width: 100%; + display: grid; + grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); + gap: 1rem; + margin-bottom: 2rem; + + .option-button { + padding: 1rem 1.2rem; + background-color: rgba(255, 255, 255, 0.07); + border: 1px solid rgba(255, 255, 255, 0.1); + border-radius: 12px; + color: white; + text-align: left; + cursor: pointer; + transition: all 0.2s ease; + backdrop-filter: blur(5px); + -webkit-backdrop-filter: blur(5px); + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); + font-weight: 500; + font-size: 0.95rem; + position: relative; + overflow: hidden; + + &:hover { + background-color: rgba(255, 255, 255, 0.12); + transform: translateY(-2px); + box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); + } + + &:active { + transform: translateY(1px); + } + + &.selected { + border-color: var(--accent-color); + background-color: rgba(var(--accent-rgb), 0.15); + box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.3); + } + + &.correct { + border-color: #10b981; + background-color: rgba(16, 185, 129, 0.2); + box-shadow: 0 0 15px rgba(16, 185, 129, 0.3); + + &::after { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(45deg, + rgba(16, 185, 129, 0) 0%, + rgba(16, 185, 129, 0.15) 50%, + rgba(16, 185, 129, 0) 100% + ); + animation: shimmer 2s infinite; + } + } + + &.incorrect { + border-color: #ef4444; + background-color: rgba(239, 68, 68, 0.2); + box-shadow: 0 0 15px rgba(239, 68, 68, 0.15); + } + + &:disabled { + cursor: default; + transform: translateY(0); + } + } + } + + .next-button { + padding: 0.9rem 2.5rem; + background-color: var(--accent-color); + color: white; + border: none; + border-radius: 30px; + font-weight: bold; + font-size: 1.05rem; + cursor: pointer; + transition: all 0.25s ease; + box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.4), 0 3px 0 rgba(0, 0, 0, 0.2); + text-transform: uppercase; + letter-spacing: 0.5px; + + &:hover { + background-color: var(--accent-light); + transform: translateY(-2px); + box-shadow: 0 7px 20px rgba(var(--accent-rgb), 0.45), 0 3px 0 rgba(0, 0, 0, 0.2); + } + + &:active { + transform: translateY(1px); + box-shadow: 0 3px 10px rgba(var(--accent-rgb), 0.4), 0 2px 0 rgba(0, 0, 0, 0.2); + } + } + + .result-container { + width: 100%; + display: flex; + flex-direction: column; + align-items: center; + gap: 1.5rem; + } + + .result-message { + width: 100%; + padding: 0.5rem; + border-radius: 12px; + text-align: center; + font-weight: bold; + + .correct-message { + background-color: rgba(16, 185, 129, 0.15); + color: #10b981; + padding: 1.2rem; + border-radius: 12px; + border: 1px solid rgba(16, 185, 129, 0.3); + box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2); + font-size: 1.1rem; + } + + .incorrect-message { + background-color: rgba(239, 68, 68, 0.15); + color: #ef4444; + padding: 1.2rem; + border-radius: 12px; + border: 1px solid rgba(239, 68, 68, 0.3); + box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2); + font-size: 1.1rem; + } + } + } + } + + // Responsive adjustments + @media (max-width: 768px) { + .game-header { + flex-direction: row; + flex-wrap: wrap; + gap: 0.5rem; + padding: 0.5rem 0.75rem; + + .back-button { + order: 1; + font-size: 0.8rem; + padding: 0.3rem 0.6rem; + } + + .score-display { + order: 2; + font-size: 0.9rem; + + span { + padding: 0.4rem 0.8rem; + } + } + + .timer-bar { + order: 4; + width: 100%; + margin: 0.3rem 0; + height: 6px; + } + + .volume-control { + order: 3; + margin-left: auto; + + .volume-slider { + width: 60px; + } + } + } + + .game-content { + padding: 0.5rem; + + .question-container { + padding: 1.5rem 1rem; + + h2 { + font-size: 1.5rem; + margin-bottom: 1.2rem; + } + + .audio-player { + margin-bottom: 1.5rem; + + .play-status { + padding: 0.5rem 1rem; + font-size: 0.9rem; + } + } + + .cover-image { + width: 180px; + height: 180px; + } + + .song-details { + min-width: 180px; + padding: 0.6rem 1rem; + + .song-title { + font-size: 1.1rem; + } + + .song-artists { + font-size: 0.9rem; + } + } + + .options-container { + grid-template-columns: 1fr; + gap: 0.8rem; + + .option-button { + padding: 0.8rem 1rem; + font-size: 0.9rem; + } + } + + .next-button { + padding: 0.7rem 2rem; + font-size: 0.95rem; + } + + .result-message { + .correct-message, + .incorrect-message { + padding: 1rem; + font-size: 0.95rem; + } + } + } + } + } +} + +@keyframes shimmer { + 0% { + transform: translateX(-100%); + } + 100% { + transform: translateX(100%); + } +} + +@keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} + +@keyframes pulse { + 0% { + opacity: 0.6; + transform: scale(1); + } + 50% { + opacity: 0.3; + transform: scale(1.05); + } + 100% { + opacity: 0.6; + transform: scale(1); + } +} diff --git a/frontend/src/components/game/GameScreen/GameScreen.tsx b/frontend/src/components/game/GameScreen/GameScreen.tsx new file mode 100644 index 0000000..dc1fcd0 --- /dev/null +++ b/frontend/src/components/game/GameScreen/GameScreen.tsx @@ -0,0 +1,568 @@ +import React, { useEffect, useState, useCallback, useRef } from 'react'; +import { motion, AnimatePresence } from 'framer-motion'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faArrowLeft, faVolumeUp } from '@fortawesome/free-solid-svg-icons'; +import useGame from '../../../hooks/useGame'; +import useAudioPlayer from '../../../hooks/useAudioPlayer'; +import useTimer from '../../../hooks/useTimer'; +import { useTheme } from '../../../contexts/ThemeContext'; +import { GameSettings, GameSummaryType, Song } from '../../../types/game'; +import LoadingScreen from '../../ui/LoadingScreen'; +import GameSummary from '../GameSummary'; +import './GameScreen.scss'; + +interface GameScreenProps { + onGameComplete?: (summary?: GameSummaryType) => void; + onExit: () => void; + settings: GameSettings; +} + +const GameScreen: React.FC = ({ onGameComplete, onExit, settings }) => { + // Game state + const [selectedOption, setSelectedOption] = useState(null); + const [isAnswerSubmitted, setIsAnswerSubmitted] = useState(false); + const [isCorrect, setIsCorrect] = useState(null); + const [score, setScore] = useState(0); + const [previewUrl, setPreviewUrl] = useState(''); + const [volume, setVolume] = useState(0.7); // Default volume + const [showNextButton, setShowNextButton] = useState(false); + const [gameCompleted, setGameCompleted] = useState(false); + const [showSummary, setShowSummary] = useState(false); // New state to control summary visibility + const [answeredQuestions, setAnsweredQuestions] = useState<{id: string, correct: boolean, answer: string, correctAnswer: string}[]>([]); + const [currentQuestion, setCurrentQuestion] = useState(null); + const [showClearCover, setShowClearCover] = useState(false); // State to control whether to show the clear cover + const [isLoading, setIsLoading] = useState(true); // State to track loading status + + // Get theme functions + const { setSongColor } = useTheme(); + + // Store the current displayed question in a ref to prevent updates when answering + const displayedQuestionRef = useRef(null); + + // Ref to track if we've initiated game creation + const hasInitiatedGameRef = useRef(false); + + // Ref to track points earned in the last answer + const pointsEarnedRef = useRef(0); + + // Ref to track if we've shown the initial loading screen already + const initialLoadCompleteRef = useRef(false); + + // Initialize game hook + const { createGame, answerQuestion, resetGame, getCurrentQuestion, hasActiveGame, gameState } = useGame({ + onGameComplete: (summary) => { + setGameCompleted(true); + if (onGameComplete) { + onGameComplete(summary); + } + } + }); + + // Initialize audio player with the current preview URL + const [audioState, audioControls] = useAudioPlayer(previewUrl); + + // Initialize timer - 30 seconds per question, but don't start automatically + const [timerState, timerControls] = useTimer(30, () => { + // Auto-submit if time runs out + if (!isAnswerSubmitted && displayedQuestionRef.current) { + // For timeout, we'll use handleTimerComplete instead + handleTimerComplete(); + } + }, { autoStart: false }); + + // Handle option selection - directly submit the answer on click + const handleOptionSelect = useCallback((optionId: string) => { + if (isAnswerSubmitted) return; + + // Set selected option + setSelectedOption(optionId); + + // Find the index of the selected option + const selectedIndex = currentQuestion.options.findIndex((option: Song) => option.id === optionId); + if (selectedIndex === -1) return; + + // Submit answer immediately + answerQuestion(selectedIndex).then(result => { + if (result) { + const isCorrect = result.correct; + setIsCorrect(isCorrect); + // Update score with base score + time bonus if correct + setScore(result.score); + setIsAnswerSubmitted(true); + + // Add a small delay before showing the clear cover for better visual effect + setTimeout(() => { + setShowClearCover(true); // Show the clear cover when the answer is submitted + }, 300); + + // Store points earned for display + if (isCorrect) { + // Store points in a ref to access in the UI + pointsEarnedRef.current = result.points_earned; + } + + // If game is complete + if (result.game_complete) { + setGameCompleted(true); + } else { + // Show the next button after a short delay + setTimeout(() => { + setShowNextButton(true); + }, 1800); + } + + // Add this question to the answered questions + setAnsweredQuestions(prev => [ + ...prev, + { + id: currentQuestion.correctOption.id, + correct: isCorrect, + answer: optionId ? currentQuestion.options.find((o: Song) => o.id === optionId)?.title || "" : "", + correctAnswer: currentQuestion.correctOption.title + } + ]); + } + }); + }, [isAnswerSubmitted, currentQuestion, answerQuestion]); + + // Handle timer expiration + const handleTimerComplete = useCallback(() => { + if (!isAnswerSubmitted) { + audioControls.pause(); + + // For timeout, submit with -1 index + answerQuestion(-1).then(result => { + if (result) { + setIsCorrect(false); // Always incorrect for timeout + setScore(result.score); + setIsAnswerSubmitted(true); + + setTimeout(() => { + setShowClearCover(true); + }, 300); + + pointsEarnedRef.current = 0; // No points for timeout + + if (result.game_complete) { + setGameCompleted(true); + } else { + setTimeout(() => { + setShowNextButton(true); + }, 1800); + } + + setAnsweredQuestions(prev => [ + ...prev, + { + id: currentQuestion.correctOption.id, + correct: false, + answer: "timeout", + correctAnswer: currentQuestion.correctOption.title + } + ]); + } + }); + } + }, [isAnswerSubmitted, audioControls, answerQuestion, currentQuestion]); + + // Set volume for audio player + useEffect(() => { + audioControls.setVolume(volume); + }, [volume, audioControls]); + + // Start a new game when component mounts + useEffect(() => { + // Only create a new game if: + // 1. We haven't initiated a game creation yet + // 2. There's no active game + // 3. We're not in the completed state + if (!hasInitiatedGameRef.current && !hasActiveGame() && !gameCompleted) { + console.log('Initiating game creation'); + hasInitiatedGameRef.current = true; + createGame(settings); + } + }, [createGame, settings, hasActiveGame, gameCompleted]); + + // Update current question only when starting a new question + useEffect(() => { + if (!isAnswerSubmitted) { + const question = getCurrentQuestion(); + if (question) { + setCurrentQuestion(question); + displayedQuestionRef.current = question; // Set displayed question on update + setShowClearCover(false); // Ensure cover is blurred for new questions + + // Only set loading to false if this is the initial load + if (!initialLoadCompleteRef.current) { + setIsLoading(false); // Question loaded successfully + initialLoadCompleteRef.current = true; // Mark initial load as complete + } + + // Update the theme color with the song's color + if (question.songColor) { + setSongColor(question.songColor); + } + } + } + }, [getCurrentQuestion, isAnswerSubmitted, setSongColor]); + + // Update preview URL when current question changes + useEffect(() => { + if (!isAnswerSubmitted && currentQuestion?.correctOption?.audioUrl) { + setPreviewUrl(currentQuestion.correctOption.audioUrl); + } + }, [currentQuestion, isAnswerSubmitted]); + + // Play audio and start timer when audio is ready + useEffect(() => { + if (previewUrl && !audioState.isLoading && !isAnswerSubmitted && !audioState.isPlaying && audioState.duration > 0) { + // Play audio + audioControls.play(); + + // Start timer + timerControls.start(); + } + }, [previewUrl, audioState.isLoading, audioState.duration, audioState.isPlaying, audioControls, timerControls, isAnswerSubmitted]); + + // Handle proceeding to next question + const handleNextQuestion = useCallback(() => { + // Stop any playing audio + audioControls.stop(); + + // Reset state for next question + timerControls.reset(); + setShowNextButton(false); + setIsAnswerSubmitted(false); + setSelectedOption(null); + setIsCorrect(null); + setShowClearCover(false); // Reset cover image to blurred state + pointsEarnedRef.current = 0; // Reset points earned + // Don't set loading to true for song transitions + }, [audioControls, timerControls]); + + // Handle exit game + const handleExitGame = useCallback(() => { + audioControls.stop(); + resetGame(); + // Reset our state trackers + hasInitiatedGameRef.current = false; + initialLoadCompleteRef.current = false; // Reset initial load flag + onExit(); // Call the onExit prop directly + }, [audioControls, resetGame, onExit]); + + // Handle volume change + const handleVolumeChange = useCallback((e: React.ChangeEvent) => { + const newVolume = parseFloat(e.target.value); + setVolume(newVolume); + }, []); + + // Use the displayed question from the ref for rendering + const questionToDisplay = displayedQuestionRef.current; + + // Handle playing again + const handlePlayAgain = useCallback(() => { + // Stop any playing audio + audioControls.stop(); + + // Reset all game state + setShowSummary(false); + setGameCompleted(false); + setAnsweredQuestions([]); + setScore(0); + setSelectedOption(null); + setIsAnswerSubmitted(false); + setIsCorrect(null); + setShowNextButton(false); + setPreviewUrl(''); + pointsEarnedRef.current = 0; + setShowClearCover(false); // Ensure cover is blurred when starting a new game + setIsLoading(true); // Show loading screen for new game + initialLoadCompleteRef.current = false; // Reset initial load flag + + // Reset the initiated game ref + hasInitiatedGameRef.current = false; + + // Create a new game + createGame(settings); + }, [audioControls, createGame, settings]); + + // Handle viewing game summary + const handleViewSummary = useCallback(() => { + setShowSummary(true); + }, []); + + // Update loading state when game state changes + useEffect(() => { + // Only show loading during initial load + if (!initialLoadCompleteRef.current) { + setIsLoading(gameState.loading); + } + }, [gameState.loading]); + + // Update loading state based on audio loading + useEffect(() => { + // Only show loading during initial load + if (!initialLoadCompleteRef.current) { + // If audio is loading, show loading screen + if (previewUrl && audioState.isLoading) { + setIsLoading(true); + } + // If audio has loaded successfully + else if (previewUrl && !audioState.isLoading && audioState.duration > 0) { + setIsLoading(false); + initialLoadCompleteRef.current = true; // Mark initial load as complete + } + } + }, [previewUrl, audioState.isLoading, audioState.duration]); + + if (!questionToDisplay) { + return ( +
+ +
+

Starting Game

+
+
+ ); + } + + // Find the correct option for display purposes + const correctOptionId = questionToDisplay.correctOption.id; + + return ( +
+ + + + + + {score} + +
+ + +
+
+ +
+
+ + + {showSummary ? ( + q.correct).length, + accuracy: answeredQuestions.length ? (answeredQuestions.filter(q => q.correct).length / answeredQuestions.length) * 100 : 0 + }} + onPlayAgain={handlePlayAgain} + onExit={handleExitGame} + answeredQuestions={answeredQuestions} + /> + ) : ( + + + + Guess the song + + + + {audioState.isLoading ? ( +
Loading preview...
+ ) : ( + + {audioState.isPlaying ? 'Now Playing' : 'Paused'} + + )} +
+ + {questionToDisplay.coverUrl && ( + +
+ +
+ + + {showClearCover && ( + +

{questionToDisplay.correctOption.title}

+

{questionToDisplay.artists || questionToDisplay.correctOption.artist}

+
+ )} +
+
+ )} + +
+ {questionToDisplay.options.map((option: Song, index: number) => ( + handleOptionSelect(option.id)} + disabled={isAnswerSubmitted} + whileHover={!isAnswerSubmitted ? { scale: 1.03, y: -2 } : {}} + whileTap={!isAnswerSubmitted ? { scale: 0.98 } : {}} + initial={{ opacity: 0, y: 15 }} + animate={{ opacity: 1, y: 0 }} + transition={{ + delay: 0.5 + (index * 0.1), + duration: 0.4, + type: "spring", + stiffness: 200, + damping: 15 + }} + > + {option.title} + + ))} +
+ + + {isAnswerSubmitted && ( + +
+ {isCorrect ? ( + + Correct! +{pointsEarnedRef.current} points + + ) : ( + + Incorrect! The correct answer was: {questionToDisplay.correctOption.title} + + )} +
+ + + {showNextButton ? ( + + Next Song + + ) : gameCompleted && ( + + See Results + + )} + +
+ )} +
+
+
+ )} +
+
+ ); +}; + +export default GameScreen; \ No newline at end of file diff --git a/frontend/src/components/game/GameScreen/index.ts b/frontend/src/components/game/GameScreen/index.ts new file mode 100644 index 0000000..7c7b422 --- /dev/null +++ b/frontend/src/components/game/GameScreen/index.ts @@ -0,0 +1 @@ +export { default } from './GameScreen'; \ No newline at end of file diff --git a/frontend/src/components/game/GameSummary/GameSummary.scss b/frontend/src/components/game/GameSummary/GameSummary.scss new file mode 100644 index 0000000..1dc3678 --- /dev/null +++ b/frontend/src/components/game/GameSummary/GameSummary.scss @@ -0,0 +1,523 @@ +@use '../../../styles/variables.scss' as variables; +@use '../../../styles/mixins.scss' as mixins; + +.game-summary { + width: 100%; + max-width: 800px; + margin: 0 auto; + padding: 2.5rem 2rem; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 20px; + display: flex; + flex-direction: column; + align-items: center; + backdrop-filter: blur(20px); + -webkit-backdrop-filter: blur(20px); + border: 1px solid rgba(255, 255, 255, 0.05); + box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); + position: relative; + overflow: hidden; + color: rgba(255, 255, 255, 0.9); + + &::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: radial-gradient( + circle at top right, + rgba(var(--accent-rgb), 0.15), + transparent 70% + ); + z-index: -1; + } + + &__title { + font-size: 2.5rem; + font-weight: 800; + color: var(--text-primary); + margin-bottom: 1.5rem; + text-align: center; + background: linear-gradient(135deg, #fff, rgba(var(--accent-rgb), 0.8)); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; + position: relative; + + &::after { + content: '🎵'; + position: absolute; + font-size: 1.5rem; + top: -10px; + right: -30px; + -webkit-text-fill-color: initial; + transform: rotate(15deg); + } + } + + &__message { + color: variables.$text-secondary; + font-size: 1.2rem; + margin-bottom: 2rem; + text-align: center; + opacity: 0.9; + } + + &__score-circle { + display: flex; + flex-direction: column; + align-items: center; + margin-bottom: 3rem; + width: 200px; + height: 200px; + border-radius: 50%; + background-color: rgba(0, 0, 0, 0.3); + border: 4px solid rgba(var(--accent-rgb), 0.4); + display: flex; + justify-content: center; + align-items: center; + box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.3), + inset 0 0 20px rgba(var(--accent-rgb), 0.1); + position: relative; + transition: all 0.5s ease; + + &:hover { + transform: scale(1.03) rotate(2deg); + box-shadow: 0 0 50px rgba(var(--accent-rgb), 0.4), + inset 0 0 25px rgba(var(--accent-rgb), 0.15); + } + + &::before { + content: ''; + position: absolute; + top: -10px; + left: -10px; + right: -10px; + bottom: -10px; + border-radius: 50%; + border: 2px solid rgba(var(--accent-rgb), 0.2); + animation: pulse 3s infinite; + } + } + + &__score-label { + font-size: 1.2rem; + color: rgba(255, 255, 255, 0.9); + margin-bottom: 0.8rem; + text-transform: uppercase; + letter-spacing: 2px; + font-weight: 600; + text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); + } + + &__score-value { + font-size: 4.5rem; + font-weight: 800; + color: var(--accent-color); + text-shadow: 0 2px 10px rgba(var(--accent-rgb), 0.5); + line-height: 1; + } + + &__stats { + display: flex; + flex-direction: column; + gap: 1.5rem; + margin-bottom: 2.5rem; + width: 100%; + } + + &__rank { + display: flex; + justify-content: center; + margin-bottom: 0.5rem; + + &-badge { + display: flex; + align-items: center; + gap: 0.5rem; + padding: 0.7rem 1.5rem; + background: linear-gradient(135deg, var(--accent-color), var(--accent-light)); + border-radius: 30px; + box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.35); + + span { + font-weight: 700; + font-size: 1.1rem; + color: #fff; + text-transform: uppercase; + letter-spacing: 1px; + } + } + } + + &__rank-emoji { + font-size: 1.3rem; + } + + &__score-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 1rem; + width: 100%; + max-width: 500px; + margin: 0 auto; + } + + &__score-item { + display: flex; + flex-direction: column; + align-items: center; + text-align: center; + padding: 1rem; + background-color: rgba(255, 255, 255, 0.08); + border-radius: 12px; + border: 1px solid rgba(255, 255, 255, 0.05); + box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); + transition: all 0.3s ease; + + &:hover { + transform: translateY(-3px); + background-color: rgba(255, 255, 255, 0.1); + box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); + } + + .game-summary__score-value { + font-size: 2.2rem; + margin-bottom: 0.3rem; + } + + .game-summary__score-label { + font-size: 0.85rem; + color: rgba(255, 255, 255, 0.7); + text-transform: uppercase; + letter-spacing: 0.5px; + font-weight: 500; + margin-bottom: 0; + } + } + + &__questions { + width: 100%; + max-width: 700px; + + h3 { + margin-bottom: 1.8rem; + font-size: 1.8rem; + color: var(--text-primary); + text-align: center; + position: relative; + padding-bottom: 0.8rem; + font-weight: 700; + + &:after { + content: ''; + position: absolute; + bottom: 0; + left: 50%; + transform: translateX(-50%); + width: 100px; + height: 3px; + background: linear-gradient(90deg, var(--accent-color), var(--accent-light)); + border-radius: 3px; + box-shadow: 0 2px 5px rgba(var(--accent-rgb), 0.3); + } + } + } + + &__answers-container { + display: flex; + flex-direction: column; + gap: 1rem; + padding: 0.5rem; + margin-bottom: 2rem; + } + + &__answer-card { + padding: 1.2rem; + border-radius: 12px; + display: flex; + flex-direction: column; + background-color: rgba(255, 255, 255, 0.08); + box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); + overflow: hidden; + transition: all 0.3s ease; + transform: translateZ(0); + border: 1px solid rgba(255, 255, 255, 0.05); + position: relative; + + &:hover { + transform: translateY(-3px); + box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); + background-color: rgba(255, 255, 255, 0.1); + } + + &.correct { + border-left: 6px solid #10b981; + + &::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: radial-gradient( + circle at top left, + rgba(16, 185, 129, 0.15), + transparent 80% + ); + z-index: -1; + } + } + + &.incorrect { + border-left: 6px solid #ef4444; + + &::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: radial-gradient( + circle at top left, + rgba(239, 68, 68, 0.1), + transparent 80% + ); + z-index: -1; + } + } + } + + &__answer-header { + display: flex; + justify-content: space-between; + align-items: center; + padding-bottom: 1rem; + margin-bottom: 1rem; + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + } + + &__question-number { + font-weight: 700; + color: var(--text-primary); + font-size: 1.1rem; + } + + &__result-badge { + padding: 0.3rem 1rem; + border-radius: 20px; + font-size: 0.85rem; + font-weight: bold; + transition: all 0.3s ease; + + .correct & { + background-color: rgba(16, 185, 129, 0.2); + color: #10b981; + box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2); + } + + .incorrect & { + background-color: rgba(239, 68, 68, 0.2); + color: #ef4444; + box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2); + } + } + + &__answer-content { + padding: 0.5rem; + } + + &__answer-label { + display: block; + font-size: 0.9rem; + color: rgba(255, 255, 255, 0.7); + margin-bottom: 0.5rem; + } + + &__song-title { + font-size: 1.2rem; + font-weight: bold; + color: var(--text-primary); + position: relative; + padding-left: 0.5rem; + + &::before { + content: ''; + position: absolute; + left: 0; + top: 0; + bottom: 0; + width: 3px; + border-radius: 3px; + background-color: var(--accent-color); + } + } + + &__actions { + margin-top: 1rem; + display: flex; + gap: 1.5rem; + + button { + padding: 0.9rem 2rem; + border: none; + border-radius: 30px; + font-weight: bold; + cursor: pointer; + transition: all 0.25s ease; + font-size: 1rem; + letter-spacing: 0.5px; + } + } + + &__play-again { + background-color: var(--accent-color); + color: white; + box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.4), 0 3px 0 rgba(0, 0, 0, 0.2); + + &:hover { + background-color: var(--accent-light); + transform: translateY(-2px); + box-shadow: 0 7px 20px rgba(var(--accent-rgb), 0.45), 0 3px 0 rgba(0, 0, 0, 0.2); + } + + &:active { + transform: translateY(1px); + box-shadow: 0 3px 10px rgba(var(--accent-rgb), 0.4), 0 2px 0 rgba(0, 0, 0, 0.2); + } + } + + &__exit, &__share { + background-color: rgba(0, 0, 0, 0.3); + color: white; + border: 1px solid rgba(255, 255, 255, 0.1); + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); + + &:hover { + background-color: rgba(255, 255, 255, 0.15); + transform: translateY(-2px); + box-shadow: 0 7px 20px rgba(0, 0, 0, 0.25); + } + + &:active { + transform: translateY(1px); + box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); + } + } + + &__share { + background-color: rgba(var(--accent-rgb), 0.2); + border: 1px solid rgba(var(--accent-rgb), 0.3); + } + + // Responsive styles + @media (max-width: 768px) { + padding: 1.5rem 1rem; + + &__title { + font-size: 2rem; + margin-bottom: 1rem; + + &::after { + font-size: 1.2rem; + right: -25px; + } + } + + &__message { + font-size: 1rem; + margin-bottom: 1.5rem; + } + + &__score-circle { + width: 150px; + height: 150px; + margin-bottom: 2rem; + + &__score-label { + font-size: 1rem; + margin-bottom: 0.5rem; + } + + &__score-value { + font-size: 3.5rem; + } + } + + &__score-grid { + grid-template-columns: repeat(3, 1fr); + gap: 0.8rem; + } + + &__score-item { + padding: 0.7rem; + + .game-summary__score-value { + font-size: 1.8rem; + } + + .game-summary__score-label { + font-size: 0.7rem; + } + } + + &__questions h3 { + font-size: 1.5rem; + margin-bottom: 1.2rem; + } + + &__answer-card { + padding: 1rem; + } + + &__answer-header { + flex-direction: column; + align-items: flex-start; + gap: 0.5rem; + padding-bottom: 0.8rem; + } + + &__question-number { + font-size: 1rem; + } + + &__result-badge { + font-size: 0.8rem; + padding: 0.25rem 0.8rem; + } + + &__song-title { + font-size: 1.1rem; + } + + &__actions { + flex-direction: column; + width: 100%; + gap: 1rem; + + button { + width: 100%; + padding: 0.8rem 1.5rem; + } + } + } +} + +@keyframes pulse { + 0% { + opacity: 0.6; + transform: scale(1); + } + 50% { + opacity: 0.3; + transform: scale(1.05); + } + 100% { + opacity: 0.6; + transform: scale(1); + } +} \ No newline at end of file diff --git a/frontend/src/components/game/GameSummary/GameSummary.tsx b/frontend/src/components/game/GameSummary/GameSummary.tsx new file mode 100644 index 0000000..33fcdf4 --- /dev/null +++ b/frontend/src/components/game/GameSummary/GameSummary.tsx @@ -0,0 +1,207 @@ +import React from 'react'; +import { motion } from 'framer-motion'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faMusic, faHeadphones, faGuitar, faMicrophone, faKeyboard } from '@fortawesome/free-solid-svg-icons'; +import { GameSummaryType } from '../../../types/game'; +import { APP_NAME } from '../../../App'; +import './GameSummary.scss'; + +interface GameSummaryProps { + summary: GameSummaryType; + onPlayAgain: () => void; + onExit: () => void; + answeredQuestions?: {id: string, correct: boolean, answer: string, correctAnswer: string}[]; +} + +const GameSummary: React.FC = ({ summary, onPlayAgain, onExit, answeredQuestions = [] }) => { + // Ensure accuracy is a valid number + const safeAccuracy = isNaN(summary.accuracy) || !isFinite(summary.accuracy) ? 0 : summary.accuracy; + + const getScoreMessage = () => { + if (safeAccuracy >= 80) { + return "Amazing! You're a music genius!"; + } else if (safeAccuracy >= 60) { + return "Great job! You know your music well!"; + } else if (safeAccuracy >= 40) { + return "Not bad! Keep practicing to improve your score."; + } else { + return "You might want to listen to more music!"; + } + }; + + const getRankLabel = () => { + if (safeAccuracy >= 90) return "Music Maestro"; + if (safeAccuracy >= 70) return "Melody Master"; + if (safeAccuracy >= 50) return "Rhythm Rookie"; + if (safeAccuracy >= 30) return "Beat Beginner"; + return "Tune Trainee"; + }; + + const getEmojiForRank = () => { + if (safeAccuracy >= 90) return ; + if (safeAccuracy >= 70) return ; + if (safeAccuracy >= 50) return ; + if (safeAccuracy >= 30) return ; + return ; + }; + + return ( + + + Game Complete! + + + + {getScoreMessage()} + + + +
Final Score
+
{summary.score}
+
+ + +
+
+ {getEmojiForRank()} + {getRankLabel()} +
+
+ +
+
+
{summary.correctAnswers}
+
Correct
+
+ +
+
{summary.totalQuestions}
+
Total
+
+ +
+
{safeAccuracy.toFixed(0)}%
+
Accuracy
+
+
+
+ + {answeredQuestions.length > 0 && ( + +

Your Answers

+
+ {answeredQuestions.map((question, index) => ( + +
+ Question {index + 1} + {question.correct ? 'Correct' : 'Incorrect'} +
+
+ {question.correct ? ( +
+ You correctly guessed: + {question.correctAnswer} +
+ ) : ( +
+ Correct song was: + {question.correctAnswer} +
+ )} +
+
+ ))} +
+
+ )} + + 0 ? answeredQuestions.length * 0.1 : 0) }} + > + + Play Again + + + Return to Menu + + { + const text = `I scored ${summary.score} points with ${safeAccuracy.toFixed(0)}% accuracy in ${APP_NAME}! Can you beat my score?`; + if (navigator.share) { + navigator.share({ + title: `My ${APP_NAME} Score`, + text: text, + url: window.location.href, + }).catch(() => { + // Fallback if share fails + navigator.clipboard.writeText(text); + alert('Score copied to clipboard!'); + }); + } else { + // Fallback - copy to clipboard + navigator.clipboard.writeText(text); + alert('Score copied to clipboard!'); + } + }} + > + Share Score + + +
+ ); +}; + +export default GameSummary; \ No newline at end of file diff --git a/frontend/src/components/game/GameSummary/index.ts b/frontend/src/components/game/GameSummary/index.ts new file mode 100644 index 0000000..5ad0674 --- /dev/null +++ b/frontend/src/components/game/GameSummary/index.ts @@ -0,0 +1 @@ +export { default } from './GameSummary'; \ No newline at end of file diff --git a/frontend/src/components/game/SongCard/SongCard.scss b/frontend/src/components/game/SongCard/SongCard.scss new file mode 100644 index 0000000..f733b4b --- /dev/null +++ b/frontend/src/components/game/SongCard/SongCard.scss @@ -0,0 +1,56 @@ +@use '../../../styles/variables.scss'; +@use '../../../styles/mixins.scss'; + +.song-card { + width: 100%; + + &__container { + position: relative; + width: 100%; + aspect-ratio: 1 / 1; + overflow: hidden; + border-radius: variables.$border-radius-md; + box-shadow: variables.$shadow-md; + background: variables.$background-secondary-color; + } + + &__cover { + width: 100%; + height: 100%; + background-size: cover; + background-position: center; + transition: filter 0.5s ease-in-out; + will-change: filter; + } + + &--loaded .song-card__cover { + animation: fadeIn 0.5s ease-in-out; + } + + &__playing { + position: absolute; + bottom: variables.$spacing-md; + left: 50%; + transform: translateX(-50%); + display: flex; + align-items: flex-end; + gap: 4px; + height: 45px; + padding: 0 variables.$spacing-sm; + background: rgba(0, 0, 0, 0.7); + backdrop-filter: blur(10px); + border-radius: variables.$border-radius-full; + } + + &__bar { + width: 4px; + height: 20px; + background-color: variables.$text-primary; + border-radius: variables.$border-radius-full; + } +} + +@keyframes fadeIn { + from { opacity: 0; } + to { opacity: 1; } +} \ No newline at end of file diff --git a/frontend/src/components/game/SongCard/SongCard.tsx b/frontend/src/components/game/SongCard/SongCard.tsx new file mode 100644 index 0000000..3d4362d --- /dev/null +++ b/frontend/src/components/game/SongCard/SongCard.tsx @@ -0,0 +1,86 @@ +import React, { useState, useEffect } from 'react'; +import { motion } from 'framer-motion'; +import Card from '../../ui/Card'; +import './SongCard.scss'; + +interface SongCardProps { + coverUrl: string; + blurLevel: number; // 0-20, where 20 is the most blurred + isRevealed?: boolean; + audioPlaying?: boolean; + className?: string; +} + +const SongCard: React.FC = ({ + coverUrl, + blurLevel = 10, + isRevealed = false, + audioPlaying = false, + className = '', +}) => { + const [isLoaded, setIsLoaded] = useState(false); + + useEffect(() => { + // Preload the image + const img = new Image(); + img.src = coverUrl; + img.onload = () => setIsLoaded(true); + }, [coverUrl]); + + // Calculate the blur amount based on the blur level + const blurAmount = isRevealed ? 0 : blurLevel * 2; + + return ( + +
+
+ + {audioPlaying && ( +
+ + + +
+ )} +
+ + ); +}; + +export default SongCard; \ No newline at end of file diff --git a/frontend/src/components/game/SongCard/index.ts b/frontend/src/components/game/SongCard/index.ts new file mode 100644 index 0000000..8b94a23 --- /dev/null +++ b/frontend/src/components/game/SongCard/index.ts @@ -0,0 +1 @@ +export { default } from './SongCard'; \ No newline at end of file diff --git a/frontend/src/components/game/SongOption/SongOption.scss b/frontend/src/components/game/SongOption/SongOption.scss new file mode 100644 index 0000000..8c092a8 --- /dev/null +++ b/frontend/src/components/game/SongOption/SongOption.scss @@ -0,0 +1,106 @@ +@use '../../../styles/variables.scss'; +@use '../../../styles/mixins.scss'; + +.song-option { + width: 100%; + padding: variables.$spacing-md; + border-radius: variables.$border-radius-md; + border: 1px solid variables.$border-color; + background: rgba(255, 255, 255, 0.08); + color: variables.$text-primary; + font-weight: variables.$font-weight-medium; + text-align: left; + display: flex; + justify-content: space-between; + align-items: center; + cursor: pointer; + transition: all variables.$transition-base; + position: relative; + overflow: hidden; + + &__name { + width: calc(100% - 30px); + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + } + + &__icon { + display: flex; + align-items: center; + justify-content: center; + width: 24px; + height: 24px; + border-radius: 50%; + font-size: 14px; + + &--correct { + background-color: variables.$success-color; + color: white; + } + + &--incorrect { + background-color: variables.$danger-color; + color: white; + } + } + + // Option variants + &--default { + &:hover:not(:disabled) { + background: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.3); + } + } + + &--selected { + background: rgba(variables.$primary-color, 0.3); + border-color: variables.$primary-color; + box-shadow: 0 0 0 1px rgba(variables.$primary-color, 0.5); + + &:hover:not(:disabled) { + background: rgba(variables.$primary-color, 0.4); + } + } + + &--correct { + background: rgba(variables.$success-color, 0.3); + border-color: variables.$success-color; + + &:after { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient( + 45deg, + rgba(variables.$success-color, 0) 0%, + rgba(variables.$success-color, 0.1) 50%, + rgba(variables.$success-color, 0) 100% + ); + animation: shine 2s infinite; + } + } + + &--incorrect { + background: rgba(variables.$danger-color, 0.2); + border-color: variables.$danger-color; + opacity: 0.8; + } + + &:disabled { + opacity: 0.5; + cursor: not-allowed; + } +} + +@keyframes shine { + from { + background-position: -200% 0; + } + to { + background-position: 200% 0; + } +} \ No newline at end of file diff --git a/frontend/src/components/game/SongOption/SongOption.tsx b/frontend/src/components/game/SongOption/SongOption.tsx new file mode 100644 index 0000000..9cb52d8 --- /dev/null +++ b/frontend/src/components/game/SongOption/SongOption.tsx @@ -0,0 +1,59 @@ +import React from 'react'; +import { motion } from 'framer-motion'; + import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faCheck, faTimes } from '@fortawesome/free-solid-svg-icons'; +import './SongOption.scss'; + +interface SongOptionProps { + name: string; + isSelected?: boolean; + isCorrect?: boolean; + isRevealed?: boolean; + onClick?: () => void; + disabled?: boolean; +} + +const SongOption: React.FC = ({ + name, + isSelected = false, + isCorrect = false, + isRevealed = false, + onClick, + disabled = false, +}) => { + // Determine the variant of the option button based on current state + let variant = 'default'; + + if (isRevealed) { + if (isCorrect) { + variant = 'correct'; + } else if (isSelected && !isCorrect) { + variant = 'incorrect'; + } + } else if (isSelected) { + variant = 'selected'; + } + + return ( + + {name} + + {isRevealed && ( +
+ {isCorrect ? : } +
+ )} +
+ ); +}; + +export default SongOption; \ No newline at end of file diff --git a/frontend/src/components/game/SongOption/index.ts b/frontend/src/components/game/SongOption/index.ts new file mode 100644 index 0000000..06c1488 --- /dev/null +++ b/frontend/src/components/game/SongOption/index.ts @@ -0,0 +1 @@ +export { default } from './SongOption'; \ No newline at end of file diff --git a/frontend/src/components/game/WelcomeScreen/VinylAnimation.tsx b/frontend/src/components/game/WelcomeScreen/VinylAnimation.tsx new file mode 100644 index 0000000..fdba9c0 --- /dev/null +++ b/frontend/src/components/game/WelcomeScreen/VinylAnimation.tsx @@ -0,0 +1,22 @@ +import React from 'react'; +import { motion } from 'framer-motion'; + +const VinylAnimation: React.FC = () => { + return ( +
+ +
+
+
+ ); +}; + +export default VinylAnimation; \ No newline at end of file diff --git a/frontend/src/components/game/WelcomeScreen/WelcomeScreen.scss b/frontend/src/components/game/WelcomeScreen/WelcomeScreen.scss new file mode 100644 index 0000000..3bfaf7b --- /dev/null +++ b/frontend/src/components/game/WelcomeScreen/WelcomeScreen.scss @@ -0,0 +1,411 @@ +@use '../../../styles/variables.scss'; +@use '../../../styles/mixins.scss'; + +.welcome-screen { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 100%; + padding: 2rem 1rem; + position: relative; + overflow: hidden; + + &__header { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + position: relative; + margin-bottom: 2rem; + width: 100%; + } + + &__title { + font-size: 3.5rem; + font-weight: 700; + margin: 0; + background: linear-gradient(135deg, var(--accent-color), #fff); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + text-align: center; + z-index: 10; + margin-bottom: 1rem; + filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5)); + letter-spacing: -0.05em; + } + + &__vinyl { + width: 150px; + height: 150px; + position: relative; + margin: 0 auto; + filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.7)); + } + + .vinyl-record { + width: 100%; + height: 100%; + border-radius: 50%; + background: radial-gradient( + circle at center, + #000 0%, + #000 40%, + #222 40%, + #222 43%, + #000 43%, + #000 45%, + #222 45%, + #222 48%, + #000 48%, + #000 50%, + #222 50%, + #222 53%, + #000 53%, + #000 90%, + #333 90%, + #333 100% + ); + display: flex; + align-items: center; + justify-content: center; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); + + &::after { + content: ''; + position: absolute; + width: 98%; + height: 98%; + border-radius: 50%; + background: conic-gradient( + from 0deg, + rgba(255, 255, 255, 0.1) 0deg, + transparent 20deg, + rgba(255, 255, 255, 0.1) 40deg, + transparent 60deg, + rgba(255, 255, 255, 0.1) 80deg, + transparent 100deg, + rgba(255, 255, 255, 0.1) 120deg, + transparent 140deg, + rgba(255, 255, 255, 0.1) 160deg, + transparent 180deg, + rgba(255, 255, 255, 0.1) 200deg, + transparent 220deg, + rgba(255, 255, 255, 0.1) 240deg, + transparent 260deg, + rgba(255, 255, 255, 0.1) 280deg, + transparent 300deg, + rgba(255, 255, 255, 0.1) 320deg, + transparent 340deg, + rgba(255, 255, 255, 0.1) 360deg + ); + } + } + + .vinyl-label { + width: 35%; + height: 35%; + border-radius: 50%; + background: var(--accent-color); + display: flex; + align-items: center; + justify-content: center; + position: relative; + + &::after { + content: ''; + position: absolute; + width: 20%; + height: 20%; + border-radius: 50%; + background: #000; + } + } + + &__card-container { + width: 100%; + max-width: 450px; + margin: 0 auto; + } + + &__card { + width: 100%; + backdrop-filter: blur(10px); + background: rgba(0, 0, 0, 0.2); + border: 1px solid rgba(255, 255, 255, 0.1); + border-radius: 16px; + overflow: hidden; + } + + &__content { + padding: 1.5rem; + display: flex; + flex-direction: column; + gap: 1.5rem; + } + + &__options-section { + display: flex; + flex-direction: column; + gap: 1rem; + } + + &__label { + font-size: 1rem; + font-weight: 500; + color: rgba(255, 255, 255, 0.9); + margin-bottom: 0.5rem; + } + + &__song-options { + display: flex; + justify-content: center; + gap: 1rem; + + .song-option { + width: 60px; + height: 60px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + background: rgba(255, 255, 255, 0.1); + border: none; + color: white; + font-size: 1.2rem; + font-weight: 600; + cursor: pointer; + transition: all 0.2s ease; + + &:hover { + background: rgba(255, 255, 255, 0.2); + transform: scale(1.05); + } + + &.selected { + background: var(--accent-color); + box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.5); + } + } + } + + &__genre-toggle { + display: flex; + align-items: center; + justify-content: center; + gap: 0.5rem; + background: none; + border: none; + color: rgba(255, 255, 255, 0.8); + padding: 0.5rem; + cursor: pointer; + font-size: 0.9rem; + margin: 0.5rem 0; + transition: all 0.2s ease; + + svg { + transition: transform 0.3s ease; + } + + &:hover { + color: white; + } + } + + &__genres { + overflow: hidden; + } + + &__genre-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); + gap: 0.5rem; + max-height: 180px; + overflow-y: auto; + padding: 0.5rem; + background: rgba(0, 0, 0, 0.2); + border-radius: 0.5rem; + margin-bottom: 0.5rem; + + .genre-chip { + background: rgba(255, 255, 255, 0.1); + border: none; + border-radius: 4px; + padding: 0.5rem; + color: white; + font-size: 0.8rem; + cursor: pointer; + transition: all 0.2s ease; + text-align: center; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + + &:hover { + background: rgba(255, 255, 255, 0.2); + } + + &.selected { + background: var(--accent-color); + box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.3); + } + } + } + + &__selected-genres { + display: flex; + justify-content: space-between; + align-items: center; + padding: 0.5rem 0; + font-size: 0.8rem; + color: rgba(255, 255, 255, 0.8); + } + + &__clear-genres { + background: none; + border: none; + color: var(--accent-color); + cursor: pointer; + font-size: 0.8rem; + padding: 0; + transition: all 0.2s ease; + + &:hover { + text-decoration: underline; + } + } + + &__start-button { + margin-top: 0.5rem; + padding: 1rem; + background: var(--accent-color); + border: none; + border-radius: 8px; + color: white; + font-weight: 700; + font-size: 1.1rem; + cursor: pointer; + transition: all 0.2s ease; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); + letter-spacing: 1px; + + &:hover { + background: rgba(var(--accent-rgb), 0.9); + box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); + } + } + + &__instructions { + border-top: 1px solid rgba(255, 255, 255, 0.1); + padding-top: 1rem; + + p { + margin: 0.5rem 0; + font-size: 0.9rem; + color: rgba(255, 255, 255, 0.8); + display: flex; + align-items: center; + gap: 0.5rem; + } + } + + &__toggle-button { + display: flex; + align-items: center; + justify-content: center; + gap: 0.5rem; + background: none; + border: none; + color: rgba(255, 255, 255, 0.8); + padding: 0.5rem; + cursor: pointer; + font-size: 0.9rem; + margin: 0.5rem 0; + transition: all 0.2s ease; + + svg { + transition: transform 0.3s ease; + } + + &:hover { + color: white; + } + + &:disabled { + opacity: 0.5; + cursor: not-allowed; + } + } + + &__dropdown-panel { + overflow: hidden; + } + + &__playlist-grid { + display: flex; + flex-direction: column; + gap: 0.5rem; + max-height: 220px; + overflow-y: auto; + padding: 0.5rem; + background: rgba(0, 0, 0, 0.2); + border-radius: 0.5rem; + margin-bottom: 0.5rem; + + .playlist-item { + background: rgba(255, 255, 255, 0.1); + border: none; + border-radius: 4px; + padding: 0.75rem; + color: white; + text-align: left; + cursor: pointer; + transition: all 0.2s ease; + + &:hover { + background: rgba(255, 255, 255, 0.2); + } + + &.selected { + background: var(--accent-color); + box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.3); + } + + &__title { + font-weight: 500; + font-size: 0.95rem; + margin-bottom: 0.25rem; + } + + &__description { + font-size: 0.8rem; + color: rgba(255, 255, 255, 0.7); + } + } + } + + // Media queries for responsive design + @media (max-width: 768px) { + &__title { + font-size: 2.5rem; + } + + &__vinyl { + width: 120px; + height: 120px; + } + + &__song-options { + .song-option { + width: 50px; + height: 50px; + font-size: 1rem; + } + } + + &__genre-grid { + grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); + max-height: 150px; + } + } +} \ No newline at end of file diff --git a/frontend/src/components/game/WelcomeScreen/WelcomeScreen.tsx b/frontend/src/components/game/WelcomeScreen/WelcomeScreen.tsx new file mode 100644 index 0000000..327803e --- /dev/null +++ b/frontend/src/components/game/WelcomeScreen/WelcomeScreen.tsx @@ -0,0 +1,280 @@ +import React, { useState, useEffect } from 'react'; +import { motion, AnimatePresence } from 'framer-motion'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faMusic, faGamepad, faTrophy } from '@fortawesome/free-solid-svg-icons'; +import { playlistsApi, songsApi } from '../../../services/api'; +import { Playlist } from '../../../types/song'; +import VinylAnimation from './VinylAnimation'; +import { APP_NAME } from '../../../App'; +import './WelcomeScreen.scss'; + +interface WelcomeScreenProps { + onStart: (numSongs: number, numChoices: number, genres?: string[], playlistId?: string) => void; +} + +const WelcomeScreen: React.FC = ({ onStart }) => { + // Always 4 songs per game + const NUM_SONGS = 4; + const NUM_CHOICES = 4; + + const [selectedGenres, setSelectedGenres] = useState([]); + const [availableGenres, setAvailableGenres] = useState([]); + const [availablePlaylists, setAvailablePlaylists] = useState([]); + const [selectedPlaylistId, setSelectedPlaylistId] = useState(null); + const [isLoading, setIsLoading] = useState(false); + const [showGenres, setShowGenres] = useState(false); + const [showPlaylists, setShowPlaylists] = useState(false); + + useEffect(() => { + // Fetch available genres and playlists when component mounts + const fetchData = async () => { + setIsLoading(true); + try { + // Fetch genres + const genresData = await songsApi.getGenres(); + setAvailableGenres(Array.isArray(genresData) ? genresData : []); + + // Fetch playlists + const playlistsData = await playlistsApi.getPlaylists(); + setAvailablePlaylists(playlistsData); + + console.log('Fetched data:', { genres: genresData, playlists: playlistsData }); // Debugging + } catch (error) { + console.error('Failed to fetch data:', error); + } finally { + setIsLoading(false); + } + }; + + fetchData(); + }, []); + + const handleGenreClick = (genre: string) => { + // Clear playlist selection when selecting custom genres + setSelectedPlaylistId(null); + + setSelectedGenres(prev => + prev.includes(genre) + ? prev.filter(g => g !== genre) + : [...prev, genre] + ); + }; + + const handleClearGenres = () => { + setSelectedGenres([]); + }; + + const handlePlaylistSelect = (playlistId: string) => { + // Clear genre selection when selecting a playlist + if (selectedPlaylistId === playlistId) { + setSelectedPlaylistId(null); + } else { + setSelectedPlaylistId(playlistId); + setSelectedGenres([]); + } + }; + + const toggleGenreVisibility = () => { + setShowGenres(!showGenres); + if (!showGenres) { + setShowPlaylists(false); + } + }; + + const togglePlaylistVisibility = () => { + setShowPlaylists(!showPlaylists); + if (!showPlaylists) { + setShowGenres(false); + } + }; + + const getSelectedPlaylistName = () => { + if (!selectedPlaylistId) return null; + const playlist = availablePlaylists.find(p => p.id === selectedPlaylistId); + return playlist ? playlist.name : null; + }; + + const startGame = () => { + onStart( + NUM_SONGS, + NUM_CHOICES, + selectedGenres.length > 0 ? selectedGenres : undefined, + selectedPlaylistId || undefined + ); + }; + + return ( +
+
+

{APP_NAME}

+ +
+ +
+
+
+
+
+

+ Welcome to {APP_NAME}! +

+
+ +
+ + + + {showPlaylists && ( + + {!isLoading ? ( +
+ {availablePlaylists.map((playlist) => ( + + ))} + {availablePlaylists.length === 0 && ( +
No playlists available
+ )} +
+ ) : ( +
Loading playlists...
+ )} +
+ )} +
+
+ +
+ + + + {showGenres && ( + + {!isLoading ? ( + <> +
+ {availableGenres.map((genre) => ( + + ))} +
+
+ + {selectedGenres.length === 0 + ? 'No genres selected (all genres will be included)' + : `${selectedGenres.length} genre${selectedGenres.length !== 1 ? 's' : ''} selected`} + + {selectedGenres.length > 0 && ( + + )} +
+ + ) : ( +
Loading genres...
+ )} +
+ )} +
+
+
+ + + +
+

How to play

+

Listen to a clip and guess the song

+

Each song has 4 different options to choose from

+

Try to get the highest score possible!

+
+
+
+
+
+ ); +}; + +export default WelcomeScreen; \ No newline at end of file diff --git a/frontend/src/components/game/WelcomeScreen/index.ts b/frontend/src/components/game/WelcomeScreen/index.ts new file mode 100644 index 0000000..9dbd01a --- /dev/null +++ b/frontend/src/components/game/WelcomeScreen/index.ts @@ -0,0 +1 @@ +export { default } from './WelcomeScreen'; diff --git a/frontend/src/components/layout/AppLayout/AppLayout.scss b/frontend/src/components/layout/AppLayout/AppLayout.scss new file mode 100644 index 0000000..ec435a9 --- /dev/null +++ b/frontend/src/components/layout/AppLayout/AppLayout.scss @@ -0,0 +1,146 @@ +@use '../../../styles/variables.scss'; +@use '../../../styles/mixins.scss'; + +.app-layout { + position: relative; + min-height: 100vh; + overflow: hidden; + z-index: 0; + display: flex; + flex-direction: column; + + &__background { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: variables.$background-color; + z-index: -2; + + &:after { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: radial-gradient( + circle at top right, + rgba(122, 75, 255, 0.15) 0%, + rgba(0, 0, 0, 0) 60% + ); + } + } + + &--gradient &__background { + background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%); + } + + &__content { + flex: 1; + position: relative; + width: 100%; + max-width: 1200px; + margin: 0 auto; + padding-top: env(safe-area-inset-top); + padding-bottom: calc(env(safe-area-inset-bottom) + 60px); + z-index: 1; + } + + &__orbs { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + overflow: hidden; + z-index: -1; + pointer-events: none; + } + + &__orb { + position: absolute; + border-radius: 50%; + filter: blur(80px); + opacity: 0.3; + + &--1 { + top: -100px; + right: -100px; + width: 400px; + height: 400px; + background: rgba(variables.$primary-color, 0.5); + animation: float1 20s ease-in-out infinite alternate; + } + + &--2 { + bottom: -150px; + left: -150px; + width: 500px; + height: 500px; + background: rgba(variables.$secondary-color, 0.3); + animation: float2 25s ease-in-out infinite alternate; + } + + &--3 { + top: 50%; + left: 50%; + width: 300px; + height: 300px; + background: rgba(variables.$info-color, 0.2); + animation: float3 22s ease-in-out infinite alternate; + } + } + + &__footer { + position: absolute; + bottom: 0; + left: 0; + width: 100%; + padding: variables.$spacing-sm 0; + z-index: 2; + + &-content { + width: 100%; + max-width: 1200px; + margin: 0 auto; + padding: 0 variables.$spacing-md; + display: flex; + justify-content: center; + align-items: center; + + p { + color: variables.$text-tertiary; + font-size: 12px; + } + } + } +} + +@keyframes float1 { + 0% { + transform: translate(0, 0) rotate(0deg); + } + 100% { + transform: translate(-100px, 100px) rotate(60deg); + } +} + +@keyframes float2 { + 0% { + transform: translate(0, 0) rotate(0deg); + } + 100% { + transform: translate(100px, -100px) rotate(-60deg); + } +} + +@keyframes float3 { + 0% { + transform: translate(-50%, -50%) rotate(0deg); + } + 100% { + transform: translate(-40%, -60%) rotate(40deg); + } +} \ No newline at end of file diff --git a/frontend/src/components/layout/AppLayout/AppLayout.tsx b/frontend/src/components/layout/AppLayout/AppLayout.tsx new file mode 100644 index 0000000..2a4bb5c --- /dev/null +++ b/frontend/src/components/layout/AppLayout/AppLayout.tsx @@ -0,0 +1,36 @@ +import React, { ReactNode } from 'react'; +import { motion } from 'framer-motion'; +import './AppLayout.scss'; + +interface AppLayoutProps { + children: ReactNode; + background?: 'default' | 'gradient'; +} + +const AppLayout: React.FC = ({ + children, + background = 'default' +}) => { + return ( +
+
+ +
+ {children} +
+ + +
+
+
+ +
+ ); +}; + +export default AppLayout; \ No newline at end of file diff --git a/frontend/src/components/layout/AppLayout/index.ts b/frontend/src/components/layout/AppLayout/index.ts new file mode 100644 index 0000000..0e1a4e2 --- /dev/null +++ b/frontend/src/components/layout/AppLayout/index.ts @@ -0,0 +1 @@ +export { default } from './AppLayout'; \ No newline at end of file diff --git a/frontend/src/components/ui/Button/Button.scss b/frontend/src/components/ui/Button/Button.scss new file mode 100644 index 0000000..010eee0 --- /dev/null +++ b/frontend/src/components/ui/Button/Button.scss @@ -0,0 +1,126 @@ +@use "sass:color"; +@use '../../../styles/variables.scss' as variables; +@use '../../../styles/mixins.scss' as mixins; + +.button { + display: inline-flex; + align-items: center; + justify-content: center; + padding: 0 variables.$spacing-md; + border-radius: variables.$border-radius-md; + font-weight: 600; + transition: all 0.2s ease; + cursor: pointer; + outline: none; + text-decoration: none; + border: none; + position: relative; + overflow: hidden; + + &:disabled { + opacity: 0.6; + cursor: not-allowed; + pointer-events: none; + } + + &__text { + position: relative; + z-index: 1; + } + + &__icon { + display: flex; + align-items: center; + justify-content: center; + position: relative; + z-index: 1; + + &--left { + margin-right: variables.$spacing-xs; + } + + &--right { + margin-left: variables.$spacing-xs; + } + } + + // Variants + &--primary { + background-color: variables.$primary-color; + color: variables.$text-on-primary; + + &:hover { + background-color: color.adjust(variables.$primary-color, $lightness: 5%); + box-shadow: 0 2px 8px rgba(variables.$primary-color, 0.4); + } + + &:active { + background-color: color.adjust(variables.$primary-color, $lightness: -5%); + } + } + + &--secondary { + background-color: rgba(variables.$background-light, 0.1); + color: variables.$text-primary; + border: 1px solid rgba(variables.$primary-color, 0.3); + + &:hover { + background-color: rgba(variables.$background-light, 0.2); + border-color: rgba(variables.$primary-color, 0.5); + } + + &:active { + background-color: rgba(variables.$background-light, 0.3); + } + } + + &--tertiary { + background-color: transparent; + color: variables.$text-primary; + + &:hover { + background-color: rgba(variables.$background-light, 0.1); + } + + &:active { + background-color: rgba(variables.$background-light, 0.2); + } + } + + &--danger { + background-color: variables.$danger-color; + color: variables.$text-on-primary; + + &:hover { + background-color: color.adjust(variables.$danger-color, $lightness: 5%); + box-shadow: 0 2px 8px rgba(variables.$danger-color, 0.4); + } + + &:active { + background-color: color.adjust(variables.$danger-color, $lightness: -5%); + } + } + + // Sizes + &--small { + height: 36px; + font-size: 14px; + min-width: 80px; + } + + &--medium { + height: 46px; + font-size: 16px; + min-width: 120px; + } + + &--large { + height: 56px; + font-size: 18px; + min-width: 150px; + } + + &--full-width { + width: 100%; + } +} \ No newline at end of file diff --git a/frontend/src/components/ui/Button/Button.tsx b/frontend/src/components/ui/Button/Button.tsx new file mode 100644 index 0000000..8ab938c --- /dev/null +++ b/frontend/src/components/ui/Button/Button.tsx @@ -0,0 +1,57 @@ +import React, { ButtonHTMLAttributes } from 'react'; +import { motion, HTMLMotionProps } from 'framer-motion'; +import './Button.scss'; + +export interface ButtonProps extends Omit, 'className'> { + children: React.ReactNode; + variant?: 'primary' | 'secondary' | 'tertiary' | 'danger'; + size?: 'small' | 'medium' | 'large'; + fullWidth?: boolean; + icon?: React.ReactNode; + iconPosition?: 'left' | 'right'; + className?: string; +} + +const Button: React.FC = ({ + children, + variant = 'primary', + size = 'medium', + fullWidth = false, + icon, + iconPosition = 'left', + className = '', + ...props +}) => { + const buttonClassName = ` + button + button--${variant} + button--${size} + ${fullWidth ? 'button--full-width' : ''} + ${className} + `; + + // Motion component props + const motionProps: HTMLMotionProps<"button"> = { + whileHover: { scale: 1.02 }, + whileTap: { scale: 0.98 }, + transition: { duration: 0.1 } + }; + + return ( + + {icon && iconPosition === 'left' && ( + {icon} + )} + {children} + {icon && iconPosition === 'right' && ( + {icon} + )} + + ); +}; + +export default Button; \ No newline at end of file diff --git a/frontend/src/components/ui/Button/index.ts b/frontend/src/components/ui/Button/index.ts new file mode 100644 index 0000000..910475f --- /dev/null +++ b/frontend/src/components/ui/Button/index.ts @@ -0,0 +1 @@ +export { default } from './Button'; \ No newline at end of file diff --git a/frontend/src/components/ui/Card/Card.scss b/frontend/src/components/ui/Card/Card.scss new file mode 100644 index 0000000..9e57423 --- /dev/null +++ b/frontend/src/components/ui/Card/Card.scss @@ -0,0 +1,64 @@ +@use '../../../styles/variables.scss' as variables; +@use '../../../styles/mixins.scss' as mixins; + +.card { + background-color: rgba(variables.$background-light, 0.1); + backdrop-filter: blur(10px); + border-radius: variables.$border-radius-lg; + padding: variables.$spacing-lg; + border: 1px solid rgba(variables.$background-light, 0.2); + box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1); + position: relative; + overflow: hidden; + transition: all 0.2s ease; + + &::before { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + height: 1px; + background: linear-gradient( + to right, + transparent, + rgba(variables.$primary-color, 0.3), + transparent + ); + } + + &::after { + content: ''; + position: absolute; + bottom: 0; + left: 0; + right: 0; + height: 1px; + background: linear-gradient( + to right, + transparent, + rgba(variables.$primary-color, 0.1), + transparent + ); + } + + &--hover { + &:hover { + box-shadow: variables.$shadow-md; + border-color: rgba(255, 255, 255, 0.2); + } + } + + &--interactive { + cursor: pointer; + + &:hover { + box-shadow: variables.$shadow-md; + border-color: rgba(255, 255, 255, 0.2); + } + + &:active { + transform: scale(0.98); + } + } +} \ No newline at end of file diff --git a/frontend/src/components/ui/Card/Card.tsx b/frontend/src/components/ui/Card/Card.tsx new file mode 100644 index 0000000..14406e3 --- /dev/null +++ b/frontend/src/components/ui/Card/Card.tsx @@ -0,0 +1,30 @@ +import React from 'react'; +import { motion, HTMLMotionProps } from 'framer-motion'; +import './Card.scss'; + +interface CardProps { + children: React.ReactNode; + className?: string; + onClick?: () => void; +} + +const Card: React.FC = ({ children, className = '', onClick }) => { + // Motion component props + const motionProps: HTMLMotionProps<"div"> = { + whileHover: onClick ? { scale: 1.01 } : undefined, + whileTap: onClick ? { scale: 0.99 } : undefined, + transition: { duration: 0.1 } + }; + + return ( + + {children} + + ); +}; + +export default Card; \ No newline at end of file diff --git a/frontend/src/components/ui/Card/index.ts b/frontend/src/components/ui/Card/index.ts new file mode 100644 index 0000000..6e2872d --- /dev/null +++ b/frontend/src/components/ui/Card/index.ts @@ -0,0 +1 @@ +export { default } from './Card'; \ No newline at end of file diff --git a/frontend/src/components/ui/LoadingScreen/LoadingScreen.scss b/frontend/src/components/ui/LoadingScreen/LoadingScreen.scss new file mode 100644 index 0000000..0b03089 --- /dev/null +++ b/frontend/src/components/ui/LoadingScreen/LoadingScreen.scss @@ -0,0 +1,127 @@ +.loading-screen { + position: fixed; + top: 0; + left: 0; + width: 100vw; + height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + background-color: rgba(0, 0, 0, 0.8); + backdrop-filter: blur(4px); + z-index: 1000; + color: white; + font-family: 'Poppins', sans-serif; + transition: opacity 0.3s ease-in-out; + opacity: 0; + pointer-events: none; + + &.visible { + opacity: 1; + pointer-events: all; + } + + &__container { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + text-align: center; + max-width: 80%; + } + + &__title { + font-size: 1.5rem; + margin-bottom: 2rem; + font-weight: 600; + text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.8); + } + + &__animation { + position: relative; + width: 100px; + height: 100px; + margin-bottom: 2rem; + } + + &__blocks { + display: flex; + justify-content: center; + align-items: center; + gap: 8px; + } + + &__block { + width: 15px; + height: 15px; + border-radius: 3px; + animation: loading-block-fall 1.8s infinite ease-in-out; + + &--1 { + background-color: #4285F4; // Google blue + animation-delay: 0s; + } + + &--2 { + background-color: #EA4335; // Google red + animation-delay: 0.2s; + } + + &--3 { + background-color: #FBBC05; // Google yellow + animation-delay: 0.4s; + } + + &--4 { + background-color: #34A853; // Google green + animation-delay: 0.6s; + } + } + + &__message { + font-size: 1rem; + color: rgba(255, 255, 255, 0.8); + margin-top: 1.5rem; + animation: message-fade 0.5s ease-in-out; + display: flex; + align-items: center; + justify-content: center; + gap: 0.5rem; + + &-icon { + font-size: 1.2rem; + color: var(--accent-color, #4f46e5); + } + } +} + +@keyframes loading-block-fall { + 0% { + transform: translateY(-20px); + opacity: 0; + } + 20% { + transform: translateY(0); + opacity: 1; + } + 80% { + transform: translateY(0); + opacity: 1; + } + 100% { + transform: translateY(20px); + opacity: 0; + } +} + +@keyframes message-fade { + 0% { + opacity: 0; + transform: translateY(5px); + } + 100% { + opacity: 1; + transform: translateY(0); + } +} \ No newline at end of file diff --git a/frontend/src/components/ui/LoadingScreen/LoadingScreen.tsx b/frontend/src/components/ui/LoadingScreen/LoadingScreen.tsx new file mode 100644 index 0000000..17ee1a0 --- /dev/null +++ b/frontend/src/components/ui/LoadingScreen/LoadingScreen.tsx @@ -0,0 +1,92 @@ +import React, { useEffect, useState } from 'react'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { + faCompactDisc, + faGuitar, + faRecordVinyl, + faHeadphones, + faMusic, + faDrum, + faVolumeUp, + faLightbulb, + faUsers, + faMicrophone, + faRandom, + faSliders, + faBrain, + faSearch, + faChair, + faVolumeHigh +} from '@fortawesome/free-solid-svg-icons'; +import { APP_NAME } from '../../../App'; +import './LoadingScreen.scss'; + +interface LoadingScreenProps { + isLoading: boolean; +} + +// Fun music-themed loading messages with corresponding icons +const loadingMessages = [ + { text: "Spinning up the turntables...", icon: faCompactDisc }, + { text: "Tuning the instruments...", icon: faGuitar }, + { text: "Polishing the vinyl records...", icon: faRecordVinyl }, + { text: "Untangling the headphones...", icon: faHeadphones }, + { text: "Cueing up the next track...", icon: faMusic }, + { text: "Finding the perfect beat...", icon: faDrum }, + { text: "Dusting off the album covers...", icon: faRecordVinyl }, + { text: "Warming up the amplifiers...", icon: faVolumeUp }, + { text: "Setting the mood lighting...", icon: faLightbulb }, + { text: "Gathering the band members...", icon: faUsers }, + { text: "Clearing the stage...", icon: faMusic }, + { text: "Testing the microphones...", icon: faMicrophone }, + { text: "Shuffling the playlist...", icon: faRandom }, + { text: "Adjusting the equalizer...", icon: faSliders }, + { text: "Loading music knowledge...", icon: faBrain }, + { text: "Summoning musical genius...", icon: faMusic }, + { text: "Searching the record collection...", icon: faSearch }, + { text: "Dropping the needle...", icon: faRecordVinyl }, + { text: "Finding the best seats in the house...", icon: faChair }, + { text: "Checking sound levels...", icon: faVolumeHigh } +]; + +const LoadingScreen: React.FC = ({ isLoading }) => { + const [message, setMessage] = useState(loadingMessages[0]); + const [key, setKey] = useState(0); // Key for animation reset + + // Change loading message every 2 seconds + useEffect(() => { + if (!isLoading) return; + + const interval = setInterval(() => { + const randomIndex = Math.floor(Math.random() * loadingMessages.length); + setMessage(loadingMessages[randomIndex]); + setKey(prev => prev + 1); // Reset animation + }, 2000); + + return () => clearInterval(interval); + }, [isLoading]); + + return ( +
+
+

{APP_NAME}

+ +
+
+
+
+
+
+
+
+ +
+ + {message.text} +
+
+
+ ); +}; + +export default LoadingScreen; \ No newline at end of file diff --git a/frontend/src/components/ui/LoadingScreen/index.ts b/frontend/src/components/ui/LoadingScreen/index.ts new file mode 100644 index 0000000..e9b5b09 --- /dev/null +++ b/frontend/src/components/ui/LoadingScreen/index.ts @@ -0,0 +1,2 @@ +import LoadingScreen from './LoadingScreen'; +export default LoadingScreen; \ No newline at end of file diff --git a/frontend/src/components/ui/ProgressBar/ProgressBar.scss b/frontend/src/components/ui/ProgressBar/ProgressBar.scss new file mode 100644 index 0000000..0d98153 --- /dev/null +++ b/frontend/src/components/ui/ProgressBar/ProgressBar.scss @@ -0,0 +1,60 @@ +@use "sass:color"; +@use '../../../styles/variables.scss'; +@use '../../../styles/mixins.scss'; + +.progress-bar { + width: 100%; + background-color: rgba(255, 255, 255, 0.1); + border-radius: variables.$border-radius-full; + overflow: hidden; + position: relative; + + &__fill { + height: 100%; + border-radius: variables.$border-radius-full; + position: relative; + + &--primary { + background: variables.$primary-gradient; + } + + &--success { + background: linear-gradient(90deg, variables.$success-color, color.adjust(variables.$success-color, $lightness: -10%)); + } + + &--warning { + background: linear-gradient(90deg, variables.$warning-color, color.adjust(variables.$warning-color, $lightness: -10%)); + } + + &--danger { + background: linear-gradient(90deg, variables.$danger-color, color.adjust(variables.$danger-color, $lightness: -10%)); + } + } + + &__pulse { + position: absolute; + top: 50%; + width: 12px; + height: 12px; + border-radius: 50%; + background-color: rgba(255, 255, 255, 0.8); + transform: translate(-50%, -50%); + filter: blur(1px); + animation: pulse 1.5s infinite; + } +} + +@keyframes pulse { + 0% { + transform: translate(-50%, -50%) scale(0.7); + opacity: 0.9; + } + 50% { + transform: translate(-50%, -50%) scale(1.2); + opacity: 0.3; + } + 100% { + transform: translate(-50%, -50%) scale(0.7); + opacity: 0.9; + } +} \ No newline at end of file diff --git a/frontend/src/components/ui/ProgressBar/ProgressBar.tsx b/frontend/src/components/ui/ProgressBar/ProgressBar.tsx new file mode 100644 index 0000000..63609f8 --- /dev/null +++ b/frontend/src/components/ui/ProgressBar/ProgressBar.tsx @@ -0,0 +1,45 @@ +import React from 'react'; +import { motion } from 'framer-motion'; +import './ProgressBar.scss'; + +export interface ProgressBarProps { + progress: number; // 0 to 100 + height?: number; + color?: 'primary' | 'success' | 'warning' | 'danger'; + className?: string; + animated?: boolean; +} + +export const ProgressBar: React.FC = ({ + progress, + height = 6, + color = 'primary', + className = '', + animated = true, +}) => { + // Ensure progress is between 0 and 100 + const normalizedProgress = Math.max(0, Math.min(100, progress)); + + return ( +
+ + + {animated && ( +
+ )} +
+ ); +}; + +export default ProgressBar; \ No newline at end of file diff --git a/frontend/src/components/ui/ProgressBar/index.ts b/frontend/src/components/ui/ProgressBar/index.ts new file mode 100644 index 0000000..b092e8a --- /dev/null +++ b/frontend/src/components/ui/ProgressBar/index.ts @@ -0,0 +1 @@ +export { default, ProgressBar, type ProgressBarProps } from './ProgressBar'; \ No newline at end of file diff --git a/frontend/src/contexts/ThemeContext.tsx b/frontend/src/contexts/ThemeContext.tsx new file mode 100644 index 0000000..3f6db57 --- /dev/null +++ b/frontend/src/contexts/ThemeContext.tsx @@ -0,0 +1,76 @@ +import React, { createContext, useContext, useState, ReactNode } from 'react'; + +interface ThemeContextProps { + songColor: string; + setSongColor: (color: string) => void; + getColorRgb: () => { r: number; g: number; b: number }; + getLighterColor: (opacity?: number) => string; + getDarkerColor: (percentage?: number) => string; +} + +const defaultContext: ThemeContextProps = { + songColor: '4f46e5', // Default purple color + setSongColor: () => {}, + getColorRgb: () => ({ r: 79, g: 70, b: 229 }), // Default purple in RGB + getLighterColor: () => 'rgba(79, 70, 229, 0.2)', + getDarkerColor: () => '#3b35b1', +}; + +const ThemeContext = createContext(defaultContext); + +export const useTheme = () => useContext(ThemeContext); + +interface ThemeProviderProps { + children: ReactNode; +} + +export const ThemeProvider: React.FC = ({ children }) => { + const [songColor, setSongColor] = useState(defaultContext.songColor); + + // Convert hex to RGB + const getColorRgb = () => { + // Handle hex with or without '#' + const hex = songColor.charAt(0) === '#' ? songColor.substring(1) : songColor; + + // Parse hex string + const bigint = parseInt(hex, 16); + + // Extract RGB components + const r = (bigint >> 16) & 255; + const g = (bigint >> 8) & 255; + const b = bigint & 255; + + return { r, g, b }; + }; + + // Get a lighter version of the color + const getLighterColor = (opacity = 0.2) => { + const { r, g, b } = getColorRgb(); + return `rgba(${r}, ${g}, ${b}, ${opacity})`; + }; + + // Get a darker version of the color + const getDarkerColor = (percentage = 30) => { + const { r, g, b } = getColorRgb(); + const darken = (1 - percentage / 100); + const rd = Math.floor(r * darken); + const gd = Math.floor(g * darken); + const bd = Math.floor(b * darken); + + return `#${rd.toString(16).padStart(2, '0')}${gd.toString(16).padStart(2, '0')}${bd.toString(16).padStart(2, '0')}`; + }; + + return ( + + {children} + + ); +}; \ No newline at end of file diff --git a/frontend/src/hooks/useAudioPlayer.ts b/frontend/src/hooks/useAudioPlayer.ts new file mode 100644 index 0000000..7ee78f6 --- /dev/null +++ b/frontend/src/hooks/useAudioPlayer.ts @@ -0,0 +1,196 @@ +import { useState, useEffect, useRef, useCallback } from 'react'; + +interface AudioState { + isPlaying: boolean; + isLoading: boolean; + duration: number; + currentTime: number; + error: string | null; +} + +interface AudioControls { + play: () => void; + pause: () => void; + toggle: () => void; + setVolume: (volume: number) => void; + seek: (time: number) => void; + stop: () => void; +} + +/** + * Custom hook for controlling audio playback + * @param url The URL of the audio file to play + * @returns [AudioState, AudioControls] + */ +const useAudioPlayer = (url: string): [AudioState, AudioControls] => { + // Create a single audio element instance + const audioRef = useRef(null); + + // State to track audio playback + const [audioState, setAudioState] = useState({ + isPlaying: false, + isLoading: true, + duration: 0, + currentTime: 0, + error: null, + }); + + // Initialize or update audio element when URL changes + useEffect(() => { + // Clean up previous instance + if (audioRef.current) { + audioRef.current.pause(); + audioRef.current.removeAttribute('src'); + audioRef.current.load(); + } + + if (!url) { + setAudioState(prev => ({ + ...prev, + isLoading: false, + isPlaying: false, + error: null, + })); + return; + } + + // Create new audio element if needed + if (!audioRef.current) { + audioRef.current = new Audio(); + } + + const audio = audioRef.current; + + // Set new source + audio.src = url; + audio.load(); + + // Reset state for new track + setAudioState({ + isPlaying: false, + isLoading: true, + duration: 0, + currentTime: 0, + error: null, + }); + + // Setup event listeners + const onLoadedMetadata = () => { + setAudioState(prev => ({ + ...prev, + duration: audio.duration, + isLoading: false, + })); + }; + + const onTimeUpdate = () => { + setAudioState(prev => ({ + ...prev, + currentTime: audio.currentTime, + })); + }; + + const onEnded = () => { + setAudioState(prev => ({ + ...prev, + isPlaying: false, + currentTime: 0, + })); + }; + + const onError = () => { + setAudioState(prev => ({ + ...prev, + error: 'Failed to load audio', + isLoading: false, + })); + }; + + // Add event listeners + audio.addEventListener('loadedmetadata', onLoadedMetadata); + audio.addEventListener('timeupdate', onTimeUpdate); + audio.addEventListener('ended', onEnded); + audio.addEventListener('error', onError); + + // Cleanup function + return () => { + audio.removeEventListener('loadedmetadata', onLoadedMetadata); + audio.removeEventListener('timeupdate', onTimeUpdate); + audio.removeEventListener('ended', onEnded); + audio.removeEventListener('error', onError); + }; + }, [url]); + + // Audio control functions + const play = useCallback(() => { + if (!audioRef.current) return; + + const playPromise = audioRef.current.play(); + + if (playPromise !== undefined) { + playPromise + .then(() => { + setAudioState(prev => ({ ...prev, isPlaying: true })); + }) + .catch(error => { + console.error('Playback error:', error); + setAudioState(prev => ({ + ...prev, + error: 'Failed to play audio', + isPlaying: false, + })); + }); + } + }, []); + + const pause = useCallback(() => { + if (!audioRef.current) return; + audioRef.current.pause(); + setAudioState(prev => ({ ...prev, isPlaying: false })); + }, []); + + const toggle = useCallback(() => { + if (audioState.isPlaying) { + pause(); + } else { + play(); + } + }, [audioState.isPlaying, pause, play]); + + const setVolume = useCallback((volume: number) => { + if (!audioRef.current) return; + audioRef.current.volume = Math.max(0, Math.min(1, volume)); + }, []); + + const seek = useCallback((time: number) => { + if (!audioRef.current) return; + audioRef.current.currentTime = Math.max(0, Math.min(time, audioRef.current.duration || 0)); + setAudioState(prev => ({ ...prev, currentTime: audioRef.current?.currentTime || 0 })); + }, []); + + const stop = useCallback(() => { + if (!audioRef.current) return; + audioRef.current.pause(); + audioRef.current.currentTime = 0; + setAudioState(prev => ({ + ...prev, + isPlaying: false, + currentTime: 0, + })); + }, []); + + // Return audio state and controls + return [ + audioState, + { + play, + pause, + toggle, + setVolume, + seek, + stop, + }, + ]; +}; + +export default useAudioPlayer; \ No newline at end of file diff --git a/frontend/src/hooks/useGame.ts b/frontend/src/hooks/useGame.ts new file mode 100644 index 0000000..9a80d8e --- /dev/null +++ b/frontend/src/hooks/useGame.ts @@ -0,0 +1,194 @@ +import { useState, useCallback } from 'react'; +import { + ApiAnswerResponse, + ApiGameQuestion, + ApiGameResponse, + ApiGameSession, + GameSettings, + GameState, + GameSummaryType, + Song +} from '../types/game'; +import { gameApi } from '../services/api'; + +interface UseGameProps { + onGameComplete?: (summary: GameSummaryType) => void; +} + +export default function useGame({ onGameComplete }: UseGameProps = {}) { + const [sessionId, setSessionId] = useState(null); + const [gameState, setGameState] = useState({ + questions: [], + currentQuestionIndex: 0, + score: 0, + correctAnswers: 0, + loading: false, + error: null, + }); + const [currentApiQuestion, setCurrentApiQuestion] = useState(null); + const [isCreatingGame, setIsCreatingGame] = useState(false); + + // Create a new game session + const createGame = useCallback(async (settings: GameSettings) => { + // Prevent multiple concurrent game creation requests + if (isCreatingGame) { + console.log('Game creation already in progress, skipping duplicate request'); + return null; + } + + try { + setIsCreatingGame(true); + setGameState(prev => ({ ...prev, loading: true, error: null })); + + // Create a new game session + const session: ApiGameSession = await gameApi.createGame(settings); + setSessionId(session.session_id); + + // Start the game + const gameResponse: ApiGameResponse = await gameApi.startGame(session.session_id); + setCurrentApiQuestion(gameResponse.question); + + // Update state + setGameState(prev => ({ + ...prev, + loading: false, + currentQuestionIndex: gameResponse.current_question, + score: gameResponse.score, + })); + + setIsCreatingGame(false); + return gameResponse; + } catch (error) { + console.error('Error creating game:', error); + setGameState(prev => ({ + ...prev, + loading: false, + error: error instanceof Error ? error.message : 'Failed to create game' + })); + setIsCreatingGame(false); + return null; + } + }, [isCreatingGame]); + + // Answer a question + const answerQuestion = useCallback(async (optionIndex: number) => { + if (!sessionId || !currentApiQuestion) return null; + + try { + setGameState(prev => ({ ...prev, loading: true })); + + // Submit the answer + const response: ApiAnswerResponse = await gameApi.answerQuestion( + sessionId, + gameState.currentQuestionIndex, + optionIndex + ); + + // Update state based on the response + setGameState(prev => ({ + ...prev, + loading: false, + score: response.score, + correctAnswers: prev.correctAnswers + (response.correct ? 1 : 0), + })); + + // If the game is complete, call the completion callback + if (response.game_complete && onGameComplete) { + // Use currentQuestionIndex + 1 as the total questions count + // This represents the current question number, which is the total number of questions answered + const totalQuestions = gameState.currentQuestionIndex + 1; + const correctAnswers = gameState.correctAnswers + (response.correct ? 1 : 0); + const summary: GameSummaryType = { + score: response.score, + totalQuestions, + correctAnswers, + accuracy: (correctAnswers / totalQuestions) * 100, + }; + onGameComplete(summary); + } + // If there's a next question, move to it + else if (response.next_question_index !== undefined) { + // Get the next question + const gameResponse = await gameApi.getGameState(sessionId); + setCurrentApiQuestion(gameResponse.question); + + // Update state + setGameState(prev => ({ + ...prev, + currentQuestionIndex: response.next_question_index!, + })); + } + + return response; + } catch (error) { + console.error('Error answering question:', error); + setGameState(prev => ({ + ...prev, + loading: false, + error: error instanceof Error ? error.message : 'Failed to submit answer' + })); + return null; + } + }, [sessionId, currentApiQuestion, gameState.currentQuestionIndex, gameState.questions.length, gameState.correctAnswers, onGameComplete]); + + // Reset the game + const resetGame = useCallback(() => { + setSessionId(null); + setCurrentApiQuestion(null); + setGameState({ + questions: [], + currentQuestionIndex: 0, + score: 0, + correctAnswers: 0, + loading: false, + error: null, + }); + }, []); + + // Convert the current API question to a frontend song object + const getCurrentQuestion = useCallback(() => { + if (!currentApiQuestion) return null; + + // Extract option data from the API question + const options: Song[] = currentApiQuestion.options.map(option => ({ + id: option.song_id.toString(), + title: option.name, + artist: '', // The API doesn't include artist in options + coverUrl: '', // Will be populated from blurred_cover_url + audioUrl: currentApiQuestion.preview_url, + })); + + // Find the correct option + const correctOption = options[currentApiQuestion.correct_option_index]; + + // Add artists to the correct option from the question + if (correctOption) { + correctOption.artist = currentApiQuestion.artists || ''; + } + + return { + options, + correctOption, + timeLimit: currentApiQuestion.time_limit, + coverUrl: currentApiQuestion.blurred_cover_url, + clearCoverUrl: currentApiQuestion.clear_cover_url, + songColor: currentApiQuestion.song_color || '4f46e5', // Use the song color or default to a purple color + artists: currentApiQuestion.artists || '', // Include artists from API + }; + }, [currentApiQuestion]); + + // Check if game already exists and is valid + const hasActiveGame = useCallback(() => { + return sessionId !== null && currentApiQuestion !== null; + }, [sessionId, currentApiQuestion]); + + return { + gameState, + sessionId, + createGame, + answerQuestion, + resetGame, + getCurrentQuestion, + hasActiveGame + }; +} \ No newline at end of file diff --git a/frontend/src/hooks/useTimer.ts b/frontend/src/hooks/useTimer.ts new file mode 100644 index 0000000..da12b81 --- /dev/null +++ b/frontend/src/hooks/useTimer.ts @@ -0,0 +1,187 @@ +import { useState, useEffect, useRef, useCallback } from 'react'; + +interface TimerState { + timeLeft: number; + progress: number; + isRunning: boolean; +} + +interface TimerControls { + start: () => void; + pause: () => void; + reset: () => void; + restart: () => void; +} + +interface TimerOptions { + autoStart?: boolean; + interval?: number; +} + +/** + * Custom hook for creating a countdown timer + * @param duration Duration in seconds + * @param onComplete Callback when timer completes + * @param options Timer options + * @returns [TimerState, TimerControls] + */ +const useTimer = ( + duration: number, + onComplete?: () => void, + options: TimerOptions = {} +): [TimerState, TimerControls] => { + const { autoStart = true, interval = 100 } = options; + + // State to track timer + const [state, setState] = useState({ + timeLeft: duration, + progress: 100, + isRunning: autoStart, + }); + + // Refs to prevent stale closures in setInterval + const timeLeftRef = useRef(duration); + const isRunningRef = useRef(autoStart); + const intervalRef = useRef | null>(null); + const onCompleteRef = useRef<(() => void) | undefined>(onComplete); + + // Update ref when callback changes + useEffect(() => { + onCompleteRef.current = onComplete; + }, [onComplete]); + + // Main timer logic + const setupTimer = useCallback(() => { + // Clear any existing interval + if (intervalRef.current) { + clearInterval(intervalRef.current); + intervalRef.current = null; + } + + // Only set up if timer should be running + if (!isRunningRef.current) return; + + // Set up new interval + intervalRef.current = setInterval(() => { + // Decrease time left + timeLeftRef.current = Math.max(0, timeLeftRef.current - (interval / 1000)); + + // Calculate progress percentage + const progressValue = (timeLeftRef.current / duration) * 100; + + // Update state + setState({ + timeLeft: timeLeftRef.current, + progress: progressValue, + isRunning: timeLeftRef.current > 0 && isRunningRef.current, + }); + + // Check if timer completed + if (timeLeftRef.current <= 0) { + // Stop the timer + isRunningRef.current = false; + if (intervalRef.current) { + clearInterval(intervalRef.current); + intervalRef.current = null; + } + + // Call completion callback + if (onCompleteRef.current) { + onCompleteRef.current(); + } + } + }, interval); + }, [duration, interval]); + + // Set up timer when running state changes + useEffect(() => { + timeLeftRef.current = state.timeLeft; + isRunningRef.current = state.isRunning; + + if (state.isRunning) { + setupTimer(); + } + + // Cleanup on unmount or when dependencies change + return () => { + if (intervalRef.current) { + clearInterval(intervalRef.current); + intervalRef.current = null; + } + }; + }, [state.isRunning, state.timeLeft, setupTimer]); + + // Initialize timer when duration changes + useEffect(() => { + // Reset state + timeLeftRef.current = duration; + setState({ + timeLeft: duration, + progress: 100, + isRunning: autoStart, + }); + isRunningRef.current = autoStart; + + // Set up timer if auto-start is enabled + if (autoStart) { + setupTimer(); + } + + // Cleanup on unmount + return () => { + if (intervalRef.current) { + clearInterval(intervalRef.current); + intervalRef.current = null; + } + }; + }, [duration, autoStart, setupTimer]); + + // Timer control functions + const start = useCallback(() => { + if (state.isRunning || state.timeLeft <= 0) return; + + isRunningRef.current = true; + setState(prev => ({ ...prev, isRunning: true })); + }, [state.isRunning, state.timeLeft]); + + const pause = useCallback(() => { + if (!state.isRunning) return; + + isRunningRef.current = false; + setState(prev => ({ ...prev, isRunning: false })); + }, [state.isRunning]); + + const reset = useCallback(() => { + timeLeftRef.current = duration; + isRunningRef.current = false; + + setState({ + timeLeft: duration, + progress: 100, + isRunning: false, + }); + }, [duration]); + + const restart = useCallback(() => { + timeLeftRef.current = duration; + isRunningRef.current = true; + + setState({ + timeLeft: duration, + progress: 100, + isRunning: true, + }); + }, [duration]); + + return [ + state, + { + start, + pause, + reset, + restart, + }, + ]; +}; + +export default useTimer; \ No newline at end of file diff --git a/frontend/src/index.css b/frontend/src/index.css new file mode 100644 index 0000000..545f00d --- /dev/null +++ b/frontend/src/index.css @@ -0,0 +1,72 @@ +:root { + font-family: system-ui, Avenir, Helvetica, Arial, sans-serif; + line-height: 1.5; + font-weight: 400; + + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + + /* Default accent color values (will be overridden by DynamicTheme) */ + --accent-color: #0A84FF; + --accent-rgb: 10, 132, 255; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} +a:hover { + color: #535bf2; +} + +body { + margin: 0; + display: flex; + place-items: center; + min-width: 320px; + min-height: 100vh; +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} +button:hover { + border-color: #646cff; +} +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } +} diff --git a/frontend/src/main.tsx b/frontend/src/main.tsx new file mode 100644 index 0000000..68cf224 --- /dev/null +++ b/frontend/src/main.tsx @@ -0,0 +1,12 @@ +import { StrictMode } from 'react' +import { createRoot } from 'react-dom/client' +import App from './App.tsx' +import { ThemeProvider } from './contexts/ThemeContext.tsx' + +createRoot(document.getElementById('root')!).render( + + + + + , +) diff --git a/frontend/src/services/api.ts b/frontend/src/services/api.ts new file mode 100644 index 0000000..457ed79 --- /dev/null +++ b/frontend/src/services/api.ts @@ -0,0 +1,133 @@ +import axios from 'axios'; +import { Playlist } from '../types/song'; + +// Create axios instance with base URL +const API_BASE_URL = '/api'; + +const api = axios.create({ + baseURL: API_BASE_URL, + headers: { + 'Content-Type': 'application/json', + }, +}); + +// Game API +export const gameApi = { + // Create a new game session + createGame: async (settings: { numSongs: number; numChoices: number; genres?: string[]; playlist_id?: string; start_year?: number; end_year?: number }) => { + console.log('Creating game with settings:', settings); // Debug log + const response = await api.post('/game/create', { + num_songs: settings.numSongs, + num_choices: settings.numChoices, + genres: settings.genres, + playlist_id: settings.playlist_id, + start_year: settings.start_year, + end_year: settings.end_year + }); + return response.data; + }, + + // Start a game session + startGame: async (sessionId: string) => { + const response = await api.post(`/game/start/${sessionId}`); + return response.data; + }, + + // Get the current state of a game + getGameState: async (sessionId: string) => { + const response = await api.get(`/game/state/${sessionId}`); + return response.data; + }, + + // Submit an answer to a question + answerQuestion: async (sessionId: string, questionIndex: number, selectedOptionIndex: number) => { + const response = await api.post('/game/answer', { + session_id: sessionId, + question_index: questionIndex, + selected_option_index: selectedOptionIndex, + }); + return response.data; + }, + + // Get a summary of a completed game + getGameSummary: async (sessionId: string) => { + const response = await api.get(`/game/summary/${sessionId}`); + return response.data; + }, +}; + +// Songs API +export const songsApi = { + // Get a list of songs + getSongs: async (limit = 20, offset = 0) => { + const response = await api.get('/songs', { + params: { limit, offset }, + }); + return response.data; + }, + + // Get the total number of songs + getSongCount: async () => { + const response = await api.get('/songs/count'); + return response.data.count; + }, + + // Get available genres + getGenres: async () => { + const response = await api.get('/songs/genres'); + return response.data; + }, + + // Get a song by ID + getSong: async (songId: number) => { + const response = await api.get(`/songs/${songId}`); + return response.data; + }, + + // Get random songs + getRandomSongs: async (count = 5) => { + const response = await api.get('/songs/random', { + params: { count }, + }); + return response.data; + }, +}; + +// Preview API +export const previewApi = { + // Get audio preview URL for a song + getAudioPreview: async (songId: number) => { + const response = await api.get(`/preview/audio/${songId}`); + return response.data.preview_url; + }, + + // Get blurred cover image for a song + getBlurredCover: async (songId: number, blurLevel = 10) => { + const response = await api.get(`/preview/cover/${songId}`, { + params: { blur_level: blurLevel }, + }); + return response.data; + }, +}; + +// Playlists API +export const playlistsApi = { + // Get all available playlists + getPlaylists: async (): Promise => { + const response = await api.get('/playlists'); + return response.data; + }, + + // Get a playlist by ID + getPlaylist: async (playlistId: string): Promise => { + const response = await api.get(`/playlists/${playlistId}`); + return response.data; + }, +}; + +export default { + game: gameApi, + songs: songsApi, + preview: previewApi, + playlists: playlistsApi, +}; \ No newline at end of file diff --git a/frontend/src/styles/global.scss b/frontend/src/styles/global.scss new file mode 100644 index 0000000..fcd6719 --- /dev/null +++ b/frontend/src/styles/global.scss @@ -0,0 +1,148 @@ +@use "sass:color"; +@use 'variables.scss'; +@use 'mixins.scss'; +@import '@fontsource/inter/400.css'; +@import '@fontsource/inter/500.css'; +@import '@fontsource/inter/600.css'; +@import '@fontsource/inter/700.css'; + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +html, body, #root { + height: 100%; + width: 100%; +} + +body { + font-family: variables.$font-family-base; + font-size: variables.$font-size-base; + font-weight: variables.$font-weight-normal; + color: variables.$text-primary; + background-color: variables.$background-color; + line-height: 1.5; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + overflow-x: hidden; +} + +// Animation for page transitions +.page-transition-enter { + opacity: 0; + transform: translateY(20px); +} + +.page-transition-enter-active { + opacity: 1; + transform: translateY(0); + transition: opacity 300ms, transform 300ms; +} + +.page-transition-exit { + opacity: 1; + transform: translateY(0); +} + +.page-transition-exit-active { + opacity: 0; + transform: translateY(-20px); + transition: opacity 300ms, transform 300ms; +} + +// Button styles +button { + cursor: pointer; + font-family: variables.$font-family-base; +} + +// Link styles +a { + color: variables.$primary-color; + text-decoration: none; + transition: color variables.$transition-fast; + + &:hover { + color: color.adjust(variables.$primary-color, $lightness: -10%); + } +} + +// Glass card styles +.glass-card { + @include mixins.glassmorphism; + padding: variables.$spacing-lg; + border-radius: variables.$border-radius-lg; +} + +// Container +.container { + width: 100%; + max-width: 1200px; + margin: 0 auto; + padding: 0 variables.$spacing-lg; + + @include mixins.mobile { + padding: 0 variables.$spacing-md; + } +} + +// Focus styles +:focus { + outline: 2px solid variables.$primary-color; + outline-offset: 2px; +} + +// Remove focus outline for mouse users +:focus:not(:focus-visible) { + outline: none; +} + +// Utility classes +.text-center { + text-align: center; +} + +.mb-sm { + margin-bottom: variables.$spacing-sm; +} + +.mb-md { + margin-bottom: variables.$spacing-md; +} + +.mb-lg { + margin-bottom: variables.$spacing-lg; +} + +.mt-sm { + margin-top: variables.$spacing-sm; +} + +.mt-md { + margin-top: variables.$spacing-md; +} + +.mt-lg { + margin-top: variables.$spacing-lg; +} + +// Animations +@keyframes fadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } +} + +.fade-in { + animation: fadeIn variables.$transition-base forwards; +} + +// Background with gradient +.bg-gradient { + background: variables.$primary-gradient; +} \ No newline at end of file diff --git a/frontend/src/styles/mixins.scss b/frontend/src/styles/mixins.scss new file mode 100644 index 0000000..4a04dfb --- /dev/null +++ b/frontend/src/styles/mixins.scss @@ -0,0 +1,130 @@ +@use 'variables.scss'; + +// Glassmorphism style mixin +@mixin glassmorphism { + background: variables.$glass-gradient; + backdrop-filter: blur(16px); + -webkit-backdrop-filter: blur(16px); + border: 1px solid variables.$border-color; + box-shadow: variables.$shadow-sm; +} + +// Responsive media queries +@mixin mobile { + @media (max-width: #{variables.$breakpoint-md - 1px}) { + @content; + } +} + +@mixin tablet { + @media (min-width: #{variables.$breakpoint-md}) and (max-width: #{variables.$breakpoint-lg - 1px}) { + @content; + } +} + +@mixin desktop { + @media (min-width: #{variables.$breakpoint-lg}) { + @content; + } +} + +// Flex helpers +@mixin flex-center { + display: flex; + align-items: center; + justify-content: center; +} + +@mixin flex-between { + display: flex; + align-items: center; + justify-content: space-between; +} + +@mixin flex-column { + display: flex; + flex-direction: column; +} + +// Typography styles +@mixin heading-1 { + font-size: 36px; + font-weight: variables.$font-weight-bold; + line-height: 1.2; +} + +@mixin heading-2 { + font-size: 28px; + font-weight: variables.$font-weight-bold; + line-height: 1.3; +} + +@mixin heading-3 { + font-size: 22px; + font-weight: variables.$font-weight-semibold; + line-height: 1.4; +} + +@mixin body-large { + font-size: 18px; + line-height: 1.5; +} + +@mixin body-regular { + font-size: variables.$font-size-base; + line-height: 1.5; +} + +@mixin body-small { + font-size: 14px; + line-height: 1.5; +} + +@mixin caption { + font-size: 12px; + line-height: 1.5; +} + +// Button styles +@mixin button-base { + display: inline-flex; + align-items: center; + justify-content: center; + padding: variables.$spacing-sm variables.$spacing-lg; + border-radius: variables.$border-radius-full; + font-weight: variables.$font-weight-medium; + transition: all variables.$transition-base; + cursor: pointer; + border: none; + outline: none; + + &:disabled { + opacity: 0.5; + cursor: not-allowed; + } +} + +@mixin button-primary { + @include button-base; + background: variables.$primary-gradient; + color: variables.$text-primary; + + &:hover { + transform: translateY(-2px); + box-shadow: variables.$shadow-md; + } + + &:active { + transform: translateY(0); + } +} + +@mixin button-secondary { + @include button-base; + background: rgba(255, 255, 255, 0.1); + color: variables.$text-primary; + + &:hover { + background: rgba(255, 255, 255, 0.15); + } +} \ No newline at end of file diff --git a/frontend/src/styles/reset.scss b/frontend/src/styles/reset.scss new file mode 100644 index 0000000..cfe6502 --- /dev/null +++ b/frontend/src/styles/reset.scss @@ -0,0 +1,70 @@ +/* Reset and base styles */ +*, *:before, *:after { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +html, body { + height: 100%; + width: 100%; + font-size: 16px; + line-height: 1.5; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: optimizeLegibility; +} + +body { + position: relative; + overflow-x: hidden; + min-height: 100vh; + /* Support for iOS safe areas */ + padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left); +} + +#root { + height: 100%; + width: 100%; +} + +a { + color: inherit; + text-decoration: none; +} + +button, input, select, textarea { + font-family: inherit; + font-size: inherit; + color: inherit; + background: none; + border: none; + outline: none; + appearance: none; + border-radius: 0; + margin: 0; +} + +button { + cursor: pointer; +} + +ul, ol { + list-style: none; +} + +img, svg { + display: block; + max-width: 100%; + height: auto; +} + +/* Remove animations and transitions for people who've turned them off */ +@media (prefers-reduced-motion: reduce) { + * { + animation-duration: 0.01ms !important; + animation-iteration-count: 1 !important; + transition-duration: 0.01ms !important; + scroll-behavior: auto !important; + } +} \ No newline at end of file diff --git a/frontend/src/styles/variables.scss b/frontend/src/styles/variables.scss new file mode 100644 index 0000000..1a323cb --- /dev/null +++ b/frontend/src/styles/variables.scss @@ -0,0 +1,68 @@ +// Apple-inspired Design System Colors +$primary-color: #0A84FF; +$secondary-color: #5E5CE6; +$success-color: #30D158; +$warning-color: #FF9F0A; +$danger-color: #FF453A; +$error-color: #FF453A; +$info-color: #64D2FF; + +// Theme Colors +$background-color: #000000; +$background-secondary-color: #1C1C1E; +$background-light: #2C2C2E; +$card-background: rgba(30, 30, 30, 0.8); +$text-primary: #FFFFFF; +$text-secondary: rgba(255, 255, 255, 0.7); +$text-tertiary: rgba(255, 255, 255, 0.5); +$text-on-primary: #FFFFFF; +$border-color: rgba(255, 255, 255, 0.15); + +// Gradients +$primary-gradient: linear-gradient(135deg, #30B5FF 0%, #7A4BFF 100%); +$glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); + +// Typography +$font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji'; +$font-size-base: 16px; +$font-weight-normal: 400; +$font-weight-medium: 500; +$font-weight-semibold: 600; +$font-weight-bold: 700; + +// Spacing +$spacing-xs: 4px; +$spacing-sm: 8px; +$spacing-md: 16px; +$spacing-lg: 24px; +$spacing-xl: 32px; +$spacing-xxl: 48px; + +// Border Radius +$border-radius-sm: 8px; +$border-radius-md: 12px; +$border-radius-lg: 16px; +$border-radius-xl: 20px; +$border-radius-full: 9999px; +$border-radius-pill: 9999px; + +// Shadows +$shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15); +$shadow-md: 0 8px 16px rgba(0, 0, 0, 0.2); +$shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.25); + +// Z-index +$z-index-dropdown: 1000; +$z-index-modal: 1050; +$z-index-toast: 1100; + +// Transitions +$transition-fast: 0.15s ease; +$transition-base: 0.3s ease; +$transition-slow: 0.5s ease; + +// Breakpoints +$breakpoint-sm: 576px; +$breakpoint-md: 768px; +$breakpoint-lg: 992px; +$breakpoint-xl: 1200px; \ No newline at end of file diff --git a/frontend/src/types/game.ts b/frontend/src/types/game.ts new file mode 100644 index 0000000..6becc6e --- /dev/null +++ b/frontend/src/types/game.ts @@ -0,0 +1,179 @@ +export interface Song { + id: string; + title: string; + artist: string; + coverUrl: string; + audioUrl: string; +} + +export interface GameQuestion { + correctSong: Song; + options: Song[]; +} + +export interface GameSettings { + numSongs: number; + numChoices: number; + genres?: string[]; // Optional list of genres to filter songs + playlist_id?: string; // Optional playlist ID for predefined filters + start_year?: number; // Optional start year for filtering + end_year?: number; // Optional end year for filtering +} + +export interface GameSummaryType { + score: number; + totalQuestions: number; + correctAnswers: number; + accuracy: number; +} + +export interface GameState { + questions: GameQuestion[]; + currentQuestionIndex: number; + score: number; + correctAnswers: number; + loading: boolean; + error: string | null; +} + +export interface GameOption { + song_id: number; + name: string; + is_correct: boolean; +} + +export interface GameSession { + session_id: string; + questions: GameQuestion[]; + current_question: number; + score: number; + total_questions: number; + started_at: number; +} + +export interface GameResponse { + session_id: string; + current_question: number; + total_questions: number; + question: GameQuestion; + score: number; + time_remaining: number | null; +} + +export interface AnswerRequest { + session_id: string; + question_index: number; + selected_option_index: number; +} + +export interface AnswerResponse { + correct: boolean; + correct_option_index: number; + score: number; + next_question_index: number | null; + game_complete: boolean; +} + +export interface GameSummary { + session_id: string; + score: number; + total_questions: number; + accuracy: number; +} + +// Backend API types +export interface ApiSong { + SongId: number; + Name: string; + Artists: string; + CoverSmall?: string; + CoverMedium?: string; + CoverBig?: string; + CoverXL?: string; + DeezerID?: number; + DeezerURL?: string; + AlbumName?: string; +} + +export interface ApiGameOption { + song_id: number; + name: string; + is_correct: boolean; +} + +export interface ApiGameQuestion { + song_id: number; + preview_url: string; + blurred_cover_url: string; + clear_cover_url: string; + correct_option_index: number; + options: ApiGameOption[]; + time_limit: number; + song_color: string; + artists: string; +} + +export interface ApiGameSession { + session_id: string; + questions: ApiGameQuestion[]; + current_question: number; + score: number; + total_questions: number; + started_at: number; +} + +export interface ApiGameResponse { + session_id: string; + current_question: number; + total_questions: number; + question: ApiGameQuestion; + score: number; + time_remaining?: number; +} + +export interface ApiAnswerRequest { + session_id: string; + question_index: number; + selected_option_index: number; +} + +export interface ApiAnswerResponse { + correct: boolean; + correct_option_index: number; + score: number; + next_question_index?: number; + game_complete: boolean; + points_earned: number; +} + +export interface ApiGameSummary { + session_id: string; + score: number; + total_questions: number; + accuracy: number; +} + +export interface ApiGameSettings { + num_songs: number; + num_choices: number; + genres?: string[]; // Optional list of genres to filter songs + playlist_id?: string; // Optional playlist ID for predefined filters + start_year?: number; // Optional start year for filtering + end_year?: number; // Optional end year for filtering +} + +// Mapping functions to convert between API and frontend types +export const mapApiSongToSong = (apiSong: ApiSong): Song => ({ + id: apiSong.SongId.toString(), + title: apiSong.Name, + artist: apiSong.Artists, + coverUrl: apiSong.CoverMedium || apiSong.CoverBig || apiSong.CoverXL || apiSong.CoverSmall || '', + audioUrl: apiSong.DeezerURL || '', +}); + +export const mapApiGameSummaryToGameSummary = (apiSummary: ApiGameSummary): GameSummaryType => ({ + score: apiSummary.score, + totalQuestions: apiSummary.total_questions, + correctAnswers: Math.round(apiSummary.accuracy * apiSummary.total_questions / 100), + accuracy: apiSummary.accuracy, +}); \ No newline at end of file diff --git a/frontend/src/types/index.ts b/frontend/src/types/index.ts new file mode 100644 index 0000000..b93669c --- /dev/null +++ b/frontend/src/types/index.ts @@ -0,0 +1 @@ +export * from './song'; diff --git a/frontend/src/types/song.ts b/frontend/src/types/song.ts new file mode 100644 index 0000000..2b3d2fc --- /dev/null +++ b/frontend/src/types/song.ts @@ -0,0 +1,41 @@ +export interface Contributor { + id: number; + name: string; + role: string; +} + +export interface Song { + SongId: number; + Name: string; + Artists: string; + Color: string; + DarkColor: string; + SongMetaId: number | null; + SpotifyId: string | null; + DeezerID: number | null; + DeezerURL: string | null; + CoverSmall: string | null; + CoverMedium: string | null; + CoverBig: string | null; + CoverXL: string | null; + ISRC: string | null; + BPM: number | null; + Duration: number | null; + ReleaseDate: string | null; + AlbumName: string | null; + Explicit: boolean | null; + Rank: number | null; + Tags: string[] | null; + Contributors: Contributor[] | null; + AlbumGenres: string[] | null; +} + +export interface Playlist { + id: string; + name: string; + description: string; + genres?: string[]; + start_year?: number; + end_year?: number; + cover_image?: string; +} \ No newline at end of file diff --git a/frontend/src/vite-env.d.ts b/frontend/src/vite-env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/frontend/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/frontend/tsconfig.app.json b/frontend/tsconfig.app.json new file mode 100644 index 0000000..358ca9b --- /dev/null +++ b/frontend/tsconfig.app.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "target": "ES2020", + "useDefineForClassFields": true, + "lib": ["ES2020", "DOM", "DOM.Iterable"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "isolatedModules": true, + "moduleDetection": "force", + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["src"] +} diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json new file mode 100644 index 0000000..1ffef60 --- /dev/null +++ b/frontend/tsconfig.json @@ -0,0 +1,7 @@ +{ + "files": [], + "references": [ + { "path": "./tsconfig.app.json" }, + { "path": "./tsconfig.node.json" } + ] +} diff --git a/frontend/tsconfig.node.json b/frontend/tsconfig.node.json new file mode 100644 index 0000000..db0becc --- /dev/null +++ b/frontend/tsconfig.node.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "target": "ES2022", + "lib": ["ES2023"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "isolatedModules": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts new file mode 100644 index 0000000..1ad35ef --- /dev/null +++ b/frontend/vite.config.ts @@ -0,0 +1,17 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react()], + server: { + allowedHosts: ['localhost', '127.0.0.1'], + proxy: { + '/api': { + target: 'http://localhost:8000', + changeOrigin: true, + secure: false, + }, + }, + }, +})