From ec95b24a6950a6985a3ed234e5ff308d9012fb1d Mon Sep 17 00:00:00 2001 From: mbrucedogs Date: Mon, 28 Jul 2025 15:44:46 -0500 Subject: [PATCH] Signed-off-by: mbrucedogs --- PRD.md | 34 +- add_manual_video.py | 190 + commands.txt | 44 +- data/channels.json | 16 + data/manual_videos.json | 45 + data/server_duplicates_tracking.json | 16 + data/songs.json | 5810 ++++++++++++++++---- karaoke_downloader/cli.py | 15 + karaoke_downloader/downloader.py | 158 + karaoke_downloader/manual_video_manager.py | 77 + karaoke_downloader/tracking_manager.py | 25 +- 11 files changed, 5209 insertions(+), 1221 deletions(-) create mode 100644 add_manual_video.py create mode 100644 data/manual_videos.json create mode 100644 karaoke_downloader/manual_video_manager.py diff --git a/PRD.md b/PRD.md index 30ddc8d..708fb3f 100644 --- a/PRD.md +++ b/PRD.md @@ -1,5 +1,5 @@ -# 🎀 Karaoke Video Downloader – PRD (v3.3) +# 🎀 Karaoke Video Downloader – PRD (v3.4.3) ## βœ… Overview A Python-based Windows CLI tool to download karaoke videos from YouTube channels/playlists using `yt-dlp.exe`, with advanced tracking, songlist prioritization, and flexible configuration. The codebase has been comprehensively refactored into a modular architecture with centralized utilities for improved maintainability, error handling, and code reuse. @@ -123,6 +123,8 @@ python download_karaoke.py --clear-cache SingKingKaraoke - βœ… **Centralized file operations**: Single source of truth for filename sanitization, file validation, and path operations - βœ… **Centralized song validation**: Unified logic for checking if songs should be downloaded across all modules - βœ… **Enhanced configuration management**: Structured configuration with dataclasses, type safety, and validation +- βœ… **Manual video collection**: Static video collection system for managing individual karaoke videos that don't belong to regular channels. Use `--manual` to download from `data/manual_videos.json`. +- βœ… **Channel-specific parsing rules**: JSON-based configuration for parsing video titles from different YouTube channels, with support for various title formats and cleanup rules. --- @@ -155,7 +157,9 @@ KaroakeVideoDownloader/ β”‚ β”œβ”€β”€ karaoke_tracking.json β”‚ β”œβ”€β”€ songlist_tracking.json β”‚ β”œβ”€β”€ channel_cache.json -β”‚ β”œβ”€β”€ channels.txt +β”‚ β”œβ”€β”€ channels.json # Channel configuration with parsing rules +β”‚ β”œβ”€β”€ channels.txt # Legacy channel list (backward compatibility) +β”‚ β”œβ”€β”€ manual_videos.json # Manual video collection β”‚ └── songList.json β”œβ”€β”€ downloads/ # All video output β”‚ └── [ChannelName]/ # Per-channel folders @@ -192,6 +196,7 @@ KaroakeVideoDownloader/ - `--fuzzy-threshold `: **Fuzzy match threshold (0-100, default 85)** - `--parallel`: **Enable parallel downloads for improved speed** - `--workers `: **Number of parallel download workers (1-10, default: 3, only used with --parallel)** +- `--manual`: **Download from manual videos collection (data/manual_videos.json)** --- @@ -202,6 +207,8 @@ KaroakeVideoDownloader/ - **ID3 Tagging:** Artist/title extracted from video title and embedded in MP4 files. - **Cleanup:** Extra files from yt-dlp (e.g., `.info.json`) are automatically removed after download. - **Reset/Clear:** Use `--reset-channel` to reset all tracking and files for a channel (optionally including songlist songs with `--reset-songlist`). Use `--clear-cache` to clear cached video lists for a channel or all channels. +- **Channel-Specific Parsing:** Uses `data/channels.json` to define parsing rules for each YouTube channel, handling different video title formats (e.g., "Artist - Title", "Artist Title", "Title | Artist", etc.). +- **Manual Video Collection:** Static video management system using `data/manual_videos.json` for individual karaoke videos that don't belong to regular channels. Accessible via `--manual` parameter. ## πŸ”§ Refactoring Improvements (v3.3) The codebase has been comprehensively refactored to improve maintainability and reduce code duplication. Recent improvements have enhanced reliability, performance, and code organization: @@ -335,6 +342,29 @@ The codebase has been comprehensively refactored to improve maintainability and - Check logs for "⏭️ Skipping download - file already exists" messages - These indicate the duplicate prevention is working correctly +## πŸ”§ Recent Bug Fixes & Improvements (v3.4.3) +### **Manual Video Collection System** +- **New `--manual` parameter**: Simple access to manual video collection via `python download_karaoke.py --manual --limit 5` +- **Static video management**: `data/manual_videos.json` stores individual karaoke videos that don't belong to regular channels +- **Helper script**: `add_manual_video.py` provides easy management of manual video entries +- **Full integration**: Manual videos work with all existing features (songlist matching, fuzzy matching, parallel downloads, etc.) +- **No yt-dlp dependency**: Manual videos bypass YouTube API calls for video listing, using static data instead + +### **Channel-Specific Parsing Rules** +- **JSON-based configuration**: `data/channels.json` replaces `data/channels.txt` with structured channel configuration +- **Parsing rules per channel**: Each channel can define custom parsing rules for video titles +- **Multiple format support**: Handles various title formats like "Artist - Title", "Artist Title", "Title | Artist", etc. +- **Suffix cleanup**: Automatic removal of common karaoke-related suffixes +- **Multi-artist support**: Parsing for titles with multiple artists separated by specific delimiters +- **Backward compatibility**: Still supports legacy `data/channels.txt` format + +### **Benefits of New Features** +- **Flexible video management**: Easy addition of individual karaoke videos without creating new channels +- **Accurate parsing**: Channel-specific rules ensure correct artist/title extraction for ID3 tags and filenames +- **Consistent metadata**: Proper parsing prevents filename and ID3 tag inconsistencies +- **Easy maintenance**: Simple JSON structure for managing both channels and manual videos +- **Full feature compatibility**: Manual videos work seamlessly with existing download modes and features + ## πŸ“š Documentation Standards ### **Documentation Location** diff --git a/add_manual_video.py b/add_manual_video.py new file mode 100644 index 0000000..a7fc164 --- /dev/null +++ b/add_manual_video.py @@ -0,0 +1,190 @@ +#!/usr/bin/env python3 +""" +Helper script to add manual videos to the manual videos collection. +""" + +import json +import re +from pathlib import Path +from typing import Dict, List, Optional + +def extract_video_id(url: str) -> Optional[str]: + """Extract video ID from YouTube URL.""" + patterns = [ + r'(?:youtube\.com/watch\?v=|youtu\.be/|youtube\.com/embed/)([a-zA-Z0-9_-]{11})', + r'youtube\.com/watch\?.*v=([a-zA-Z0-9_-]{11})' + ] + + for pattern in patterns: + match = re.search(pattern, url) + if match: + return match.group(1) + return None + +def add_manual_video(title: str, url: str, manual_file: str = "data/manual_videos.json"): + """ + Add a manual video to the collection. + + Args: + title: Video title (e.g., "Artist - Song (Karaoke Version)") + url: YouTube URL + manual_file: Path to manual videos JSON file + """ + manual_path = Path(manual_file) + + # Load existing data or create new + if manual_path.exists(): + with open(manual_path, 'r', encoding='utf-8') as f: + data = json.load(f) + else: + data = { + "channel_name": "@ManualVideos", + "channel_url": "manual://static", + "description": "Manual collection of individual karaoke videos", + "videos": [], + "parsing_rules": { + "format": "artist_title_separator", + "separator": " - ", + "artist_first": true, + "title_cleanup": { + "remove_suffix": { + "suffixes": ["(Karaoke)", "(Karaoke Version)", "(Karaoke Version) Lyrics"] + } + } + } + } + + # Extract video ID + video_id = extract_video_id(url) + if not video_id: + print(f"❌ Could not extract video ID from URL: {url}") + return False + + # Check if video already exists + existing_ids = [video.get("id") for video in data["videos"]] + if video_id in existing_ids: + print(f"⚠️ Video already exists: {title}") + return False + + # Add new video + new_video = { + "title": title, + "url": url, + "id": video_id, + "upload_date": "2024-01-01", # Default date + "duration": 180, # Default duration + "view_count": 1000 # Default view count + } + + data["videos"].append(new_video) + + # Save updated data + manual_path.parent.mkdir(parents=True, exist_ok=True) + with open(manual_path, 'w', encoding='utf-8') as f: + json.dump(data, f, indent=2, ensure_ascii=False) + + print(f"βœ… Added video: {title}") + print(f" URL: {url}") + print(f" ID: {video_id}") + return True + +def list_manual_videos(manual_file: str = "data/manual_videos.json"): + """List all manual videos.""" + manual_path = Path(manual_file) + + if not manual_path.exists(): + print("❌ No manual videos file found") + return + + with open(manual_path, 'r', encoding='utf-8') as f: + data = json.load(f) + + print(f"πŸ“‹ Manual Videos ({len(data['videos'])} videos):") + print("=" * 60) + + for i, video in enumerate(data['videos'], 1): + print(f"{i:2d}. {video['title']}") + print(f" URL: {video['url']}") + print(f" ID: {video['id']}") + print() + +def remove_manual_video(video_id: str, manual_file: str = "data/manual_videos.json"): + """Remove a manual video by ID.""" + manual_path = Path(manual_file) + + if not manual_path.exists(): + print("❌ No manual videos file found") + return False + + with open(manual_path, 'r', encoding='utf-8') as f: + data = json.load(f) + + # Find and remove video + for i, video in enumerate(data['videos']): + if video['id'] == video_id: + removed_video = data['videos'].pop(i) + with open(manual_path, 'w', encoding='utf-8') as f: + json.dump(data, f, indent=2, ensure_ascii=False) + print(f"βœ… Removed video: {removed_video['title']}") + return True + + print(f"❌ Video with ID '{video_id}' not found") + return False + +def main(): + """Interactive mode for adding manual videos.""" + print("🎀 Manual Video Manager") + print("=" * 30) + print("1. Add video") + print("2. List videos") + print("3. Remove video") + print("4. Exit") + + while True: + choice = input("\nSelect option (1-4): ").strip() + + if choice == "1": + title = input("Enter video title (e.g., 'Artist - Song (Karaoke Version)'): ").strip() + url = input("Enter YouTube URL: ").strip() + + if title and url: + add_manual_video(title, url) + else: + print("❌ Title and URL are required") + + elif choice == "2": + list_manual_videos() + + elif choice == "3": + video_id = input("Enter video ID to remove: ").strip() + if video_id: + remove_manual_video(video_id) + else: + print("❌ Video ID is required") + + elif choice == "4": + print("πŸ‘‹ Goodbye!") + break + + else: + print("❌ Invalid option") + +if __name__ == "__main__": + import sys + + if len(sys.argv) > 1: + # Command line mode + if sys.argv[1] == "add" and len(sys.argv) >= 4: + add_manual_video(sys.argv[2], sys.argv[3]) + elif sys.argv[1] == "list": + list_manual_videos() + elif sys.argv[1] == "remove" and len(sys.argv) >= 3: + remove_manual_video(sys.argv[2]) + else: + print("Usage:") + print(" python add_manual_video.py add 'Title' 'URL'") + print(" python add_manual_video.py list") + print(" python add_manual_video.py remove VIDEO_ID") + else: + # Interactive mode + main() \ No newline at end of file diff --git a/commands.txt b/commands.txt index c22db3c..6c03b07 100644 --- a/commands.txt +++ b/commands.txt @@ -1,6 +1,6 @@ # 🎀 Karaoke Video Downloader - CLI Commands Reference # Copy and paste these commands into your terminal -# Updated: v3.4 (includes parallel downloads and all refactoring improvements) +# Updated: v3.4.3 (includes manual video collection, channel parsing rules, and all previous improvements) ## πŸ“₯ BASIC DOWNLOADS @@ -19,6 +19,32 @@ python download_karaoke.py --limit 10 https://www.youtube.com/@SingKingKaraoke/v # Enable parallel downloads for faster processing (3-5x speedup) python download_karaoke.py --parallel --workers 5 --limit 10 https://www.youtube.com/@SingKingKaraoke/videos +## 🎀 MANUAL VIDEO COLLECTION (v3.4.3) + +# Download from manual videos collection (data/manual_videos.json) +python download_karaoke.py --manual --limit 5 + +# Download manual videos with fuzzy matching +python download_karaoke.py --manual --fuzzy-match --fuzzy-threshold 85 --limit 10 + +# Download manual videos with parallel processing +python download_karaoke.py --parallel --workers 3 --manual --limit 5 + +# Download manual videos with songlist matching +python download_karaoke.py --manual --songlist-only --limit 10 + +# Force download from manual videos (bypass existing file checks) +python download_karaoke.py --manual --force --limit 5 + +# Add a video to manual collection (interactive) +python add_manual_video.py add "Artist - Song Title (Karaoke Version)" "https://www.youtube.com/watch?v=VIDEO_ID" + +# List all manual videos +python add_manual_video.py list + +# Remove a video from manual collection +python add_manual_video.py remove "Artist - Song Title (Karaoke Version)" + ## πŸ“‹ SONG LIST GENERATION # Generate song list from MP4 files in a directory (append to existing song list) @@ -258,6 +284,15 @@ python download_karaoke.py --reset-channel SingKingKaraoke --reset-songlist python download_karaoke.py --status python download_karaoke.py --clear-cache all +# 7. Download from manual video collection +python download_karaoke.py --manual --limit 5 + +# 7b. Fast parallel manual video download +python download_karaoke.py --parallel --workers 3 --manual --limit 5 + +# 7c. Manual videos with fuzzy matching +python download_karaoke.py --manual --fuzzy-match --fuzzy-threshold 85 --limit 10 + ## πŸ”§ TROUBLESHOOTING COMMANDS # Check if everything is working @@ -273,7 +308,9 @@ python download_karaoke.py --clear-server-duplicates ## πŸ“ NOTES # Default files used: -# - data/channels.txt (default channel list for songlist modes) +# - data/channels.json (channel configuration with parsing rules, preferred) +# - data/channels.txt (legacy channel list, backward compatibility) +# - data/manual_videos.json (manual video collection) # - data/songList.json (your prioritized song list) # - data/config.json (download settings) @@ -282,11 +319,12 @@ python download_karaoke.py --clear-server-duplicates # Fuzzy threshold: 0-100 (higher = more strict matching, default 90) # The system automatically: -# - Uses data/channels.txt if no --file specified in songlist modes +# - Uses data/channels.json if available, falls back to data/channels.txt if no --file specified in songlist modes # - Caches channel data for 24 hours (configurable) # - Tracks all downloads in JSON files # - Avoids re-downloading existing files # - Checks for server duplicates +# - Supports manual video collection via --manual parameter # For best performance: # - Use --parallel --workers 5 for 3-5x faster downloads diff --git a/data/channels.json b/data/channels.json index 8858ffa..6e58e49 100644 --- a/data/channels.json +++ b/data/channels.json @@ -131,6 +131,22 @@ }, "description": "Title first, then dash separator, then artist with KARAOKE suffix" }, + { + "name": "@ManualVideos", + "url": "manual://static", + "manual_videos_file": "data/manual_videos.json", + "parsing_rules": { + "format": "artist_title_separator", + "separator": " - ", + "artist_first": true, + "title_cleanup": { + "remove_suffix": { + "suffixes": ["(Karaoke)", "(Karaoke Version)", "(Karaoke Version) Lyrics"] + } + } + }, + "description": "Manual collection of individual karaoke videos (static, never expires)" + }, { "name": "Let's Sing Karaoke", "url": "https://www.youtube.com/@LetsSingKaraoke/videos", diff --git a/data/manual_videos.json b/data/manual_videos.json new file mode 100644 index 0000000..2479ace --- /dev/null +++ b/data/manual_videos.json @@ -0,0 +1,45 @@ +{ + "channel_name": "@ManualVideos", + "channel_url": "manual://static", + "description": "Manual collection of individual karaoke videos", + "videos": [ + { + "title": "10,000 Maniacs - Because The Night", + "url": "https://www.youtube.com/watch?v=7CoVTWBw1xs", + "id": "7CoVTWBw1xs", + "upload_date": "2024-01-01", + "duration": 180, + "view_count": 1000 + }, + { + "title": "10,000 Maniacs - Like The Weather", + "url": "https://www.youtube.com/watch?v=brc7wNVRv_4", + "id": "brc7wNVRv_4", + "upload_date": "2024-01-01", + "duration": 180, + "view_count": 1000 + }, + { + "title": "10,000 Maniacs - More Than This", + "url": "https://www.youtube.com/watch?v=wxnuF-APJ5M", + "id": "wxnuF-APJ5M", + "upload_date": "2024-01-01", + "duration": 180, + "view_count": 1000 + } + ], + "parsing_rules": { + "format": "artist_title_separator", + "separator": " - ", + "artist_first": true, + "title_cleanup": { + "remove_suffix": { + "suffixes": [ + "(Karaoke)", + "(Karaoke Version)", + "(Karaoke Version) Lyrics" + ] + } + } + } +} \ No newline at end of file diff --git a/data/server_duplicates_tracking.json b/data/server_duplicates_tracking.json index 043fe59..3b8e26f 100644 --- a/data/server_duplicates_tracking.json +++ b/data/server_duplicates_tracking.json @@ -8286,5 +8286,21 @@ "channel": "@VocalStarKaraoke", "marked_at": "2025-07-28T10:18:11.001221", "reason": "already_on_server" + }, + "kendrick lamar_not like us": { + "artist": "Kendrick Lamar", + "title": "Not Like Us", + "video_title": "Kendrick Lamar Not Like Us (Karaoke Version) Lyrics", + "channel": "@sing2karaoke", + "marked_at": "2025-07-28T14:24:01.915881", + "reason": "already_on_server" + }, + "ed sheeran_you need me i don't need you": { + "artist": "Ed Sheeran", + "title": "You Need Me I Don't Need You", + "video_title": "Ed Sheeran You Need Me I Don't Need You (Karaoke Version) Lyrics", + "channel": "@sing2karaoke", + "marked_at": "2025-07-28T14:24:01.939201", + "reason": "already_on_server" } } \ No newline at end of file diff --git a/data/songs.json b/data/songs.json index 295bef9..e596e6c 100644 --- a/data/songs.json +++ b/data/songs.json @@ -1,6 +1,6 @@ [ { - "artist": "ACDC", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "8946008c-7acc-d187-60e6-5286e55ad502", @@ -5664,7 +5664,7 @@ "title": "Darlin' (I Think About You)" }, { - "artist": "Blackpink", + "artist": "BLACKPINK", "disabled": false, "favorite": false, "guid": "cc560092-d641-d475-050b-13e27bf07b14", @@ -7568,7 +7568,7 @@ "title": "Higher Power" }, { - "artist": "AC DC", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "923a0ab8-65be-50f7-1f5f-b32bd7506ea2", @@ -7744,7 +7744,7 @@ "title": "How Soon Is Now" }, { - "artist": "Blackpink(λΈ”λž™ν•‘ν¬)", + "artist": "BLACKPINK", "disabled": false, "favorite": false, "guid": "0e8eecd7-7072-2899-8488-40162ac16fbb", @@ -13592,7 +13592,7 @@ "title": "Barbara Ann" }, { - "artist": "Aqua (2)", + "artist": "Aqua", "disabled": false, "favorite": false, "guid": "c81c1793-1dfe-254b-dd3e-85e24fcc2bf6", @@ -18888,7 +18888,7 @@ "title": "Daddy s Hands" }, { - "artist": "Blink-182", + "artist": "Blink 182", "disabled": false, "favorite": false, "guid": "aa29c72d-f57c-29a1-b877-4ba87a1ec061", @@ -22768,7 +22768,7 @@ "title": "Feeling Good" }, { - "artist": "Blink-182", + "artist": "Blink 182", "disabled": false, "favorite": false, "guid": "02262ad7-51b2-13a6-bc21-b223cc28e045", @@ -23024,7 +23024,7 @@ "title": "Firestarter" }, { - "artist": "Blink-182", + "artist": "Blink 182", "disabled": false, "favorite": false, "guid": "5d09cee0-40c2-d202-7c16-cbea8a4e892a", @@ -30648,7 +30648,7 @@ "title": "I Melt With You" }, { - "artist": "Blink-182", + "artist": "Blink 182", "disabled": false, "favorite": false, "guid": "49e79b7b-a610-a8b2-cee3-a4580ba5bb1e", @@ -32520,7 +32520,7 @@ "title": "If You Wanna Be Happy" }, { - "artist": "(Lebo M. & Cheryl Porter)", + "artist": "Lebo M. & Cheryl Porter", "disabled": false, "favorite": false, "guid": "5753c929-86a9-9f96-20dd-712398331100", @@ -35040,7 +35040,7 @@ "title": "Kill And Run" }, { - "artist": "Blackpink (λΈ”λž™ν•‘ν¬)", + "artist": "BLACKPINK", "disabled": false, "favorite": false, "guid": "da294627-dda3-749c-2df8-921e3ec1935a", @@ -35352,7 +35352,7 @@ "title": "L'amour brille sous les Γ©toiles" }, { - "artist": "(Lebo M. & China Moses)", + "artist": "Lebo M. & China Moses", "disabled": false, "favorite": false, "guid": "9f5f5a6b-3ac5-c59f-3961-49d5146784df", @@ -44544,7 +44544,7 @@ "title": "Place Your Hands" }, { - "artist": "AC DC", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "2541908e-bc68-b52e-70ad-8f9a6cc2cb7e", @@ -60112,7 +60112,7 @@ "title": "What s Going On" }, { - "artist": "Blink-182", + "artist": "Blink 182", "disabled": false, "favorite": false, "guid": "cb394951-2094-513c-c0a5-663c01bfd5ed", @@ -63896,7 +63896,7 @@ "title": "Kids In America" }, { - "artist": "Blackpink (λΈ”λž™ν•‘ν¬)", + "artist": "BLACKPINK", "disabled": false, "favorite": false, "guid": "b146615b-f89b-7c99-f662-61b9aea5c591", @@ -81842,6 +81842,15 @@ "path": "z://MP4\\KaraokeOnVEVO\\Blackfoot - Train, Train.mp4", "title": "Train, Train" }, + { + "artist": "Blackhawk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4f5f2a9-7756-9c95-175a-22e01f6a1f72", + "path": "z://MP4\\KaraokeOnVEVO\\Blackhawk - Postmarked Birmingham.mp4", + "title": "Postmarked Birmingham" + }, { "artist": "Blake Shelton", "disabled": false, @@ -82927,6 +82936,15 @@ "path": "z://MP4\\KaraokeOnVEVO\\Bryan Adams & Sting & Rod Stewart - All For Love.mp4", "title": "All For Love" }, + { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "859005ae-4a6f-24f4-78d2-4051c98ca18a", + "path": "z://MP4\\KaraokeOnVEVO\\Bryan Adams - Back To You.mp4", + "title": "Back To You" + }, { "artist": "Bryan Adams", "disabled": false, @@ -84478,6 +84496,15 @@ "path": "z://MP4\\KaraokeOnVEVO\\Chuck Berry - Roll Over Beethoven (Karaoke).mp4", "title": "Roll Over Beethoven" }, + { + "artist": "Chuck Wicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff9a2fa0-5522-ff6b-ea2b-2bfb7af070a8", + "path": "z://MP4\\KaraokeOnVEVO\\Chuck Wicks - Hold That Thought.mp4", + "title": "Hold That Thought" + }, { "artist": "Chuck Wicks", "disabled": false, @@ -85294,6 +85321,15 @@ "path": "z://MP4\\KaraokeOnVEVO\\Daryl Hall & John Oates - Say It Isn't So (Karaoke).mp4", "title": "Say It Isn't So" }, + { + "artist": "Dasha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "403dac0b-1a73-d2c0-b0c2-dd2934a026c6", + "path": "z://MP4\\KaraokeOnVEVO\\Dasha - Austin (Boots Stop Workin').mp4", + "title": "Austin (Boots Stop Workin')" + }, { "artist": "Dashboard Confessional", "disabled": false, @@ -89257,6 +89293,15 @@ "path": "z://MP4\\KaraokeOnVEVO\\George Jones - The Right Left Hand (Karaoke).mp4", "title": "The Right Left Hand" }, + { + "artist": "George Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "737257b7-d38f-72a4-d8a8-9076af68a70e", + "path": "z://MP4\\KaraokeOnVEVO\\George Jones - When The Grass Grows Over Me.mp4", + "title": "When The Grass Grows Over Me" + }, { "artist": "George Jones", "disabled": false, @@ -94765,6 +94810,15 @@ "path": "z://MP4\\KaraokeOnVEVO\\Mary J. Blige - Give Me You.mp4", "title": "Give Me You" }, + { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2e3f409b-585b-9581-200e-19d1bc66aac1", + "path": "z://MP4\\KaraokeOnVEVO\\Mary J. Blige - I Feel Good.mp4", + "title": "I Feel Good" + }, { "artist": "Mary J. Blige", "disabled": false, @@ -98448,6 +98502,15 @@ "path": "z://MP4\\KaraokeOnVEVO\\Rihanna - Don't Stop The Music.mp4", "title": "Don't Stop The Music" }, + { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4d1d6a8f-d2ad-ed7b-652f-0d411266bd62", + "path": "z://MP4\\KaraokeOnVEVO\\Rihanna - We Ride.mp4", + "title": "We Ride" + }, { "artist": "Rihanna Featuring Ne-Yo", "disabled": false, @@ -100373,6 +100436,15 @@ "path": "z://MP4\\KaraokeOnVEVO\\Stray Cats - Rock This Town.mp4", "title": "Rock This Town" }, + { + "artist": "Stray Kids ft. Charlie Puth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c2fac43-9703-84d2-3fb3-6aadb6d5d9a4", + "path": "z://MP4\\KaraokeOnVEVO\\Stray Kids ft. Charlie Puth - Lose My Breath.mp4", + "title": "Lose My Breath" + }, { "artist": "Sublime", "disabled": false, @@ -102981,6 +103053,15 @@ "path": "z://MP4\\KaraokeOnVEVO\\Urban Christmas - Hark! The Herald Angels Sing (Karaoke).mp4", "title": "Hark! The Herald Angels Sing" }, + { + "artist": "Usher", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4072f082-cbfb-7204-b0e6-930f5c0b76f5", + "path": "z://MP4\\KaraokeOnVEVO\\Usher - More.mp4", + "title": "More" + }, { "artist": "Usher", "disabled": false, @@ -104886,7 +104967,7 @@ "title": "I Lived It" }, { - "artist": "blink-182", + "artist": "Blink 182", "disabled": false, "favorite": false, "guid": "ef3564a7-e544-9340-e52d-859f338bd0de", @@ -111686,7 +111767,7 @@ "title": "That Look" }, { - "artist": "AC DC", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "0cc0016f-a5dd-f17f-9efe-1247e75375a0", @@ -111694,7 +111775,7 @@ "title": "Thunderstruck" }, { - "artist": "ACDC", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "54c43da0-d901-6323-35f9-96ea5f4f7e31", @@ -111702,7 +111783,7 @@ "title": "Dirty Deeds Done Dirt Cheap" }, { - "artist": "ACDC", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "76dd37fe-5703-75f5-19d5-c8e09746e798", @@ -111710,7 +111791,7 @@ "title": "Have a Drink on Me" }, { - "artist": "ACDC", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "bde244b0-1f1e-936c-45db-b5e7e548d038", @@ -111718,7 +111799,7 @@ "title": "Hells Bells" }, { - "artist": "ACDC", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "3753c226-5277-c7bf-f9a7-1112592eeacd", @@ -111726,7 +111807,7 @@ "title": "Highway To Hell" }, { - "artist": "ACDC", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "b8531dc8-3bd3-d331-3a8c-cb377a8e2259", @@ -111734,7 +111815,7 @@ "title": "Ride On" }, { - "artist": "ACDC", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "a0fc1a03-6762-6201-a611-b9af4fb97544", @@ -125302,7 +125383,7 @@ "title": "This Gift" }, { - "artist": "A-Ha", + "artist": "a-ha", "disabled": false, "favorite": false, "guid": "743b15cd-7e51-b3d7-d721-dbf9c1a81797", @@ -125318,7 +125399,7 @@ "title": "Dancing Queen" }, { - "artist": "Ac-Dc", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "d9e7b6cd-416d-a36b-38ea-c3f76291586c", @@ -125326,7 +125407,7 @@ "title": "Moneytalks" }, { - "artist": "Acdc", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "8fe8068a-4033-4d71-b8e5-759cd1618dbe", @@ -125350,7 +125431,7 @@ "title": "I Finally Found Someone" }, { - "artist": "Adams, Bryan & Melanie C.", + "artist": "Bryan Adams & Melanie C.", "disabled": false, "favorite": false, "guid": "2ff2d974-e1ae-e5dc-696a-9e038b438e37", @@ -125358,7 +125439,7 @@ "title": "When You're Gone" }, { - "artist": "Adams, Bryan", + "artist": "Bryan Adams", "disabled": false, "favorite": false, "guid": "da1993c5-3f54-74fb-7890-82ddbf66b3ee", @@ -125366,7 +125447,7 @@ "title": "Everything I Do, I Do It For You" }, { - "artist": "Adams, Bryan", + "artist": "Bryan Adams", "disabled": false, "favorite": false, "guid": "34f1e672-88cd-b9ac-fca1-ac2e7e9dc9f4", @@ -125374,7 +125455,7 @@ "title": "Summer Of '69" }, { - "artist": "Adams, Oleta", + "artist": "Oleta Adams", "disabled": false, "favorite": false, "guid": "d89094a3-aa49-e50a-1bf5-c00899751c82", @@ -125382,7 +125463,7 @@ "title": "Get Here" }, { - "artist": "Adkins, Trace", + "artist": "Trace Adkins", "disabled": false, "favorite": false, "guid": "84f92711-7a45-b529-f3d7-162cbb5dad82", @@ -125406,7 +125487,7 @@ "title": "I Don't Want To Miss A Thing" }, { - "artist": "Aguilar, Pepe", + "artist": "Pepe Aguilar", "disabled": false, "favorite": false, "guid": "5c62de1a-1e79-e9e9-df79-66b4b0ee94b1", @@ -125414,7 +125495,7 @@ "title": "Me Estoy Acostumbrando A Ti" }, { - "artist": "Aguilera, Christina & Redman", + "artist": "Christina Aguilera & Redman", "disabled": false, "favorite": false, "guid": "c4f16776-d998-af56-0199-66a81c098ebf", @@ -125422,7 +125503,7 @@ "title": "Dirrty" }, { - "artist": "Aguilera, Christina", + "artist": "Christina Aguilera", "disabled": false, "favorite": false, "guid": "2b033328-9d68-05ae-78ee-8232e5de4f05", @@ -125430,7 +125511,7 @@ "title": "Beautiful" }, { - "artist": "Aguilera, Christina", + "artist": "Christina Aguilera", "disabled": false, "favorite": false, "guid": "306c0158-72be-707b-fd0a-ae455ca5afd6", @@ -125438,7 +125519,7 @@ "title": "Can't Hold Us Down" }, { - "artist": "Aguilera, Christina", + "artist": "Christina Aguilera", "disabled": false, "favorite": false, "guid": "41e9f445-4f97-e755-703f-2135a5c518c8", @@ -125446,7 +125527,7 @@ "title": "Impossible" }, { - "artist": "Aguilera, Christina", + "artist": "Christina Aguilera", "disabled": false, "favorite": false, "guid": "cfabea93-202a-e86a-7543-8c59a37a3fa1", @@ -125462,7 +125543,7 @@ "title": "Lady Marmalade" }, { - "artist": "Aiken, Clay", + "artist": "Clay Aiken", "disabled": false, "favorite": false, "guid": "fc00f12e-25f6-119d-14ef-5f5db6d4cd77", @@ -125470,7 +125551,7 @@ "title": "I Will Carry You" }, { - "artist": "Aiken, Clay", + "artist": "Clay Aiken", "disabled": false, "favorite": false, "guid": "14948022-0630-8eb8-0dba-5664c5049cde", @@ -125478,7 +125559,7 @@ "title": "Invisible" }, { - "artist": "Aiken, Clay", + "artist": "Clay Aiken", "disabled": false, "favorite": false, "guid": "e1da8c22-e19a-becb-8a7c-d34bae2a2a86", @@ -125486,7 +125567,7 @@ "title": "Solitaire" }, { - "artist": "Aiken, Clay", + "artist": "Clay Aiken", "disabled": false, "favorite": false, "guid": "3254d9da-8b9f-be7a-bb92-1d51fd28e935", @@ -125494,7 +125575,7 @@ "title": "This Is The Night" }, { - "artist": "Aiken, Clay", + "artist": "Clay Aiken", "disabled": false, "favorite": false, "guid": "1ea53227-3533-0dd7-4f1b-be6fb455945a", @@ -125526,7 +125607,7 @@ "title": "Thank You" }, { - "artist": "Albert, Morris", + "artist": "Morris Albert", "disabled": false, "favorite": false, "guid": "7b6c4c3d-4f30-9e74-c647-f0829ace4634", @@ -125550,7 +125631,7 @@ "title": "Heroes" }, { - "artist": "Allan, Gary", + "artist": "Gary Allan", "disabled": false, "favorite": false, "guid": "d9c16b95-5798-b839-dfbd-ca8967252348", @@ -125558,7 +125639,7 @@ "title": "One, The" }, { - "artist": "Allen, Gary", + "artist": "Gary Allen", "disabled": false, "favorite": false, "guid": "a3239e9d-185d-b66d-70ba-8f0853a1a7ce", @@ -125582,7 +125663,7 @@ "title": "1 Thing" }, { - "artist": "Anderson, John", + "artist": "John Anderson", "disabled": false, "favorite": false, "guid": "dfa50ff5-c7e1-6d55-d3a1-f79c9cb7483e", @@ -125590,7 +125671,7 @@ "title": "I Fell In The Water" }, { - "artist": "Anderson, John", + "artist": "John Anderson", "disabled": false, "favorite": false, "guid": "97952a24-10ee-4f07-8c7a-642a6cd8194f", @@ -125598,7 +125679,7 @@ "title": "Swinging" }, { - "artist": "Anderson, Lynn", + "artist": "Lynn Anderson", "disabled": false, "favorite": false, "guid": "e2cec38e-ed96-72f8-fb96-472be93a3924", @@ -125606,7 +125687,7 @@ "title": "What A Man, My Man Is" }, { - "artist": "Andrews Sisters, The", + "artist": "The Andrews Sisters", "disabled": false, "favorite": false, "guid": "c0c814d3-09ee-2bba-ac0a-5ca75b777b7f", @@ -125614,7 +125695,7 @@ "title": "Lullaby Of Broadway" }, { - "artist": "Andrews, Jessica", + "artist": "Jessica Andrews", "disabled": false, "favorite": false, "guid": "5b2a3f15-4d73-2f97-1675-b14dadbfaa2c", @@ -125622,7 +125703,7 @@ "title": "I Will Be There For You" }, { - "artist": "Anka, Paul & Celine Dion", + "artist": "Paul Anka & Celine Dion", "disabled": false, "favorite": false, "guid": "4edb1ad2-29b5-b9fa-144b-e6c29058e97e", @@ -125630,7 +125711,7 @@ "title": "It's Hard To Say Goodbye" }, { - "artist": "Anka, Paul", + "artist": "Paul Anka", "disabled": false, "favorite": false, "guid": "0e0aada7-8594-53cc-81c7-7b244af9d5a5", @@ -125662,7 +125743,7 @@ "title": "Anything You Can Do I Can Do Better" }, { - "artist": "Ant, Adam", + "artist": "Adam Ant", "disabled": false, "favorite": false, "guid": "2b0b80c9-dc70-0581-5b02-e749b2384a13", @@ -125686,7 +125767,7 @@ "title": "You're The Top" }, { - "artist": "Aquilera, Christina", + "artist": "Christina Aquilera", "disabled": false, "favorite": false, "guid": "f5acf248-f049-fe95-975e-dc7e9bfbb7a1", @@ -125694,7 +125775,7 @@ "title": "Fighter" }, { - "artist": "Armstrong, Louis", + "artist": "Louis Armstrong", "disabled": false, "favorite": false, "guid": "568b80ab-a29d-ad5f-5dd8-7900b77b71a6", @@ -125702,7 +125783,7 @@ "title": "Hello Dolly" }, { - "artist": "Armstrong, Louis", + "artist": "Louis Armstrong", "disabled": false, "favorite": false, "guid": "004d9561-ed89-34cd-74a6-3843cf6b5781", @@ -125758,7 +125839,7 @@ "title": "Heat Of The Moment" }, { - "artist": "Astley, Rick", + "artist": "Rick Astley", "disabled": false, "favorite": false, "guid": "1c97af46-ad21-14d6-90f5-9d169d943ff1", @@ -125766,7 +125847,7 @@ "title": "Never Gonna Give You Up" }, { - "artist": "Austin, Patty & James Ingram", + "artist": "Patty Austin & James Ingram", "disabled": false, "favorite": false, "guid": "aeb2490f-1a4a-06d7-9173-6d01c9a00061", @@ -125774,7 +125855,7 @@ "title": "(Duet) Baby Come To Me" }, { - "artist": "Austin, Sherrie", + "artist": "Sherrie Austin", "disabled": false, "favorite": false, "guid": "7d658c2e-7f4b-1cc5-ddad-cb3a49f979e1", @@ -125878,7 +125959,7 @@ "title": "Show Me The Meaning Of Being Lonely" }, { - "artist": "Backstreet Boys, The", + "artist": "The Backstreet Boys", "disabled": false, "favorite": false, "guid": "f98f1f7e-e43f-f26e-9f0e-3c3e837625cf", @@ -125886,7 +125967,7 @@ "title": "Drowning" }, { - "artist": "Baker, Anita", + "artist": "Anita Baker", "disabled": false, "favorite": false, "guid": "f19d0c5f-df99-5be9-7715-58fa5120f3ee", @@ -125910,7 +125991,7 @@ "title": "Deja" }, { - "artist": "Bangles, The", + "artist": "The Bangles", "disabled": false, "favorite": false, "guid": "90aa7021-8320-a4b9-cd02-82a810603d8d", @@ -125926,7 +126007,7 @@ "title": "Testing 1,2,3" }, { - "artist": "Basil, Toni", + "artist": "Toni Basil", "disabled": false, "favorite": false, "guid": "d934e6e5-bbe5-afbf-045e-7dced6101716", @@ -125934,7 +126015,7 @@ "title": "Mickey" }, { - "artist": "Bass, Fontella", + "artist": "Fontella Bass", "disabled": false, "favorite": false, "guid": "e026ac3c-a35a-4e28-dc87-ec63b6af1773", @@ -125990,7 +126071,7 @@ "title": "Twist & Shout" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "7c053147-5a3e-172a-2627-f71bf6f583ff", @@ -125998,7 +126079,7 @@ "title": "All My Loving" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "7edeed63-ffe3-a0b5-2fe3-298a1bc35a09", @@ -126006,7 +126087,7 @@ "title": "All You Need Is Love" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "8ba0baf8-172a-37c3-7114-cda8765a4733", @@ -126014,7 +126095,7 @@ "title": "And I Love Her" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "d8dc4498-938c-f1ae-66c6-c0a072e81068", @@ -126022,7 +126103,7 @@ "title": "Can't Buy Me Love" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "2fd9bfb8-716b-44ae-1b3b-0bb473057106", @@ -126030,7 +126111,7 @@ "title": "Come Together" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "89b3081e-7de8-d16c-5f16-d6aea38cafe9", @@ -126038,7 +126119,7 @@ "title": "Day Tripper" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "cf35cb7b-4adb-37ac-a6c0-fffa0cb1cc96", @@ -126046,7 +126127,7 @@ "title": "Do You Want To Know A Secret" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "d7c45a8b-fb0e-6a46-e8c1-ed50dcd2e326", @@ -126054,7 +126135,7 @@ "title": "Drive My Car" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "764fd4e0-130d-f9bc-521d-d44d8aa87bf1", @@ -126062,7 +126143,7 @@ "title": "Eight Days A Week" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "560763ad-80e1-d87e-63d3-0a9646e38a4c", @@ -126070,7 +126151,7 @@ "title": "Eleanor Rigby" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "a8fa5d40-672f-97fc-4a1c-cd60cfe77b58", @@ -126078,7 +126159,7 @@ "title": "Free As A Bird" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "6d907fed-f4f3-ef6e-6d49-60439c2c4129", @@ -126086,7 +126167,7 @@ "title": "From Me To You" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "16a576c4-aa16-8d69-0ebb-eb0a853c11d6", @@ -126094,7 +126175,7 @@ "title": "Get Back" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "df952619-eba9-3ed5-0fc4-6a92e538bf16", @@ -126102,7 +126183,7 @@ "title": "Got To Get You Into My Life(Karaoke & Lyrics)" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "1ced4050-6ded-bee5-47b1-8f5725d1e44f", @@ -126110,7 +126191,7 @@ "title": "Hard Day's Night, A" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "0e82568d-c2f9-bdf9-3761-48ef4fad32ae", @@ -126118,7 +126199,7 @@ "title": "Help!" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "9bcaa8a7-2907-293a-5895-fc407283e085", @@ -126126,7 +126207,7 @@ "title": "Here Comes The Sun" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "2bf802c2-1b0a-ebb8-e430-fe489c06fe2d", @@ -126134,7 +126215,7 @@ "title": "Hey Jude" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "f0555869-aa58-0507-0b7b-1f966087f5d4", @@ -126142,7 +126223,7 @@ "title": "I Am The Walrus" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "672b6e2d-000a-0167-182f-07c4d7fe52b2", @@ -126150,7 +126231,7 @@ "title": "I Feel Fine" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "cc395f18-a959-9d07-79d5-517f0f0b3d76", @@ -126158,7 +126239,7 @@ "title": "I Want To Hold Your Hand" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "e0efaf99-5791-9e82-53c4-9f4d95558a1f", @@ -126166,7 +126247,7 @@ "title": "I'm Happy Just To Dance With You" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "1e50f188-11d5-b909-2a65-4dcaee9e84c2", @@ -126174,7 +126255,7 @@ "title": "It Won't Be Long" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "90ec379e-89c1-7003-1459-6ed4810a89b9", @@ -126182,7 +126263,7 @@ "title": "Lady Madonna" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "ef4c6635-3d5a-78f9-7748-9e2ace74c4c5", @@ -126190,7 +126271,7 @@ "title": "Let It Be" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "43383dda-637e-e513-a15d-703136ef819a", @@ -126198,7 +126279,7 @@ "title": "Long And Winding Road, The" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "5a2cab6a-3c52-506e-c3a7-e03495fd3e78", @@ -126206,7 +126287,7 @@ "title": "Love Me Do" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "2359ee99-9f55-07fa-b1b9-93f39d8ecfbb", @@ -126214,7 +126295,7 @@ "title": "Lucy In The Sky With Diamonds" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "d269adf8-1ced-9425-09ca-b0926e452f01", @@ -126222,7 +126303,7 @@ "title": "Maxwell's Silver Hammer" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "d154ccfc-d534-6356-1c32-2cd81b06212d", @@ -126230,7 +126311,7 @@ "title": "Nowhere Man" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "5437615b-11f6-4607-f368-e88b532f39b8", @@ -126238,7 +126319,7 @@ "title": "Octopus's Garden" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "81c06142-347d-f856-b3e5-1663799a9f66", @@ -126246,7 +126327,7 @@ "title": "Paperback Writer" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "20ba3335-8130-1392-31ec-7fa88ff39235", @@ -126254,7 +126335,7 @@ "title": "Penny Lane" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "fee14b06-4db1-9cfe-3dfc-d35e525669ec", @@ -126262,7 +126343,7 @@ "title": "Please Please Me" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "b33f00f6-d34d-cd59-dbeb-efdde6cd8aba", @@ -126270,7 +126351,7 @@ "title": "Rocky Raccoon" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "4a2d8af3-5f33-2e03-c85f-cd062503b314", @@ -126278,7 +126359,7 @@ "title": "Sgt. Pepper's Lonely Hearts Club Band" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "a41a0bcd-c8f4-d2cf-28e4-80107f2db291", @@ -126286,7 +126367,7 @@ "title": "She Came In Thru The Bathroom Window" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "b04ebd03-d61d-47ec-7d1f-5bd654bc81a9", @@ -126294,7 +126375,7 @@ "title": "She Loves You" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "c96f9058-6d07-fe5b-09fb-79c780714597", @@ -126302,7 +126383,7 @@ "title": "Strawberry Fields Forever" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "cb614219-6d6e-5351-a72c-7393d6999f32", @@ -126310,7 +126391,7 @@ "title": "This Boy" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "7e7aab21-f614-99ca-b2e4-baa3ebd49f08", @@ -126318,7 +126399,7 @@ "title": "Ticket To Ride" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "751ca1fc-2305-5d6c-496b-ebb39615bda5", @@ -126326,7 +126407,7 @@ "title": "Twist And Shout" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "0a1b5f8a-641e-5a2e-9621-52ba0354cec0", @@ -126334,7 +126415,7 @@ "title": "We Can Work It Out(Karaoke & Lyrics)" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "ab98baca-c779-ae9b-03be-dce13efd3574", @@ -126342,7 +126423,7 @@ "title": "While My Guitar Gently Weeps" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "da913da3-9eba-87b5-035e-9b9df7129693", @@ -126350,7 +126431,7 @@ "title": "With A Little Help From My Friends" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "0b6344cc-3234-2bf7-ef76-6ff545088773", @@ -126358,7 +126439,7 @@ "title": "Yellow Submarine" }, { - "artist": "Beatles, The", + "artist": "The Beatles", "disabled": false, "favorite": false, "guid": "fa5d0b38-dc06-4e07-9eeb-8c34ece7111c", @@ -126374,7 +126455,7 @@ "title": "Perfect 10" }, { - "artist": "Bedingfield, Daniel", + "artist": "Daniel Bedingfield", "disabled": false, "favorite": false, "guid": "281fd9ac-ebcc-dab1-4438-1b36e6ee5301", @@ -126382,7 +126463,7 @@ "title": "Gotta Get Thru This" }, { - "artist": "Bedingfield, Daniel", + "artist": "Daniel Bedingfield", "disabled": false, "favorite": false, "guid": "d01a9272-6c87-7452-5241-3fadb091c8f4", @@ -126390,7 +126471,7 @@ "title": "If You're Not The One" }, { - "artist": "Bega, Lou", + "artist": "Lou Bega", "disabled": false, "favorite": false, "guid": "f7228eab-e95d-f7e2-b262-999b0d9da3f3", @@ -126398,7 +126479,7 @@ "title": "Tricky, Tricky" }, { - "artist": "Belle, Regina & Jeffery Osbourne", + "artist": "Regina Belle & Jeffery Osbourne", "disabled": false, "favorite": false, "guid": "d62e2b1c-0841-7f05-5556-45234f7a5cd8", @@ -126406,7 +126487,7 @@ "title": "Far Longer Than Forever" }, { - "artist": "Belle, Regina", + "artist": "Regina Belle", "disabled": false, "favorite": false, "guid": "535619ff-c692-f48d-63e0-843c9927f50b", @@ -126422,7 +126503,7 @@ "title": "Something I Need" }, { - "artist": "Benatar, Pat", + "artist": "Pat Benatar", "disabled": false, "favorite": false, "guid": "386ff63b-7c61-59e9-eb74-7d437f0ea934", @@ -126430,7 +126511,7 @@ "title": "Heartbreaker" }, { - "artist": "Benatar, Pat", + "artist": "Pat Benatar", "disabled": false, "favorite": false, "guid": "a7049c0e-4404-aa3f-6987-a8700ee5d89c", @@ -126438,7 +126519,7 @@ "title": "I'm Gonna Follow You" }, { - "artist": "Benatar, Pat", + "artist": "Pat Benatar", "disabled": false, "favorite": false, "guid": "f89b72b7-7701-8e28-bb63-da2218dadb46", @@ -126446,7 +126527,7 @@ "title": "Little Too Late, A" }, { - "artist": "Benatar, Pat", + "artist": "Pat Benatar", "disabled": false, "favorite": false, "guid": "19bc6def-64d8-86e9-c24d-de859bfec3ce", @@ -126454,7 +126535,7 @@ "title": "Love Is A Battlefield" }, { - "artist": "Benatar, Pat", + "artist": "Pat Benatar", "disabled": false, "favorite": false, "guid": "2654cae5-7229-d408-21f1-a5c19da9e2c0", @@ -126462,7 +126543,7 @@ "title": "Sex As A Weapon" }, { - "artist": "Benatar, Pat", + "artist": "Pat Benatar", "disabled": false, "favorite": false, "guid": "f677934f-bba8-4f47-64a0-61cb1e711173", @@ -126470,7 +126551,7 @@ "title": "We Live For Love" }, { - "artist": "Benatar, Pat", + "artist": "Pat Benatar", "disabled": false, "favorite": false, "guid": "ebc0caf4-560b-5979-1765-a45eb53b60ec", @@ -126478,7 +126559,7 @@ "title": "You Better Run" }, { - "artist": "Bennett, Tony", + "artist": "Tony Bennett", "disabled": false, "favorite": false, "guid": "e93ddef6-1796-cfa3-163c-2f1c02e82653", @@ -126486,7 +126567,7 @@ "title": "I Left My Heart In San Francisco" }, { - "artist": "Benson, George", + "artist": "George Benson", "disabled": false, "favorite": false, "guid": "920f7a1b-7326-f050-618e-51cb659f9f53", @@ -126494,7 +126575,7 @@ "title": "This Masquerade" }, { - "artist": "Bentley, Dierks", + "artist": "Dierks Bentley", "disabled": false, "favorite": false, "guid": "5e8904b5-e3c5-0832-d50d-f533dae20f64", @@ -126502,7 +126583,7 @@ "title": "What Was I Thinkin'" }, { - "artist": "Benton, Brook", + "artist": "Brook Benton", "disabled": false, "favorite": false, "guid": "27f12895-a53c-d24f-9c7c-b2b8dae0acd7", @@ -126510,7 +126591,7 @@ "title": "It's Just A Matter Of Time" }, { - "artist": "Benton, Brook", + "artist": "Brook Benton", "disabled": false, "favorite": false, "guid": "210a5e12-9660-b91b-f166-6ec5a576919d", @@ -126518,7 +126599,7 @@ "title": "Rainy Night In Georgia" }, { - "artist": "Benton, Brook", + "artist": "Brook Benton", "disabled": false, "favorite": false, "guid": "6b5623a8-d68d-1201-8465-eeefa9ad4033", @@ -126542,7 +126623,7 @@ "title": "Take My Breath Away" }, { - "artist": "Berry, John", + "artist": "John Berry", "disabled": false, "favorite": false, "guid": "b0be5baa-d22e-9c59-81bb-001850f8b8df", @@ -126550,7 +126631,7 @@ "title": "Standing On The Edge Of Goodbye" }, { - "artist": "Berry, John", + "artist": "John Berry", "disabled": false, "favorite": false, "guid": "292f9297-bd87-2367-c562-a21a43557d2f", @@ -126630,7 +126711,7 @@ "title": "Shake, Rattle & Roll" }, { - "artist": "Bishop, Stephen", + "artist": "Stephen Bishop", "disabled": false, "favorite": false, "guid": "b8bcf77a-85be-ca60-2ff0-ab0e4da56531", @@ -126678,7 +126759,7 @@ "title": "Where Is The Love" }, { - "artist": "Black, Clint & Steve Wariner", + "artist": "Clint Black & Steve Wariner", "disabled": false, "favorite": false, "guid": "978bfe53-3589-7e1b-798d-e842011f85b9", @@ -126686,7 +126767,7 @@ "title": "Been There" }, { - "artist": "Black, Clint", + "artist": "Clint Black", "disabled": false, "favorite": false, "guid": "7e8daf39-1c63-d03d-61de-b8fa3177d128", @@ -126694,7 +126775,7 @@ "title": "Loving Blind" }, { - "artist": "Black, Clint", + "artist": "Clint Black", "disabled": false, "favorite": false, "guid": "bc55d5fb-d3f0-a8e2-0353-864831d7e23d", @@ -126702,7 +126783,7 @@ "title": "Put Yourself In My Shoes" }, { - "artist": "Black, Clint", + "artist": "Clint Black", "disabled": false, "favorite": false, "guid": "59cfb2d3-86ee-1fe6-54b8-bc9959e553ee", @@ -126710,7 +126791,7 @@ "title": "State Of Mind" }, { - "artist": "Black, Clint", + "artist": "Clint Black", "disabled": false, "favorite": false, "guid": "f9ad7fbd-b788-c367-6226-05fb60ffcb93", @@ -126718,7 +126799,7 @@ "title": "We Tell Ourselves" }, { - "artist": "Black, Clint", + "artist": "Clint Black", "disabled": false, "favorite": false, "guid": "bdf6cf0d-eaea-b314-579e-32a5b2312aea", @@ -126758,7 +126839,7 @@ "title": "Dancin'" }, { - "artist": "Blige, Mary J", + "artist": "Mary J. Blidge", "disabled": false, "favorite": false, "guid": "b37de4ee-22da-9c9f-056e-718713c8c395", @@ -126766,7 +126847,7 @@ "title": "No More Drama" }, { - "artist": "Blige, Mary J. & Ja Rule", + "artist": "Mary J. Blidge & Ja Rule", "disabled": false, "favorite": false, "guid": "b23371cc-b00a-d0f8-dafb-44805f73391f", @@ -126774,7 +126855,7 @@ "title": "Rainy Dayz" }, { - "artist": "Blige, Mary J.", + "artist": "Mary J. Blidge", "disabled": false, "favorite": false, "guid": "7019308b-c642-0991-42fa-6b1083402d07", @@ -126790,7 +126871,7 @@ "title": "Feeling This" }, { - "artist": "Blink-182", + "artist": "Blink 182", "disabled": false, "favorite": false, "guid": "d8fa58dc-4a14-922a-76f9-f2cf46b24c43", @@ -126846,7 +126927,7 @@ "title": "Don't Fear The Reaper" }, { - "artist": "Bolton, Michael", + "artist": "Michael Bolton", "disabled": false, "favorite": false, "guid": "21b717bd-c84c-c743-b738-5aff380ef55d", @@ -126854,7 +126935,7 @@ "title": "Love Is A Wonderful Thing" }, { - "artist": "Bolton, Michael", + "artist": "Michael Bolton", "disabled": false, "favorite": false, "guid": "deeda457-5bc5-f94d-4ae7-0400c8a0b31b", @@ -126862,7 +126943,7 @@ "title": "Soul Provider" }, { - "artist": "Boone, Debbie", + "artist": "Debbie Boone", "disabled": false, "favorite": false, "guid": "a2073730-2129-d58e-374e-77a68a111eca", @@ -126870,7 +126951,7 @@ "title": "You Light Up My Life" }, { - "artist": "Boone, Pat", + "artist": "Pat Boone", "disabled": false, "favorite": false, "guid": "e802b54a-87d6-0915-df6e-0fb9ae7bbff4", @@ -126894,7 +126975,7 @@ "title": "You Can Get It All" }, { - "artist": "Bowie, David", + "artist": "David Bowie", "disabled": false, "favorite": false, "guid": "f8d7db49-6fef-09b1-f08d-72d731562567", @@ -126902,7 +126983,7 @@ "title": "China Girl" }, { - "artist": "Bowie, David", + "artist": "David Bowie", "disabled": false, "favorite": false, "guid": "412db58d-a6f8-bb2a-d7b2-1d7d3793bc7d", @@ -126910,7 +126991,7 @@ "title": "Lets Dance" }, { - "artist": "Bowie, David", + "artist": "David Bowie", "disabled": false, "favorite": false, "guid": "151e1408-c75b-f587-5bb0-1020ca061987", @@ -127006,7 +127087,7 @@ "title": "When I Get Where I'm Going" }, { - "artist": "Branch, Michelle & Santana", + "artist": "Michelle Branch & Santana", "disabled": false, "favorite": false, "guid": "922b6078-4d7b-354b-bf61-fb23e290d39d", @@ -127014,7 +127095,7 @@ "title": "Game Of Love" }, { - "artist": "Branch, Michelle", + "artist": "Michelle Branch", "disabled": false, "favorite": false, "guid": "cda50ad7-47c7-a868-49fd-c81e99a2f48d", @@ -127022,7 +127103,7 @@ "title": "All You Wanted" }, { - "artist": "Branch, Michelle", + "artist": "Michelle Branch", "disabled": false, "favorite": false, "guid": "a61bcb1c-f0ea-efaa-6dfa-0a7bd0c8fb87", @@ -127030,7 +127111,7 @@ "title": "All You Wanted" }, { - "artist": "Branch, Michelle", + "artist": "Michelle Branch", "disabled": false, "favorite": false, "guid": "d7df0d4c-4a35-9161-0ba5-39628d50700a", @@ -127038,7 +127119,7 @@ "title": "Are You Happy Now" }, { - "artist": "Branch, Michelle", + "artist": "Michelle Branch", "disabled": false, "favorite": false, "guid": "72aa2013-e781-9c29-fd3d-2c579cb774a7", @@ -127046,7 +127127,7 @@ "title": "Goodbye To You" }, { - "artist": "Branch, Michelle", + "artist": "Michelle Branch", "disabled": false, "favorite": false, "guid": "c766e9fe-c7ef-0a17-f401-5c72709e99c6", @@ -127078,7 +127159,7 @@ "title": "What About Us" }, { - "artist": "Branigan, Laura", + "artist": "Laura Branigan", "disabled": false, "favorite": false, "guid": "258b3b09-3ef0-8c3c-95ad-9d2f2c89fe7a", @@ -127086,7 +127167,7 @@ "title": "Gloria" }, { - "artist": "Braxton, Toni", + "artist": "Toni Braxton", "disabled": false, "favorite": false, "guid": "054e96f3-de05-8270-b0ff-c1247e4eac1a", @@ -127110,7 +127191,7 @@ "title": "How Can I Fall" }, { - "artist": "Brickman, Jim & Michael Smith", + "artist": "Jim Brickman & Michael Smith", "disabled": false, "favorite": false, "guid": "3cc42cd1-be65-d7a2-2ed7-330e109df89b", @@ -127214,7 +127295,7 @@ "title": "That's What She Gets For Loving Me" }, { - "artist": "Brooks, Garth", + "artist": "Garth Brooks", "disabled": false, "favorite": false, "guid": "51426485-e1cc-1b8a-3e08-9244d6309efa", @@ -127222,7 +127303,7 @@ "title": "Papa Loved Mama" }, { - "artist": "Brooks, Garth", + "artist": "Garth Brooks", "disabled": false, "favorite": false, "guid": "014971ab-c06e-1e36-1eea-1c2a3878c731", @@ -127230,7 +127311,7 @@ "title": "Red Strokes" }, { - "artist": "Brooks, Garth", + "artist": "Garth Brooks", "disabled": false, "favorite": false, "guid": "ea66fbea-054d-a2b0-9655-3906f7c07f3f", @@ -127238,7 +127319,7 @@ "title": "Somewhere Other Than The Night" }, { - "artist": "Brown, James", + "artist": "James Brown", "disabled": false, "favorite": false, "guid": "d9765762-a8e6-16b0-2556-e4b3585ac358", @@ -127246,7 +127327,7 @@ "title": "Cold Sweat, Pt1" }, { - "artist": "Brown, James", + "artist": "James Brown", "disabled": false, "favorite": false, "guid": "17ab82c3-553a-bf8f-5382-966f1948756d", @@ -127254,7 +127335,7 @@ "title": "I Got The Feelin'" }, { - "artist": "Brown, James", + "artist": "James Brown", "disabled": false, "favorite": false, "guid": "5c9c37f8-e7be-ed28-3d67-475c685afe36", @@ -127262,7 +127343,7 @@ "title": "Papa's Got A Brand New Bag" }, { - "artist": "Brown, James", + "artist": "James Brown", "disabled": false, "favorite": false, "guid": "0507b185-49d4-1208-ebed-d024ef518fee", @@ -127270,7 +127351,7 @@ "title": "Papa's Got A Brand New Bag" }, { - "artist": "Brown, Sawyer", + "artist": "Sawyer Brown", "disabled": false, "favorite": false, "guid": "e5c49e11-b7ec-1af8-a961-cd2c28912692", @@ -127278,7 +127359,7 @@ "title": "All These Years" }, { - "artist": "Browne, Jackson", + "artist": "Jackson Browne", "disabled": false, "favorite": false, "guid": "15657488-8bf7-84a6-c2fa-97257acee147", @@ -127286,7 +127367,7 @@ "title": "Load-Outstay" }, { - "artist": "Browne, Jackson", + "artist": "Jackson Browne", "disabled": false, "favorite": false, "guid": "a1811970-fcbb-addd-f775-f1d26eca01fd", @@ -127382,7 +127463,7 @@ "title": "Summer Of '69" }, { - "artist": "Bryson, Peabo & Regina Bell", + "artist": "Peabo Bryson & Regina Bell", "disabled": false, "favorite": true, "guid": "46d06448-6386-ed28-bf80-8cecd5d3bb2a", @@ -127390,7 +127471,7 @@ "title": "(Duet) Whole New World" }, { - "artist": "Bryson, Peabo & Roberta Flack", + "artist": "Peabo Bryson & Roberta Flack", "disabled": false, "favorite": false, "guid": "6d2bc64a-2592-621b-6d24-227f1d21ef59", @@ -127398,7 +127479,7 @@ "title": "(Duet) Tonight I Celebrate My Love For You" }, { - "artist": "Buble, Michael", + "artist": "Michael Buble", "disabled": false, "favorite": false, "guid": "9ab2c325-2047-283b-2ed5-ee9c58fb81b1", @@ -127406,7 +127487,7 @@ "title": "Come Fly With Me" }, { - "artist": "Buble, Michael", + "artist": "Michael Buble", "disabled": false, "favorite": false, "guid": "6c070812-54a0-7535-e9c7-aba0e9679785", @@ -127414,7 +127495,7 @@ "title": "Crazy Little Thing Called Love" }, { - "artist": "Buble, Michael", + "artist": "Michael Buble", "disabled": false, "favorite": false, "guid": "2695b993-36f7-2b69-085e-f336d8c359c8", @@ -127422,7 +127503,7 @@ "title": "Everything" }, { - "artist": "Buble, Michael", + "artist": "Michael Buble", "disabled": false, "favorite": false, "guid": "204cdb9e-7e86-6d89-abba-ced004f791a0", @@ -127430,7 +127511,7 @@ "title": "Fever" }, { - "artist": "Buble, Michael", + "artist": "Michael Buble", "disabled": false, "favorite": false, "guid": "eaa3c6a4-803f-bc60-189e-810aa79870a3", @@ -127438,7 +127519,7 @@ "title": "Fever" }, { - "artist": "Buble, Michael", + "artist": "Michael Buble", "disabled": false, "favorite": false, "guid": "6ae233b0-f651-2aaf-6f41-fc0dd9e969d0", @@ -127446,7 +127527,7 @@ "title": "Home" }, { - "artist": "Buble, Michael", + "artist": "Michael Buble", "disabled": false, "favorite": false, "guid": "90d532e5-0d05-f906-2b34-ae4a6872339d", @@ -127454,7 +127535,7 @@ "title": "How Can You Mend A Broken Heart" }, { - "artist": "Buble, Michael", + "artist": "Michael Buble", "disabled": false, "favorite": false, "guid": "190e92b8-13bb-9aeb-c057-69ddeb540721", @@ -127462,7 +127543,7 @@ "title": "Kissing A Fool" }, { - "artist": "Buble, Michael", + "artist": "Michael Buble", "disabled": false, "favorite": false, "guid": "2aaa50ca-8afd-6ede-0e49-c273e0f1acb3", @@ -127470,7 +127551,7 @@ "title": "Sway" }, { - "artist": "Buble, Michael", + "artist": "Michael Buble", "disabled": false, "favorite": false, "guid": "9a545af3-7860-8809-2520-46de3f55b3d8", @@ -127478,7 +127559,7 @@ "title": "Sway" }, { - "artist": "Buble, Michael", + "artist": "Michael Buble", "disabled": false, "favorite": false, "guid": "4aa10d98-4c9a-6023-e228-0da992185f7d", @@ -127494,7 +127575,7 @@ "title": "Lit Up" }, { - "artist": "Buffett, Jimmy & Martina McBride", + "artist": "Jimmy Buffett & Martina McBride", "disabled": false, "favorite": false, "guid": "b7e99403-c2fe-64d5-397c-d3b4e4f53245", @@ -127518,7 +127599,7 @@ "title": "Glycerine" }, { - "artist": "Byrd, Tracy", + "artist": "Tracy Byrd", "disabled": false, "favorite": false, "guid": "21a85240-7212-f92f-303f-5662a14575e6", @@ -127526,7 +127607,7 @@ "title": "Keeper Of The Stars" }, { - "artist": "Byrd, Tracy", + "artist": "Tracy Byrd", "disabled": false, "favorite": false, "guid": "fec326f3-9f10-68d9-46a3-74283eebfbaf", @@ -127534,7 +127615,7 @@ "title": "Ten Rounds With Jose Cuervo" }, { - "artist": "Byrd, Tracy", + "artist": "Tracy Byrd", "disabled": false, "favorite": false, "guid": "1a380a38-c4e6-b6cf-f07f-898a65615d6c", @@ -127542,7 +127623,7 @@ "title": "Ten Rounds With Jose Cuervo" }, { - "artist": "Byrds, The", + "artist": "The Byrds", "disabled": false, "favorite": false, "guid": "84822a44-df54-0fa1-cb6c-07e660e87c18", @@ -127558,7 +127639,7 @@ "title": "Jerk It Out" }, { - "artist": "Calling, The", + "artist": "The Calling", "disabled": false, "favorite": false, "guid": "a553f62c-89ad-361a-477d-1fa9018e81f8", @@ -127582,7 +127663,7 @@ "title": "My Way" }, { - "artist": "Campbell, Glen", + "artist": "Glen Campbell", "disabled": false, "favorite": false, "guid": "3895ad4b-d922-6b2d-bdb0-f930addc1e0f", @@ -127614,7 +127695,7 @@ "title": "Do That To Me One More Time" }, { - "artist": "Carey, Mariah", + "artist": "Mariah Carey", "disabled": false, "favorite": false, "guid": "3d9e92c0-5294-15f1-a6b7-9adda15358c9", @@ -127622,7 +127703,7 @@ "title": "Always Be My Baby" }, { - "artist": "Carey, Mariah", + "artist": "Mariah Carey", "disabled": false, "favorite": false, "guid": "92fd0f83-b571-c065-4a41-7f68858c2460", @@ -127630,7 +127711,7 @@ "title": "Dreamlover" }, { - "artist": "Carey, Mariah", + "artist": "Mariah Carey", "disabled": false, "favorite": false, "guid": "863cb54f-defd-fb71-8123-bdeaf2ddd4c3", @@ -127638,7 +127719,7 @@ "title": "Fantasy" }, { - "artist": "Carey, Mariah", + "artist": "Mariah Carey", "disabled": false, "favorite": false, "guid": "8794e2ca-0dbb-894c-55a2-c16a8f9114f8", @@ -127646,7 +127727,7 @@ "title": "Hero" }, { - "artist": "Carey, Mariah", + "artist": "Mariah Carey", "disabled": false, "favorite": false, "guid": "2378a30e-a905-f76f-6c3b-5cab9c833f47", @@ -127654,7 +127735,7 @@ "title": "I'll Be There" }, { - "artist": "Carey, Mariah", + "artist": "Mariah Carey", "disabled": false, "favorite": false, "guid": "f2ea3400-d270-df4c-a443-af3bebdda088", @@ -127662,7 +127743,7 @@ "title": "Looking In" }, { - "artist": "Carey, Mariah", + "artist": "Mariah Carey", "disabled": false, "favorite": false, "guid": "1ed64524-64a2-f3e1-0de7-0d45277c44e2", @@ -127670,7 +127751,7 @@ "title": "One Sweet Day" }, { - "artist": "Carey, Mariah", + "artist": "Mariah Carey", "disabled": false, "favorite": false, "guid": "0761ff05-9e55-a8f4-6dff-5bd68e578000", @@ -127678,7 +127759,7 @@ "title": "Vision Of Love" }, { - "artist": "Carlisle, Belinda", + "artist": "Belinda Carlisle", "disabled": false, "favorite": false, "guid": "aaa494fe-ac7b-3794-4870-e927fcd6974d", @@ -127686,7 +127767,7 @@ "title": "Heaven Is A Place On Earth" }, { - "artist": "Carlisle, Bob", + "artist": "Bob Carlisle", "disabled": false, "favorite": false, "guid": "30c68100-ad95-4553-4ebb-8bc118422d02", @@ -127694,7 +127775,7 @@ "title": "Butterfly Kisses" }, { - "artist": "Carlton, Vanessa", + "artist": "Vanessa Carlton", "disabled": false, "favorite": false, "guid": "09f8ba35-97d9-4aa1-462e-ff938be9542d", @@ -127702,7 +127783,7 @@ "title": "A Thousand Miles" }, { - "artist": "Carlton, Vanessa", + "artist": "Vanessa Carlton", "disabled": false, "favorite": false, "guid": "ddd4a467-aed6-bb04-e61c-608c9f917a11", @@ -127710,7 +127791,7 @@ "title": "Thousand Miles" }, { - "artist": "Carmen, Eric", + "artist": "Eric Carmen", "disabled": false, "favorite": false, "guid": "3d9f9b37-4c3f-3780-81ba-7208d0865370", @@ -127718,7 +127799,7 @@ "title": "All By Myself" }, { - "artist": "Carnes, Kim", + "artist": "Kim Carnes", "disabled": false, "favorite": false, "guid": "e433ff6b-ec66-0319-06a6-9e806235c336", @@ -127790,7 +127871,7 @@ "title": "Just What I Needed" }, { - "artist": "Carter, Carlene", + "artist": "Carlene Carter", "disabled": false, "favorite": false, "guid": "25efc4b3-d817-dc56-4abf-20ddc62c5488", @@ -127814,7 +127895,7 @@ "title": "Touch Me Tease Me" }, { - "artist": "Cash, Johnny & June Carter", + "artist": "Johnny Cash & June Carter", "disabled": false, "favorite": false, "guid": "abd53b17-597c-495d-7a51-dfb0e024734b", @@ -127822,7 +127903,7 @@ "title": "Jackson" }, { - "artist": "Cash, Johnny", + "artist": "Johnny Cash", "disabled": false, "favorite": false, "guid": "7d1590f4-769f-fcbc-e34c-57d355bf2699", @@ -127830,7 +127911,7 @@ "title": "Ghost Riders In The Sky" }, { - "artist": "Cash, Johnny", + "artist": "Johnny Cash", "disabled": false, "favorite": false, "guid": "f9f414a3-4271-4a8e-fb1e-40753f3f07be", @@ -127838,7 +127919,7 @@ "title": "I Walk The Line" }, { - "artist": "Cash, Johnny", + "artist": "Johnny Cash", "disabled": false, "favorite": false, "guid": "fc0459ad-ddc5-4bd3-99a3-f2816ad2a912", @@ -127846,7 +127927,7 @@ "title": "Thing Called Love" }, { - "artist": "Casinos, The", + "artist": "The Casinos", "disabled": false, "favorite": false, "guid": "3063f822-ffed-3065-8958-2f089a924b9c", @@ -127854,7 +127935,7 @@ "title": "Then You Can Tell Me Goodbye" }, { - "artist": "Cassidy, Eva", + "artist": "Eva Cassidy", "disabled": false, "favorite": false, "guid": "5219b62b-c3f1-0d66-fabd-71caee866082", @@ -127862,7 +127943,7 @@ "title": "Fields Of Gold" }, { - "artist": "Cassidy, Eva", + "artist": "Eva Cassidy", "disabled": false, "favorite": false, "guid": "d5c3f1ab-cba0-cfd2-4332-f906e952af1c", @@ -127870,7 +127951,7 @@ "title": "Imagine" }, { - "artist": "Cassidy, Eva", + "artist": "Eva Cassidy", "disabled": false, "favorite": false, "guid": "78d4cab0-ca10-c245-992c-ae22741f5f87", @@ -127894,7 +127975,7 @@ "title": "All By Myself" }, { - "artist": "Cetera, Peter & Amy Grant", + "artist": "Peter Cetera & Amy Grant", "disabled": false, "favorite": false, "guid": "3e4e9389-40df-5bdb-953b-293d6d4320c1", @@ -127902,7 +127983,7 @@ "title": "(Duet) Next Time I Fall" }, { - "artist": "Cetera, Peter & Cher", + "artist": "Peter Cetera & Cher", "disabled": false, "favorite": false, "guid": "b61c3d7b-4ef1-9150-b752-8ac334604b72", @@ -127910,7 +127991,7 @@ "title": "(Duet) After All" }, { - "artist": "Chad Brock, Hank Jr & George Jones", + "artist": "Hank Jr Chad Brock & George Jones", "disabled": false, "favorite": false, "guid": "4042c277-8294-f585-eb3e-3645e745f982", @@ -127918,7 +127999,7 @@ "title": "Country Boy Can Survive" }, { - "artist": "Chapin, Harry", + "artist": "Harry Chapin", "disabled": false, "favorite": false, "guid": "756e0190-7dee-fb07-dee3-1759f3ac011e", @@ -127926,7 +128007,7 @@ "title": "Cat's In The Cradle" }, { - "artist": "Charles, Ray", + "artist": "Ray Charles", "disabled": false, "favorite": false, "guid": "97fb9fd0-1d11-689d-15e7-b2af60566d78", @@ -127934,7 +128015,7 @@ "title": "Born To Lose" }, { - "artist": "Charles, Ray", + "artist": "Ray Charles", "disabled": false, "favorite": false, "guid": "a2b5710d-cc2a-1556-bbe2-9f2f8c0b9a79", @@ -127942,7 +128023,7 @@ "title": "Georgia On My Mind" }, { - "artist": "Charles, Ray", + "artist": "Ray Charles", "disabled": false, "favorite": false, "guid": "543133dd-d8b4-22e9-fbcd-ccabe04c553e", @@ -127950,7 +128031,7 @@ "title": "Hit The Road Jack" }, { - "artist": "Charles, Ray", + "artist": "Ray Charles", "disabled": false, "favorite": false, "guid": "2aaa23f6-f38c-bdec-b74d-dc39f8e6bc81", @@ -127974,7 +128055,7 @@ "title": "I Want You To Want Me" }, { - "artist": "Checker, Chubby", + "artist": "Chubby Checker", "disabled": false, "favorite": false, "guid": "81335909-fa7c-c3e3-fd02-80b1c4165c60", @@ -128046,7 +128127,7 @@ "title": "Strong Enough" }, { - "artist": "Chesney, Kenny & Uncle Kracker", + "artist": "Kenny Chesney & Uncle Kracker", "disabled": false, "favorite": false, "guid": "0d2b26ba-9099-958c-9937-66853188bf36", @@ -128054,7 +128135,7 @@ "title": "When The Sun Goes Down" }, { - "artist": "Chesney, Kenny", + "artist": "Kenny Chesney", "disabled": false, "favorite": false, "guid": "d3b1894c-097c-26de-9f8f-e655e68e73b1", @@ -128062,7 +128143,7 @@ "title": "Good Stuff" }, { - "artist": "Chesney, Kenny", + "artist": "Kenny Chesney", "disabled": false, "favorite": false, "guid": "95e7c7d4-a870-456c-0ead-5fbdb3e30489", @@ -128070,7 +128151,7 @@ "title": "Good Stuff, The" }, { - "artist": "Chesney, Kenny", + "artist": "Kenny Chesney", "disabled": false, "favorite": false, "guid": "f5907320-4289-4cd5-a4d8-621dd2e22e3f", @@ -128078,7 +128159,7 @@ "title": "No Shoes, No Shirt, No Problems" }, { - "artist": "Chesney, Kenny", + "artist": "Kenny Chesney", "disabled": false, "favorite": false, "guid": "64bea6ff-50b4-d227-6d3d-b6422c53a433", @@ -128086,7 +128167,7 @@ "title": "She's Got It All" }, { - "artist": "Chesney, Kenny", + "artist": "Kenny Chesney", "disabled": false, "favorite": false, "guid": "12f59147-909d-5c61-3a42-0b8af48e0d00", @@ -128094,7 +128175,7 @@ "title": "The Woman With You" }, { - "artist": "Chesney, Kenny", + "artist": "Kenny Chesney", "disabled": false, "favorite": false, "guid": "134d012e-c9a4-a7d1-a5e9-4bac7108b2f9", @@ -128102,7 +128183,7 @@ "title": "Young" }, { - "artist": "Chesney, Kenny", + "artist": "Kenny Chesney", "disabled": false, "favorite": false, "guid": "68b7d31e-0716-4537-0de2-54d3d163620f", @@ -128110,7 +128191,7 @@ "title": "Young" }, { - "artist": "Chesnutt, Mark", + "artist": "Mark Chesnutt", "disabled": false, "favorite": false, "guid": "f58250b5-dd64-0403-5fea-dfb79e3d5f26", @@ -128118,7 +128199,7 @@ "title": "Gonna Get A Life" }, { - "artist": "Chesnutt, Mark", + "artist": "Mark Chesnutt", "disabled": false, "favorite": false, "guid": "65f7fd33-fe15-4052-1ecd-e42eb9b5aedc", @@ -128214,7 +128295,7 @@ "title": "Don't Know What You Got" }, { - "artist": "Clapton, Eric", + "artist": "Eric Clapton", "disabled": false, "favorite": false, "guid": "afc9be6e-e4aa-46dd-d532-5712c796a86b", @@ -128222,7 +128303,7 @@ "title": "After Midnight" }, { - "artist": "Clapton, Eric", + "artist": "Eric Clapton", "disabled": false, "favorite": false, "guid": "e99ad145-dcad-5e19-113d-39cc6ea72290", @@ -128230,7 +128311,7 @@ "title": "Before You Accuse Me" }, { - "artist": "Clapton, Eric", + "artist": "Eric Clapton", "disabled": false, "favorite": false, "guid": "db1d0d44-f2f3-852d-3f35-a583ba18fdfd", @@ -128238,7 +128319,7 @@ "title": "Blues Power" }, { - "artist": "Clapton, Eric", + "artist": "Eric Clapton", "disabled": false, "favorite": false, "guid": "7d86f0f5-84c1-bfc5-fd33-bb7cc1dcdecd", @@ -128246,7 +128327,7 @@ "title": "Cocaine" }, { - "artist": "Clapton, Eric", + "artist": "Eric Clapton", "disabled": false, "favorite": false, "guid": "06e3e587-548e-c703-df64-a8c85adf92b3", @@ -128254,7 +128335,7 @@ "title": "Forever Man" }, { - "artist": "Clapton, Eric", + "artist": "Eric Clapton", "disabled": false, "favorite": false, "guid": "564c3fd2-9e8c-0b19-3f32-71cd99ac87a6", @@ -128262,7 +128343,7 @@ "title": "I Shot The Sheriff" }, { - "artist": "Clapton, Eric", + "artist": "Eric Clapton", "disabled": false, "favorite": false, "guid": "3210f2b4-d166-a032-c299-042ba251e827", @@ -128270,7 +128351,7 @@ "title": "Lay Down Sally" }, { - "artist": "Clapton, Eric", + "artist": "Eric Clapton", "disabled": false, "favorite": false, "guid": "06d0aff2-2284-a350-5b7b-3c7a8ccb3166", @@ -128278,7 +128359,7 @@ "title": "Promises" }, { - "artist": "Clapton, Eric", + "artist": "Eric Clapton", "disabled": false, "favorite": false, "guid": "5ac58b3c-1187-796a-0ea0-0ca63c4773f7", @@ -128286,7 +128367,7 @@ "title": "Tears In Heaven" }, { - "artist": "Clapton, Eric", + "artist": "Eric Clapton", "disabled": false, "favorite": false, "guid": "8430461f-c740-7872-5758-66ba36407ef3", @@ -128294,7 +128375,7 @@ "title": "Wonderful Tonight" }, { - "artist": "Clark, Terri", + "artist": "Terri Clark", "disabled": false, "favorite": false, "guid": "47e89f57-7c03-fe06-4136-01d5aa7e92bc", @@ -128302,7 +128383,7 @@ "title": "Better Things To Do" }, { - "artist": "Clark, Terri", + "artist": "Terri Clark", "disabled": false, "favorite": false, "guid": "07d92cc9-963a-cf75-d974-72b78299b349", @@ -128310,7 +128391,7 @@ "title": "Girls Lie Too" }, { - "artist": "Clark, Terri", + "artist": "Terri Clark", "disabled": false, "favorite": false, "guid": "2eec6853-e19e-edb5-8f0e-7fb851f9dec3", @@ -128318,7 +128399,7 @@ "title": "You're Easy On The Eyes" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "b37baa33-63bf-19ad-71c6-e31ffb3f52da", @@ -128326,7 +128407,7 @@ "title": "A Moment Like This" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "b68efd3d-621b-6ee8-c78c-a607771b44a8", @@ -128334,7 +128415,7 @@ "title": "Because Of You" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "0f181ef0-8311-f19b-1b4f-0ba1be1c4090", @@ -128342,7 +128423,7 @@ "title": "Because Of You" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "84bd650e-e5a0-8dc8-9846-ad0e52787ba0", @@ -128350,7 +128431,7 @@ "title": "Behind These Hazel Eyes" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "a40ca3d3-bd4d-e30c-04f6-f8d79dcf9ada", @@ -128358,7 +128439,7 @@ "title": "Behind These Hazel Eyes" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "b771e6a9-bfbe-48fc-4a6f-23b8e473955d", @@ -128366,7 +128447,7 @@ "title": "Breakaway" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "749a7f25-b3ca-6dc3-b95c-63edb2f7d492", @@ -128374,7 +128455,7 @@ "title": "Miss Independent" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "07789ab4-47a2-ff15-bee0-cbe592f231b1", @@ -128382,7 +128463,7 @@ "title": "Miss Independent" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "909023a5-4d2d-285b-af18-b9ba18c51ae9", @@ -128390,7 +128471,7 @@ "title": "Moment Like This" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "6b2b1faf-a290-f004-8993-bac2ca77a9a0", @@ -128398,7 +128479,7 @@ "title": "Since U Been Gone" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "f538e9ab-9f84-fe4a-f020-3b6ef6d69b9e", @@ -128406,7 +128487,7 @@ "title": "Thankful" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "11f5447f-5ed1-ed37-4a90-a17db24f31a5", @@ -128414,7 +128495,7 @@ "title": "Trouble With Love Is, The" }, { - "artist": "Clarkson, Kelly", + "artist": "Kelly Clarkson", "disabled": false, "favorite": false, "guid": "0b1762ce-3089-54f2-2bfb-8c6f627fa5ea", @@ -128430,7 +128511,7 @@ "title": "Rock The Casbah" }, { - "artist": "Clash, The", + "artist": "The Clash", "disabled": false, "favorite": false, "guid": "8995fab5-357f-998c-f0a2-5ef52fd406d0", @@ -128438,7 +128519,7 @@ "title": "Rock The Casbah" }, { - "artist": "Clash, The", + "artist": "The Clash", "disabled": false, "favorite": false, "guid": "91104532-1b6f-78ef-5876-6415e25147e3", @@ -128446,7 +128527,7 @@ "title": "Should I Stay Or Should I Go" }, { - "artist": "Cline, Patsy", + "artist": "Patsy Cline", "disabled": false, "favorite": false, "guid": "198b90b5-962f-1ca1-bcfe-829fe3430343", @@ -128470,7 +128551,7 @@ "title": "Yakety Yak" }, { - "artist": "Cocker, Joe & J Warnes", + "artist": "Joe Cocker & J Warnes", "disabled": false, "favorite": false, "guid": "11993ed6-56ee-c5c5-5984-714800775a5a", @@ -128478,7 +128559,7 @@ "title": "Up Where We Belong" }, { - "artist": "Cocker, Joe & Jennifer Warnes", + "artist": "Joe Cocker & Jennifer Warnes", "disabled": false, "favorite": false, "guid": "aba4c479-f99c-8653-ebf0-f66192b1bbbc", @@ -128542,7 +128623,7 @@ "title": "Unforgettable" }, { - "artist": "Cole, Natalie & Nat King Cole", + "artist": "Natalie Cole & Nat King Cole", "disabled": false, "favorite": false, "guid": "bb7840c7-6d21-b378-adf7-74edfab3f295", @@ -128550,7 +128631,7 @@ "title": "Unforgettable" }, { - "artist": "Cole, Natalie", + "artist": "Natalie Cole", "disabled": false, "favorite": false, "guid": "27600f35-ccb2-1cd1-cb02-4fe1d2c40319", @@ -128574,7 +128655,7 @@ "title": "Heavy" }, { - "artist": "Collins, Phil & Marilyn Martin", + "artist": "Phil Collins & Marilyn Martin", "disabled": false, "favorite": false, "guid": "7c52a252-5e88-0b1e-215a-95f19c10ab1e", @@ -128582,7 +128663,7 @@ "title": "Separate Lives" }, { - "artist": "Collins, Phil", + "artist": "Phil Collins", "disabled": false, "favorite": false, "guid": "99763a6a-8799-5364-6750-c3ac0737ff48", @@ -128590,7 +128671,7 @@ "title": "Groovy Kind Of Love" }, { - "artist": "Collins, Phil", + "artist": "Phil Collins", "disabled": false, "favorite": false, "guid": "03d0b929-4a86-ad81-f1cb-d958b96238a5", @@ -128638,7 +128719,7 @@ "title": "Do You Love Me" }, { - "artist": "Cooke, Sam", + "artist": "Sam Cooke", "disabled": false, "favorite": false, "guid": "056bbb7b-82eb-ce20-41bf-78eaa6dd85f4", @@ -128646,7 +128727,7 @@ "title": "I Love You For Sentimental Reasons" }, { - "artist": "Cooke, Sam", + "artist": "Sam Cooke", "disabled": false, "favorite": false, "guid": "5732a3e1-6bb2-ddb4-87eb-b101fa30b3bf", @@ -128654,7 +128735,7 @@ "title": "Wonderful World" }, { - "artist": "Cooke, Sam", + "artist": "Sam Cooke", "disabled": false, "favorite": false, "guid": "045339cc-16af-0d6c-7b16-6a7c90da071f", @@ -128806,7 +128887,7 @@ "title": "Who'll Stop The Rain" }, { - "artist": "Croce, Jim", + "artist": "Jim Croce", "disabled": false, "favorite": false, "guid": "63f1eeb5-d701-ac55-8596-acdd53ddb98f", @@ -128814,7 +128895,7 @@ "title": "Bad Bad Leroy Brown" }, { - "artist": "Croce, Jim", + "artist": "Jim Croce", "disabled": false, "favorite": false, "guid": "02dcaad8-84a1-493d-3e84-84a2a296886f", @@ -128822,7 +128903,7 @@ "title": "Time In A Bottle" }, { - "artist": "Crosby, Bing", + "artist": "Bing Crosby", "disabled": false, "favorite": false, "guid": "164c42ac-34eb-79f3-1171-3a05b718c616", @@ -128830,7 +128911,7 @@ "title": "You Are My Sunshine" }, { - "artist": "Crosby, Stills, Nash", + "artist": "Nash Crosby Stills", "disabled": false, "favorite": false, "guid": "6a6b0118-95a4-f507-91cc-8efc4793c5d4", @@ -128838,7 +128919,7 @@ "title": "Long Time Gone" }, { - "artist": "Cross, Christopher", + "artist": "Christopher Cross", "disabled": false, "favorite": false, "guid": "be23f88c-d861-9e57-f2d0-525d20bad016", @@ -128846,7 +128927,7 @@ "title": "Arthurs Theme" }, { - "artist": "Crow, Sheryl", + "artist": "Sheryl Crow", "disabled": false, "favorite": false, "guid": "1a5122e5-4a80-272c-01e2-b9b9d33650fe", @@ -128854,7 +128935,7 @@ "title": "Anything But Down" }, { - "artist": "Crow, Sheryl", + "artist": "Sheryl Crow", "disabled": false, "favorite": false, "guid": "95cbe835-a73b-743d-9199-a830c87c322d", @@ -128862,7 +128943,7 @@ "title": "Soak Up The Sun" }, { - "artist": "Crow, Sheryl", + "artist": "Sheryl Crow", "disabled": false, "favorite": false, "guid": "0ea756b4-3960-3a9a-8755-6671696be2bb", @@ -128886,7 +128967,7 @@ "title": "Don't It Make My Brown Eyes Blue" }, { - "artist": "Cullum, Jamie", + "artist": "Jamie Cullum", "disabled": false, "favorite": false, "guid": "1f8baafc-2df0-1925-fa8f-1571028fa83e", @@ -128894,7 +128975,7 @@ "title": "All At Sea" }, { - "artist": "Cullum, Jamie", + "artist": "Jamie Cullum", "disabled": false, "favorite": false, "guid": "d85af31c-9ae7-d0c9-3bae-a98328ce0a77", @@ -128998,7 +129079,7 @@ "title": "What I Did For Love" }, { - "artist": "David, Craig", + "artist": "Craig David", "disabled": false, "favorite": false, "guid": "eba76a00-10d0-37ad-61b5-c2613bb2b508", @@ -129006,7 +129087,7 @@ "title": "7 Days" }, { - "artist": "Davis, Paul", + "artist": "Paul Davis", "disabled": false, "favorite": false, "guid": "c2940e54-6b37-3875-de79-d02591ad4741", @@ -129014,7 +129095,7 @@ "title": "Cool Night" }, { - "artist": "Davis, Paul", + "artist": "Paul Davis", "disabled": false, "favorite": false, "guid": "9c2a06d5-1dfe-ff6c-dae0-c320314bba9f", @@ -129022,7 +129103,7 @@ "title": "I Go Crazy" }, { - "artist": "Day, Bobby", + "artist": "Bobby Day", "disabled": false, "favorite": false, "guid": "b94891ff-4e94-612c-2a81-740d4e1591c9", @@ -129030,7 +129111,7 @@ "title": "Rockin' Robin" }, { - "artist": "Day, Doris", + "artist": "Doris Day", "disabled": false, "favorite": false, "guid": "44067bc1-b6f1-0152-193d-25078c7ed925", @@ -129038,7 +129119,7 @@ "title": "Sentimental Journey" }, { - "artist": "Day, Otis & The Knights", + "artist": "Otis Day & The Knights", "disabled": false, "favorite": false, "guid": "6c8baa49-40c3-6131-e637-99a6d9485587", @@ -129046,7 +129127,7 @@ "title": "Shout" }, { - "artist": "Dayne, Taylor", + "artist": "Taylor Dayne", "disabled": false, "favorite": false, "guid": "de344d60-4167-00cc-2ed9-23f39d881033", @@ -129062,7 +129143,7 @@ "title": "Me Myself & I" }, { - "artist": "De Vita, Franco", + "artist": "Franco De Vita", "disabled": false, "favorite": false, "guid": "1b7bb557-7e37-cd56-df00-324e20558705", @@ -129070,7 +129151,7 @@ "title": "Traigo Una Pena" }, { - "artist": "Dean, Billy", + "artist": "Billy Dean", "disabled": false, "favorite": false, "guid": "192f3e01-56f7-2649-6d67-6ada6e5ba039", @@ -129078,7 +129159,7 @@ "title": "Let Them Be Little" }, { - "artist": "Dean, Billy", + "artist": "Billy Dean", "disabled": false, "favorite": false, "guid": "1492a1f4-2484-c56a-d289-949735b03c58", @@ -129126,7 +129207,7 @@ "title": "Oh What A Nite" }, { - "artist": "Denney, Kevin", + "artist": "Kevin Denney", "disabled": false, "favorite": false, "guid": "bc22f314-c6ca-eccd-c7e4-e806612a58ca", @@ -129134,7 +129215,7 @@ "title": "That's Just Jesse" }, { - "artist": "Denver, John", + "artist": "John Denver", "disabled": false, "favorite": false, "guid": "378a7b36-21af-cc86-a269-6e6516c31cb1", @@ -129190,7 +129271,7 @@ "title": "Little Darlin'" }, { - "artist": "Diddy, P & Kelis", + "artist": "P Diddy & Kelis", "disabled": false, "favorite": false, "guid": "33936f26-def9-0de4-847c-a6f4bdbd9859", @@ -129206,7 +129287,7 @@ "title": "White Flag" }, { - "artist": "Diffie, Joe", + "artist": "Joe Diffie", "disabled": false, "favorite": false, "guid": "f1e62a78-5243-7169-2c6c-5d57d44f7e41", @@ -129230,7 +129311,7 @@ "title": "Humpty Dance" }, { - "artist": "Dion, Celine & Clive Griffin", + "artist": "Celine Dion & Clive Griffin", "disabled": false, "favorite": false, "guid": "0a3f3999-6f42-d451-8983-40730100c568", @@ -129238,7 +129319,7 @@ "title": "When I Fall In Love" }, { - "artist": "Dion, Celine & Peabo Bryson", + "artist": "Celine Dion & Peabo Bryson", "disabled": false, "favorite": false, "guid": "9e081fd4-5646-c780-04e3-07bead5eb644", @@ -129246,7 +129327,7 @@ "title": "Beauty And The Beast" }, { - "artist": "Dion, Celine & R. Kelly", + "artist": "Celine Dion & R. Kelly", "disabled": false, "favorite": false, "guid": "b557e694-cf78-b50d-b6b0-e3f901c9fbc4", @@ -129254,7 +129335,7 @@ "title": "I'm Your Angel" }, { - "artist": "Dion, Celine", + "artist": "Celine Dion", "disabled": false, "favorite": false, "guid": "0c9cce2e-a03f-1c1d-4ab2-42a059f857bd", @@ -129262,7 +129343,7 @@ "title": "A New Day Has Come" }, { - "artist": "Dion, Celine", + "artist": "Celine Dion", "disabled": false, "favorite": false, "guid": "b6907b0a-8632-135d-3aba-b0e844e8b706", @@ -129270,7 +129351,7 @@ "title": "Have You Ever Been In Love" }, { - "artist": "Dion, Celine", + "artist": "Celine Dion", "disabled": false, "favorite": false, "guid": "45db2a56-368f-ce9a-7aee-fa08a428f0c5", @@ -129278,7 +129359,7 @@ "title": "I Drove All Night" }, { - "artist": "Dion, Celine", + "artist": "Celine Dion", "disabled": false, "favorite": false, "guid": "718c3103-f2b9-d1c5-8990-35e775e26c00", @@ -129286,7 +129367,7 @@ "title": "I'm Alive" }, { - "artist": "Dion, Celine", + "artist": "Celine Dion", "disabled": false, "favorite": false, "guid": "56beb94f-4b2a-78bf-ade3-64365159492d", @@ -129294,7 +129375,7 @@ "title": "I'm Your Angel" }, { - "artist": "Dion, Celine", + "artist": "Celine Dion", "disabled": false, "favorite": false, "guid": "b7e578b0-4300-4aad-f90a-9d0bccbbcc39", @@ -129302,7 +129383,7 @@ "title": "It's All Coming Back To Me Now" }, { - "artist": "Dion, Celine", + "artist": "Celine Dion", "disabled": false, "favorite": false, "guid": "b97346b9-589d-814c-d98f-d483a000d809", @@ -129310,7 +129391,7 @@ "title": "My Heart Will Go On" }, { - "artist": "Dion, Celine", + "artist": "Celine Dion", "disabled": false, "favorite": false, "guid": "a9067cd0-d3a8-f2f3-bcdd-dc314384d114", @@ -129318,7 +129399,7 @@ "title": "New Day Has Come" }, { - "artist": "Dion, Celine", + "artist": "Celine Dion", "disabled": false, "favorite": false, "guid": "6e4f7555-7c45-b2c9-a737-03a5037f0369", @@ -129326,7 +129407,7 @@ "title": "New Day Has Come" }, { - "artist": "Dion, Celine", + "artist": "Celine Dion", "disabled": false, "favorite": false, "guid": "303d1230-ebba-389f-2ee1-d70995c9c11e", @@ -129414,7 +129495,7 @@ "title": "Heaven" }, { - "artist": "Domino, Fats", + "artist": "Fats Domino", "disabled": false, "favorite": false, "guid": "f325f35f-ef89-8b03-7787-af9c32b1cb95", @@ -129422,7 +129503,7 @@ "title": "Ain't That A Shame" }, { - "artist": "Domino, Fats", + "artist": "Fats Domino", "disabled": false, "favorite": false, "guid": "55262a64-ea83-baef-b19f-14a6bb8538e0", @@ -129454,7 +129535,7 @@ "title": "Listen To The Music" }, { - "artist": "Doobie Brothers, The", + "artist": "The Doobie Brothers", "disabled": false, "favorite": false, "guid": "e13f8742-13c5-3539-f533-5919bb2b3c14", @@ -129462,7 +129543,7 @@ "title": "China Grove" }, { - "artist": "Doobie Brothers, The", + "artist": "The Doobie Brothers", "disabled": false, "favorite": false, "guid": "4bb77eaf-123a-8150-1bf7-4d7cd17b2da9", @@ -129494,7 +129575,7 @@ "title": "Riders On The Storm" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "ad11dec4-cd55-b1ae-269b-aa2c3574b6ee", @@ -129502,7 +129583,7 @@ "title": "Break On Through" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "09498dff-31a4-93bf-1524-6a928596a122", @@ -129510,7 +129591,7 @@ "title": "Five To One" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "41ea7bce-81bf-adde-4dfb-1597ad4b83f9", @@ -129518,7 +129599,7 @@ "title": "Hello, I Love You" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "642b6940-18f8-f425-f58b-6c28eb84f6f5", @@ -129526,7 +129607,7 @@ "title": "Hello, I Love You" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "243ffe8a-9f4b-f958-a152-19aa4cb6e5d3", @@ -129534,7 +129615,7 @@ "title": "L. A. Woman" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "39e30145-67c7-be70-db94-3fc83319269e", @@ -129542,7 +129623,7 @@ "title": "L.A. Woman" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "9be93aae-89b9-748e-9d06-7f2196bd19d4", @@ -129550,7 +129631,7 @@ "title": "Light My Fire" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "b077fc3e-79a9-3146-6f3e-b0b38e75b6b3", @@ -129558,7 +129639,7 @@ "title": "Love Me Two Times" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "629c9f87-9576-71aa-9eaf-98ecbfafcf72", @@ -129566,7 +129647,7 @@ "title": "Love Me Two Times" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "24f1f460-4860-37bb-f75c-d38e21cd048a", @@ -129574,7 +129655,7 @@ "title": "Lover Her Madly" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "bb115e1e-11d5-3c75-0526-cd3f6ad9555c", @@ -129582,7 +129663,7 @@ "title": "Roadhouse Blues" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "e3ce95b8-6dde-5c35-8ac6-f0a6c2c43d23", @@ -129590,7 +129671,7 @@ "title": "Roadhouse Blues" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "745041b0-7e08-5b70-5714-b1fb0858ce8d", @@ -129598,7 +129679,7 @@ "title": "Touch Me" }, { - "artist": "Doors, The", + "artist": "The Doors", "disabled": false, "favorite": false, "guid": "8cbe6492-8b84-e68f-0bb7-6958251c5e4d", @@ -129606,7 +129687,7 @@ "title": "Touch Me" }, { - "artist": "Douglas, Carl", + "artist": "Carl Douglas", "disabled": false, "favorite": false, "guid": "1c2c9358-1b5f-efd1-4937-8fec1ad8ad6a", @@ -129678,7 +129759,7 @@ "title": "Up On The Roof" }, { - "artist": "Drifters, The", + "artist": "The Drifters", "disabled": false, "favorite": false, "guid": "1e84e53d-7675-a62c-6e01-b82f5036601b", @@ -129694,7 +129775,7 @@ "title": "Blow Your Mind" }, { - "artist": "Duff, Hilary", + "artist": "Hilary Duff", "disabled": false, "favorite": false, "guid": "9c083dbd-0d33-7484-76f6-0b89c59a3802", @@ -129702,7 +129783,7 @@ "title": "Come Clean" }, { - "artist": "Duff, Hilary", + "artist": "Hilary Duff", "disabled": false, "favorite": false, "guid": "1c5e09a7-aad8-b515-2198-69ba19705a0b", @@ -129710,7 +129791,7 @@ "title": "Come Clean" }, { - "artist": "Duff, Hilary", + "artist": "Hilary Duff", "disabled": false, "favorite": false, "guid": "7a012544-7245-927a-2851-051bea651032", @@ -129718,7 +129799,7 @@ "title": "Fly" }, { - "artist": "Duff, Hilary", + "artist": "Hilary Duff", "disabled": false, "favorite": false, "guid": "df036355-ffb2-386e-a6ad-46676e935db0", @@ -129726,7 +129807,7 @@ "title": "Girl Can Rock, The" }, { - "artist": "Duff, Hilary", + "artist": "Hilary Duff", "disabled": false, "favorite": false, "guid": "5a1a9af0-4ecb-a90d-7a04-bc5ded29c7b0", @@ -129734,7 +129815,7 @@ "title": "Someone's Watching Over Me" }, { - "artist": "Duff, Hilary", + "artist": "Hilary Duff", "disabled": false, "favorite": false, "guid": "71d496dd-b9c9-9ac6-6880-dbe086f2e679", @@ -129742,7 +129823,7 @@ "title": "What Dreams Are Made Of" }, { - "artist": "Duff, Hillary", + "artist": "Hillary Duff", "disabled": false, "favorite": false, "guid": "583acac7-6dcf-145f-1855-14963ae212c3", @@ -129750,7 +129831,7 @@ "title": "So Yesterday" }, { - "artist": "Duncan, Johnny", + "artist": "Johnny Duncan", "disabled": false, "favorite": false, "guid": "6d3c5171-837e-7840-f6cc-b65691ab0592", @@ -129774,7 +129855,7 @@ "title": "Reflex" }, { - "artist": "Durcal, Rocio", + "artist": "Rocio Durcal", "disabled": false, "favorite": false, "guid": "047cf0a1-de1e-8803-5a4b-3b74780e7df1", @@ -129782,7 +129863,7 @@ "title": "Para Toda La Vida" }, { - "artist": "Dylan, Bob", + "artist": "Bob Dylan", "disabled": false, "favorite": false, "guid": "0cc2c5a4-387c-4f39-1ff7-93f22c8430d5", @@ -129790,7 +129871,7 @@ "title": "Knockin' On Heaven's Door" }, { - "artist": "Dylan, Bob", + "artist": "Bob Dylan", "disabled": false, "favorite": false, "guid": "b7e19851-8da2-cbfd-a440-8010a6e9841e", @@ -129798,7 +129879,7 @@ "title": "Subterranean Homesick Blues" }, { - "artist": "Dylan, Bob", + "artist": "Bob Dylan", "disabled": false, "favorite": false, "guid": "75a8632c-085e-1ba4-c5d5-75ae827b470f", @@ -129806,7 +129887,7 @@ "title": "Tangled Up In Blue" }, { - "artist": "Eagles, The", + "artist": "The Eagles", "disabled": false, "favorite": false, "guid": "43222cd2-8662-7589-5bbe-8a6a50fb4ec4", @@ -129814,7 +129895,7 @@ "title": "Love Will Keep Us Alive" }, { - "artist": "Eagles, The", + "artist": "The Eagles", "disabled": false, "favorite": false, "guid": "d417182f-1190-3dbc-2701-e62ce40abc82", @@ -129830,7 +129911,7 @@ "title": "I Don't Want You Back" }, { - "artist": "Easton, Sheena", + "artist": "Sheena Easton", "disabled": false, "favorite": false, "guid": "b41b0d13-0b43-e435-b3d1-d274b5290e64", @@ -129854,7 +129935,7 @@ "title": "Free Ride" }, { - "artist": "Edmonds, Kevon", + "artist": "Kevon Edmonds", "disabled": false, "favorite": false, "guid": "546415b1-b021-159e-2223-d7e24532e112", @@ -129862,7 +129943,7 @@ "title": "247" }, { - "artist": "Edwards, Tommy", + "artist": "Tommy Edwards", "disabled": false, "favorite": false, "guid": "48cde5a9-1875-3e02-d7a7-6a4e47dbf833", @@ -129878,7 +129959,7 @@ "title": "War" }, { - "artist": "Eels, The", + "artist": "The Eels", "disabled": false, "favorite": false, "guid": "ce2c4511-5a2b-ab8d-245b-a13f26891375", @@ -129886,7 +129967,7 @@ "title": "Novocaine For The Soul" }, { - "artist": "Egan, Walter", + "artist": "Walter Egan", "disabled": false, "favorite": false, "guid": "329caddd-6018-5e5d-f0c6-29cb648937ec", @@ -129902,7 +129983,7 @@ "title": "Blue" }, { - "artist": "Elliot, Alecia", + "artist": "Alecia Elliot", "disabled": false, "favorite": false, "guid": "b5d670ef-ee27-01b9-04e1-1eeed01a67e9", @@ -129910,7 +129991,7 @@ "title": "I'm Diggin' It" }, { - "artist": "Elliott, Missy", + "artist": "Missy Elliott", "disabled": false, "favorite": false, "guid": "a7a9e774-0a98-b1f1-4d59-49c353db5cb4", @@ -129934,7 +130015,7 @@ "title": "Hurts" }, { - "artist": "Emerick, Scotty", + "artist": "Scotty Emerick", "disabled": false, "favorite": false, "guid": "180a78c3-8669-6415-de75-be3ef5c3722b", @@ -129982,7 +130063,7 @@ "title": "Don't Let Go" }, { - "artist": "England, Tyler", + "artist": "Tyler England", "disabled": false, "favorite": false, "guid": "d00e2a21-3e5f-1480-0e92-9e17a0f2635c", @@ -129998,7 +130079,7 @@ "title": "Only Time" }, { - "artist": "Etheridge, Melissa", + "artist": "Melissa Etheridge", "disabled": false, "favorite": false, "guid": "4bd68223-1bac-1766-0e24-0e3b3b0b7480", @@ -130006,7 +130087,7 @@ "title": "Bring Me Some Water" }, { - "artist": "Etheridge, Melissa", + "artist": "Melissa Etheridge", "disabled": false, "favorite": false, "guid": "ebefc06c-18ac-b977-84c3-194f9534146b", @@ -130014,7 +130095,7 @@ "title": "Come To My Window" }, { - "artist": "Etheridge, Melissa", + "artist": "Melissa Etheridge", "disabled": false, "favorite": false, "guid": "204f7746-2c4d-130d-c8b8-9a3652eec2ec", @@ -130030,7 +130111,7 @@ "title": "Bring Me To Life" }, { - "artist": "Evans, Faith", + "artist": "Faith Evans", "disabled": false, "favorite": false, "guid": "f4deb333-8aff-915d-e6de-8a8aca879be1", @@ -130038,7 +130119,7 @@ "title": "I Love You" }, { - "artist": "Evans, Sara", + "artist": "Sara Evans", "disabled": false, "favorite": false, "guid": "3134fbb9-6ae8-d14b-1766-a2d794850585", @@ -130046,7 +130127,7 @@ "title": "Born To Fly" }, { - "artist": "Evans, Sara", + "artist": "Sara Evans", "disabled": false, "favorite": false, "guid": "a71d5f17-9960-0574-9934-c0a63ecf5521", @@ -130054,7 +130135,7 @@ "title": "I Could Not Ask For More" }, { - "artist": "Evans, Sara", + "artist": "Sara Evans", "disabled": false, "favorite": false, "guid": "7e3a6860-f702-8fae-79fe-9de7f643fceb", @@ -130062,7 +130143,7 @@ "title": "I Keep Looking" }, { - "artist": "Evans, Sara", + "artist": "Sara Evans", "disabled": false, "favorite": false, "guid": "297c26a7-9002-4c16-bb8c-e21a4df0e7f1", @@ -130070,7 +130151,7 @@ "title": "No Place That Far" }, { - "artist": "Evans, Sara", + "artist": "Sara Evans", "disabled": false, "favorite": false, "guid": "f61dc14e-8635-0ccc-3b14-941b26c19b2a", @@ -130078,7 +130159,7 @@ "title": "No Place That Far" }, { - "artist": "Evans, Sara", + "artist": "Sara Evans", "disabled": false, "favorite": false, "guid": "26d25e19-d3cc-67d9-f26d-8eb376d8ed36", @@ -130118,7 +130199,7 @@ "title": "More Than Words" }, { - "artist": "Fairchild, Barbara", + "artist": "Barbara Fairchild", "disabled": false, "favorite": false, "guid": "d1a102b2-0752-703b-656e-a9e9c691458f", @@ -130150,7 +130231,7 @@ "title": "American Beauty American Psycho" }, { - "artist": "Fargo, Donna", + "artist": "Donna Fargo", "disabled": false, "favorite": false, "guid": "d5f0f163-ce1e-974d-0c23-006453c69933", @@ -130174,7 +130255,7 @@ "title": "L.A.LOVE" }, { - "artist": "Fernandez, Vicente", + "artist": "Vicente Fernandez", "disabled": false, "favorite": false, "guid": "e12ef9bf-e3ad-2230-c92d-c88861fcb639", @@ -130182,7 +130263,7 @@ "title": "Me Voy A Quitar De En Medio" }, { - "artist": "Fernandez, Vicente", + "artist": "Vicente Fernandez", "disabled": false, "favorite": false, "guid": "be33dcc0-ff36-a6c9-f9b2-a65f72a21d9b", @@ -130230,7 +130311,7 @@ "title": "Good Thing" }, { - "artist": "Fitzgerald, Ella", + "artist": "Ella Fitzgerald", "disabled": false, "favorite": false, "guid": "1668fcf8-b5cd-ef85-df86-4a884690cad7", @@ -130246,7 +130327,7 @@ "title": "100 Years" }, { - "artist": "Flack, Roberta", + "artist": "Roberta Flack", "disabled": false, "favorite": false, "guid": "9213a397-bc19-0a58-a605-72e5e9af7e05", @@ -130262,7 +130343,7 @@ "title": "Landslide" }, { - "artist": "Flower Drum Song, The", + "artist": "The Flower Drum Song", "disabled": false, "favorite": false, "guid": "c47b99ea-e8c4-66d2-6195-8aa44b8e3896", @@ -130270,7 +130351,7 @@ "title": "I Enjoy Being A Girl" }, { - "artist": "Fonsi, Luis", + "artist": "Luis Fonsi", "disabled": false, "favorite": false, "guid": "867a5634-41f1-7dd3-3215-e91e4fca6ded", @@ -130278,7 +130359,7 @@ "title": "Me Ire" }, { - "artist": "Fonsi, Luis", + "artist": "Luis Fonsi", "disabled": false, "favorite": false, "guid": "0c64b084-6cfe-99af-9be4-fb40b6f8fdde", @@ -130294,7 +130375,7 @@ "title": "All My Life" }, { - "artist": "Foo Fighters, The", + "artist": "The Foo Fighters", "disabled": false, "favorite": false, "guid": "f64ec8df-799f-1a2d-dfac-c630add7bcf9", @@ -130302,7 +130383,7 @@ "title": "This Is A Call" }, { - "artist": "Ford, Willa", + "artist": "Willa Ford", "disabled": false, "favorite": false, "guid": "988455c0-1e6d-955f-c544-f0da7d651f55", @@ -130390,7 +130471,7 @@ "title": "Reach Out I'll Be There" }, { - "artist": "Four Tops, The", + "artist": "The Four Tops", "disabled": false, "favorite": false, "guid": "2ff9e7d5-4d78-4f13-a76b-b6f239d80fc8", @@ -130414,7 +130495,7 @@ "title": "Why Do Fools Fall In Love" }, { - "artist": "Franklin, Aretha & Elton John", + "artist": "Aretha Franklin & Elton John", "disabled": false, "favorite": false, "guid": "b9119ae8-ff64-37e3-c599-866039d15853", @@ -130422,7 +130503,7 @@ "title": "Through The Storm" }, { - "artist": "Franklin, Aretha & George Michael", + "artist": "Aretha Franklin & George Michael", "disabled": false, "favorite": false, "guid": "82870895-b792-c53c-3f66-f9b822588337", @@ -130438,7 +130519,7 @@ "title": "All Right Now" }, { - "artist": "Frickie, Janie", + "artist": "Janie Frickie", "disabled": false, "favorite": false, "guid": "ec4753e2-b001-d4d2-d226-6e6cb49cd661", @@ -130446,7 +130527,7 @@ "title": "He's A Heartache" }, { - "artist": "Frizzell, David & Shelly West", + "artist": "David Frizzell & Shelly West", "disabled": false, "favorite": false, "guid": "e70bf940-a70e-e485-4297-77ee909a4abe", @@ -130454,7 +130535,7 @@ "title": "You're The Reason God Made Oklahoma" }, { - "artist": "Gabriel, Peter", + "artist": "Peter Gabriel", "disabled": false, "favorite": false, "guid": "0c8e11ac-65b5-0aa0-e43c-24610bfe4cdc", @@ -130462,7 +130543,7 @@ "title": "Shock The Monkey" }, { - "artist": "Gabriel, Peter", + "artist": "Peter Gabriel", "disabled": false, "favorite": false, "guid": "fbfe1875-d612-34d6-bd47-db44e5a523aa", @@ -130470,7 +130551,7 @@ "title": "Sledgehammer" }, { - "artist": "Gaye, Marvin & Kim Weston", + "artist": "Marvin Gaye & Kim Weston", "disabled": false, "favorite": false, "guid": "f74a4784-c85e-8410-8106-05a8464b0b6b", @@ -130478,7 +130559,7 @@ "title": "(Duet) It Takes Two" }, { - "artist": "Gaye, Marvin & Kim Weston", + "artist": "Marvin Gaye & Kim Weston", "disabled": false, "favorite": false, "guid": "4c74382f-ea29-1136-a2c1-1b6b55add36d", @@ -130486,7 +130567,7 @@ "title": "(Duet) It Takes Two" }, { - "artist": "Gaye, Marvin & Tammi Terrell", + "artist": "Marvin Gaye & Tammi Terrell", "disabled": false, "favorite": false, "guid": "a22a6142-6da8-1743-0d55-3ad85007925b", @@ -130494,7 +130575,7 @@ "title": "(Duet) Ain't Nothin'like The Real Thing" }, { - "artist": "Gaye, Marvin & Tammi Terrell", + "artist": "Marvin Gaye & Tammi Terrell", "disabled": false, "favorite": false, "guid": "f759d422-7ef4-b310-0eea-857e13ebc406", @@ -130502,7 +130583,7 @@ "title": "You're All I Need To Get By" }, { - "artist": "Gaye, Marvin", + "artist": "Marvin Gaye", "disabled": false, "favorite": false, "guid": "df726f91-026b-74d9-39b4-6b5dd58c5347", @@ -130510,7 +130591,7 @@ "title": "Ain't That Peculiar" }, { - "artist": "Gaye, Marvin", + "artist": "Marvin Gaye", "disabled": false, "favorite": false, "guid": "f24f0380-168c-6739-d936-7e811966fdf4", @@ -130518,7 +130599,7 @@ "title": "I Heard It Through The Grapevine" }, { - "artist": "Gaye, Marvin", + "artist": "Marvin Gaye", "disabled": false, "favorite": false, "guid": "b86a14d1-6b21-5339-35db-4b25f19acced", @@ -130526,7 +130607,7 @@ "title": "I Heard It Through The Grapevine" }, { - "artist": "Gaye, Marvin", + "artist": "Marvin Gaye", "disabled": false, "favorite": false, "guid": "4eeaffca-2514-a355-b0ce-aa40803fd3ec", @@ -130534,7 +130615,7 @@ "title": "Let's Get It On" }, { - "artist": "Gaye, Marvin", + "artist": "Marvin Gaye", "disabled": false, "favorite": false, "guid": "90c8cd00-3e28-e1ac-1633-57d7beda58b8", @@ -130542,7 +130623,7 @@ "title": "Let's Get It On" }, { - "artist": "Gaye, Marvin", + "artist": "Marvin Gaye", "disabled": false, "favorite": false, "guid": "c8f3cc19-3ca6-b89f-7ecd-6c86d6ded664", @@ -130550,7 +130631,7 @@ "title": "Mercy Mercy Me The Ecology" }, { - "artist": "Gaye, Marvin", + "artist": "Marvin Gaye", "disabled": false, "favorite": false, "guid": "fa6a9267-4500-fa68-e361-ee619a891b6a", @@ -130558,7 +130639,7 @@ "title": "Sexual Healing" }, { - "artist": "Gaye, Marvin", + "artist": "Marvin Gaye", "disabled": false, "favorite": false, "guid": "8e56811b-bc1d-be30-68ce-a1fc9594ff96", @@ -130566,7 +130647,7 @@ "title": "That's The Way Love Is" }, { - "artist": "Gaye, Marvin", + "artist": "Marvin Gaye", "disabled": false, "favorite": false, "guid": "69de1ca5-6ae1-569f-7e83-fb32bb5453d0", @@ -130574,7 +130655,7 @@ "title": "What's Going On" }, { - "artist": "Gayle, Crystal", + "artist": "Crystal Gayle", "disabled": false, "favorite": false, "guid": "9d53874a-49b5-05b3-2dc0-20e22821829f", @@ -130582,7 +130663,7 @@ "title": "Don't It Make My Brown Eyes Blue" }, { - "artist": "Gayle, Crystal", + "artist": "Crystal Gayle", "disabled": false, "favorite": false, "guid": "c121944f-b03b-a1e0-1a41-33e78328a1f2", @@ -130590,7 +130671,7 @@ "title": "Ready For The Times To Get Better" }, { - "artist": "Gayle, Crystal", + "artist": "Crystal Gayle", "disabled": false, "favorite": false, "guid": "8c082ec5-80fd-5c7d-3903-760a0a738be1", @@ -130598,7 +130679,7 @@ "title": "Talking In Your Sleep" }, { - "artist": "Gayle, Crystal", + "artist": "Crystal Gayle", "disabled": false, "favorite": false, "guid": "8f4dc4bd-33a1-3e15-89c5-604376488822", @@ -130606,7 +130687,7 @@ "title": "Talking In Your Sleep" }, { - "artist": "Gayle, Crystal", + "artist": "Crystal Gayle", "disabled": false, "favorite": false, "guid": "d091c54f-be18-e78a-5031-2a336a069477", @@ -130614,7 +130695,7 @@ "title": "Wrong Road Again" }, { - "artist": "Gayle, Crystal", + "artist": "Crystal Gayle", "disabled": false, "favorite": false, "guid": "df3cd189-9bc1-ea5d-4364-e9d232933dfa", @@ -130646,7 +130727,7 @@ "title": "Thats All" }, { - "artist": "Gentry, Bobbie", + "artist": "Bobbie Gentry", "disabled": false, "favorite": false, "guid": "49c0dcaa-4930-456c-1be4-f9df620f7a57", @@ -130654,7 +130735,7 @@ "title": "Ode To Billie Joe" }, { - "artist": "Gentry, Montgomery", + "artist": "Montgomery Gentry", "disabled": false, "favorite": false, "guid": "6144f4b5-7519-7bbe-a674-671f21205f52", @@ -130662,7 +130743,7 @@ "title": "Daddy Won't Sell The Farm" }, { - "artist": "Gentry, Montgomery", + "artist": "Montgomery Gentry", "disabled": false, "favorite": false, "guid": "7f661d6d-fd9c-6f25-94e2-23b4e2cb34c2", @@ -130678,7 +130759,7 @@ "title": "Outside" }, { - "artist": "Gill, Vince", + "artist": "Vince Gill", "disabled": false, "favorite": false, "guid": "cfe52dd9-c0ff-ebeb-9f1b-7d90afbc8e17", @@ -130686,7 +130767,7 @@ "title": "Don't Let Our Love Start Slippin' Away" }, { - "artist": "Gill, Vince", + "artist": "Vince Gill", "disabled": false, "favorite": false, "guid": "b29a24e4-7f75-4ba5-88b8-a35ee7afac86", @@ -130694,7 +130775,7 @@ "title": "Go Rest High On That Mountain" }, { - "artist": "Gill, Vince", + "artist": "Vince Gill", "disabled": false, "favorite": false, "guid": "7e16bb1d-f707-acc7-c593-cc00df7c237a", @@ -130702,7 +130783,7 @@ "title": "One More Last Chance" }, { - "artist": "Gill, Vince", + "artist": "Vince Gill", "disabled": false, "favorite": false, "guid": "d6a556ef-2658-d0a7-79f0-f30baf2951be", @@ -130710,7 +130791,7 @@ "title": "Take Your Memory With You" }, { - "artist": "Gill, Vince", + "artist": "Vince Gill", "disabled": false, "favorite": false, "guid": "832f58be-dbbc-4aa4-c758-756477b9ee7b", @@ -130718,7 +130799,7 @@ "title": "When Love Finds You" }, { - "artist": "Gill, Vince", + "artist": "Vince Gill", "disabled": false, "favorite": false, "guid": "857b5978-532a-a798-98e5-c2fab7b9b828", @@ -130726,7 +130807,7 @@ "title": "When Love Finds You" }, { - "artist": "Gill, Vince", + "artist": "Vince Gill", "disabled": false, "favorite": false, "guid": "68caffaa-251b-6859-e2c3-4cdd73204322", @@ -130734,7 +130815,7 @@ "title": "Which Bridge To Cross" }, { - "artist": "Gin Blossoms, The", + "artist": "The Gin Blossoms", "disabled": false, "favorite": false, "guid": "fa5d11f8-8d92-e8c9-1f1b-98a79ccd769d", @@ -130742,7 +130823,7 @@ "title": "As Long As It Matters" }, { - "artist": "Gin Blossoms, The", + "artist": "The Gin Blossoms", "disabled": false, "favorite": false, "guid": "c2b5a2ac-5e4d-2649-3141-d5572e1aa686", @@ -130766,7 +130847,7 @@ "title": "I've Got To Use My Imagination" }, { - "artist": "Go Go's, The", + "artist": "The Go Go's", "disabled": false, "favorite": false, "guid": "029871c6-10ec-a8a5-b151-87c7d93e91a9", @@ -130990,7 +131071,7 @@ "title": "Wonderful Peace" }, { - "artist": "Gracin, Josh", + "artist": "Josh Gracin", "disabled": false, "favorite": false, "guid": "1cee75f2-e263-4a91-25b4-3e76a3f322d1", @@ -130998,7 +131079,7 @@ "title": "I Want To Live" }, { - "artist": "Gracin, Josh", + "artist": "Josh Gracin", "disabled": false, "favorite": false, "guid": "24cb44db-718a-e095-ac85-3b98cf9eae93", @@ -131022,7 +131103,7 @@ "title": "Message" }, { - "artist": "Grass Roots, The", + "artist": "The Grass Roots", "disabled": false, "favorite": false, "guid": "f3acdc11-f8bf-1225-b675-e0f20f9f6c10", @@ -131030,7 +131111,7 @@ "title": "Sooner Or Later" }, { - "artist": "Gray, Macy", + "artist": "Macy Gray", "disabled": false, "favorite": false, "guid": "6ed0c1da-790c-f70c-6053-c6ed367f6723", @@ -131038,7 +131119,7 @@ "title": "I Try" }, { - "artist": "Green, Al", + "artist": "Al Green", "disabled": false, "favorite": false, "guid": "47a66eed-449a-6908-3190-b13ab1b8b527", @@ -131046,7 +131127,7 @@ "title": "Call Me" }, { - "artist": "Green, Al", + "artist": "Al Green", "disabled": false, "favorite": false, "guid": "fb8bec8a-7199-1fbd-ee56-edbfbbb45c51", @@ -131054,7 +131135,7 @@ "title": "Let's Stay Together" }, { - "artist": "Green, Al", + "artist": "Al Green", "disabled": false, "favorite": false, "guid": "0656065d-41eb-5d60-b223-e22bfa79e45e", @@ -131062,7 +131143,7 @@ "title": "Let's Stay Together" }, { - "artist": "Green, Al", + "artist": "Al Green", "disabled": false, "favorite": false, "guid": "fa5e4997-4f98-9767-e3b3-4826277cf990", @@ -131070,7 +131151,7 @@ "title": "Love And Happiness" }, { - "artist": "Green, Al", + "artist": "Al Green", "disabled": false, "favorite": false, "guid": "744538c3-97bd-a9ba-fd8f-21ea99a954b4", @@ -131078,7 +131159,7 @@ "title": "You Ought To Be With Me" }, { - "artist": "Green, Pat", + "artist": "Pat Green", "disabled": false, "favorite": false, "guid": "d7b68828-0400-9059-741f-159140491ceb", @@ -131086,7 +131167,7 @@ "title": "Three Days" }, { - "artist": "Griffiths, Marcia", + "artist": "Marcia Griffiths", "disabled": false, "favorite": false, "guid": "80300328-0e10-7cf8-5417-8a7297f93f28", @@ -131094,7 +131175,7 @@ "title": "Electric Boogie" }, { - "artist": "Griggs, Andy", + "artist": "Andy Griggs", "disabled": false, "favorite": false, "guid": "0bf4be43-7328-7315-0bee-7ba8e4e0c22b", @@ -131102,7 +131183,7 @@ "title": "She's More" }, { - "artist": "Griggs, Andy", + "artist": "Andy Griggs", "disabled": false, "favorite": false, "guid": "5469a8bf-3eed-74c9-bbdc-2258381d8400", @@ -131110,7 +131191,7 @@ "title": "Tonight I Wanna Be Your Man" }, { - "artist": "Griggs, Andy", + "artist": "Andy Griggs", "disabled": false, "favorite": false, "guid": "2f2c25a3-d27b-2817-d0c6-6b0e87fbe30a", @@ -131118,7 +131199,7 @@ "title": "Tonight I Wanna Be Your Man" }, { - "artist": "Groban, Josh", + "artist": "Josh Groban", "disabled": false, "favorite": false, "guid": "98e38286-08d4-84d6-00fb-f1c707dcdb69", @@ -131126,7 +131207,7 @@ "title": "Awake" }, { - "artist": "Groban, Josh", + "artist": "Josh Groban", "disabled": false, "favorite": false, "guid": "e42c58e0-aede-b078-6da2-cc9bb090e254", @@ -131134,7 +131215,7 @@ "title": "Broken Vow" }, { - "artist": "Groban, Josh", + "artist": "Josh Groban", "disabled": false, "favorite": false, "guid": "5988ddbf-489f-f240-9a23-ae796ad5a618", @@ -131142,7 +131223,7 @@ "title": "Remember When It Rained" }, { - "artist": "Groban, Josh", + "artist": "Josh Groban", "disabled": false, "favorite": false, "guid": "a2d92067-554f-ee87-828a-9fe71a8ee930", @@ -131150,7 +131231,7 @@ "title": "To Where You Are" }, { - "artist": "Groban, Josh", + "artist": "Josh Groban", "disabled": false, "favorite": false, "guid": "d9e610db-800d-d158-6b1e-64d4fc1698ee", @@ -131158,7 +131239,7 @@ "title": "Vincent" }, { - "artist": "Groban, Josh", + "artist": "Josh Groban", "disabled": false, "favorite": false, "guid": "193a5d9b-ac8e-ae57-c696-fe909c3f76ce", @@ -131166,7 +131247,7 @@ "title": "You Raise Me Up" }, { - "artist": "Guerra, Juan Luis", + "artist": "Juan Luis Guerra", "disabled": false, "favorite": false, "guid": "586b7eef-cb6d-5c05-277d-0fea6fc4ab51", @@ -131198,7 +131279,7 @@ "title": "Everything's Coming Up Roses" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "c318d736-f7e7-e687-d091-f7fa4f9558f4", @@ -131206,7 +131287,7 @@ "title": "Bottle Let Me Down, The" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "c998e5a2-798b-aacf-c723-072068123391", @@ -131214,7 +131295,7 @@ "title": "Branded Man" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "b27fee0b-48db-5cda-3fc5-8788928075bb", @@ -131222,7 +131303,7 @@ "title": "I'm A Lonesome Fugitive" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "96bf6f24-bcd3-ebbd-ae18-19fccb8d8362", @@ -131230,7 +131311,7 @@ "title": "Let's Chase Each Other Around The Room" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "d240def0-7567-5bdd-c10c-0ba99e0ebe65", @@ -131238,7 +131319,7 @@ "title": "Mama Tried" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "d8e156bf-3f3a-788e-7619-66c45f67a6f0", @@ -131246,7 +131327,7 @@ "title": "Natural High" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "504d5e79-c99d-49db-02a8-a66427b95a02", @@ -131254,7 +131335,7 @@ "title": "Place To Fall Apart, A" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "7be37470-ebe9-e84d-5cd7-9c26d53a474f", @@ -131262,7 +131343,7 @@ "title": "Ramblin' Fever" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "7317cc5a-7b76-49ff-5315-6b4a07a7c547", @@ -131270,7 +131351,7 @@ "title": "Sing Me Back Home" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "11c68a69-2c4c-f81e-dc8b-d811e6beaac5", @@ -131278,7 +131359,7 @@ "title": "Swinging Doors" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "3a5f9151-0205-8864-edb8-b6b1aca0aa59", @@ -131286,7 +131367,7 @@ "title": "That's The Way Love Goes" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "ba25ee0f-b068-01e8-9c93-4b6f3d8b1933", @@ -131294,7 +131375,7 @@ "title": "Twinkle Twinkle Lucky Star" }, { - "artist": "Haggard, Merle", + "artist": "Merle Haggard", "disabled": false, "favorite": false, "guid": "a06d01e8-1252-d4bd-cd43-9c55fc402521", @@ -131334,7 +131415,7 @@ "title": "You Make My Dreams" }, { - "artist": "Hall, Daryl & John Oates", + "artist": "Daryl Hall & John Oates", "disabled": false, "favorite": false, "guid": "7003e085-7691-adac-de25-a86091046720", @@ -131342,7 +131423,7 @@ "title": "Rich Girl" }, { - "artist": "Hamilton, Joe Frank & Reynolds", + "artist": "Joe Frank Hamilton & Reynolds", "disabled": false, "favorite": false, "guid": "fb5f263c-b617-b8cc-330f-d3fb06f589ae", @@ -131358,7 +131439,7 @@ "title": "If You Don't Know Me By Now" }, { - "artist": "Harris, Emmylou", + "artist": "Emmylou Harris", "disabled": false, "favorite": false, "guid": "1d4618ef-5386-6192-1aa8-d3121ced8770", @@ -131366,7 +131447,7 @@ "title": "If I Could Only Win Your Love" }, { - "artist": "Harris, Emmylou", + "artist": "Emmylou Harris", "disabled": false, "favorite": false, "guid": "62c8ca16-fee0-9a84-e2f4-a979e36146c3", @@ -131374,7 +131455,7 @@ "title": "Two More Bottles Of Wine" }, { - "artist": "Hart, Corey", + "artist": "Corey Hart", "disabled": false, "favorite": false, "guid": "773fe071-c226-9779-bd85-2da023994362", @@ -131382,7 +131463,7 @@ "title": "Sunglasses At Night" }, { - "artist": "Harter, J. Michael", + "artist": "J. Michael Harter", "disabled": false, "favorite": false, "guid": "ea22e437-a62d-00e4-952f-7a3bd8d3cd63", @@ -131390,7 +131471,7 @@ "title": "Hard Call To Make" }, { - "artist": "Hartman, Dan", + "artist": "Dan Hartman", "disabled": false, "favorite": false, "guid": "9377eb5a-195a-b4ca-3f03-98d415107a0e", @@ -131398,7 +131479,7 @@ "title": "I Can Dream About You" }, { - "artist": "Headley, Heather", + "artist": "Heather Headley", "disabled": false, "favorite": false, "guid": "c6d2a80b-c60e-b44a-578b-bb5e418f4624", @@ -131462,7 +131543,7 @@ "title": "What About Love" }, { - "artist": "Helms, Bobby", + "artist": "Bobby Helms", "disabled": false, "favorite": false, "guid": "55c2a793-c7d8-7516-5bee-f40f0040e70f", @@ -131470,7 +131551,7 @@ "title": "Jingle Bell Rock" }, { - "artist": "Henley, Don", + "artist": "Don Henley", "disabled": false, "favorite": false, "guid": "ff211991-d3bc-f8c8-2222-b54325baa94b", @@ -131478,7 +131559,7 @@ "title": "For My Wedding" }, { - "artist": "Henley, Don", + "artist": "Don Henley", "disabled": false, "favorite": false, "guid": "640d7ef9-777b-7f34-dd6a-a766f405cf31", @@ -131486,7 +131567,7 @@ "title": "Sit Down You're Rockin' The Boat" }, { - "artist": "Henley, Don", + "artist": "Don Henley", "disabled": false, "favorite": false, "guid": "19d145c2-3a5c-eb02-0121-579d88070358", @@ -131494,7 +131575,7 @@ "title": "Through Your Hands" }, { - "artist": "Hill, Dru", + "artist": "Dru Hill", "disabled": false, "favorite": false, "guid": "1d770308-e9f9-588c-2da6-4cf285f18786", @@ -131502,7 +131583,7 @@ "title": "Tell Me" }, { - "artist": "Hill, Faith", + "artist": "Faith Hill", "disabled": false, "favorite": false, "guid": "c8d88653-1998-f45a-dcc1-eb218f79f43d", @@ -131510,7 +131591,7 @@ "title": "Breathe" }, { - "artist": "Hill, Faith", + "artist": "Faith Hill", "disabled": false, "favorite": false, "guid": "1954ad6a-3dad-a9e8-ddaf-84932f1e9f19", @@ -131518,7 +131599,7 @@ "title": "Cry" }, { - "artist": "Hill, Faith", + "artist": "Faith Hill", "disabled": false, "favorite": false, "guid": "a9d04df4-dc09-f66b-1bc5-c03c8d3e6f9d", @@ -131526,7 +131607,7 @@ "title": "If My Heart Had Wings" }, { - "artist": "Hill, Faith", + "artist": "Faith Hill", "disabled": false, "favorite": false, "guid": "6d871eb9-ac0a-d102-d599-101a30f61fcd", @@ -131534,7 +131615,7 @@ "title": "It Matters To Me" }, { - "artist": "Hill, Faith", + "artist": "Faith Hill", "disabled": false, "favorite": false, "guid": "a3e61046-a8b7-131e-d070-7ee9e528dc50", @@ -131542,7 +131623,7 @@ "title": "Let's Go To Vegas" }, { - "artist": "Hill, Faith", + "artist": "Faith Hill", "disabled": false, "favorite": false, "guid": "8c8f7fce-6145-241d-af15-074fbcf6393d", @@ -131550,7 +131631,7 @@ "title": "This Kiss" }, { - "artist": "Hill, Faith", + "artist": "Faith Hill", "disabled": false, "favorite": false, "guid": "86635f39-d959-2c24-4c69-2999174c0765", @@ -131558,7 +131639,7 @@ "title": "Way You Love Me" }, { - "artist": "Hill, Lauryn", + "artist": "Lauryn Hill", "disabled": false, "favorite": false, "guid": "ac301180-19a2-04f0-740e-cfbf1b5a0156", @@ -131582,7 +131663,7 @@ "title": "Hate To Say I Told You So" }, { - "artist": "Hollies, The", + "artist": "The Hollies", "disabled": false, "favorite": false, "guid": "f4c82606-8f57-f70b-890c-df6a4114963e", @@ -131590,7 +131671,7 @@ "title": "Long Cool Woman" }, { - "artist": "Holly, Buddy", + "artist": "Buddy Holly", "disabled": false, "favorite": false, "guid": "af0dea50-7536-c3d7-991b-cb799d1abcb7", @@ -131598,7 +131679,7 @@ "title": "That'll Be The Day" }, { - "artist": "Holmes, Rupert", + "artist": "Rupert Holmes", "disabled": false, "favorite": false, "guid": "e809c6f9-878c-db51-38da-fc7c04b588d3", @@ -131622,7 +131703,7 @@ "title": "Only Wanna Be With You" }, { - "artist": "Hornsby, Bruce", + "artist": "Bruce Hornsby", "disabled": false, "favorite": false, "guid": "dcdb2ffe-c33a-0bca-4e6e-67331a066b76", @@ -131638,7 +131719,7 @@ "title": "Jump Around" }, { - "artist": "Housemartins, The", + "artist": "The Housemartins", "disabled": false, "favorite": false, "guid": "a55b2141-24e1-c9fa-232c-6dd702eaac00", @@ -131646,7 +131727,7 @@ "title": "Caravan Of Love" }, { - "artist": "Houston, Whitney & Enrique Iglesias", + "artist": "Whitney Houston & Enrique Iglesias", "disabled": false, "favorite": false, "guid": "c364b6b2-985e-fc0d-f46b-7076ca94a9ca", @@ -131654,7 +131735,7 @@ "title": "Could I Have This Kiss Forever" }, { - "artist": "Houston, Whitney & Price Evans", + "artist": "Whitney Houston & Price Evans", "disabled": false, "favorite": false, "guid": "dad1c232-d8b9-a796-220e-fd07bbb855ad", @@ -131662,7 +131743,7 @@ "title": "Heartbreak Hotel" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "c5384a2e-fea5-cfb3-1948-ffa49d417954", @@ -131670,7 +131751,7 @@ "title": "Didn't We Almost Have It All" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "1b4793ac-39d0-0550-ebde-ddb0d13a24c3", @@ -131678,7 +131759,7 @@ "title": "Greatest Love Of All" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "a41ada73-2fa3-d597-b68f-11dbbd7a75b9", @@ -131686,7 +131767,7 @@ "title": "How Will I Know" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "37b418dc-4c86-a945-0f07-5b91d12c5036", @@ -131694,7 +131775,7 @@ "title": "I Learned From The Best" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "323bb70c-53ab-7d18-3ec1-383cc4d4b533", @@ -131702,7 +131783,7 @@ "title": "I Wanna Dance With Somebody" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "9b107c48-103c-c006-7429-5ac6b08f6b51", @@ -131710,7 +131791,7 @@ "title": "I Will Always Love You" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "d72ea102-beb6-14fd-5b38-f8a42c7d6012", @@ -131718,7 +131799,7 @@ "title": "One Moment In Time" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "ca5665fb-c5ab-1372-0617-5ed7af0d00a6", @@ -131726,7 +131807,7 @@ "title": "Saving All My Love For You" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "36b8e535-16e3-764e-f17b-919abee64233", @@ -131734,7 +131815,7 @@ "title": "So Emotional" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "38c13302-0495-a56c-4f27-523efbfd5937", @@ -131742,7 +131823,7 @@ "title": "So Emotional" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "3fbb5ef7-9145-ba67-d1be-a38ef3a8be9d", @@ -131750,7 +131831,7 @@ "title": "Try It On My Own" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "9b5f7229-c379-64bf-cb56-39628167bb4c", @@ -131758,7 +131839,7 @@ "title": "Where Do Broken Hearts Go" }, { - "artist": "Houston, Whitney", + "artist": "Whitney Houston", "disabled": false, "favorite": false, "guid": "8a3a15ed-257d-2ae3-1778-9bd6d1a447ca", @@ -131790,7 +131871,7 @@ "title": "Stuck With You" }, { - "artist": "Humperdinck, Engelbert", + "artist": "Engelbert Humperdinck", "disabled": false, "favorite": false, "guid": "b42488a6-dd43-2041-ec58-2e7f97119b02", @@ -131798,7 +131879,7 @@ "title": "After The Lovin'" }, { - "artist": "Ian, Janis", + "artist": "Janis Ian", "disabled": false, "favorite": false, "guid": "24369dd8-a1cb-a6cd-3087-9ed3c04f73a3", @@ -131806,7 +131887,7 @@ "title": "At Seventeen" }, { - "artist": "Idol, Billy", + "artist": "Billy Idol", "disabled": false, "favorite": false, "guid": "44fae4f8-3583-7a27-3c88-98653e008dd0", @@ -131814,7 +131895,7 @@ "title": "White Wedding" }, { - "artist": "Iglesias, Enrique", + "artist": "Enrique Iglesias", "disabled": false, "favorite": false, "guid": "a560fd70-10e9-5e93-dfd4-17f99c113e74", @@ -131822,7 +131903,7 @@ "title": "Escape" }, { - "artist": "Iglesias, Enrique", + "artist": "Enrique Iglesias", "disabled": false, "favorite": false, "guid": "50eaa285-50ac-5144-1294-e4bbd394c717", @@ -131830,7 +131911,7 @@ "title": "Hero" }, { - "artist": "Iglesias, Enrique", + "artist": "Enrique Iglesias", "disabled": false, "favorite": false, "guid": "992ef274-8ca2-d5d0-7262-564a464a67b3", @@ -131838,7 +131919,7 @@ "title": "Love To See You Cry" }, { - "artist": "Iglesias, Enrique", + "artist": "Enrique Iglesias", "disabled": false, "favorite": false, "guid": "44c60a4f-27ee-0c7a-8254-a1e0e838ba97", @@ -131854,7 +131935,7 @@ "title": "I Bet My Life" }, { - "artist": "Imbruglia, Natalie", + "artist": "Natalie Imbruglia", "disabled": false, "favorite": false, "guid": "93a4e11c-ef55-f6b2-0250-974c154876d1", @@ -131894,7 +131975,7 @@ "title": "Solo Dancing" }, { - "artist": "Ingram, James", + "artist": "James Ingram", "disabled": false, "favorite": false, "guid": "60ca3a59-d63d-f1ee-8f9f-4d7bf7645863", @@ -131910,7 +131991,7 @@ "title": "Ensename A Olvidarte" }, { - "artist": "Isley Brothers, The", + "artist": "The Isley Brothers", "disabled": false, "favorite": false, "guid": "86a75e30-a601-0a02-f8b9-b4982612e271", @@ -131934,7 +132015,7 @@ "title": "In The Shape Of A Heart" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "fa501eaf-6f3d-ca1a-4d74-ceb5fe044eea", @@ -131942,7 +132023,7 @@ "title": "Drive" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "7c52cdfc-f068-24fd-f253-2a47b686b27b", @@ -131950,7 +132031,7 @@ "title": "Gone Country" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "3f94b39f-c046-0cc9-07fd-c93e7b6dddfd", @@ -131958,7 +132039,7 @@ "title": "I'll Try" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "3f645272-1dfa-3a16-183c-106f9c2c51e4", @@ -131966,7 +132047,7 @@ "title": "I'll Try" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "77e233c6-d9f1-20b7-8242-d68b7ff6d153", @@ -131974,7 +132055,7 @@ "title": "Little Man" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "64c09d7d-03aa-8516-ad66-8af2af3dda0d", @@ -131982,7 +132063,7 @@ "title": "Monday Morning Church" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "b5a918d2-2304-14e3-6633-9f9c1187fee5", @@ -131990,7 +132071,7 @@ "title": "Remember When" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "b9174076-9239-8b84-2055-3191bc278ef9", @@ -131998,7 +132079,7 @@ "title": "Tall Tall Trees" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "9162c83c-40d2-bedf-a6e5-4161a5021304", @@ -132006,7 +132087,7 @@ "title": "That'd Be Alright" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "0176c6f0-dc51-c6cb-3cfd-615fad77e15e", @@ -132014,7 +132095,7 @@ "title": "Three Minute Positive Not Too Country" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "f9126e6d-189e-fa3b-5c09-ce3dd78415ba", @@ -132022,7 +132103,7 @@ "title": "Too Much Of A Good Thing" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "8671bc1d-8cca-a3bd-6e12-f0c910db6fa5", @@ -132030,7 +132111,7 @@ "title": "Where I Come From" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "3bba4216-2444-bde0-1482-e61a43380b21", @@ -132038,7 +132119,7 @@ "title": "Work In Progress" }, { - "artist": "Jackson, Alan", + "artist": "Alan Jackson", "disabled": false, "favorite": false, "guid": "3712b432-e3d8-f8aa-54a3-d833fbccd2cc", @@ -132046,7 +132127,7 @@ "title": "Www Memory" }, { - "artist": "Jackson, Janet", + "artist": "Janet Jackson", "disabled": false, "favorite": false, "guid": "ca0459da-1dcc-cf7f-1390-b4a434103f8f", @@ -132054,7 +132135,7 @@ "title": "All For You" }, { - "artist": "Jackson, Janet", + "artist": "Janet Jackson", "disabled": false, "favorite": false, "guid": "8b3363fd-0cb3-4200-d10a-b38de4a8b509", @@ -132062,7 +132143,7 @@ "title": "Escapade" }, { - "artist": "Jackson, Janet", + "artist": "Janet Jackson", "disabled": false, "favorite": false, "guid": "6ca1f3d3-59d4-8c85-f140-bdbb95d15515", @@ -132070,7 +132151,7 @@ "title": "That's The Way Love Goes" }, { - "artist": "Jackson, Janet", + "artist": "Janet Jackson", "disabled": false, "favorite": false, "guid": "1ab0c72c-0d3b-843b-2497-e98484fab0e9", @@ -132078,7 +132159,7 @@ "title": "Together Again" }, { - "artist": "Jackson, Janet", + "artist": "Janet Jackson", "disabled": false, "favorite": false, "guid": "051d9cce-0233-ff5c-38f6-f375d5209a7a", @@ -132086,7 +132167,7 @@ "title": "When I Think Of You" }, { - "artist": "Jackson, Michael & Diana Ross", + "artist": "Michael Jackson & Diana Ross", "disabled": false, "favorite": false, "guid": "71cf8b7b-23bc-3a35-e315-b3eddaba789f", @@ -132094,7 +132175,7 @@ "title": "Ease On Down The Road" }, { - "artist": "Jackson, Michael & Janet Jackson", + "artist": "Michael Jackson & Janet Jackson", "disabled": false, "favorite": false, "guid": "6a6e0e92-e092-2ac8-7ba4-8dd160d6adb1", @@ -132102,7 +132183,7 @@ "title": "Scream" }, { - "artist": "Jackson, Michael & Paul McCartney", + "artist": "Michael Jackson & Paul McCartney", "disabled": false, "favorite": false, "guid": "53e4829f-5b93-e59b-8350-de53106626c0", @@ -132110,7 +132191,7 @@ "title": "The Girl Is Mine" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "971b5d3c-55e0-9e5d-5aea-fe371d92c571", @@ -132118,7 +132199,7 @@ "title": "Dont Really Care" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "8c53844e-c74b-31ea-5028-ce2ee7e30154", @@ -132126,7 +132207,7 @@ "title": "Earth Song" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "5b28bec9-be34-569d-4ecf-da4bb9cce5a6", @@ -132134,7 +132215,7 @@ "title": "I Just Can't Stop Loving You" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "94276341-0fdd-32c0-eafd-f3169212cb3e", @@ -132142,7 +132223,7 @@ "title": "Man In The Mirror" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "00867b27-03c4-4d52-d768-217e2878502f", @@ -132150,7 +132231,7 @@ "title": "Off The Wall" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "c775b855-f340-c4fb-3824-c3d17044fec7", @@ -132158,7 +132239,7 @@ "title": "Remember The Time" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "77be5301-0d2d-5a5f-d5ee-cfb1dafffebb", @@ -132166,7 +132247,7 @@ "title": "Rock With You" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "966a940d-dd47-8ace-e742-d34a6b9bf4f8", @@ -132174,7 +132255,7 @@ "title": "Rock With You" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "39d8e84d-de62-3daf-2f2c-2e0983e2d869", @@ -132182,7 +132263,7 @@ "title": "Rockin' Robin" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "476ade70-9c99-35b7-d27f-409493cdf8cd", @@ -132190,7 +132271,7 @@ "title": "She's Out Of My Life" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "f4d9eb31-69be-5ab1-a32a-30db22000435", @@ -132198,7 +132279,7 @@ "title": "They Don't Care About Us" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "d3477d03-77de-a4be-7a34-dea7f44f4597", @@ -132206,7 +132287,7 @@ "title": "Thriller" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "4b4240d9-74d0-8b44-b947-f8c9c339311e", @@ -132214,7 +132295,7 @@ "title": "Way You Make Me Feel, The" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "5a6fb53b-a586-70a0-7fef-a88b300d153c", @@ -132222,7 +132303,7 @@ "title": "We Are The World" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "703bf253-545b-44e4-8f44-6b032526f41d", @@ -132230,7 +132311,7 @@ "title": "Will You Be There" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "a421ee4c-bfb9-7943-347a-8c9f6eb19d1e", @@ -132238,7 +132319,7 @@ "title": "You Are Not Alone" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "2f598e17-f4d2-1334-db2d-bb79ee9cf779", @@ -132246,7 +132327,7 @@ "title": "You Rock My World" }, { - "artist": "Jackson, Michael", + "artist": "Michael Jackson", "disabled": false, "favorite": false, "guid": "856622d8-976a-a15b-edcc-a1869459ee0d", @@ -132254,7 +132335,7 @@ "title": "You Rock My World" }, { - "artist": "Jackson, Micheal", + "artist": "Micheal Jackson", "disabled": false, "favorite": false, "guid": "4dbd13f9-a9ed-fed3-05d2-28363b652e8e", @@ -132262,7 +132343,7 @@ "title": "Don't Stop 'Til You Get Enough" }, { - "artist": "Jackson, Micheal", + "artist": "Micheal Jackson", "disabled": false, "favorite": false, "guid": "a5b3546d-8903-a3ac-4d7d-9eb8c75b4d84", @@ -132270,7 +132351,7 @@ "title": "P.Y.T." }, { - "artist": "Jackson, Micheal", + "artist": "Micheal Jackson", "disabled": false, "favorite": false, "guid": "b7d92925-e95d-6fdc-f6cd-c250950411a7", @@ -132286,7 +132367,7 @@ "title": "Eight Second Ride" }, { - "artist": "James, Etta", + "artist": "Etta James", "disabled": false, "favorite": false, "guid": "1510fa34-d121-103e-2a3a-0a2fe6d67f05", @@ -132294,7 +132375,7 @@ "title": "All I Could Do Was Cry" }, { - "artist": "James, Etta", + "artist": "Etta James", "disabled": false, "favorite": false, "guid": "552f1f47-f41f-bd00-b6b7-696d8272dba4", @@ -132302,7 +132383,7 @@ "title": "At Last" }, { - "artist": "James, Etta", + "artist": "Etta James", "disabled": false, "favorite": false, "guid": "85b00fec-52b2-554b-04fa-125f0348fd4a", @@ -132310,7 +132391,7 @@ "title": "At Last" }, { - "artist": "James, Etta", + "artist": "Etta James", "disabled": false, "favorite": false, "guid": "f360f741-9498-0a43-c871-81d80a399238", @@ -132318,7 +132399,7 @@ "title": "Don't Cry Baby" }, { - "artist": "James, Etta", + "artist": "Etta James", "disabled": false, "favorite": false, "guid": "b9d3fc23-118e-164c-8036-fe6dac3480ac", @@ -132326,7 +132407,7 @@ "title": "Fool That I Am" }, { - "artist": "James, Etta", + "artist": "Etta James", "disabled": false, "favorite": false, "guid": "637a90ff-c27d-a037-780a-befbbf4a3522", @@ -132334,7 +132415,7 @@ "title": "If I Can't Have You" }, { - "artist": "James, Etta", + "artist": "Etta James", "disabled": false, "favorite": false, "guid": "7f4544a9-54fb-d9e7-fb51-3143d3429cb9", @@ -132342,7 +132423,7 @@ "title": "My Dearest Darling" }, { - "artist": "James, Etta", + "artist": "Etta James", "disabled": false, "favorite": false, "guid": "019437a6-a890-ab33-122c-de3bbdf3da2c", @@ -132350,7 +132431,7 @@ "title": "Stormy Weather" }, { - "artist": "James, Etta", + "artist": "Etta James", "disabled": false, "favorite": false, "guid": "70ed169f-a0e4-d37d-e0a5-2e719f49d478", @@ -132358,7 +132439,7 @@ "title": "Sunday Kind Of Love, A" }, { - "artist": "James, Etta", + "artist": "Etta James", "disabled": false, "favorite": false, "guid": "edb8bd44-334f-4174-a020-27fe1555a303", @@ -132366,7 +132447,7 @@ "title": "Tell Mama" }, { - "artist": "James, Etta", + "artist": "Etta James", "disabled": false, "favorite": false, "guid": "a3414332-002f-5ef0-2016-2cbaa65e762a", @@ -132374,7 +132455,7 @@ "title": "Trust In Me" }, { - "artist": "James, Rick", + "artist": "Rick James", "disabled": false, "favorite": false, "guid": "323235f9-90b7-5a19-5baa-0889506e1920", @@ -132430,7 +132511,7 @@ "title": "White Rabbitt" }, { - "artist": "Jennings, Waylon", + "artist": "Waylon Jennings", "disabled": false, "favorite": false, "guid": "e78558a7-ee28-8607-1341-c12caa449dea", @@ -132438,7 +132519,7 @@ "title": "I've Always Been Crazy" }, { - "artist": "Jennings, Waylon", + "artist": "Waylon Jennings", "disabled": false, "favorite": false, "guid": "63c4067e-7950-0877-5996-19b76d800a59", @@ -132446,7 +132527,7 @@ "title": "Luckenbach, Texas" }, { - "artist": "Jennings, Waylon", + "artist": "Waylon Jennings", "disabled": false, "favorite": false, "guid": "06e25e95-aa4b-4a07-fc25-2e075f2e2e06", @@ -132454,7 +132535,7 @@ "title": "Mama Don't Let Your Babies Grow Up To Be Cowboys" }, { - "artist": "Jennings, Waylon", + "artist": "Waylon Jennings", "disabled": false, "favorite": false, "guid": "f0b95e37-fc84-bc66-7037-f46ca81e47a2", @@ -132470,7 +132551,7 @@ "title": "I Don't Know How To Love Him" }, { - "artist": "Jets, The", + "artist": "The Jets", "disabled": false, "favorite": false, "guid": "aba85229-6929-f2c4-1bf9-fca1fd77e165", @@ -132478,7 +132559,7 @@ "title": "Crush On You" }, { - "artist": "Jett, Joan & The Blackhearts", + "artist": "Joan Jett & The Blackhearts", "disabled": false, "favorite": false, "guid": "6c21ed50-f551-f39f-0fa3-73bd4295faa7", @@ -132502,7 +132583,7 @@ "title": "Intuition" }, { - "artist": "Jewell, Buddy", + "artist": "Buddy Jewell", "disabled": false, "favorite": false, "guid": "65f011c8-67c3-c189-7c83-94862d871925", @@ -132542,7 +132623,7 @@ "title": "Crimson And Clover" }, { - "artist": "Joel, Billy", + "artist": "Billy Joel", "disabled": false, "favorite": false, "guid": "b974962f-d26a-7347-154d-5d49897e05f9", @@ -132550,7 +132631,7 @@ "title": "Big Shot" }, { - "artist": "Joel, Billy", + "artist": "Billy Joel", "disabled": false, "favorite": false, "guid": "6b076a86-6672-1bea-d544-05dee356f426", @@ -132558,7 +132639,7 @@ "title": "Don't Ask Me Why" }, { - "artist": "Joel, Billy", + "artist": "Billy Joel", "disabled": false, "favorite": false, "guid": "93f77f58-fe2a-6a82-abcd-bfb357720d96", @@ -132566,7 +132647,7 @@ "title": "It's Still Rock & Roll To Me" }, { - "artist": "Joel, Billy", + "artist": "Billy Joel", "disabled": false, "favorite": false, "guid": "9ece71ef-387e-7979-f3fa-e821335ae848", @@ -132574,7 +132655,7 @@ "title": "It's Still Rock & Roll To Me" }, { - "artist": "Joel, Billy", + "artist": "Billy Joel", "disabled": false, "favorite": false, "guid": "ef3cb457-126d-2c7f-e523-6f5b18917fd0", @@ -132582,7 +132663,7 @@ "title": "My Life" }, { - "artist": "Joel, Billy", + "artist": "Billy Joel", "disabled": false, "favorite": false, "guid": "bbdbc741-9cf3-57f5-41e3-6ff251723d5d", @@ -132590,7 +132671,7 @@ "title": "Piano Man" }, { - "artist": "Joel, Billy", + "artist": "Billy Joel", "disabled": false, "favorite": false, "guid": "f4d7627b-6663-0990-0a87-c3200782fd4e", @@ -132598,7 +132679,7 @@ "title": "River Of Dreams" }, { - "artist": "Joel, Billy", + "artist": "Billy Joel", "disabled": false, "favorite": false, "guid": "f5e9e183-de10-2039-f21c-ecc379444c74", @@ -132606,7 +132687,7 @@ "title": "She's Got A Way" }, { - "artist": "Joel, Billy", + "artist": "Billy Joel", "disabled": false, "favorite": false, "guid": "f3a8dc48-e02e-f4c2-2657-a8d96983ce63", @@ -132614,7 +132695,7 @@ "title": "Tell Her About It" }, { - "artist": "Joel, Billy", + "artist": "Billy Joel", "disabled": false, "favorite": false, "guid": "579e7289-0b02-fa09-82c8-b90bff945b17", @@ -132622,7 +132703,7 @@ "title": "Uptown Girl" }, { - "artist": "Joel, Billy", + "artist": "Billy Joel", "disabled": false, "favorite": false, "guid": "8fa07d17-a976-1acb-6925-0c4247952a69", @@ -132630,7 +132711,7 @@ "title": "We Didn't Start The Fire" }, { - "artist": "John, Elton & Kiki Dee", + "artist": "Elton John & Kiki Dee", "disabled": false, "favorite": true, "guid": "2986e344-877e-7c81-ad96-1e423ce40d5d", @@ -132638,7 +132719,7 @@ "title": "(Duet) Don't Go Breaking My Heart" }, { - "artist": "John, Elton", + "artist": "Elton John", "disabled": false, "favorite": false, "guid": "e02eaeab-2476-8fbf-aa27-7cb3673d7cda", @@ -132646,7 +132727,7 @@ "title": "Goodbye Yellow Brick Road" }, { - "artist": "John, Elton", + "artist": "Elton John", "disabled": false, "favorite": false, "guid": "002ab04c-1383-a68f-ef66-a4c2aac08405", @@ -132654,7 +132735,7 @@ "title": "Honky Cat" }, { - "artist": "John, Elton", + "artist": "Elton John", "disabled": false, "favorite": false, "guid": "3ccb9a17-fc33-44cf-caaf-6573151a4fe6", @@ -132662,7 +132743,7 @@ "title": "Your Song" }, { - "artist": "Johnson, Michael", + "artist": "Michael Johnson", "disabled": false, "favorite": false, "guid": "57fcf459-4b69-0cf3-840e-28418c77430b", @@ -132686,7 +132767,7 @@ "title": "Livin' In Paradise" }, { - "artist": "Jones, George & Tammy Wynette", + "artist": "George Jones & Tammy Wynette", "disabled": false, "favorite": false, "guid": "927a57c0-414f-13d5-af4f-c92b81346eb9", @@ -132694,7 +132775,7 @@ "title": "Two Story House" }, { - "artist": "Jones, George & Tammy Wynette", + "artist": "George Jones & Tammy Wynette", "disabled": false, "favorite": false, "guid": "4a9a510b-e411-5a1b-ed06-dee8327b89e5", @@ -132702,7 +132783,7 @@ "title": "We're Gonna Hold On" }, { - "artist": "Jones, Howard", + "artist": "Howard Jones", "disabled": false, "favorite": false, "guid": "4bf8c91e-f84b-c74e-f1eb-a5f82a971fd9", @@ -132710,7 +132791,7 @@ "title": "Everlasting Love" }, { - "artist": "Jones, Howard", + "artist": "Howard Jones", "disabled": false, "favorite": false, "guid": "a4d71dac-4cd9-1601-0837-6e4b86ed49f2", @@ -132718,7 +132799,7 @@ "title": "No One Is To Blame" }, { - "artist": "Jones, Howard", + "artist": "Howard Jones", "disabled": false, "favorite": false, "guid": "170485e2-cee9-5776-ddcc-138161bbd7e3", @@ -132726,7 +132807,7 @@ "title": "Things Can Only Get Better" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "46c66e67-725f-6d66-ad79-80d121ad7087", @@ -132734,7 +132815,7 @@ "title": "Above Ground" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "5d282c7b-393d-8efd-eed9-1421b5f0726c", @@ -132742,7 +132823,7 @@ "title": "Be Here To Love Me" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "d74f26a8-c9c9-8c65-2d6e-4293775bb734", @@ -132750,7 +132831,7 @@ "title": "Come Away With Me" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "1b9c2de7-a306-26d9-0f7b-99f16da66bca", @@ -132758,7 +132839,7 @@ "title": "Come Away With Me" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "49d890d6-0cf3-66cd-719c-4b960af62407", @@ -132766,7 +132847,7 @@ "title": "Come Away With Me" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "e338a025-1d5e-43c1-b33a-9d6b3383f5e1", @@ -132774,7 +132855,7 @@ "title": "Come Away With Me" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "9cb18d24-12c7-2540-cde2-c0c806cbd4cb", @@ -132782,7 +132863,7 @@ "title": "Creepin' In" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "2d8ec89f-67b9-f9eb-ce7d-b828e9eabe47", @@ -132790,7 +132871,7 @@ "title": "Don't Know Why" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "54500f02-5809-0469-da43-5505ecb465ca", @@ -132798,7 +132879,7 @@ "title": "Don't Know Why" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "c2e39ba7-7ff0-348c-5d26-143ecde7547c", @@ -132806,7 +132887,7 @@ "title": "Don't Know Why" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "6abef94f-5f54-11d2-f2ed-6cb86b7ff4d4", @@ -132814,7 +132895,7 @@ "title": "Don't Miss You At All" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "a70df561-e072-a1d1-aa53-802d00355f8f", @@ -132822,7 +132903,7 @@ "title": "Feelin' The Same Way" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "de673452-2443-872a-ee2d-7ca7992bb384", @@ -132830,7 +132911,7 @@ "title": "Humble Me" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "54284542-b292-7782-ed8b-a2af8c1fa588", @@ -132838,7 +132919,7 @@ "title": "I've Got To See You Again" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "d765bac0-be41-40f5-6d11-bb1ce34b6f33", @@ -132846,7 +132927,7 @@ "title": "In The Morning" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "29db8fcc-eeec-f444-bd2c-b2113a089388", @@ -132854,7 +132935,7 @@ "title": "Lonestar" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "6788216e-e2e9-5e2d-0980-f02588abdc8b", @@ -132862,7 +132943,7 @@ "title": "Lonestar" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "4bbbba5d-3cfc-566a-eb3b-0969e025b563", @@ -132870,7 +132951,7 @@ "title": "Long Way Home, The" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "50da3037-487d-8c65-2824-600f1770f170", @@ -132878,7 +132959,7 @@ "title": "Nearness Of You, The" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "a7de6a2b-f500-1fd3-5e6b-73a6d8c29fd6", @@ -132886,7 +132967,7 @@ "title": "Nightingale" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "748d6937-7ac8-5323-0236-1d9cab7d4204", @@ -132894,7 +132975,7 @@ "title": "One Flight Down" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "7c673bb8-2518-599c-393d-be3b1f204a97", @@ -132902,7 +132983,7 @@ "title": "Painter Song" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "8d0359f7-aa96-231d-026b-27b3ec56d494", @@ -132910,7 +132991,7 @@ "title": "Prettiest Thing, The" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "77273109-e054-c45d-d37b-0a4ce555dc1e", @@ -132918,7 +132999,7 @@ "title": "Shoot The Moon" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "896326b0-da96-1d0a-fb33-9b2e185e9d11", @@ -132926,7 +133007,7 @@ "title": "Sunrise" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "3a85d16e-9b3b-6c93-cb6f-7214f56ac9a6", @@ -132934,7 +133015,7 @@ "title": "Those Sweet Words" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "f4ec1203-b0f5-e355-1b87-327198d4e9a5", @@ -132942,7 +133023,7 @@ "title": "Toes" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "d1c2895b-03cd-1410-2cd8-cb2eb407ef92", @@ -132950,7 +133031,7 @@ "title": "Turn Me On" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "8fc42185-9295-77f8-f645-15f7cb6564da", @@ -132958,7 +133039,7 @@ "title": "Turn Me On" }, { - "artist": "Jones, Norah", + "artist": "Norah Jones", "disabled": false, "favorite": false, "guid": "a353b57b-9229-9e28-839b-e03ac79a4dd5", @@ -132966,7 +133047,7 @@ "title": "What Am I To You" }, { - "artist": "Jones,Rickie Lee", + "artist": "Rickie Lee Jones", "disabled": false, "favorite": false, "guid": "8a0ce680-55d5-9460-b8f0-128f64d714ae", @@ -132974,7 +133055,7 @@ "title": "Chuck E's In Love" }, { - "artist": "Joplin, Janis", + "artist": "Janis Joplin", "disabled": false, "favorite": false, "guid": "05de9f4b-14b4-96d0-4346-5ce20c9b7579", @@ -132982,7 +133063,7 @@ "title": "Down On Me" }, { - "artist": "Joplin, Janis", + "artist": "Janis Joplin", "disabled": false, "favorite": false, "guid": "8b5983c3-8424-bfa7-8f6a-7dcdce360049", @@ -132990,7 +133071,7 @@ "title": "Piece Of My Heart" }, { - "artist": "Jordan, Montell", + "artist": "Montell Jordan", "disabled": false, "favorite": false, "guid": "64a34933-d17a-531c-3372-9d3cdfa68fe5", @@ -132998,7 +133079,7 @@ "title": "Get It On Tonite" }, { - "artist": "Jordan, Montell", + "artist": "Montell Jordan", "disabled": false, "favorite": false, "guid": "48468948-f9d5-2079-0c9e-3092516cc65c", @@ -133182,7 +133263,7 @@ "title": "Only You Can Love Me This Way" }, { - "artist": "Keith, Toby", + "artist": "Toby Keith", "disabled": false, "favorite": false, "guid": "14a2ac09-e528-c87d-3300-b03724d8c954", @@ -133190,7 +133271,7 @@ "title": "Courtesy Of The Red, White & Blue" }, { - "artist": "Keith, Toby", + "artist": "Toby Keith", "disabled": false, "favorite": false, "guid": "aa32a5eb-713b-7c4d-b8f0-e56764c2458d", @@ -133198,7 +133279,7 @@ "title": "Courtesy Of The Red, White & Blue" }, { - "artist": "Keith, Toby", + "artist": "Toby Keith", "disabled": false, "favorite": false, "guid": "1f4051a8-4376-0415-000b-bfb2cab46838", @@ -133206,7 +133287,7 @@ "title": "How Do You Like Me Now" }, { - "artist": "Keith, Toby", + "artist": "Toby Keith", "disabled": false, "favorite": false, "guid": "ff1b103b-ebfa-3e40-fc48-67d64d143166", @@ -133214,7 +133295,7 @@ "title": "My List" }, { - "artist": "Keith, Toby", + "artist": "Toby Keith", "disabled": false, "favorite": false, "guid": "0c139bb0-4785-428c-ec5f-8f195cf5a4fb", @@ -133254,7 +133335,7 @@ "title": "I Do Not Hook Up" }, { - "artist": "Kelly, R.", + "artist": "R. Kelly", "disabled": false, "favorite": false, "guid": "a42259a8-1110-fe8a-e924-2ead476429fc", @@ -133262,7 +133343,7 @@ "title": "I Can't Sleep Baby" }, { - "artist": "Kelly, R.", + "artist": "R. Kelly", "disabled": false, "favorite": false, "guid": "01cf1463-88c2-9ca7-d4c5-b85501b24f20", @@ -133286,7 +133367,7 @@ "title": "Walk Softly On This Heart Of Mine" }, { - "artist": "Keri Hilson, Kanye West & Ne Yo", + "artist": "Kanye West Keri Hilson & Ne Yo", "disabled": false, "favorite": false, "guid": "76ffc1f2-a649-f801-ecc8-4d380d446662", @@ -133294,7 +133375,7 @@ "title": "Knock You Down" }, { - "artist": "Kershaw, Sammy", + "artist": "Sammy Kershaw", "disabled": false, "favorite": false, "guid": "a57f77bc-7342-686e-a880-f0a00742f6da", @@ -133302,7 +133383,7 @@ "title": "Love Of My Life" }, { - "artist": "Kershaw, Sammy", + "artist": "Sammy Kershaw", "disabled": false, "favorite": false, "guid": "5480d527-93a9-abce-f384-35529245669a", @@ -133310,7 +133391,7 @@ "title": "Me And Maxine" }, { - "artist": "Keys, Alicia & Tony Toni Tone", + "artist": "Alicia Keys & Tony Toni Tone", "disabled": false, "favorite": false, "guid": "417c8289-ee7c-52dd-19c0-18e32876f800", @@ -133318,7 +133399,7 @@ "title": "Diary" }, { - "artist": "Keys, Alicia", + "artist": "Alicia Keys", "disabled": false, "favorite": false, "guid": "70eb147d-b285-8355-97ab-1a43817884dd", @@ -133326,7 +133407,7 @@ "title": "If I Ain't Got You" }, { - "artist": "Keys, Eve & Alicia", + "artist": "Eve Keys & Alicia", "disabled": false, "favorite": false, "guid": "35c172db-898d-f57e-dbea-72b4e1486d92", @@ -133342,7 +133423,7 @@ "title": "Trust" }, { - "artist": "Khan, Chaka", + "artist": "Chaka Khan", "disabled": false, "favorite": false, "guid": "09f88dea-4f65-b65e-e102-08735ea6a3c9", @@ -133374,7 +133455,7 @@ "title": "Only God Knows Why" }, { - "artist": "King, Ben E", + "artist": "Ben E King", "disabled": false, "favorite": false, "guid": "1aec5bce-5ea8-9a10-84f8-6901485ca95e", @@ -133382,7 +133463,7 @@ "title": "Stand By Me" }, { - "artist": "King, Carole", + "artist": "Carole King", "disabled": false, "favorite": false, "guid": "fd21ca9a-9c94-b1e1-0bdd-41502292922c", @@ -133390,7 +133471,7 @@ "title": "I Feel The Earth Move" }, { - "artist": "King, Carole", + "artist": "Carole King", "disabled": false, "favorite": false, "guid": "75fe7149-3067-5b63-d80e-cf649a808817", @@ -133398,7 +133479,7 @@ "title": "It's Too Late" }, { - "artist": "King, Carole", + "artist": "Carole King", "disabled": false, "favorite": false, "guid": "2632bc2f-a96a-a8b3-e72a-603038b0e7bc", @@ -133422,7 +133503,7 @@ "title": "Waste A Moment" }, { - "artist": "Kinks, The", + "artist": "The Kinks", "disabled": false, "favorite": false, "guid": "2e8dd68b-9aad-0ad1-87b7-2d610174798b", @@ -133454,7 +133535,7 @@ "title": "Rock And Roll All Nite" }, { - "artist": "Knight, Gladys & The Pips", + "artist": "Gladys Knight & The Pips", "disabled": false, "favorite": false, "guid": "d19d8043-97e6-b7e0-bd07-9d331360ad8a", @@ -133462,7 +133543,7 @@ "title": "Neither One Of Us" }, { - "artist": "Knight, Gladys", + "artist": "Gladys Knight", "disabled": false, "favorite": false, "guid": "4c41f3b5-2b76-7abd-b2ba-b7d2b8676ac1", @@ -133486,7 +133567,7 @@ "title": "Make Me Bad" }, { - "artist": "Krall, Diana", + "artist": "Diana Krall", "disabled": false, "favorite": false, "guid": "357452f2-a7da-4ccc-726f-e42eb27da25c", @@ -133494,7 +133575,7 @@ "title": "Just The Way You Are" }, { - "artist": "Krall, Diana", + "artist": "Diana Krall", "disabled": false, "favorite": false, "guid": "eec33257-e486-2ae1-207b-8e7ea9d0be5e", @@ -133502,7 +133583,7 @@ "title": "Look Of Love, The" }, { - "artist": "Kreviazuk, Chantal", + "artist": "Chantal Kreviazuk", "disabled": false, "favorite": false, "guid": "6ec23d47-51ec-6944-e408-a37e0769d55d", @@ -133510,7 +133591,7 @@ "title": "In This Life" }, { - "artist": "Kroeger, Chad & Josey Scott", + "artist": "Chad Kroeger & Josey Scott", "disabled": false, "favorite": false, "guid": "13ddf529-b889-f0b8-140b-b8d9b844a0ff", @@ -133558,7 +133639,7 @@ "title": "Perfect Illusion" }, { - "artist": "Lambert, Miranda", + "artist": "Miranda Lambert", "disabled": false, "favorite": false, "guid": "46c49c39-2e2d-d062-18ed-99b6e4fd32ce", @@ -133566,7 +133647,7 @@ "title": "Me And Charlie Talking" }, { - "artist": "Lamond, George", + "artist": "George Lamond", "disabled": false, "favorite": false, "guid": "725f9c26-bca2-1877-ee5d-b353e77b0e94", @@ -133574,7 +133655,7 @@ "title": "Que Te Vas" }, { - "artist": "Larrieux, Amel", + "artist": "Amel Larrieux", "disabled": false, "favorite": false, "guid": "f2647721-d480-5fa9-c87d-cd82492bbfae", @@ -133582,7 +133663,7 @@ "title": "For Real" }, { - "artist": "Larson, Brie", + "artist": "Brie Larson", "disabled": false, "favorite": false, "guid": "27aceb89-c1da-b894-710a-830a065ead33", @@ -133590,7 +133671,7 @@ "title": "She Said" }, { - "artist": "Lattimore, Kenny", + "artist": "Kenny Lattimore", "disabled": false, "favorite": false, "guid": "798a0353-f369-be96-7ddc-7ee3e94d861a", @@ -133598,7 +133679,7 @@ "title": "If I Lose My Woman" }, { - "artist": "Lauper, Cyndi", + "artist": "Cyndi Lauper", "disabled": false, "favorite": false, "guid": "1a1cb362-04ef-7162-9bf0-ea8144526dd8", @@ -133606,7 +133687,7 @@ "title": "I Drove All Night" }, { - "artist": "Lauper, Cyndi", + "artist": "Cyndi Lauper", "disabled": false, "favorite": false, "guid": "c3d07a5f-15a7-3d35-4146-3d81b579b841", @@ -133614,7 +133695,7 @@ "title": "Time After Time" }, { - "artist": "Lauper, Cyndi", + "artist": "Cyndi Lauper", "disabled": false, "favorite": false, "guid": "9a060453-9eee-91e9-d859-417fa57917b1", @@ -133622,7 +133703,7 @@ "title": "True Colors" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "9aaf60aa-ba9c-ac3f-e4ff-8453193af051", @@ -133630,7 +133711,7 @@ "title": "Anything But Ordinary" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "cb3c4f0f-bf44-298d-1230-3c85bf34c6f8", @@ -133638,7 +133719,7 @@ "title": "Anything But Ordinary" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "5e3fc439-6420-b6d1-fc7a-d3a8f575a0ee", @@ -133646,7 +133727,7 @@ "title": "Complicated" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "d3c4e462-8c79-8320-9211-d7bd3c023559", @@ -133654,7 +133735,7 @@ "title": "Don't Tell Me" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "87e9de52-cb01-08e4-f933-f103551e06b0", @@ -133662,7 +133743,7 @@ "title": "Don't Tell Me" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "1fefe755-7a9b-9597-6565-663280c2f5c1", @@ -133670,7 +133751,7 @@ "title": "Fall To Pieces" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "6b912751-e1c4-1965-9f2f-a3d8552bdbcc", @@ -133678,7 +133759,7 @@ "title": "Girlfriend" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "861561f1-9592-ce04-5501-6c02ec61e9ce", @@ -133686,7 +133767,7 @@ "title": "I'm With You" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "3baf7e46-3672-913a-5146-79ff302b301b", @@ -133694,7 +133775,7 @@ "title": "Losing Grip" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "d57b1bba-48cc-7023-0317-742818b46885", @@ -133702,7 +133783,7 @@ "title": "Mobile" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "c7e4cf9c-85ca-dada-f4d0-df84a9c20bb7", @@ -133710,7 +133791,7 @@ "title": "My Happy Ending" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "313fa167-0fcf-d3cf-342b-92ea144876c7", @@ -133718,7 +133799,7 @@ "title": "My World" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "b2527733-3a87-5178-b70b-c1bb2966ed3c", @@ -133726,7 +133807,7 @@ "title": "Nobody's Home" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "fe49b6c7-4afc-08a3-4d2d-2a67f608912f", @@ -133734,7 +133815,7 @@ "title": "Sk8er Boi" }, { - "artist": "Lavigne, Avril", + "artist": "Avril Lavigne", "disabled": false, "favorite": false, "guid": "f9592620-8b0c-b4d1-0094-3baccd46845a", @@ -133742,7 +133823,7 @@ "title": "Take Me Away" }, { - "artist": "Lawrence, Tracy", + "artist": "Tracy Lawrence", "disabled": false, "favorite": false, "guid": "390a4e7f-17c5-72ee-d05f-c02982e1dd41", @@ -133750,7 +133831,7 @@ "title": "As Any Fool Can See" }, { - "artist": "Lawrence, Tracy", + "artist": "Tracy Lawrence", "disabled": false, "favorite": false, "guid": "19a804df-b046-4433-6f55-96c4da7129bc", @@ -133758,7 +133839,7 @@ "title": "Lessons Learned" }, { - "artist": "Lawrence, Tracy", + "artist": "Tracy Lawrence", "disabled": false, "favorite": false, "guid": "8c9e3da0-4a72-3eae-8040-72a53173b3da", @@ -133766,7 +133847,7 @@ "title": "What A Memory" }, { - "artist": "Lawson, Shannon", + "artist": "Shannon Lawson", "disabled": false, "favorite": false, "guid": "475add61-70aa-7c90-300e-d59b200cf3b2", @@ -133782,7 +133863,7 @@ "title": "Black Dog" }, { - "artist": "Ledoux, Chris", + "artist": "Chris Ledoux", "disabled": false, "favorite": false, "guid": "a17846aa-e959-73a9-f4e8-c4de667ec537", @@ -133790,7 +133871,7 @@ "title": "Stampede" }, { - "artist": "Lee, Peggy", + "artist": "Peggy Lee", "disabled": false, "favorite": false, "guid": "c22cb223-1138-005f-d3de-8d644c05706b", @@ -133798,7 +133879,7 @@ "title": "Fever" }, { - "artist": "Lennon, John", + "artist": "John Lennon", "disabled": false, "favorite": false, "guid": "fedd7064-3a9a-612b-799e-ed0d09a723a7", @@ -133806,7 +133887,7 @@ "title": "Imagine" }, { - "artist": "Lennon, John", + "artist": "John Lennon", "disabled": false, "favorite": false, "guid": "84fbed05-3455-65bd-a0df-0c782a3bcda9", @@ -133814,7 +133895,7 @@ "title": "Watching The Wheels" }, { - "artist": "Lennox, Annie & Al Green", + "artist": "Annie Lennox & Al Green", "disabled": false, "favorite": false, "guid": "ed448174-93c6-6a80-cb97-ecb9eb0d5a5e", @@ -133822,7 +133903,7 @@ "title": "Put A Little Love In Your Heart" }, { - "artist": "Leppard, Def", + "artist": "Def Leppard", "disabled": false, "favorite": false, "guid": "4463a298-3434-2d07-8078-ea5827abc387", @@ -133838,7 +133919,7 @@ "title": "On My Own" }, { - "artist": "Lewis, Huey & Gwenyth Paltrow", + "artist": "Huey Lewis & Gwenyth Paltrow", "disabled": false, "favorite": false, "guid": "29757c3a-3b7f-75b4-95ed-837a271ee835", @@ -133846,7 +133927,7 @@ "title": "Cruisin'" }, { - "artist": "Lewis, Huey & The News", + "artist": "Huey Lewis & The News", "disabled": false, "favorite": false, "guid": "0cc094cf-488b-61d4-26f0-98280f455a59", @@ -133854,7 +133935,7 @@ "title": "100 Years From Now" }, { - "artist": "Lewis, Huey & The News", + "artist": "Huey Lewis & The News", "disabled": false, "favorite": false, "guid": "f06f98ca-243c-e1af-892e-06806cde1c5f", @@ -133862,7 +133943,7 @@ "title": "Hip To Be Square" }, { - "artist": "Lewis, Jerry Lee", + "artist": "Jerry Lee Lewis", "disabled": false, "favorite": false, "guid": "fea7b08a-4e92-b932-7c4b-51e7634ed46b", @@ -133870,7 +133951,7 @@ "title": "Breathless" }, { - "artist": "Lewis, Jerry Lee", + "artist": "Jerry Lee Lewis", "disabled": false, "favorite": false, "guid": "987fb835-b792-c11e-b25f-7b2a8bd0c143", @@ -133878,7 +133959,7 @@ "title": "Whole Lotta Shakin' Goin' On" }, { - "artist": "Lightfoot, Gordon", + "artist": "Gordon Lightfoot", "disabled": false, "favorite": false, "guid": "1f1ce3b4-6e1e-c123-c610-2a21dee33ea5", @@ -133934,7 +134015,7 @@ "title": "Good Golly Miss Molly" }, { - "artist": "Little River Band, The", + "artist": "The Little River Band", "disabled": false, "favorite": false, "guid": "1adceab1-4f9e-f7f6-8873-2e9157267747", @@ -133982,7 +134063,7 @@ "title": "Luv U Better" }, { - "artist": "Locke, Kimberly", + "artist": "Kimberly Locke", "disabled": false, "favorite": false, "guid": "46ea2f93-aa49-3c59-84d7-ed3573a66821", @@ -133990,7 +134071,7 @@ "title": "8Th World Wonder" }, { - "artist": "Loggins, Kenny & Stevie Nicks", + "artist": "Kenny Loggins & Stevie Nicks", "disabled": false, "favorite": false, "guid": "32611712-acb3-0e4e-6ace-68b1b6915736", @@ -133998,7 +134079,7 @@ "title": "Whenever I Call You Friend" }, { - "artist": "Loggins, Kenny", + "artist": "Kenny Loggins", "disabled": false, "favorite": false, "guid": "118be981-bce6-393e-624c-b86a0a5e4ea8", @@ -134006,7 +134087,7 @@ "title": "Danger Zone" }, { - "artist": "Lohan, Lindsay", + "artist": "Lindsay Lohan", "disabled": false, "favorite": false, "guid": "9bec44ff-d012-7c51-6d55-f06717095771", @@ -134014,7 +134095,7 @@ "title": "Over" }, { - "artist": "Lohan, Lindsay", + "artist": "Lindsay Lohan", "disabled": false, "favorite": false, "guid": "7d05cb75-ce0d-6ee4-aa11-740b08be1a0d", @@ -134022,7 +134103,7 @@ "title": "Something I Never Had" }, { - "artist": "Lohan, Lindsay", + "artist": "Lindsay Lohan", "disabled": false, "favorite": false, "guid": "4e1fe9da-1084-2e4a-edcd-765a8f4620d5", @@ -134062,7 +134143,7 @@ "title": "Brandy" }, { - "artist": "Lopez, Jennifer & 50 Cent", + "artist": "Jennifer Lopez & 50 Cent", "disabled": false, "favorite": false, "guid": "2e76dc8c-53b2-ee62-bb37-7bb28db6a1b9", @@ -134070,7 +134151,7 @@ "title": "I'm Gonna Be Alright" }, { - "artist": "Lopez, Jennifer", + "artist": "Jennifer Lopez", "disabled": false, "favorite": false, "guid": "c5a504b2-49bb-fc8b-5bc7-992afc05f28d", @@ -134078,7 +134159,7 @@ "title": "Ain't If Funny" }, { - "artist": "Lopez, Jennifer", + "artist": "Jennifer Lopez", "disabled": false, "favorite": false, "guid": "28463dbd-5472-b632-3204-83d89132e8e5", @@ -134086,7 +134167,7 @@ "title": "Ain't It Funny" }, { - "artist": "Lopez, Jennifer", + "artist": "Jennifer Lopez", "disabled": false, "favorite": false, "guid": "b2ab0c63-1ff0-7a43-6092-2ab7451c1f63", @@ -134094,7 +134175,7 @@ "title": "Feelin' So Good" }, { - "artist": "Lopez, Jennifer", + "artist": "Jennifer Lopez", "disabled": false, "favorite": false, "guid": "9dbba058-69b9-e2c1-a8d4-47d07214ddd8", @@ -134102,7 +134183,7 @@ "title": "I'm Glad" }, { - "artist": "Lopez, Jennifer", + "artist": "Jennifer Lopez", "disabled": false, "favorite": false, "guid": "07561daa-4092-a988-8c2c-b123ced17cd6", @@ -134110,7 +134191,7 @@ "title": "Jenny From The Block" }, { - "artist": "Lopez, Jennifer", + "artist": "Jennifer Lopez", "disabled": false, "favorite": false, "guid": "5a1d0095-a8f6-f2a3-413a-98a03d72367f", @@ -134174,7 +134255,7 @@ "title": "Do I" }, { - "artist": "Lynn, Loretta & Conway Twitty", + "artist": "Loretta Lynn & Conway Twitty", "disabled": false, "favorite": false, "guid": "0307cfbb-7b2e-8a9a-f17a-1e0dae70a5b7", @@ -134182,7 +134263,7 @@ "title": "As Soon As I Hang Up The Phone" }, { - "artist": "Lynn, Loretta & Conway Twitty", + "artist": "Loretta Lynn & Conway Twitty", "disabled": false, "favorite": false, "guid": "874f6e40-c1cd-98c6-12cb-b6af2be85ee6", @@ -134190,7 +134271,7 @@ "title": "Lead Me On" }, { - "artist": "Lynn, Loretta", + "artist": "Loretta Lynn", "disabled": false, "favorite": false, "guid": "41a03ee4-b120-2900-bc3e-bfc7fe5a583d", @@ -134270,7 +134351,7 @@ "title": "B-tch I'm Madonna" }, { - "artist": "Maguey, Banda", + "artist": "Banda Maguey", "disabled": false, "favorite": false, "guid": "7272d887-5c01-baeb-f420-bcd3eac62695", @@ -134310,7 +134391,7 @@ "title": "Te Solte La Rienda" }, { - "artist": "Mandrell, Barbara", + "artist": "Barbara Mandrell", "disabled": false, "favorite": false, "guid": "9b9a2f7e-87e5-dfe4-d79e-2345219cc8b0", @@ -134318,7 +134399,7 @@ "title": "Sleeping Single In A Double Bed" }, { - "artist": "Mandrell, Barbara", + "artist": "Barbara Mandrell", "disabled": false, "favorite": false, "guid": "90d4d7e7-2f87-35be-8500-f547e6811443", @@ -134334,7 +134415,7 @@ "title": "Kiss & Say Goodbye" }, { - "artist": "Manilow, Barry", + "artist": "Barry Manilow", "disabled": false, "favorite": false, "guid": "5d835c02-69d9-663c-ccb9-49b700d2d50e", @@ -134366,7 +134447,7 @@ "title": "This Love" }, { - "artist": "Mars, Bruno & Damian Marley", + "artist": "Bruno Mars & Damian Marley", "disabled": false, "favorite": false, "guid": "36dee8f7-ec6b-d51c-e15d-37d76d9468fa", @@ -134374,7 +134455,7 @@ "title": "Liquor Store Blues" }, { - "artist": "Mars, Bruno", + "artist": "Bruno Mars", "disabled": false, "favorite": false, "guid": "3e97fe99-24c3-3d9a-5912-23c04cd02822", @@ -134382,7 +134463,7 @@ "title": "Count On Me" }, { - "artist": "Mars, Bruno", + "artist": "Bruno Mars", "disabled": false, "favorite": false, "guid": "4833a7d0-98e1-fe14-f936-2d71ad24f6a7", @@ -134390,7 +134471,7 @@ "title": "Just The Way You Are" }, { - "artist": "Mars, Bruno", + "artist": "Bruno Mars", "disabled": false, "favorite": false, "guid": "92efc115-99b5-85b1-bd57-9f408432d776", @@ -134398,7 +134479,7 @@ "title": "Lazy Song, The" }, { - "artist": "Mars, Bruno", + "artist": "Bruno Mars", "disabled": false, "favorite": false, "guid": "96a672ab-489c-0e89-300f-1251a0832bac", @@ -134406,7 +134487,7 @@ "title": "Marry You" }, { - "artist": "Mars, Bruno", + "artist": "Bruno Mars", "disabled": false, "favorite": false, "guid": "5481060e-d278-d28b-3dfe-05697e241bf1", @@ -134430,7 +134511,7 @@ "title": "Nowhere To Run" }, { - "artist": "Martin, Brad", + "artist": "Brad Martin", "disabled": false, "favorite": false, "guid": "ae228b14-8f4b-e3ee-8c4e-51bcbb472696", @@ -134438,7 +134519,7 @@ "title": "Before I Knew Better" }, { - "artist": "Martin, Dean", + "artist": "Dean Martin", "disabled": false, "favorite": false, "guid": "814e4e2f-028c-9abf-dcd4-ae1df58bb4e0", @@ -134446,7 +134527,7 @@ "title": "Everybody Loves Somebody" }, { - "artist": "Martin, Dean", + "artist": "Dean Martin", "disabled": false, "favorite": false, "guid": "524090ef-dad0-5b1a-27cc-45e787d25d56", @@ -134454,7 +134535,7 @@ "title": "Memories Are Made Of This" }, { - "artist": "Martin, Ricky & Christina Aguilera", + "artist": "Ricky Martin & Christina Aguilera", "disabled": false, "favorite": false, "guid": "8e5c081d-c3fa-0e87-d09a-c586bd5ee3e6", @@ -134462,7 +134543,7 @@ "title": "Nobody Wants To Be Lonely" }, { - "artist": "Martin, Ricky & Madonna", + "artist": "Ricky Martin & Madonna", "disabled": false, "favorite": false, "guid": "1c7a3211-7ebd-2fe5-c972-e8ac26c9c87c", @@ -134486,7 +134567,7 @@ "title": "Don't Mess With Bill" }, { - "artist": "Marx, Richard", + "artist": "Richard Marx", "disabled": false, "favorite": false, "guid": "5d1d1746-e379-877e-c17c-31ec76b3203e", @@ -134502,7 +134583,7 @@ "title": "One, The" }, { - "artist": "Mason, Barbara", + "artist": "Barbara Mason", "disabled": false, "favorite": false, "guid": "9f8eb74e-6793-d3e6-2cb8-502b1aacc705", @@ -134526,7 +134607,7 @@ "title": "Disease" }, { - "artist": "Mathis, Johnny & Deniece Williams", + "artist": "Johnny Mathis & Deniece Williams", "disabled": false, "favorite": false, "guid": "3f64acdd-29fb-6c27-c059-83accd0c9bc6", @@ -134534,7 +134615,7 @@ "title": "(Duet) Too Much, Too Little, Too Late" }, { - "artist": "Mathis, Johnny", + "artist": "Johnny Mathis", "disabled": false, "favorite": false, "guid": "0f92f81e-254b-2405-034b-b4578870cea1", @@ -134542,7 +134623,7 @@ "title": "Chances Are" }, { - "artist": "Mathis, Johnny", + "artist": "Johnny Mathis", "disabled": false, "favorite": false, "guid": "aa2f1176-452d-e899-94fe-438434205685", @@ -134558,7 +134639,7 @@ "title": "Here Comes My Baby" }, { - "artist": "Mayer, John", + "artist": "John Mayer", "disabled": false, "favorite": false, "guid": "1f7dfb5c-4264-36e8-948e-70ecf737ed4a", @@ -134566,7 +134647,7 @@ "title": "No Such Thing" }, { - "artist": "Mayer, John", + "artist": "John Mayer", "disabled": false, "favorite": false, "guid": "ac967681-92a7-af15-7f70-493bb65c25a0", @@ -134574,7 +134655,7 @@ "title": "Why Georgia" }, { - "artist": "Mayer, John", + "artist": "John Mayer", "disabled": false, "favorite": false, "guid": "05f4fe5b-5217-dbf5-7dc1-5a445b3a128b", @@ -134582,7 +134663,7 @@ "title": "Your Body Is A Wonderland" }, { - "artist": "McBride, Martina", + "artist": "Martina McBride", "disabled": false, "favorite": false, "guid": "7ac0eca6-7fec-faeb-fca2-7b068e0d1d66", @@ -134590,7 +134671,7 @@ "title": "A Broken Wing" }, { - "artist": "McBride, Martina", + "artist": "Martina McBride", "disabled": false, "favorite": false, "guid": "1d4a666d-cab0-4719-4bab-8388a72f28d5", @@ -134598,7 +134679,7 @@ "title": "Blessed" }, { - "artist": "McBride, Martina", + "artist": "Martina McBride", "disabled": false, "favorite": false, "guid": "38c8bea2-55e7-c70d-7ac1-2020faeca2a5", @@ -134606,7 +134687,7 @@ "title": "Broken Wing" }, { - "artist": "McBride, Martina", + "artist": "Martina McBride", "disabled": false, "favorite": false, "guid": "59100072-3103-cfaf-cb3f-e50de755d9d9", @@ -134614,7 +134695,7 @@ "title": "Concrete Angel" }, { - "artist": "McBride, Martina", + "artist": "Martina McBride", "disabled": false, "favorite": false, "guid": "b63c6f5f-9172-4b00-e66d-a3441b55d598", @@ -134622,7 +134703,7 @@ "title": "How Far" }, { - "artist": "McBride, Martina", + "artist": "Martina McBride", "disabled": false, "favorite": false, "guid": "0b88dcc9-062e-8182-5814-0fe639e63f3e", @@ -134630,7 +134711,7 @@ "title": "Independence Day" }, { - "artist": "McBride, Martina", + "artist": "Martina McBride", "disabled": false, "favorite": false, "guid": "300a548c-9c67-4af0-cbfa-635298bf0762", @@ -134638,7 +134719,7 @@ "title": "My Baby Loves Me" }, { - "artist": "McBride, Martina", + "artist": "Martina McBride", "disabled": false, "favorite": false, "guid": "a940940c-41bd-7165-62c9-d6097f09d90d", @@ -134646,7 +134727,7 @@ "title": "This One's For The Girls" }, { - "artist": "McBride, Martina", + "artist": "Martina McBride", "disabled": false, "favorite": false, "guid": "c20c3394-58b0-b5c8-541b-4f9ec1e4d35e", @@ -134654,7 +134735,7 @@ "title": "Where Would You Be" }, { - "artist": "McCain, Edwin", + "artist": "Edwin McCain", "disabled": false, "favorite": false, "guid": "35a1a388-24e3-50dc-4ebe-1725c9f9350c", @@ -134662,7 +134743,7 @@ "title": "Sorry To A Friend" }, { - "artist": "McCartney, Paul & Stevie Wonder", + "artist": "Paul McCartney & Stevie Wonder", "disabled": false, "favorite": false, "guid": "784e886c-c16b-2118-f721-e3eae09ea066", @@ -134670,7 +134751,7 @@ "title": "Ebony & Ivory" }, { - "artist": "McCartney, Paul & Stevie Wonder", + "artist": "Paul McCartney & Stevie Wonder", "disabled": false, "favorite": false, "guid": "b1d7133b-c339-8d42-91e9-fd769e2b35c5", @@ -134678,7 +134759,7 @@ "title": "Ebony And Ivory" }, { - "artist": "McCartney, Paul & Wings", + "artist": "Paul McCartney & Wings", "disabled": false, "favorite": false, "guid": "ae9dcb0b-2789-df3b-8c3d-0534689726af", @@ -134686,7 +134767,7 @@ "title": "Band On The Run" }, { - "artist": "McCartney, Paul", + "artist": "Paul McCartney", "disabled": false, "favorite": false, "guid": "392cace3-49fd-ed02-f401-3c7baeaeed4a", @@ -134694,7 +134775,7 @@ "title": "Live And Let Die" }, { - "artist": "McCartney, Paul", + "artist": "Paul McCartney", "disabled": false, "favorite": false, "guid": "1d452ae7-2245-33cf-7ade-233b9014d05c", @@ -134702,7 +134783,7 @@ "title": "Maybe I'm Amazed" }, { - "artist": "McCartney, Paul", + "artist": "Paul McCartney", "disabled": false, "favorite": false, "guid": "741b30cc-f87a-1139-02e8-87f2fc1da3c2", @@ -134710,7 +134791,7 @@ "title": "My Love" }, { - "artist": "McCartney, Paul", + "artist": "Paul McCartney", "disabled": false, "favorite": false, "guid": "f80cddd8-8ffb-6d79-df98-72acfb79f3a9", @@ -134718,7 +134799,7 @@ "title": "Silly Love Songs" }, { - "artist": "McCartney, Paul", + "artist": "Paul McCartney", "disabled": false, "favorite": false, "guid": "833b45c8-7c9e-72c2-86bf-eb15cc822a55", @@ -134726,7 +134807,7 @@ "title": "Uncle Albert Admiral Halsey" }, { - "artist": "McCartney, Paul", + "artist": "Paul McCartney", "disabled": false, "favorite": false, "guid": "2a0437c1-dd64-d71c-3f6b-140275ee2415", @@ -134734,7 +134815,7 @@ "title": "With A Little Luck" }, { - "artist": "McCartney, Paul", + "artist": "Paul McCartney", "disabled": false, "favorite": false, "guid": "29021bb9-7eec-fb2f-3312-fbae369ca9e7", @@ -134742,7 +134823,7 @@ "title": "World Tonight, The" }, { - "artist": "McCoy, Neal", + "artist": "Neal McCoy", "disabled": false, "favorite": false, "guid": "76af19e6-ecd6-8433-b667-65d52d5030a3", @@ -134750,7 +134831,7 @@ "title": "For A Change" }, { - "artist": "McCoy, Travie & Bruno Mars", + "artist": "Travie McCoy & Bruno Mars", "disabled": false, "favorite": false, "guid": "255da4e9-75b6-5b54-9a07-5692a49356c4", @@ -134758,7 +134839,7 @@ "title": "Billionaire" }, { - "artist": "McEntire, Reba", + "artist": "Reba McEntire", "disabled": false, "favorite": false, "guid": "e580be9a-5b83-c868-8b54-e20a1fd6ca91", @@ -134766,7 +134847,7 @@ "title": "Fancy" }, { - "artist": "Mcentire, Reba", + "artist": "Reba Mcentire", "disabled": false, "favorite": false, "guid": "feea2227-69fa-cee9-3784-4fa7f02307ff", @@ -134774,7 +134855,7 @@ "title": "He Gets That From Me" }, { - "artist": "McEntire, Reba", + "artist": "Reba McEntire", "disabled": false, "favorite": false, "guid": "aed9f026-6ff1-3c1c-1900-5e503296098d", @@ -134782,7 +134863,7 @@ "title": "I'll Be" }, { - "artist": "McEntire, Reba", + "artist": "Reba McEntire", "disabled": false, "favorite": false, "guid": "7c2cf14d-9b09-0952-1bdd-833aa0ef5fa5", @@ -134790,7 +134871,7 @@ "title": "Is There Life Out There" }, { - "artist": "McEntire, Reba", + "artist": "Reba McEntire", "disabled": false, "favorite": false, "guid": "7546f888-1b40-bc4b-0fde-77324706f0c9", @@ -134798,7 +134879,7 @@ "title": "Is There Life Out There" }, { - "artist": "McEntire, Reba", + "artist": "Reba McEntire", "disabled": false, "favorite": false, "guid": "39a2b064-6621-ad43-c69b-79ede3c5d543", @@ -134806,7 +134887,7 @@ "title": "Somebody" }, { - "artist": "McEntire, Reba", + "artist": "Reba McEntire", "disabled": false, "favorite": false, "guid": "d396b414-1348-8260-547d-507a92898039", @@ -134814,7 +134895,7 @@ "title": "Take It Back" }, { - "artist": "McEntire, Reba", + "artist": "Reba McEntire", "disabled": false, "favorite": false, "guid": "23105cb1-45d6-a6e9-ced6-2f35fcd91931", @@ -134822,7 +134903,7 @@ "title": "Why Haven't I Heard From You" }, { - "artist": "McEntire, Reba", + "artist": "Reba McEntire", "disabled": false, "favorite": false, "guid": "e6628aa6-3154-7d17-3b7a-cb9f95ae7664", @@ -134838,7 +134919,7 @@ "title": "It's Your Love" }, { - "artist": "McGraw, Tim", + "artist": "Tim McGraw", "disabled": false, "favorite": false, "guid": "bf5f3986-038a-7b8e-df62-e65b777b19e4", @@ -134846,7 +134927,7 @@ "title": "Back When" }, { - "artist": "McGraw, Tim", + "artist": "Tim McGraw", "disabled": false, "favorite": false, "guid": "a28a6792-0c21-b5b9-eeb3-1c4bc2bfb1be", @@ -134854,7 +134935,7 @@ "title": "Down On The Farm" }, { - "artist": "McGraw, Tim", + "artist": "Tim McGraw", "disabled": false, "favorite": false, "guid": "602ef297-5ac6-2a80-7570-965a74446c16", @@ -134862,7 +134943,7 @@ "title": "Live Like You Were Dying" }, { - "artist": "McGraw, Tim", + "artist": "Tim McGraw", "disabled": false, "favorite": false, "guid": "afd18b6a-1d11-68e5-a471-a5e85b22050e", @@ -134870,7 +134951,7 @@ "title": "Unbroken" }, { - "artist": "McGuire Sisters, The", + "artist": "The McGuire Sisters", "disabled": false, "favorite": false, "guid": "3a25e24b-ead0-7589-761b-263d375f3b2e", @@ -134878,7 +134959,7 @@ "title": "Sincerely" }, { - "artist": "McIntyre, Joey", + "artist": "Joey McIntyre", "disabled": false, "favorite": false, "guid": "cb5eed0f-5013-3b74-b0a1-0ad0909b567f", @@ -134886,7 +134967,7 @@ "title": "Stay The Same" }, { - "artist": "McKnight, Brian", + "artist": "Brian McKnight", "disabled": false, "favorite": false, "guid": "d0d5994d-7275-e0df-de96-9a6add77d539", @@ -134894,7 +134975,7 @@ "title": "Love Of My Life" }, { - "artist": "McLachlan, Sarah", + "artist": "Sarah McLachlan", "disabled": false, "favorite": false, "guid": "92aad02f-de2a-a98c-f8d4-5e75476a4b67", @@ -134902,7 +134983,7 @@ "title": "Possession" }, { - "artist": "McLachlan, Sarah", + "artist": "Sarah McLachlan", "disabled": false, "favorite": false, "guid": "80695fe5-8f83-33a5-f71f-5db398c9288d", @@ -134926,7 +135007,7 @@ "title": "Tu Me Haces Sonar" }, { - "artist": "Medeiros, Glenn", + "artist": "Glenn Medeiros", "disabled": false, "favorite": false, "guid": "674294b9-8280-aea4-39c6-07158770f25f", @@ -134958,7 +135039,7 @@ "title": "Brand New Key" }, { - "artist": "Mellencamp, John Cougar", + "artist": "John Cougar Mellencamp", "disabled": false, "favorite": false, "guid": "d9f453db-c3ee-6af3-bf41-6c26a9c084c0", @@ -134966,7 +135047,7 @@ "title": "Authority Song" }, { - "artist": "Mellencamp, John Cougar", + "artist": "John Cougar Mellencamp", "disabled": false, "favorite": false, "guid": "e5f392ec-58d5-c667-8d05-6619befd8d4c", @@ -134974,7 +135055,7 @@ "title": "Hurt So Good" }, { - "artist": "Mellencamp, John Cougar", + "artist": "John Cougar Mellencamp", "disabled": false, "favorite": false, "guid": "53bcf35d-9188-fc91-f317-363fb2dd6853", @@ -134982,7 +135063,7 @@ "title": "Lonely Ol' Night" }, { - "artist": "Mellencamp, John Cougar", + "artist": "John Cougar Mellencamp", "disabled": false, "favorite": false, "guid": "6e0c799d-051e-be74-47da-0374e766a742", @@ -134990,7 +135071,7 @@ "title": "Pink Houses" }, { - "artist": "Mellencamp, John Cougar", + "artist": "John Cougar Mellencamp", "disabled": false, "favorite": false, "guid": "9063878d-e3fe-836c-4afd-5be9f95591ae", @@ -135022,7 +135103,7 @@ "title": "Safety Dance" }, { - "artist": "Merchant, Natalie", + "artist": "Natalie Merchant", "disabled": false, "favorite": false, "guid": "8f5ca589-b3ca-d28d-7b79-58916582f2a5", @@ -135030,7 +135111,7 @@ "title": "Life Is Sweet" }, { - "artist": "Messina, Jo Dee", + "artist": "Jo Dee Messina", "disabled": false, "favorite": false, "guid": "eab8d5cd-1236-d371-691e-ce9b72aca893", @@ -135038,7 +135119,7 @@ "title": "Because You Love Me" }, { - "artist": "Messina, Jo Dee", + "artist": "Jo Dee Messina", "disabled": false, "favorite": false, "guid": "0058da23-78e0-5e96-3678-dafd4cec422e", @@ -135046,7 +135127,7 @@ "title": "Bring On The Rain" }, { - "artist": "Messina, Jo Dee", + "artist": "Jo Dee Messina", "disabled": false, "favorite": false, "guid": "940e14c7-3fa7-856b-2d91-32724661a4cb", @@ -135054,7 +135135,7 @@ "title": "Burn" }, { - "artist": "Messina, Jo Dee", + "artist": "Jo Dee Messina", "disabled": false, "favorite": false, "guid": "57819f1c-bc40-eb2b-3208-f068d1e184e2", @@ -135062,7 +135143,7 @@ "title": "I'm Alright" }, { - "artist": "Messina, Jo Dee", + "artist": "Jo Dee Messina", "disabled": false, "favorite": false, "guid": "cb994b92-a3c6-774b-c8bf-429ca76ea954", @@ -135070,7 +135151,7 @@ "title": "Lesson In Leavin'" }, { - "artist": "Messina, Jo Dee", + "artist": "Jo Dee Messina", "disabled": false, "favorite": false, "guid": "20bb3155-ea34-8260-fc65-716494299146", @@ -135078,7 +135159,7 @@ "title": "Stand Beside Me" }, { - "artist": "Michael, George", + "artist": "George Michael", "disabled": false, "favorite": false, "guid": "8dd17e80-fde2-261e-0f7e-38599b9ef25c", @@ -135086,7 +135167,7 @@ "title": "Faith" }, { - "artist": "Michael, George", + "artist": "George Michael", "disabled": false, "favorite": false, "guid": "4a33c987-7574-02c1-90a4-c5a2ef14290c", @@ -135094,7 +135175,7 @@ "title": "I Want Your Sex" }, { - "artist": "Michael, George", + "artist": "George Michael", "disabled": false, "favorite": false, "guid": "c11ae01c-0f48-ed57-799d-29f3158aa7a0", @@ -135102,7 +135183,7 @@ "title": "One More Try" }, { - "artist": "Miguel, Luis", + "artist": "Luis Miguel", "disabled": false, "favorite": false, "guid": "f22c538e-a05b-f397-829e-909bcbd4bed4", @@ -135126,7 +135207,7 @@ "title": "Una Voz En El Alma" }, { - "artist": "Mills, Stephanie", + "artist": "Stephanie Mills", "disabled": false, "favorite": false, "guid": "833ec988-3ccf-4fdd-ecb9-3bc95ab1b0d7", @@ -135134,7 +135215,7 @@ "title": "Never Knew Love Like This Before" }, { - "artist": "Milsap, Ronnie", + "artist": "Ronnie Milsap", "disabled": false, "favorite": false, "guid": "cfb8d818-6e17-e23b-eeea-386332c96f6c", @@ -135142,7 +135223,7 @@ "title": "It Was Almost Like A Song" }, { - "artist": "Milsap, Ronnie", + "artist": "Ronnie Milsap", "disabled": false, "favorite": false, "guid": "85cfd260-d5b7-3c79-a72b-2e1906566003", @@ -135150,7 +135231,7 @@ "title": "Let's Take The Long Way Around The World" }, { - "artist": "Milsap, Ronnie", + "artist": "Ronnie Milsap", "disabled": false, "favorite": false, "guid": "db8fce87-c5a4-babd-c6b4-9dc1356e2552", @@ -135158,7 +135239,7 @@ "title": "What A Difference You've Made In My Life" }, { - "artist": "Minogue, Kylie", + "artist": "Kylie Minogue", "disabled": false, "favorite": false, "guid": "e20d5869-bd1b-8eed-ec7a-a1ac03297dca", @@ -135190,7 +135271,7 @@ "title": "Work It" }, { - "artist": "Mitchell, Joni", + "artist": "Joni Mitchell", "disabled": false, "favorite": false, "guid": "e633e5d5-5bb8-47eb-f932-07e4538881d5", @@ -135198,7 +135279,7 @@ "title": "You Turn Me On I'm A Radio" }, { - "artist": "Money, Eddie", + "artist": "Eddie Money", "disabled": false, "favorite": false, "guid": "cc602a85-ed3e-5178-244a-a82d5ee716e9", @@ -135206,7 +135287,7 @@ "title": "Baby Hold On" }, { - "artist": "Money, Eddie", + "artist": "Eddie Money", "disabled": false, "favorite": false, "guid": "cb041f9c-dd29-e74b-619c-6e91983a6c31", @@ -135262,7 +135343,7 @@ "title": "If You Ever Stop Loving Me" }, { - "artist": "Montgomery, John Michael", + "artist": "John Michael Montgomery", "disabled": false, "favorite": false, "guid": "8e94de3f-a739-d56e-6da4-be334cfdba32", @@ -135270,7 +135351,7 @@ "title": "Be My Baby Tonight" }, { - "artist": "Montgomery, John Michael", + "artist": "John Michael Montgomery", "disabled": false, "favorite": false, "guid": "714405ea-6d49-fdef-3180-cb8af9c164ee", @@ -135278,7 +135359,7 @@ "title": "I Can Love You Like That" }, { - "artist": "Montgomery, John Michael", + "artist": "John Michael Montgomery", "disabled": false, "favorite": false, "guid": "599b367d-5892-33dc-4d3a-2bcd3b9f04f1", @@ -135286,7 +135367,7 @@ "title": "Letters From Home" }, { - "artist": "Montgomery, John Michael", + "artist": "John Michael Montgomery", "disabled": false, "favorite": false, "guid": "4d4ec69f-7701-d1fc-a87f-bc10922c2834", @@ -135294,7 +135375,7 @@ "title": "Letters From Home" }, { - "artist": "Moody Blues, The", + "artist": "The Moody Blues", "disabled": false, "favorite": false, "guid": "0311f3d9-a6ee-e067-0336-a487348b4232", @@ -135302,7 +135383,7 @@ "title": "Gemini Dream" }, { - "artist": "Moody Blues, The", + "artist": "The Moody Blues", "disabled": false, "favorite": false, "guid": "50a951b3-16a4-a6ea-4f13-4746818cc8c6", @@ -135310,7 +135391,7 @@ "title": "In Your Wildest Dreams" }, { - "artist": "Moody Blues, The", + "artist": "The Moody Blues", "disabled": false, "favorite": false, "guid": "324ed374-3e2f-26c9-dc90-82e14781242e", @@ -135318,7 +135399,7 @@ "title": "Nights In White Satin" }, { - "artist": "Moody Blues, The", + "artist": "The Moody Blues", "disabled": false, "favorite": false, "guid": "c779d6fc-32fb-3c7c-85c4-029374e3b269", @@ -135326,7 +135407,7 @@ "title": "Ride My See-Saw" }, { - "artist": "Moody Blues, The", + "artist": "The Moody Blues", "disabled": false, "favorite": false, "guid": "69301c6e-a62d-f372-9126-99d65225d26a", @@ -135334,7 +135415,7 @@ "title": "Story In Your Eyes" }, { - "artist": "Moody Blues, The", + "artist": "The Moody Blues", "disabled": false, "favorite": false, "guid": "13790949-08f7-6ba3-8a4a-dc845c4062c6", @@ -135342,7 +135423,7 @@ "title": "Tuesday Afternoon" }, { - "artist": "Motels, The", + "artist": "The Motels", "disabled": false, "favorite": false, "guid": "9cc2fe8c-d79a-1594-b2bf-26f1a891f7c9", @@ -135366,7 +135447,7 @@ "title": "Kyrie" }, { - "artist": "Mraz, Jason", + "artist": "Jason Mraz", "disabled": false, "favorite": false, "guid": "b174ecbe-b56a-60be-a881-6e4f815dc207", @@ -135374,7 +135455,7 @@ "title": "Remedy" }, { - "artist": "Mullins, Shawn", + "artist": "Shawn Mullins", "disabled": false, "favorite": false, "guid": "ba9ed303-3e21-9741-5c54-31276e8f75cf", @@ -135382,7 +135463,7 @@ "title": "Shimmer" }, { - "artist": "Murdock, Shirley", + "artist": "Shirley Murdock", "disabled": false, "favorite": false, "guid": "9d078b24-5507-5425-6478-41fe1b348926", @@ -135390,7 +135471,7 @@ "title": "As We Lay" }, { - "artist": "Murphy, Michael", + "artist": "Michael Murphy", "disabled": false, "favorite": false, "guid": "9f5444a6-f912-ac16-df4e-8d95e124dda0", @@ -135398,7 +135479,7 @@ "title": "Wildfire" }, { - "artist": "Murray, Anne & Dave Loggins", + "artist": "Anne Murray & Dave Loggins", "disabled": false, "favorite": false, "guid": "bbcca9f9-376e-ad58-bdd6-095108516f86", @@ -135406,7 +135487,7 @@ "title": "Nobody Loves Me Like You Do" }, { - "artist": "Murray, Anne", + "artist": "Anne Murray", "disabled": false, "favorite": false, "guid": "9a736ee2-974d-fdb8-eb1c-e3998bf3c5cf", @@ -135566,7 +135647,7 @@ "title": "Dilemma" }, { - "artist": "Nelson, Ricky", + "artist": "Ricky Nelson", "disabled": false, "favorite": false, "guid": "d2c45759-b2d4-df99-3b85-7af572f7482f", @@ -135574,7 +135655,7 @@ "title": "Garden Party" }, { - "artist": "Nelson, Ricky", + "artist": "Ricky Nelson", "disabled": false, "favorite": false, "guid": "a517a979-eebf-5b5e-05bc-4446183b8629", @@ -135582,7 +135663,7 @@ "title": "Hello Mary Lou" }, { - "artist": "Nelson, Ricky", + "artist": "Ricky Nelson", "disabled": false, "favorite": false, "guid": "920688cf-2f2a-7509-de70-6d683060a5ee", @@ -135590,7 +135671,7 @@ "title": "Poor Little Fool" }, { - "artist": "Nelson, Ricky", + "artist": "Ricky Nelson", "disabled": false, "favorite": false, "guid": "90dc6389-4706-abcc-1bad-89ad92c50086", @@ -135598,7 +135679,7 @@ "title": "Poor Little Fool" }, { - "artist": "Nelson, Ricky", + "artist": "Ricky Nelson", "disabled": false, "favorite": false, "guid": "ff082f38-16a9-ffab-c94f-26ed55a9ebfb", @@ -135614,7 +135695,7 @@ "title": "99 Red Balloons" }, { - "artist": "Neville, Aaron", + "artist": "Aaron Neville", "disabled": false, "favorite": false, "guid": "f6af5295-6e25-6661-2941-a0c26a394069", @@ -135622,7 +135703,7 @@ "title": "Tell It Like It Is" }, { - "artist": "Newton, Juice", + "artist": "Juice Newton", "disabled": false, "favorite": true, "guid": "71b4f19f-264d-0c0e-11a3-546298b81cf0", @@ -135630,7 +135711,7 @@ "title": "Break It To Me Gently" }, { - "artist": "Newton-John, Olivia & John Travolta", + "artist": "Olivia Newton-John & John Travolta", "disabled": false, "favorite": false, "guid": "d0f92c1e-41e5-be9c-8291-bfee13452403", @@ -135638,7 +135719,7 @@ "title": "(Duet) You're The One That I Want" }, { - "artist": "Newton-John, Olivia & John Travolta", + "artist": "Olivia Newton-John & John Travolta", "disabled": false, "favorite": false, "guid": "6c3bc3db-78a6-cf23-94d3-d6bbd2bd909b", @@ -135646,7 +135727,7 @@ "title": "Summer Nights" }, { - "artist": "Newton-John, Olivia & John Travolta", + "artist": "Olivia Newton-John & John Travolta", "disabled": false, "favorite": false, "guid": "39781249-342a-6253-5ddb-47013ee92f2b", @@ -135654,7 +135735,7 @@ "title": "Summer Nights" }, { - "artist": "Newton-John, Olivia", + "artist": "Olivia Newton-John & John Travolta", "disabled": false, "favorite": false, "guid": "6855f342-039d-89fe-9390-6e04cba39694", @@ -135662,7 +135743,7 @@ "title": "I Honestly Love You" }, { - "artist": "Newton-John, Olivia", + "artist": "Olivia Newton-John & John Travolta", "disabled": false, "favorite": false, "guid": "b3290df4-c360-1d1a-cd28-885862167d39", @@ -135670,7 +135751,7 @@ "title": "Let Me Be There" }, { - "artist": "Newton-John, Olivia", + "artist": "Olivia Newton-John & John Travolta", "disabled": false, "favorite": false, "guid": "62c3332d-9bbb-8458-ff24-55ce14e9bcda", @@ -135686,7 +135767,7 @@ "title": "This Town" }, { - "artist": "Nichols, Joe", + "artist": "Joe Nichols", "disabled": false, "favorite": false, "guid": "915d2a77-0a2d-54fa-ec0c-71ee76af8b98", @@ -135694,7 +135775,7 @@ "title": "Impossible" }, { - "artist": "Nichols, Joe", + "artist": "Joe Nichols", "disabled": false, "favorite": false, "guid": "8cc37351-0f68-a4fc-9cba-72fbf8d0a3c9", @@ -135710,7 +135791,7 @@ "title": "Lighthouse's Tale" }, { - "artist": "Nicks, Stevie & Don Henley", + "artist": "Stevie Nicks & Don Henley", "disabled": false, "favorite": false, "guid": "637c1052-6379-1f3c-8b77-995a96c7550a", @@ -135718,7 +135799,7 @@ "title": "Leather And Lace" }, { - "artist": "Nicks, Stevie & Tom Petty", + "artist": "Stevie Nicks & Tom Petty", "disabled": false, "favorite": false, "guid": "547ef367-cc50-eedf-67b2-a9993f9775c3", @@ -135726,7 +135807,7 @@ "title": "Stop Draggin' My Heart Around" }, { - "artist": "Nicks, Stevie", + "artist": "Stevie Nicks", "disabled": false, "favorite": false, "guid": "cda52c4e-6e79-8b12-5275-6045360a015c", @@ -135766,7 +135847,7 @@ "title": "You Know You're Right" }, { - "artist": "Nixon, Mojo", + "artist": "Mojo Nixon", "disabled": false, "favorite": false, "guid": "a7c5954e-2bda-968c-5a7d-72260eed2346", @@ -135838,7 +135919,7 @@ "title": "Tu" }, { - "artist": "Nugent, Ted", + "artist": "Ted Nugent", "disabled": false, "favorite": false, "guid": "2062f586-26d8-2164-1236-c8ac43969a4a", @@ -135854,7 +135935,7 @@ "title": "Girl Watcher" }, { - "artist": "O'kaysions, The", + "artist": "The O'kaysions", "disabled": false, "favorite": false, "guid": "631f0183-5e8d-9ca7-71bf-16cc13dcffc4", @@ -135862,7 +135943,7 @@ "title": "Girl Watcher" }, { - "artist": "O'Sullivan, Gilbert", + "artist": "Gilbert O'Sullivan", "disabled": false, "favorite": false, "guid": "0b075e60-b2a8-a18f-ba4b-4b45dfdcac1d", @@ -135886,7 +135967,7 @@ "title": "Champagne Supernova" }, { - "artist": "Ocean, Billy", + "artist": "Billy Ocean", "disabled": false, "favorite": false, "guid": "dbecdb5c-4fd5-3697-cd13-6cd03e88422f", @@ -135918,7 +135999,7 @@ "title": "As Long As He Needs Me" }, { - "artist": "Orbison, Roy", + "artist": "Roy Orbison", "disabled": false, "favorite": false, "guid": "824b5a4b-d28a-e5db-3cd3-0fdf193a9984", @@ -135926,7 +136007,7 @@ "title": "Crying" }, { - "artist": "Orbison, Roy", + "artist": "Roy Orbison", "disabled": false, "favorite": false, "guid": "f8a68e88-68f7-829f-dc03-85c9236af4b9", @@ -135934,7 +136015,7 @@ "title": "Dream Baby" }, { - "artist": "Orbison, Roy", + "artist": "Roy Orbison", "disabled": false, "favorite": false, "guid": "aed611e1-33b8-c0e3-1dd0-6efaa72dfcc2", @@ -135942,7 +136023,7 @@ "title": "In Dreams" }, { - "artist": "Orbison, Roy", + "artist": "Roy Orbison", "disabled": false, "favorite": false, "guid": "3cd73d5c-0f3b-2f2a-193f-e61188b2d569", @@ -135950,7 +136031,7 @@ "title": "Only The Lonely" }, { - "artist": "Orbison, Roy", + "artist": "Roy Orbison", "disabled": false, "favorite": false, "guid": "a8ede595-4dc5-893b-1931-37d3fdb627b9", @@ -135958,7 +136039,7 @@ "title": "Pretty Woman" }, { - "artist": "Orbison, Roy", + "artist": "Roy Orbison", "disabled": false, "favorite": false, "guid": "a8686c55-36ba-509a-fae6-a20e9137f90f", @@ -136014,7 +136095,7 @@ "title": "Youth Of A Nation" }, { - "artist": "Paisley, Brad", + "artist": "Brad Paisley", "disabled": false, "favorite": false, "guid": "c4ba8b49-cf7b-9dfe-531d-a25efb1ec549", @@ -136022,7 +136103,7 @@ "title": "I'm Gonna Miss Her" }, { - "artist": "Pajama Game, The", + "artist": "The Pajama Game", "disabled": false, "favorite": false, "guid": "86c4867a-7ced-ca64-1d8c-5daf728f05be", @@ -136030,7 +136111,7 @@ "title": "Hernando's Hideaway" }, { - "artist": "Palmer, Robert", + "artist": "Robert Palmer", "disabled": false, "favorite": false, "guid": "8f25b73e-2205-5729-150c-4c1896b6d59b", @@ -136038,7 +136119,7 @@ "title": "Bad Case Of Loving You" }, { - "artist": "Palmer, Robert", + "artist": "Robert Palmer", "disabled": false, "favorite": false, "guid": "87c3d39d-e38d-d7b6-0357-da4dbdf37dfd", @@ -136046,7 +136127,7 @@ "title": "I Didn't Mean To Turn You On" }, { - "artist": "Palmer, Robert", + "artist": "Robert Palmer", "disabled": false, "favorite": false, "guid": "65651ade-1a90-8a58-a245-48e8fd32f041", @@ -136054,7 +136135,7 @@ "title": "Simply Irresistable" }, { - "artist": "Parton, Dolly", + "artist": "Dolly Parton", "disabled": false, "favorite": false, "guid": "509c1927-a0d1-76cf-e6fe-8373fb5a3da2", @@ -136062,7 +136143,7 @@ "title": "Coat Of Many Colors" }, { - "artist": "Parton, Dolly", + "artist": "Dolly Parton", "disabled": false, "favorite": false, "guid": "93fad1f2-1be5-c065-f79a-ecb0f7fa1ad4", @@ -136070,7 +136151,7 @@ "title": "Coat Of Many Colors" }, { - "artist": "Parton, Dolly", + "artist": "Dolly Parton", "disabled": false, "favorite": false, "guid": "138ef7ee-6783-f205-140b-aff1a699a24c", @@ -136078,7 +136159,7 @@ "title": "Heartbreaker" }, { - "artist": "Parton, Dolly", + "artist": "Dolly Parton", "disabled": false, "favorite": false, "guid": "6959a7b6-4be9-0c57-5f9b-67e21eaea4e9", @@ -136086,7 +136167,7 @@ "title": "Here You Come Again" }, { - "artist": "Parton, Dolly", + "artist": "Dolly Parton", "disabled": false, "favorite": false, "guid": "c123d1af-13c6-743f-23ce-dcef1a3896c5", @@ -136094,7 +136175,7 @@ "title": "I Will Always Love You" }, { - "artist": "Parton, Dolly", + "artist": "Dolly Parton", "disabled": false, "favorite": false, "guid": "ecea3663-7549-700b-f71f-6494e1bf7454", @@ -136118,7 +136199,7 @@ "title": "Because The Night" }, { - "artist": "Paul, Sean", + "artist": "Sean Paul", "disabled": false, "favorite": false, "guid": "bd06d2f1-a2b7-d569-d34e-490fa4e41fd5", @@ -136126,7 +136207,7 @@ "title": "I'm Still In Love With You" }, { - "artist": "Paycheck, Johnny", + "artist": "Johnny Paycheck", "disabled": false, "favorite": false, "guid": "72c5d511-4643-d287-f8ab-986de567bcdd", @@ -136134,7 +136215,7 @@ "title": "Take This Job And Shove It" }, { - "artist": "Payne, Freda", + "artist": "Freda Payne", "disabled": false, "favorite": false, "guid": "5e299fd0-2f7c-0b32-9240-0019e1591fd0", @@ -136150,7 +136231,7 @@ "title": "Love Makes Things Happen" }, { - "artist": "Peniston, Ce Ce", + "artist": "Ce Ce Peniston", "disabled": false, "favorite": false, "guid": "8b06c3d0-6864-9e9c-6d2e-333318d75423", @@ -136158,7 +136239,7 @@ "title": "Movin' On" }, { - "artist": "Perry, Steve", + "artist": "Steve Perry", "disabled": false, "favorite": false, "guid": "2ffe5cec-42e1-3082-21b0-cbd00222e4fd", @@ -136190,7 +136271,7 @@ "title": "Wish You Were Mine" }, { - "artist": "Phillips, Phil & Twighlights", + "artist": "Phil Phillips & Twighlights", "disabled": false, "favorite": false, "guid": "37f45a7c-8b16-1232-fa73-d5976f5d3319", @@ -136206,7 +136287,7 @@ "title": "Free" }, { - "artist": "Pickett, Wilson", + "artist": "Wilson Pickett", "disabled": false, "favorite": false, "guid": "5819ff5c-d598-ac03-0660-f06c2f0814c4", @@ -136214,7 +136295,7 @@ "title": "634-5789" }, { - "artist": "Pickett, Wilson", + "artist": "Wilson Pickett", "disabled": false, "favorite": false, "guid": "844aab00-a3d7-a1bc-c1b4-5e961b006627", @@ -136222,7 +136303,7 @@ "title": "Funky Broadway" }, { - "artist": "Pickett, Wilson", + "artist": "Wilson Pickett", "disabled": false, "favorite": false, "guid": "0ea2c06b-de72-028f-0631-9a6844f57a66", @@ -136230,7 +136311,7 @@ "title": "Funky Broadway" }, { - "artist": "Pickett, Wilson", + "artist": "Wilson Pickett", "disabled": false, "favorite": false, "guid": "585f305a-27a9-d764-97d7-cd683036ba34", @@ -136238,7 +136319,7 @@ "title": "In The Midnight Hour" }, { - "artist": "Pickett, Wilson", + "artist": "Wilson Pickett", "disabled": false, "favorite": false, "guid": "9d9f468b-84f0-0a6f-6b0c-3ef5e6190b96", @@ -136246,7 +136327,7 @@ "title": "Land Of 1000 Dancers" }, { - "artist": "Pickett, Wilson", + "artist": "Wilson Pickett", "disabled": false, "favorite": false, "guid": "13941246-7f12-2149-eb12-b9f758f113c7", @@ -136342,7 +136423,7 @@ "title": "Twilight Time" }, { - "artist": "Platters, The", + "artist": "The Platters", "disabled": false, "favorite": false, "guid": "a3bf69a9-a75f-f419-f53a-a4539fd47206", @@ -136350,7 +136431,7 @@ "title": "My Prayer" }, { - "artist": "Poindexter, Buster", + "artist": "Buster Poindexter", "disabled": false, "favorite": false, "guid": "6b97f546-3036-bc63-32b3-8f71cc6fcf8a", @@ -136358,7 +136439,7 @@ "title": "Hot Hot Hot" }, { - "artist": "Pointer Sisters, The", + "artist": "The Pointer Sisters", "disabled": false, "favorite": false, "guid": "ff0b0acd-590e-3e7d-f9b9-2062a7be679e", @@ -136390,7 +136471,7 @@ "title": "Wrapped Around Your Finger" }, { - "artist": "Powell, Jesse", + "artist": "Jesse Powell", "disabled": false, "favorite": false, "guid": "f25d9813-533a-f597-931c-4edb76b98ee2", @@ -136398,7 +136479,7 @@ "title": "You" }, { - "artist": "Powell, Jesse", + "artist": "Jesse Powell", "disabled": false, "favorite": false, "guid": "d8ec2187-33fb-9a28-4736-b31b3460431b", @@ -136422,7 +136503,7 @@ "title": "Lump" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "42276989-1d30-e0b6-6caa-e34a2ce56552", @@ -136430,7 +136511,7 @@ "title": "All Shook Up" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "ec176fb8-aa4c-5079-87ac-33e9efd86989", @@ -136438,7 +136519,7 @@ "title": "Burning Love" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "d1788127-ab57-dbcc-e5cc-6f9765f672f5", @@ -136446,7 +136527,7 @@ "title": "Can't Help Falling In Love" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "fb3a921c-2329-9702-d579-c7d8a93bc350", @@ -136454,7 +136535,7 @@ "title": "Don't" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "24e8d170-61a5-3a45-4840-bd1a299152bb", @@ -136462,7 +136543,7 @@ "title": "Fool Such As I" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "ecc17463-01bc-36f0-4f49-a0218514faa8", @@ -136470,7 +136551,7 @@ "title": "G.I. Blues" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "f0eda50f-cd2a-bf42-7d72-27869fd0e36a", @@ -136478,7 +136559,7 @@ "title": "Good Luck Charm" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "2608ebc6-7022-3f21-b36b-8412c5b78ef6", @@ -136486,7 +136567,7 @@ "title": "Good Luck Charm" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "3c1a2c1d-8e6c-c88d-0d36-18d3ee1ac514", @@ -136494,7 +136575,7 @@ "title": "Guitar Man" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "1b1e87e6-53c0-01f6-603b-5bc194a9d88c", @@ -136502,7 +136583,7 @@ "title": "Hard Headed Woman" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "cd15b5f2-69e3-a8c2-f960-66253e3b2eff", @@ -136510,7 +136591,7 @@ "title": "Heartbreak Hotel" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "add7a0b5-b856-b676-1a2e-e077c314ad7c", @@ -136518,7 +136599,7 @@ "title": "Hound Dog" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "70bd6ce8-8782-1d9f-131e-11a02adcf698", @@ -136526,7 +136607,7 @@ "title": "Hound Dog" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "62df35b6-200e-b858-2b2f-b55598a401ec", @@ -136534,7 +136615,7 @@ "title": "I Want You, I Need You, I Love You" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "13c3f9f5-45ec-0c7f-8fd3-1e8c7f63178e", @@ -136542,7 +136623,7 @@ "title": "I Want You, I Need You, I Love You" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "46c0671c-c40f-3cce-7ddc-597cd8858fd3", @@ -136550,7 +136631,7 @@ "title": "In The Ghetto" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "2b0b6c90-81ff-d5d5-6690-0b8624c18814", @@ -136558,7 +136639,7 @@ "title": "It's Now Or Never" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "772168eb-ae0a-4b65-51ec-c699071d5e66", @@ -136566,7 +136647,7 @@ "title": "It's Now Or Never" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "16941d77-e3bd-e21e-7d87-99775f7b8a98", @@ -136574,7 +136655,7 @@ "title": "It's Over" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "692a0e39-48cf-085e-a6a7-3d3b8c2c48c9", @@ -136582,7 +136663,7 @@ "title": "Jailhouse Rock" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "e46939e4-c045-d2cf-123f-dac4c1b56587", @@ -136590,7 +136671,7 @@ "title": "King Creole" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "bd27daa2-538e-56ee-61a2-d877a49ce8f0", @@ -136598,7 +136679,7 @@ "title": "Lawdy Miss Clawdy" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "94e63290-8219-41cf-3c31-c144c523f6b0", @@ -136606,7 +136687,7 @@ "title": "Little Less Conversation" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "77c7a748-e51f-e490-0ea3-f8e439172da6", @@ -136614,7 +136695,7 @@ "title": "Love Letters In The Sand" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "537ef306-61b9-9d6e-3c4e-6730a1157737", @@ -136622,7 +136703,7 @@ "title": "Love Me Tender" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "375081fa-75e6-8b47-c830-e8006c78cddb", @@ -136630,7 +136711,7 @@ "title": "Love Me Tender" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "a57703c5-0115-256d-bfa8-9e2d217cbeed", @@ -136638,7 +136719,7 @@ "title": "Memphis Tenessee" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "4bbb92df-9c70-c754-daf0-ddc9c76a25ef", @@ -136646,7 +136727,7 @@ "title": "Moody Blue" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "86cf7700-2d5c-ada4-8e3c-c548e6d4c04e", @@ -136654,7 +136735,7 @@ "title": "Of His Latest Flame," }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "f530654d-1e04-539b-fe46-6730a97ca1af", @@ -136662,7 +136743,7 @@ "title": "Return To Sender" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "b4fd1650-c451-7f46-033d-459c7d18c61c", @@ -136670,7 +136751,7 @@ "title": "Return To Sender." }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "1c321310-0151-0c04-ea17-70dbc50dc7f3", @@ -136678,7 +136759,7 @@ "title": "She's Not You" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "7e0a01b2-7ecb-f235-593f-f10b544f4255", @@ -136686,7 +136767,7 @@ "title": "Stuck On You" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "1ca63cc7-29f9-b50b-b5a8-8d3d79355936", @@ -136694,7 +136775,7 @@ "title": "Surrender" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "1d034de4-209c-fefa-6ae0-6e324a6fd1a6", @@ -136702,7 +136783,7 @@ "title": "Suspicious Minds" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "5401214a-c572-7fd1-fef6-fad7ec39e01a", @@ -136710,7 +136791,7 @@ "title": "Teddy Bear" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "698a10fe-c33c-7ddf-fc70-740e09b329f4", @@ -136718,7 +136799,7 @@ "title": "Teddy Bear" }, { - "artist": "Presley, Elvis", + "artist": "Elvis Presley", "disabled": false, "favorite": false, "guid": "50aa20d8-b074-1bf7-e4b6-dc5f144e877b", @@ -136726,7 +136807,7 @@ "title": "That's All Right" }, { - "artist": "Presley, Lisa Marie", + "artist": "Lisa Marie Presley", "disabled": false, "favorite": false, "guid": "7ae7b183-2fdb-cce3-d39e-ac57a3f5dd86", @@ -136742,7 +136823,7 @@ "title": "Brass In Pocket" }, { - "artist": "Pretenders, The", + "artist": "The Pretenders", "disabled": false, "favorite": false, "guid": "bd7cb893-194b-b468-359a-6ed2101e763d", @@ -136750,7 +136831,7 @@ "title": "Back On The Chain Gang" }, { - "artist": "Pride, Charley", + "artist": "Charley Pride", "disabled": false, "favorite": false, "guid": "db816621-5150-033e-09b9-ae98d3c7de5e", @@ -136758,7 +136839,7 @@ "title": "She's Just An Old Love Turned Memory" }, { - "artist": "Primavera, Conjunto", + "artist": "Conjunto Primavera", "disabled": false, "favorite": false, "guid": "777d8ccb-3f8f-fb49-8e69-3e352d3e34d1", @@ -136774,7 +136855,7 @@ "title": "Whiter Shade Of Pale" }, { - "artist": "Proctor, Rachel", + "artist": "Rachel Proctor", "disabled": false, "favorite": false, "guid": "61fac8f2-4891-4e70-57e3-e312317637fd", @@ -136782,7 +136863,7 @@ "title": "Days Like This" }, { - "artist": "Proctor, Rachel", + "artist": "Rachel Proctor", "disabled": false, "favorite": false, "guid": "a9c7e697-a851-c172-ee96-1e7ea4a5e2f1", @@ -136806,7 +136887,7 @@ "title": "Blurry" }, { - "artist": "Punify, James & Bobby", + "artist": "James Punify & Bobby", "disabled": false, "favorite": false, "guid": "6aac3ef8-18e2-d781-68cd-df07c4232c93", @@ -136926,7 +137007,7 @@ "title": "Great Beyond" }, { - "artist": "Rabbit, Eddie & Crystal Gayle", + "artist": "Eddie Rabbit & Crystal Gayle", "disabled": false, "favorite": false, "guid": "8323d837-69e8-69c5-1c12-41e83ba29984", @@ -136950,7 +137031,7 @@ "title": "Bulls On Parade" }, { - "artist": "Raitt, Bonnie", + "artist": "Bonnie Raitt", "disabled": false, "favorite": false, "guid": "784024e2-0924-2a33-0ec3-13f4b9381e16", @@ -137022,7 +137103,7 @@ "title": "Round & Round" }, { - "artist": "Rawls, Lou", + "artist": "Lou Rawls", "disabled": false, "favorite": false, "guid": "501079c9-8613-27f2-42d2-a4866efd9c62", @@ -137054,7 +137135,7 @@ "title": "By The Way" }, { - "artist": "Redding, Otis", + "artist": "Otis Redding", "disabled": false, "favorite": false, "guid": "04b976db-7a5d-b9c7-1bd9-6369865864dc", @@ -137062,7 +137143,7 @@ "title": "Dock Of The Bay" }, { - "artist": "Redding, Otis", + "artist": "Otis Redding", "disabled": false, "favorite": false, "guid": "c4877e60-03b0-9c65-125e-7d47e35181a6", @@ -137070,7 +137151,7 @@ "title": "Fa-Fa-Fa-Fa-Fa" }, { - "artist": "Reed, Jerry", + "artist": "Jerry Reed", "disabled": false, "favorite": false, "guid": "02757226-6e6d-0461-197c-da6cca9494d6", @@ -137078,7 +137159,7 @@ "title": "Eastbound And Down" }, { - "artist": "Rich, Charlie", + "artist": "Charlie Rich", "disabled": false, "favorite": false, "guid": "33185383-b241-5ed5-9f84-2a1c9e4bba85", @@ -137086,7 +137167,7 @@ "title": "Rollin' With The Flow" }, { - "artist": "Richie, Lionel & Diana Ross", + "artist": "Lionel Richie & Diana Ross", "disabled": false, "favorite": false, "guid": "8be6b644-731c-08ff-28e2-0b3d6f04eee3", @@ -137094,7 +137175,7 @@ "title": "(Duet) Endless Love" }, { - "artist": "Richie, Lionel & Diana Ross", + "artist": "Lionel Richie & Diana Ross", "disabled": false, "favorite": false, "guid": "33e74805-9438-9f57-48a2-0fa1bacd3c5d", @@ -137102,7 +137183,7 @@ "title": "Endless Love" }, { - "artist": "Richie, Lionel", + "artist": "Lionel Richie", "disabled": false, "favorite": false, "guid": "e3eaec07-7108-bc0b-2284-d6fe8203de1b", @@ -137118,7 +137199,7 @@ "title": "Unchained Melody" }, { - "artist": "Rimes, LeAnn", + "artist": "LeAnn Rimes", "disabled": false, "favorite": false, "guid": "b433cdc9-a829-377e-8872-6c0125360d14", @@ -137126,7 +137207,7 @@ "title": "Big Deal" }, { - "artist": "Rimes, LeAnn", + "artist": "LeAnn Rimes", "disabled": false, "favorite": false, "guid": "d6a5bcf3-9709-1004-b123-6e5934f47f53", @@ -137134,7 +137215,7 @@ "title": "But I Do Love You" }, { - "artist": "Rimes, LeAnn", + "artist": "LeAnn Rimes", "disabled": false, "favorite": false, "guid": "03e3f6af-1381-a01a-ecc8-f15c85a94383", @@ -137142,7 +137223,7 @@ "title": "Can't Fight The Moonlight" }, { - "artist": "Rimes, Leann", + "artist": "Leann Rimes", "disabled": false, "favorite": false, "guid": "1a5b78b2-146c-ba30-02e9-625d3065747c", @@ -137150,7 +137231,7 @@ "title": "Nothin' 'bout Love Makes Sense" }, { - "artist": "Rimes, LeAnn", + "artist": "LeAnn Rimes", "disabled": false, "favorite": false, "guid": "c0298340-3461-3e7d-5c97-05efc7127f40", @@ -137158,7 +137239,7 @@ "title": "One Way Ticket" }, { - "artist": "Rimes, LeAnn", + "artist": "LeAnn Rimes", "disabled": false, "favorite": false, "guid": "d926d433-af87-146d-8b10-563a617d31f5", @@ -137166,7 +137247,7 @@ "title": "Soon" }, { - "artist": "Ripperton, Minnie", + "artist": "Minnie Ripperton", "disabled": false, "favorite": false, "guid": "29c07033-6ce1-7287-8367-242a7f3dd175", @@ -137174,7 +137255,7 @@ "title": "Lovin' You" }, { - "artist": "Ripperton, Minnie", + "artist": "Minnie Ripperton", "disabled": false, "favorite": false, "guid": "3b69c2f7-c97e-47ab-cecf-84254f36a2d3", @@ -137190,7 +137271,7 @@ "title": "Party Like A Russian" }, { - "artist": "Roberts, Julie", + "artist": "Julie Roberts", "disabled": false, "favorite": false, "guid": "b29a91c8-e2fc-042d-4bb6-395f17f27364", @@ -137198,7 +137279,7 @@ "title": "Break Down Here" }, { - "artist": "Robinson, Smokey & Miracles", + "artist": "Smokey Robinson & Miracles", "disabled": false, "favorite": false, "guid": "5dc6882b-4cd1-049f-0480-29a18c69d3a1", @@ -137206,7 +137287,7 @@ "title": "Tracks Of My Tears" }, { - "artist": "Robinson, Vickie Sue", + "artist": "Vickie Sue Robinson", "disabled": false, "favorite": false, "guid": "0ce1baef-d7f0-447a-6d18-1654c39a1129", @@ -137214,7 +137295,7 @@ "title": "Turn The Beat Around" }, { - "artist": "Robison, Charlie", + "artist": "Charlie Robison", "disabled": false, "favorite": false, "guid": "0be3f6ec-ebfe-18db-d9b8-bd99b7c58375", @@ -137222,7 +137303,7 @@ "title": "My Hometown" }, { - "artist": "Roe, Tommy", + "artist": "Tommy Roe", "disabled": false, "favorite": false, "guid": "36b89d53-5fcb-1004-bb8f-daac37e76eaa", @@ -137230,7 +137311,7 @@ "title": "Sheila" }, { - "artist": "Rogers, Kenny & Dolly Parton", + "artist": "Kenny Rogers & Dolly Parton", "disabled": false, "favorite": true, "guid": "2f71a51d-eeb4-f8e0-7e65-ec1b1fcaaf27", @@ -137238,7 +137319,7 @@ "title": "Islands In The Stream" }, { - "artist": "Rogers, Kenny & Dottie West", + "artist": "Kenny Rogers & Dottie West", "disabled": false, "favorite": false, "guid": "a2bf33c4-efe7-66ca-df2b-b00f785ea779", @@ -137246,7 +137327,7 @@ "title": "Every Time Two Fools Collide" }, { - "artist": "Rogers, Kenny", + "artist": "Kenny Rogers", "disabled": false, "favorite": false, "guid": "3ca031db-259f-7a03-9c7f-05d7e0150527", @@ -137254,7 +137335,7 @@ "title": "Buy Me A Rose" }, { - "artist": "Rogers, Kenny", + "artist": "Kenny Rogers", "disabled": false, "favorite": false, "guid": "3f5dddb9-9605-5fe9-0bb6-8523ef9c1024", @@ -137262,7 +137343,7 @@ "title": "Daytime Friends" }, { - "artist": "Rogers, Kenny", + "artist": "Kenny Rogers", "disabled": false, "favorite": false, "guid": "cc991118-b9c8-bc5e-2847-d284d487bd6d", @@ -137270,7 +137351,7 @@ "title": "Gambler, The" }, { - "artist": "Rogers, Kenny", + "artist": "Kenny Rogers", "disabled": false, "favorite": false, "guid": "a8a56720-cd3a-168c-e6f5-bf4625caf5c7", @@ -137278,7 +137359,7 @@ "title": "I'm Missing You" }, { - "artist": "Rogers, Kenny", + "artist": "Kenny Rogers", "disabled": false, "favorite": false, "guid": "7858afb7-e152-30c9-f90f-e9de9ea0b60d", @@ -137286,7 +137367,7 @@ "title": "Love The World Away" }, { - "artist": "Rogers, Kenny", + "artist": "Kenny Rogers", "disabled": false, "favorite": false, "guid": "400b4757-ecdb-b78d-1532-84c22bd21d94", @@ -137294,7 +137375,7 @@ "title": "Lucille" }, { - "artist": "Rojas, Tito", + "artist": "Tito Rojas", "disabled": false, "favorite": false, "guid": "10921da7-1cd9-9777-5efe-23e9ca06b25f", @@ -137310,7 +137391,7 @@ "title": "Talking In Your Sleep" }, { - "artist": "Ronstadt, Linda & Aaron Neville", + "artist": "Linda Ronstadt & Aaron Neville", "disabled": false, "favorite": false, "guid": "df90f4ac-638c-ac39-55f7-4e681ac24929", @@ -137318,7 +137399,7 @@ "title": "(Duet) All My Life" }, { - "artist": "Ronstadt, Linda & Aaron Neville", + "artist": "Linda Ronstadt & Aaron Neville", "disabled": false, "favorite": false, "guid": "43d82e9a-52e6-7b17-c812-2bc9c515db5a", @@ -137326,7 +137407,7 @@ "title": "(Duet) Don't Know Much" }, { - "artist": "Ronstadt, Linda & Aaron Neville", + "artist": "Linda Ronstadt & Aaron Neville", "disabled": false, "favorite": false, "guid": "67da7688-a13c-9940-ece6-0b217372c16c", @@ -137334,7 +137415,7 @@ "title": "When Something Is Wrong With My Baby" }, { - "artist": "Ronstadt, Linda & James Ingram", + "artist": "Linda Ronstadt & James Ingram", "disabled": false, "favorite": false, "guid": "277e9bbb-1208-51bf-b0d2-01028efb7c52", @@ -137342,7 +137423,7 @@ "title": "Somewhere Out There" }, { - "artist": "Ronstadt, Linda", + "artist": "Linda Ronstadt", "disabled": false, "favorite": false, "guid": "5d3d5e28-9970-a2db-3787-1d33ed7a4c75", @@ -137358,7 +137439,7 @@ "title": "I'm Shakin'" }, { - "artist": "Ross, Diana", + "artist": "Diana Ross", "disabled": false, "favorite": false, "guid": "750666ac-5e8e-09c2-f3ea-ac4c8e4cf6d8", @@ -137366,7 +137447,7 @@ "title": "Ain't No Mountain High Enough" }, { - "artist": "Ross, Diana", + "artist": "Diana Ross", "disabled": false, "favorite": false, "guid": "e128131d-bed8-6386-c506-629cf0d929a7", @@ -137374,7 +137455,7 @@ "title": "Touch Me In The Morning" }, { - "artist": "Roth, David Lee", + "artist": "David Lee Roth", "disabled": false, "favorite": false, "guid": "df6cea04-dfd7-fd3f-cd6f-101f6ef8ab61", @@ -137382,7 +137463,7 @@ "title": "Just A Gigolo" }, { - "artist": "Rowland, Kelly", + "artist": "Kelly Rowland", "disabled": false, "favorite": false, "guid": "54a54e9e-2621-64d7-1d1f-8951d2631c62", @@ -137414,7 +137495,7 @@ "title": "Someone To Love You" }, { - "artist": "Ruffin, Jimmy", + "artist": "Jimmy Ruffin", "disabled": false, "favorite": false, "guid": "5be42bb6-7e7a-17af-bfa2-1c4cb19ea324", @@ -137446,7 +137527,7 @@ "title": "You Be Illin'" }, { - "artist": "Runga, Bic", + "artist": "Bic Runga", "disabled": false, "favorite": false, "guid": "e101b507-a0b9-f9bb-7109-9353f4334e0e", @@ -137486,7 +137567,7 @@ "title": "When Something Is Wrong With My Baby" }, { - "artist": "Santa Rosa, Gilberto", + "artist": "Gilberto Santa Rosa", "disabled": false, "favorite": false, "guid": "ad708374-6533-f29c-2294-f5d272232912", @@ -137510,7 +137591,7 @@ "title": "Game Of Love, The" }, { - "artist": "Santana & The Product G&B", + "artist": "Santana & The Product G & B", "disabled": false, "favorite": false, "guid": "67e1896a-6b48-6759-28d5-ea907d82adad", @@ -137542,7 +137623,7 @@ "title": "18 Days" }, { - "artist": "Sayer, Leo", + "artist": "Leo Sayer", "disabled": false, "favorite": false, "guid": "42bcbe39-796d-3064-847b-25305b3aaffb", @@ -137550,7 +137631,7 @@ "title": "When I Need You" }, { - "artist": "Scaggs, Boz", + "artist": "Boz Scaggs", "disabled": false, "favorite": false, "guid": "29e6a913-0642-6e3c-73ec-c77ef2b5dee4", @@ -137558,7 +137639,7 @@ "title": "Lido Shuffle" }, { - "artist": "Scaggs, Boz", + "artist": "Boz Scaggs", "disabled": false, "favorite": false, "guid": "85fa5faa-38f8-ac90-2096-6202c6a60bde", @@ -137598,7 +137679,7 @@ "title": "Gimme The Light" }, { - "artist": "Sean, Paul", + "artist": "Paul Sean", "disabled": false, "favorite": false, "guid": "c199b05d-9d80-9b27-92ca-6f0b822f50b4", @@ -137606,7 +137687,7 @@ "title": "Get Busy" }, { - "artist": "Sebastian, Joan", + "artist": "Joan Sebastian", "disabled": false, "favorite": false, "guid": "7c3a6556-bae5-4ef0-fe61-1745354de29b", @@ -137622,7 +137703,7 @@ "title": "Careless Whisper" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "e6abe72a-e6ae-b43d-206d-eacdafaa3c10", @@ -137630,7 +137711,7 @@ "title": "Against The Wind" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "4bffa665-2310-0df0-60d8-d2029daa4586", @@ -137638,7 +137719,7 @@ "title": "C'est La Vie" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "9bad694e-decc-756a-a7de-858e0badfa7d", @@ -137646,7 +137727,7 @@ "title": "Fire Lake" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "f296cd76-dd09-06fd-9da3-73dedf5c3535", @@ -137654,7 +137735,7 @@ "title": "Hollywood Nights" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "61313637-f290-88f9-9ba9-9163f75fa2e6", @@ -137662,7 +137743,7 @@ "title": "Hollywood Nights" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "58a1cb6a-d2e1-2cb1-beea-c5dc2e1f3b3b", @@ -137670,7 +137751,7 @@ "title": "Like A Rock" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "4c760b11-ccce-3a56-834a-c92dc2e63b27", @@ -137678,7 +137759,7 @@ "title": "Mainstreet" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "18e81fe2-e6a2-0295-6f4b-85eedb5e6980", @@ -137686,7 +137767,7 @@ "title": "Mainstreet" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "3cf621d2-7559-2545-6677-84b08f9bb2a1", @@ -137694,7 +137775,7 @@ "title": "Night Moves" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "1ac2371e-4c70-5324-e2ca-c49821bab220", @@ -137702,7 +137783,7 @@ "title": "Old Time Rock & Roll" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "887428e4-e243-e603-ae24-3d7cdd24154e", @@ -137710,7 +137791,7 @@ "title": "Old Time Rock 'n Roll" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "45453693-8601-3eb6-9c88-fd828751e677", @@ -137718,7 +137799,7 @@ "title": "Roll Me Away" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "9d116032-1648-3f66-e113-3f3b42114bea", @@ -137726,7 +137807,7 @@ "title": "Shakedown" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "8f85f6bc-63c3-5abf-d3d7-236a996a787e", @@ -137734,7 +137815,7 @@ "title": "Shame On The Moon" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "b2796b3e-f4ac-092c-139b-8cd4b86f50c4", @@ -137742,7 +137823,7 @@ "title": "Still The Same" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "5f1acfe5-94b6-7a74-a759-3194e9c0010c", @@ -137750,7 +137831,7 @@ "title": "Still The Same" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "09e3798e-718f-eac5-12b4-e6a566acea49", @@ -137758,7 +137839,7 @@ "title": "Tryin' To Live My Life Without You" }, { - "artist": "Seger, Bob", + "artist": "Bob Seger", "disabled": false, "favorite": false, "guid": "6a73005a-3993-8d1c-dffb-765a2ece0d1f", @@ -137814,7 +137895,7 @@ "title": "Whenever Wherever" }, { - "artist": "Shannon, Del", + "artist": "Del Shannon", "disabled": false, "favorite": false, "guid": "170f7cab-6376-76cb-5c10-3ddd6b692cd8", @@ -137838,7 +137919,7 @@ "title": "I Will, But" }, { - "artist": "Shelton, Blake", + "artist": "Blake Shelton", "disabled": false, "favorite": false, "guid": "261c2b08-8c06-3f2b-2a1d-dfce716e1c99", @@ -137846,7 +137927,7 @@ "title": "Ol' Red" }, { - "artist": "Shelton, Blake", + "artist": "Blake Shelton", "disabled": false, "favorite": false, "guid": "17088ecd-fd17-239c-558b-6d98ca24d950", @@ -137870,7 +137951,7 @@ "title": "Daddy's Home" }, { - "artist": "Shepard, Vonda & Dan Hill", + "artist": "Vonda Shepard & Dan Hill", "disabled": false, "favorite": false, "guid": "16c80494-c803-194b-e313-5538f57770ed", @@ -137926,7 +138007,7 @@ "title": "Scarborough Fair" }, { - "artist": "Simon, Carly", + "artist": "Carly Simon", "disabled": false, "favorite": false, "guid": "8800a275-777b-73e3-0f90-b807ccb4b305", @@ -137934,7 +138015,7 @@ "title": "You Belond To Me" }, { - "artist": "Simone, Nina", + "artist": "Nina Simone", "disabled": false, "favorite": false, "guid": "07766f1b-f6bb-64b7-9de2-d37562694637", @@ -137942,7 +138023,7 @@ "title": "Don't Let Me Be Misunderstood" }, { - "artist": "Simone, Nina", + "artist": "Nina Simone", "disabled": false, "favorite": false, "guid": "1e452cc6-767f-2bd4-db95-7f41345409ce", @@ -137950,7 +138031,7 @@ "title": "I Loves You, Porgy" }, { - "artist": "Simone, Nina", + "artist": "Nina Simone", "disabled": false, "favorite": false, "guid": "20c6e89c-cff7-6745-e62c-f809100e832f", @@ -137958,7 +138039,7 @@ "title": "I Put A Spell On You" }, { - "artist": "Simone, Nina", + "artist": "Nina Simone", "disabled": false, "favorite": false, "guid": "7015ac5f-2745-6e1b-f422-17bea273d19d", @@ -137966,7 +138047,7 @@ "title": "Little Girl Blue" }, { - "artist": "Simone, Nina", + "artist": "Nina Simone", "disabled": false, "favorite": false, "guid": "c50281ec-a8a5-40de-42c9-c24ef6c4d67d", @@ -137974,7 +138055,7 @@ "title": "Love Me Or Leave Me" }, { - "artist": "Simone, Nina", + "artist": "Nina Simone", "disabled": false, "favorite": false, "guid": "6e3386b1-b3b6-fb7c-6797-066b6b585a7b", @@ -137982,7 +138063,7 @@ "title": "Mississippi Goddam" }, { - "artist": "Simone, Nina", + "artist": "Nina Simone", "disabled": false, "favorite": false, "guid": "06b7a3c0-b732-bab7-aa23-f8f813711f38", @@ -137990,7 +138071,7 @@ "title": "My Baby Just Cares For Me" }, { - "artist": "Simone, Nina", + "artist": "Nina Simone", "disabled": false, "favorite": false, "guid": "8205f2e7-1427-2c06-b66e-99222d21462d", @@ -137998,7 +138079,7 @@ "title": "See Line Woman" }, { - "artist": "Simone, Nina", + "artist": "Nina Simone", "disabled": false, "favorite": false, "guid": "9bce491c-d3c1-37b9-9fcd-dd4e735eca8d", @@ -138006,7 +138087,7 @@ "title": "Strange Fruit" }, { - "artist": "Simone, Nina", + "artist": "Nina Simone", "disabled": false, "favorite": false, "guid": "b0eeb273-3a34-cd8d-7277-3e5ac0b389c8", @@ -138038,7 +138119,7 @@ "title": "If You Don't Know Me By Now" }, { - "artist": "Simpson, Ashlee", + "artist": "Ashlee Simpson", "disabled": false, "favorite": false, "guid": "2f678e83-28b7-feb9-2df8-6e92a9406dec", @@ -138046,7 +138127,7 @@ "title": "Autobiography" }, { - "artist": "Simpson, Ashlee", + "artist": "Ashlee Simpson", "disabled": false, "favorite": false, "guid": "a658b4e3-1c0a-8ce2-e49d-039a9b463aef", @@ -138054,7 +138135,7 @@ "title": "Better Off" }, { - "artist": "Simpson, Ashlee", + "artist": "Ashlee Simpson", "disabled": false, "favorite": false, "guid": "421ada68-04be-52b3-7943-0778f95ddfd4", @@ -138062,7 +138143,7 @@ "title": "Giving It All Away" }, { - "artist": "Simpson, Ashlee", + "artist": "Ashlee Simpson", "disabled": false, "favorite": false, "guid": "6b814e22-4f30-723b-c182-d6e9d18e9aad", @@ -138070,7 +138151,7 @@ "title": "La La" }, { - "artist": "Simpson, Ashlee", + "artist": "Ashlee Simpson", "disabled": false, "favorite": false, "guid": "89ab3933-60a1-eb6a-3dbb-fcebdf588790", @@ -138078,7 +138159,7 @@ "title": "Pieces Of Me" }, { - "artist": "Simpson, Ashlee", + "artist": "Ashlee Simpson", "disabled": false, "favorite": false, "guid": "8e505759-2cd1-c444-621b-5a52d866b864", @@ -138086,7 +138167,7 @@ "title": "Shadow" }, { - "artist": "Simpson, Jessica & Nick Lachey", + "artist": "Jessica Simpson & Nick Lachey", "disabled": false, "favorite": false, "guid": "bfce7792-7af4-08d1-1f25-8097750cbb8d", @@ -138094,7 +138175,7 @@ "title": "Where You Are" }, { - "artist": "Simpson, Jessica", + "artist": "Jessica Simpson", "disabled": false, "favorite": false, "guid": "fffa554b-cf42-6de2-9a2f-e79fd86ee592", @@ -138102,7 +138183,7 @@ "title": "Forever In Your Eyes" }, { - "artist": "Simpson, Jessica", + "artist": "Jessica Simpson", "disabled": false, "favorite": false, "guid": "867b0b3c-ee81-bc5d-1b05-7152ca23af50", @@ -138110,7 +138191,7 @@ "title": "I Think I'm In Love With You" }, { - "artist": "Simpson, Jessica", + "artist": "Jessica Simpson", "disabled": false, "favorite": false, "guid": "f5a74f75-d46a-2720-a17b-49990fdf0cd8", @@ -138118,7 +138199,7 @@ "title": "I Wanna Love You Forever" }, { - "artist": "Simpson, Jessica", + "artist": "Jessica Simpson", "disabled": false, "favorite": false, "guid": "10719080-366e-695e-c8d7-aa6c955e8c2a", @@ -138126,7 +138207,7 @@ "title": "Irresistible" }, { - "artist": "Simpson, Jessica", + "artist": "Jessica Simpson", "disabled": false, "favorite": false, "guid": "5acaf7bb-0e71-77a4-9c6c-a5ced10d8400", @@ -138134,7 +138215,7 @@ "title": "Little Bit, A" }, { - "artist": "Simpson, Jessica", + "artist": "Jessica Simpson", "disabled": false, "favorite": false, "guid": "1894dcf4-b83d-6496-22c2-925f35cb63b8", @@ -138142,7 +138223,7 @@ "title": "Sweetest Sin" }, { - "artist": "Simpson, Jessica", + "artist": "Jessica Simpson", "disabled": false, "favorite": false, "guid": "f43eb61f-eea5-5836-6f56-fe106ad24b0e", @@ -138150,7 +138231,7 @@ "title": "Take My Breath Away" }, { - "artist": "Simpson, Jessica", + "artist": "Jessica Simpson", "disabled": false, "favorite": false, "guid": "9f71dec9-2e04-f9b1-4eb7-8b820b19cb24", @@ -138158,7 +138239,7 @@ "title": "There You Were" }, { - "artist": "Simpson, Jessica", + "artist": "Jessica Simpson", "disabled": false, "favorite": false, "guid": "c5b1c054-7e92-74a7-0104-e6d78ea22833", @@ -138166,7 +138247,7 @@ "title": "Where You Are" }, { - "artist": "Simpson, Jessica", + "artist": "Jessica Simpson", "disabled": false, "favorite": false, "guid": "944a221b-e3f0-2caa-53f9-9f77b90d822b", @@ -138174,7 +138255,7 @@ "title": "With You" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "bd533853-2361-7054-e1ed-a08ae6dd7426", @@ -138182,7 +138263,7 @@ "title": "After You've Gone" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "405079c3-f25c-7899-af3d-137f1ae49d12", @@ -138190,7 +138271,7 @@ "title": "Christmas Song, The" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "fe6d7d44-b9b3-ca31-8982-871a6a8c7b38", @@ -138198,7 +138279,7 @@ "title": "I'm Glad There Is You" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "fe288a44-6727-44a6-7893-c2960ee1d581", @@ -138206,7 +138287,7 @@ "title": "Lady Is A Tramp" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "0cdfba59-0cba-2f76-30eb-8ff6eaa27612", @@ -138214,7 +138295,7 @@ "title": "Manhattan" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "d4e0a2f0-914e-ad59-7813-94c9afbd967b", @@ -138222,7 +138303,7 @@ "title": "My Way" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "207fe6ef-22a8-bf20-2fd4-5780e6f4d074", @@ -138230,7 +138311,7 @@ "title": "New York, New York" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "c52c22fd-b96e-426f-c304-aa4cd071bb5c", @@ -138238,7 +138319,7 @@ "title": "One For My Baby" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "924742d1-f629-4b2a-acd7-585aa0ecbce7", @@ -138246,7 +138327,7 @@ "title": "Sentimental Journey" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "23ec8308-bf3c-fe83-b4c5-bfb85fabe209", @@ -138254,7 +138335,7 @@ "title": "Summer Wind" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "fc6e40a1-9ab2-771e-aad6-34547f8e2922", @@ -138262,7 +138343,7 @@ "title": "Summer Wind" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "fbdc08f6-56ae-f83b-75b6-65b3be92347d", @@ -138270,7 +138351,7 @@ "title": "Tenderly" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "8ae432c8-150c-865f-c0af-37f652733a1c", @@ -138278,7 +138359,7 @@ "title": "That's Life" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "b6cc8991-0156-52e0-cdb5-bbeaf48ad4db", @@ -138286,7 +138367,7 @@ "title": "What A Difference A Day Makes" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "7133230c-fc81-f722-5d7c-3ed4656703e1", @@ -138294,7 +138375,7 @@ "title": "Why Don't You Do It Right" }, { - "artist": "Sinatra, Frank", + "artist": "Frank Sinatra", "disabled": false, "favorite": false, "guid": "272bc8f4-abc0-7e79-7397-382f25c7e170", @@ -138398,7 +138479,7 @@ "title": "Muzzle" }, { - "artist": "Smith, Anthony", + "artist": "Anthony Smith", "disabled": false, "favorite": false, "guid": "22d34632-e0c6-915f-98f5-31bc1ca5dd57", @@ -138406,7 +138487,7 @@ "title": "If That Ain't Country" }, { - "artist": "Smith, Connie", + "artist": "Connie Smith", "disabled": false, "favorite": false, "guid": "bd673017-d565-991b-39f9-9fe7736440fe", @@ -138414,7 +138495,7 @@ "title": "Then And Only Then" }, { - "artist": "Smith, Will", + "artist": "Will Smith", "disabled": false, "favorite": false, "guid": "55fe6186-8862-5c1d-77bc-777349069736", @@ -138422,7 +138503,7 @@ "title": "Black Suits Comin'" }, { - "artist": "Smyth, Patty & Don Henley", + "artist": "Patty Smyth & Don Henley", "disabled": false, "favorite": false, "guid": "33878666-8f9d-3146-ae5a-293f394ef0a9", @@ -138446,7 +138527,7 @@ "title": "Tainted Love" }, { - "artist": "Solis, Marco Antonio", + "artist": "Marco Antonio Solis", "disabled": false, "favorite": false, "guid": "2bdf688a-13aa-a7a9-4ef9-1c0d0a33bb89", @@ -138454,7 +138535,7 @@ "title": "El Peor De Mis Fracasos" }, { - "artist": "Solis, Marco Antonio", + "artist": "Marco Antonio Solis", "disabled": false, "favorite": false, "guid": "a676ab3d-d664-af53-d1c4-cf931f8938fd", @@ -138462,7 +138543,7 @@ "title": "En Mi Vie Jo San Juan" }, { - "artist": "Solis, Marco Antonio", + "artist": "Marco Antonio Solis", "disabled": false, "favorite": false, "guid": "cca2a52a-e959-e695-1609-d61efe13e0f0", @@ -138470,7 +138551,7 @@ "title": "Si No Te Hubieras" }, { - "artist": "Solis, Marco Antonio", + "artist": "Marco Antonio Solis", "disabled": false, "favorite": false, "guid": "e59cfac8-1208-24a5-9596-3bf321d76ff5", @@ -138502,7 +138583,7 @@ "title": "Runaway Train" }, { - "artist": "Soul, Jimmy", + "artist": "Jimmy Soul", "disabled": false, "favorite": false, "guid": "783cbf1f-1440-423a-eee5-fc977c472c4b", @@ -138510,7 +138591,7 @@ "title": "If You Wanna Be Happy" }, { - "artist": "Sound Of Music, The", + "artist": "The Sound Of Music", "disabled": false, "favorite": false, "guid": "aba4f455-e0ca-2ecc-e250-72445f18f133", @@ -138518,7 +138599,7 @@ "title": "Do Re Mi" }, { - "artist": "Sound Of Music, The", + "artist": "The Sound Of Music", "disabled": false, "favorite": false, "guid": "a43ac16a-ed6e-b25e-20ac-b138952cfd04", @@ -138526,7 +138607,7 @@ "title": "Edelweiss" }, { - "artist": "Sound Of Music, The", + "artist": "The Sound Of Music", "disabled": false, "favorite": false, "guid": "745cab5f-13fe-acfb-55ce-c6ae56aaa18b", @@ -138534,7 +138615,7 @@ "title": "I Have Confidence" }, { - "artist": "Sound Of Music, The", + "artist": "The Sound Of Music", "disabled": false, "favorite": false, "guid": "fdddba4f-a3e6-f0c8-d78f-b9879d762f26", @@ -138542,7 +138623,7 @@ "title": "Sixteen Going On Seventeen" }, { - "artist": "Sound Of Music, The", + "artist": "The Sound Of Music", "disabled": false, "favorite": false, "guid": "68f6315f-ce0c-3c42-6b28-92df9a64bd18", @@ -138566,7 +138647,7 @@ "title": "In The Meantime" }, { - "artist": "Spears, Britney", + "artist": "Britney Spears", "disabled": false, "favorite": false, "guid": "7a5d1dff-9b8d-836f-3ed7-9b9427773804", @@ -138574,7 +138655,7 @@ "title": "Cinderella" }, { - "artist": "Spears, Britney", + "artist": "Britney Spears", "disabled": false, "favorite": false, "guid": "e7e435e8-083b-4bde-d9a0-24a295e232aa", @@ -138582,7 +138663,7 @@ "title": "Don't Let Me Be The Last To Know" }, { - "artist": "Spears, Britney", + "artist": "Britney Spears", "disabled": false, "favorite": false, "guid": "ab327b04-f55a-e112-b0db-5219f1bf8447", @@ -138590,7 +138671,7 @@ "title": "From The Bottom Of My Broken Heart" }, { - "artist": "Spears, Britney", + "artist": "Britney Spears", "disabled": false, "favorite": false, "guid": "89850d66-e486-61e3-3ca2-55447651276e", @@ -138598,7 +138679,7 @@ "title": "I'm A Slave 4 U" }, { - "artist": "Spears, Britney", + "artist": "Britney Spears", "disabled": false, "favorite": false, "guid": "011b3a03-2b67-cf31-e1c8-6d1c45501f5b", @@ -138606,7 +138687,7 @@ "title": "I'm A Slave 4 U" }, { - "artist": "Spears, Britney", + "artist": "Britney Spears", "disabled": false, "favorite": false, "guid": "41b397da-b089-61e2-349b-3d1c7680ca83", @@ -138614,7 +138695,7 @@ "title": "I'm Not A Girl, Not Yet A Woman" }, { - "artist": "Spears, Britney", + "artist": "Britney Spears", "disabled": false, "favorite": false, "guid": "484614cd-3c1f-9890-467f-0199eead7535", @@ -138638,7 +138719,7 @@ "title": "Synthetic" }, { - "artist": "Springfield, Rick", + "artist": "Rick Springfield", "disabled": false, "favorite": false, "guid": "3a28cb47-89e9-36e0-4b6f-36a7e0bcc5cc", @@ -138646,7 +138727,7 @@ "title": "Jessie's Girl" }, { - "artist": "Springsteen, Bruce", + "artist": "Bruce Springsteen", "disabled": false, "favorite": false, "guid": "4349d953-29d2-1c9a-ac7b-08d67cef7730", @@ -138726,7 +138807,7 @@ "title": "When Irish Eyes Are Smiling" }, { - "artist": "Starr, Kay", + "artist": "Kay Starr", "disabled": false, "favorite": false, "guid": "a4a4b237-bdc6-9b47-4b81-64ce0e18bb0f", @@ -138790,7 +138871,7 @@ "title": "Rikki Don't Lose That Number" }, { - "artist": "Stefani, Gwen", + "artist": "Gwen Stefani", "disabled": false, "favorite": false, "guid": "b7c6fb61-cbb8-b9ba-7f6a-79683d85b2fa", @@ -138798,7 +138879,7 @@ "title": "What You Waiting For" }, { - "artist": "Steiner, Tommy Shane", + "artist": "Tommy Shane Steiner", "disabled": false, "favorite": false, "guid": "baebc435-4b6e-8fbe-ef47-2e873944775c", @@ -138838,7 +138919,7 @@ "title": "Rock 'N Me" }, { - "artist": "Steve Miller Band, The", + "artist": "The Steve Miller Band", "disabled": false, "favorite": false, "guid": "b7e47bd2-7bea-87b6-8dcc-7bf3e605e1ec", @@ -138846,7 +138927,7 @@ "title": "Fly Like An Eagle" }, { - "artist": "Steve Miller Band, The", + "artist": "The Steve Miller Band", "disabled": false, "favorite": false, "guid": "9e90be33-4dca-1f88-dbe6-efbb1ab62f62", @@ -138854,7 +138935,7 @@ "title": "Joker, The" }, { - "artist": "Stevens, Cat", + "artist": "Cat Stevens", "disabled": false, "favorite": false, "guid": "61f555ae-c997-9c34-b82a-554d718e4ac3", @@ -138862,7 +138943,7 @@ "title": "Peace Train" }, { - "artist": "Stewart, Billy", + "artist": "Billy Stewart", "disabled": false, "favorite": false, "guid": "811c62d4-c3cb-56e3-4deb-67896628f7eb", @@ -138870,7 +138951,7 @@ "title": "Summertime" }, { - "artist": "Stewart, Rod", + "artist": "Rod Stewart", "disabled": false, "favorite": false, "guid": "e270cea1-3301-6956-124a-0a307507b098", @@ -138878,7 +138959,7 @@ "title": "Maggie May" }, { - "artist": "Stewart, Rod", + "artist": "Rod Stewart", "disabled": false, "favorite": false, "guid": "53b37e25-c17c-d328-c3f1-16f12ecc6bc9", @@ -138886,7 +138967,7 @@ "title": "Smile" }, { - "artist": "Stills, Stephen", + "artist": "Stephen Stills", "disabled": false, "favorite": false, "guid": "b7f6be8a-3f1a-740e-575f-2cf8bc2457df", @@ -138910,7 +138991,7 @@ "title": "Big Bang Baby" }, { - "artist": "Stone, Doug", + "artist": "Doug Stone", "disabled": false, "favorite": false, "guid": "e6f38802-6432-a330-a41c-04f847c0902d", @@ -138918,7 +138999,7 @@ "title": "Fourteen Minutes Old" }, { - "artist": "Stone, Joss", + "artist": "Joss Stone", "disabled": false, "favorite": false, "guid": "c56db785-7d34-263d-196b-e10bdc2fce72", @@ -138926,7 +139007,7 @@ "title": "Super Duper Love" }, { - "artist": "Strait, George", + "artist": "George Strait", "disabled": false, "favorite": false, "guid": "33f4c877-0406-1598-ffcd-1d5027179de0", @@ -138934,7 +139015,7 @@ "title": "Amarillo By Morning" }, { - "artist": "Strait, George", + "artist": "George Strait", "disabled": false, "favorite": false, "guid": "895bcaae-ed46-afc8-4548-f0ff549382fb", @@ -138942,7 +139023,7 @@ "title": "Fireman" }, { - "artist": "Strait, George", + "artist": "George Strait", "disabled": false, "favorite": false, "guid": "d042947a-d90a-7655-bd1e-3ed42e99e5d6", @@ -138950,7 +139031,7 @@ "title": "Give It Away" }, { - "artist": "Strait, George", + "artist": "George Strait", "disabled": false, "favorite": false, "guid": "840d074b-ec6d-ad82-c91d-959feb107c80", @@ -138958,7 +139039,7 @@ "title": "Living And Living Well" }, { - "artist": "Strait, George", + "artist": "George Strait", "disabled": false, "favorite": false, "guid": "df83ef9c-84f7-51cd-e99e-704e22b618b7", @@ -138966,7 +139047,7 @@ "title": "Living And Living Well" }, { - "artist": "Streisand, Barbra & Bryan Adams", + "artist": "Barbra Streisand & Bryan Adams", "disabled": false, "favorite": false, "guid": "74fe5ce2-5784-fb21-94b1-1c7e204e3766", @@ -138974,7 +139055,7 @@ "title": "I Finally Found Someone" }, { - "artist": "Streisand, Barbra & Celine Dion", + "artist": "Barbra Streisand & Celine Dion", "disabled": false, "favorite": false, "guid": "5afd0b5d-406a-5d43-9e59-50627b590a69", @@ -138982,7 +139063,7 @@ "title": "Tell Him" }, { - "artist": "Streisand, Barbra & Neil Diamond", + "artist": "Barbra Streisand & Neil Diamond", "disabled": false, "favorite": false, "guid": "b12ccf39-c5a7-86c0-5e30-e5ed8f705aad", @@ -138990,7 +139071,7 @@ "title": "(Duet) You Don't Bring Me Flowers" }, { - "artist": "Streisand, Barbra & Neil Diamond", + "artist": "Barbra Streisand & Neil Diamond", "disabled": false, "favorite": false, "guid": "b105e987-5c50-db69-828d-d71ffa2c21a3", @@ -138998,7 +139079,7 @@ "title": "You Don't Bring Me Flowers" }, { - "artist": "Streisand, Barbra", + "artist": "Barbra Streisand", "disabled": false, "favorite": false, "guid": "193cb635-2fbd-4797-1ed8-17278303cc45", @@ -139014,7 +139095,7 @@ "title": "Little Black Backpack" }, { - "artist": "Studdard, Ruben", + "artist": "Ruben Studdard", "disabled": false, "favorite": false, "guid": "6d716c6c-6964-9b96-a42c-43d7a6c74063", @@ -139022,7 +139103,7 @@ "title": "Flying Without Wings" }, { - "artist": "Studdard, Ruben", + "artist": "Ruben Studdard", "disabled": false, "favorite": false, "guid": "b1a30f1d-a5d5-5827-b766-af0e68921f0a", @@ -139030,7 +139111,7 @@ "title": "Sorry 2004" }, { - "artist": "Studdard, Ruben", + "artist": "Ruben Studdard", "disabled": false, "favorite": false, "guid": "9aaab5a7-d30f-30d6-c086-c908534a9dff", @@ -139038,7 +139119,7 @@ "title": "Superstar" }, { - "artist": "Studdard, Ruben", + "artist": "Ruben Studdard", "disabled": false, "favorite": false, "guid": "02786942-b772-dfbf-719c-37a9720ce6e7", @@ -139094,7 +139175,7 @@ "title": "I Am" }, { - "artist": "Summer, Donna", + "artist": "Donna Summer", "disabled": false, "favorite": false, "guid": "7e856d44-62bf-8d2f-b942-b1149774b54d", @@ -139134,7 +139215,7 @@ "title": "Shower Me With Your Love" }, { - "artist": "Sweat, Keith", + "artist": "Keith Sweat", "disabled": false, "favorite": false, "guid": "0e9cf55f-32c0-3eb2-0b7c-8796e0c650bf", @@ -139198,7 +139279,7 @@ "title": "If You Buy This Record Your Life Wi" }, { - "artist": "Tanon, Olga", + "artist": "Olga Tanon", "disabled": false, "favorite": false, "guid": "8ae4d9d9-17b6-7e59-c6b6-1a3736f6e635", @@ -139206,7 +139287,7 @@ "title": "Tu Amor" }, { - "artist": "Taylor, James", + "artist": "James Taylor", "disabled": false, "favorite": false, "guid": "1b855508-de2c-8575-a8da-4b21cbe0fc01", @@ -139214,7 +139295,7 @@ "title": "Carolina In My Mind" }, { - "artist": "Taylor, James", + "artist": "James Taylor", "disabled": false, "favorite": false, "guid": "41347632-c862-3db9-52ec-404a645ba424", @@ -139222,7 +139303,7 @@ "title": "Fire And Rain" }, { - "artist": "Taylor, James", + "artist": "James Taylor", "disabled": false, "favorite": false, "guid": "8868279d-3fae-6938-3a88-ed8ec1211170", @@ -139230,7 +139311,7 @@ "title": "You've Got A Friend" }, { - "artist": "Taylor, Johnnie", + "artist": "Johnnie Taylor", "disabled": false, "favorite": false, "guid": "b749fa8f-ed95-a9be-3317-d9194d4f1b0c", @@ -139294,7 +139375,7 @@ "title": "My Girl" }, { - "artist": "Temptations, The", + "artist": "The Temptations", "disabled": false, "favorite": false, "guid": "07436252-fba8-b8e7-deda-ef3375045b4c", @@ -139302,7 +139383,7 @@ "title": "Ain't Too Proud To Beg" }, { - "artist": "Temptations, The", + "artist": "The Temptations", "disabled": false, "favorite": false, "guid": "3260af19-d21b-1b5c-fb8b-5e514ecc7924", @@ -139310,7 +139391,7 @@ "title": "Way You Do The Things You Do, The" }, { - "artist": "Tennison, Chalee", + "artist": "Chalee Tennison", "disabled": false, "favorite": false, "guid": "6f12488c-dff8-2915-fdfe-5b8a725568a7", @@ -139398,7 +139479,7 @@ "title": "Never Let You Go" }, { - "artist": "Thomas, Rufus", + "artist": "Rufus Thomas", "disabled": false, "favorite": false, "guid": "0edd86cf-5d80-fe30-43f3-a2ed262983ea", @@ -139414,7 +139495,7 @@ "title": "Hold Me Now" }, { - "artist": "Thorogood, George", + "artist": "George Thorogood", "disabled": false, "favorite": false, "guid": "350e79b8-229c-753c-3699-57af98368a55", @@ -139422,7 +139503,7 @@ "title": "Bad To The Bone" }, { - "artist": "Three Degrees, The", + "artist": "The Three Degrees", "disabled": false, "favorite": false, "guid": "743ec6e8-8dfe-8f2a-bb9e-d005b3b5b863", @@ -139478,7 +139559,7 @@ "title": "Could've Been" }, { - "artist": "Tillis, Mel", + "artist": "Mel Tillis", "disabled": false, "favorite": false, "guid": "d0ae6353-6e45-0423-b3c0-99f46fc8fbe6", @@ -139494,7 +139575,7 @@ "title": "It's A Business Doing Pleasure With You" }, { - "artist": "Timberlake, Justin", + "artist": "Justin Timberlake", "disabled": false, "favorite": false, "guid": "a112263e-2266-110c-a671-377c8869a3c4", @@ -139502,7 +139583,7 @@ "title": "Cry Me A River" }, { - "artist": "Timberlake, Justin", + "artist": "Justin Timberlake", "disabled": false, "favorite": false, "guid": "a0f461e0-0dca-89a5-9dc6-68ab68845344", @@ -139510,7 +139591,7 @@ "title": "Cry Me A River" }, { - "artist": "Timberlake, Justin", + "artist": "Justin Timberlake", "disabled": false, "favorite": false, "guid": "97ec88b6-e93e-2c86-620b-8b5bc2ac1324", @@ -139518,7 +139599,7 @@ "title": "Like I Love You" }, { - "artist": "Timberlake, Justin", + "artist": "Justin Timberlake", "disabled": false, "favorite": false, "guid": "2ef1f01c-1e45-3e55-1bd8-a7d4d67f4a65", @@ -139582,7 +139663,7 @@ "title": "Knock Down Wall" }, { - "artist": "Tony Rich Project, The", + "artist": "The Tony Rich Project", "disabled": false, "favorite": false, "guid": "40ade67a-5ca0-bb57-49a4-4611a43ace78", @@ -139646,7 +139727,7 @@ "title": "Headstrong" }, { - "artist": "Travis, Randy", + "artist": "Randy Travis", "disabled": false, "favorite": false, "guid": "a04b92b1-aca7-37db-511f-338ec3931a18", @@ -139654,7 +139735,7 @@ "title": "Deeper Than The Holler" }, { - "artist": "Travolta, John & Olivia Newton John", + "artist": "John Travolta & Olivia Newton John", "disabled": false, "favorite": false, "guid": "2715a168-a5f4-7c8f-8e46-f96c6c83a57a", @@ -139686,7 +139767,7 @@ "title": "How Do I Live" }, { - "artist": "Tritt, Travis", + "artist": "Travis Tritt", "disabled": false, "favorite": false, "guid": "439a3dd7-0289-4649-b1e1-5845d5d94b60", @@ -139694,7 +139775,7 @@ "title": "Modern Day Bonnie And Clyde" }, { - "artist": "Tritt, Travis", + "artist": "Travis Tritt", "disabled": false, "favorite": false, "guid": "d59cd75b-7a97-1798-eef6-43bd5ae9a87c", @@ -139702,7 +139783,7 @@ "title": "Modern Day Bonnie And Clyde" }, { - "artist": "Tucker, Tanya", + "artist": "Tanya Tucker", "disabled": false, "favorite": false, "guid": "16a0c403-91e7-45e5-1b3a-6175dfc94d96", @@ -139710,7 +139791,7 @@ "title": "Delta Dawn" }, { - "artist": "Tucker, Tanya", + "artist": "Tanya Tucker", "disabled": false, "favorite": false, "guid": "fb00e4c7-df24-6bc9-976e-e5850b4037d5", @@ -139718,7 +139799,7 @@ "title": "San Antonio Stroll" }, { - "artist": "Tull, Jethro", + "artist": "Jethro Tull", "disabled": false, "favorite": false, "guid": "832c3c2c-95cf-aed7-5428-56c739baddfa", @@ -139726,7 +139807,7 @@ "title": "Locomotive Breath" }, { - "artist": "Turner, Tina", + "artist": "Tina Turner", "disabled": false, "favorite": false, "guid": "2a5fe375-6100-c7bd-a743-4c00d8a99733", @@ -139734,7 +139815,7 @@ "title": "What's Love Got To Do With It" }, { - "artist": "Turner, Tina", + "artist": "Tina Turner", "disabled": false, "favorite": false, "guid": "1ede7c08-04ec-f3ca-d86f-5839049eb246", @@ -139742,7 +139823,7 @@ "title": "What's Love Got To Do With It" }, { - "artist": "Turner, Tina", + "artist": "Tina Turner", "disabled": false, "favorite": false, "guid": "dd40ce2d-3d3a-97f6-02a9-646360175cfc", @@ -139750,7 +139831,7 @@ "title": "When The Heartache Is Over" }, { - "artist": "Twain, Shania & Mark Mcgrath", + "artist": "Shania Twain & Mark Mcgrath", "disabled": false, "favorite": false, "guid": "627279a4-d633-47e1-29fc-a8eee3694c56", @@ -139758,7 +139839,7 @@ "title": "Party For Two" }, { - "artist": "Twain, Shania", + "artist": "Shania Twain", "disabled": false, "favorite": false, "guid": "ba9eaada-99c6-12a1-e716-64397d04efb1", @@ -139766,7 +139847,7 @@ "title": "Any Man Of Mine" }, { - "artist": "Twain, Shania", + "artist": "Shania Twain", "disabled": false, "favorite": false, "guid": "c664908c-89a0-a2ec-20f4-9de26267ddef", @@ -139774,7 +139855,7 @@ "title": "Come On Over" }, { - "artist": "Twain, Shania", + "artist": "Shania Twain", "disabled": false, "favorite": false, "guid": "a81456a7-1685-06f1-6ebb-bb861f8cf899", @@ -139782,7 +139863,7 @@ "title": "Don't Be Stupid" }, { - "artist": "Twain, Shania", + "artist": "Shania Twain", "disabled": false, "favorite": false, "guid": "69c50edf-89ab-ccd7-8266-ad20e0204460", @@ -139790,7 +139871,7 @@ "title": "Honey I'm Home" }, { - "artist": "Twain, Shania", + "artist": "Shania Twain", "disabled": false, "favorite": false, "guid": "bd112152-c0e7-e5b5-28fe-0c7e0819e317", @@ -139798,7 +139879,7 @@ "title": "I'm Gonna Getcha Good" }, { - "artist": "Twain, Shania", + "artist": "Shania Twain", "disabled": false, "favorite": false, "guid": "8f78a582-0718-9384-2e01-d1bc7a3fd484", @@ -139806,7 +139887,7 @@ "title": "Man! I Feel Like A Woman!" }, { - "artist": "Twain, Shania", + "artist": "Shania Twain", "disabled": false, "favorite": false, "guid": "39d58818-9ce0-9f94-baa8-34fdafa20c1c", @@ -139814,7 +139895,7 @@ "title": "Rock This Country" }, { - "artist": "Twain, Shania", + "artist": "Shania Twain", "disabled": false, "favorite": false, "guid": "70ed41a0-50f9-ef91-d8d4-6af75f31e439", @@ -139838,7 +139919,7 @@ "title": "We're Not Gonna Take It" }, { - "artist": "Tyler, Bonnie", + "artist": "Bonnie Tyler", "disabled": false, "favorite": false, "guid": "265140a3-1f59-4b7c-0bd0-cf65df28d2d8", @@ -139894,7 +139975,7 @@ "title": "In A Little While" }, { - "artist": "Urban, Keith", + "artist": "Keith Urban", "disabled": false, "favorite": false, "guid": "4f79c841-dbf8-2c0e-a1cd-2f066ed9ad38", @@ -139902,7 +139983,7 @@ "title": "Somebody Like You" }, { - "artist": "Urban, Keith", + "artist": "Keith Urban", "disabled": false, "favorite": false, "guid": "36e883cf-bede-ffe6-86d3-964060fce813", @@ -139974,7 +140055,7 @@ "title": "No Limit" }, { - "artist": "Valens, Richie", + "artist": "Richie Valens", "disabled": false, "favorite": false, "guid": "5d46584f-aae8-0795-e2f7-4189f445fa13", @@ -139990,7 +140071,7 @@ "title": "Crazy Love" }, { - "artist": "Vandross, Luther & Mariah Carey", + "artist": "Luther Vandross & Mariah Carey", "disabled": false, "favorite": false, "guid": "1efb508d-0671-7ac0-61ed-56905d134c2c", @@ -139998,7 +140079,7 @@ "title": "Endless Love" }, { - "artist": "Vandross, Luther", + "artist": "Luther Vandross", "disabled": false, "favorite": false, "guid": "01ca2e59-ddd5-ab33-d9a1-9f18b8d6382c", @@ -140014,7 +140095,7 @@ "title": "Ordinary Day" }, { - "artist": "Vassar, Phil", + "artist": "Phil Vassar", "disabled": false, "favorite": false, "guid": "f5e351ee-852c-39b1-759e-f9416b664773", @@ -140022,7 +140103,7 @@ "title": "American Child" }, { - "artist": "Vassar, Phil", + "artist": "Phil Vassar", "disabled": false, "favorite": false, "guid": "e6ec9ae0-8a52-2cc3-980c-54a005b86ece", @@ -140030,7 +140111,7 @@ "title": "Carlene" }, { - "artist": "Vaughn, Sarah", + "artist": "Sarah Vaughn", "disabled": false, "favorite": false, "guid": "57d82dd3-e2b7-8ecc-3c65-c2eafb3f57ab", @@ -140038,7 +140119,7 @@ "title": "Moonlight In Vermont" }, { - "artist": "Vee, Bobby", + "artist": "Bobby Vee", "disabled": false, "favorite": false, "guid": "bb3cb6f6-8f0e-e185-6cec-208812b87fb1", @@ -140054,7 +140135,7 @@ "title": "Everything You Want" }, { - "artist": "Village People, The", + "artist": "The Village People", "disabled": false, "favorite": false, "guid": "df57d575-18d7-efbe-e3dc-24a0ebe4cfc6", @@ -140070,7 +140151,7 @@ "title": "Get Free" }, { - "artist": "Wagner, Jack", + "artist": "Jack Wagner", "disabled": false, "favorite": false, "guid": "9df9004e-9734-4b81-6b71-bab6400bf8bf", @@ -140078,7 +140159,7 @@ "title": "All I Need" }, { - "artist": "Walker, Clay", + "artist": "Clay Walker", "disabled": false, "favorite": false, "guid": "da151681-4083-5352-1cf9-5397483d3776", @@ -140086,7 +140167,7 @@ "title": "Chain Of Love" }, { - "artist": "Walker, Clay", + "artist": "Clay Walker", "disabled": false, "favorite": false, "guid": "9a95d4d2-7a5a-d850-9d10-66c7551e6a2e", @@ -140094,7 +140175,7 @@ "title": "Few Questions, A" }, { - "artist": "Walker, Clay", + "artist": "Clay Walker", "disabled": false, "favorite": false, "guid": "669090e6-695b-6fd2-3cd3-cbc9ddc643f8", @@ -140126,7 +140207,7 @@ "title": "Low Rider" }, { - "artist": "Warnes, Jennifer & Bill Medley", + "artist": "Jennifer Warnes & Bill Medley", "disabled": false, "favorite": false, "guid": "2eaa703b-e886-9811-3714-07eea4ee7207", @@ -140142,7 +140223,7 @@ "title": "Regulate" }, { - "artist": "Warwick, Dionne", + "artist": "Dionne Warwick", "disabled": false, "favorite": false, "guid": "b3c38dc1-c382-a2b8-7a45-d8ed73579d53", @@ -140150,7 +140231,7 @@ "title": "Deja Vu" }, { - "artist": "Warwick, Dionne", + "artist": "Dionne Warwick", "disabled": false, "favorite": false, "guid": "d8d24685-c5de-e9ca-0763-d079b49ea334", @@ -140158,7 +140239,7 @@ "title": "That's What Friends Are For" }, { - "artist": "Washington, Dinah & Brooks Benton", + "artist": "Dinah Washington & Brooks Benton", "disabled": false, "favorite": false, "guid": "b9d19d24-8d7e-22b3-cb40-d34b79abfde1", @@ -140166,7 +140247,7 @@ "title": "(Duet) Baby" }, { - "artist": "Washington, Grover Jr. & Bill Withers", + "artist": "Grover Jr. Washington & Bill Withers", "disabled": false, "favorite": false, "guid": "77b62be0-e265-16d0-cc51-d611e532b193", @@ -140174,7 +140255,7 @@ "title": "Just The Two Of Us" }, { - "artist": "Watley, Jody", + "artist": "Jody Watley", "disabled": false, "favorite": false, "guid": "8ebd3d03-1d0c-8bae-497d-5e5044d386d1", @@ -140190,7 +140271,7 @@ "title": "It's Raining Men" }, { - "artist": "Wells, Kitty", + "artist": "Kitty Wells", "disabled": false, "favorite": false, "guid": "617b1755-b068-0082-63f8-cc17793e0953", @@ -140198,7 +140279,7 @@ "title": "Heartbreak U.S.A" }, { - "artist": "Wells, Mary", + "artist": "Mary Wells", "disabled": false, "favorite": false, "guid": "82ec730e-6ad8-0b2f-1e51-3ba7380d04bd", @@ -140238,7 +140319,7 @@ "title": "Tonight" }, { - "artist": "West, Dottie & Kenny Rogers", + "artist": "Dottie West & Kenny Rogers", "disabled": false, "favorite": false, "guid": "373c9cc9-c29c-7c97-f1f6-40f96f0799e4", @@ -140246,7 +140327,7 @@ "title": "Anyone Who Isn't Me Tonight" }, { - "artist": "West, Kanye", + "artist": "Kanye West", "disabled": false, "favorite": false, "guid": "ba260e25-06f3-f0a6-4eee-436dc2b9a132", @@ -140254,7 +140335,7 @@ "title": "All Falls Down" }, { - "artist": "West, Kanye", + "artist": "Kanye West", "disabled": false, "favorite": false, "guid": "aec6dbbf-4863-b23a-2478-84eef9cc6e91", @@ -140294,7 +140375,7 @@ "title": "Thunder Kiss '65" }, { - "artist": "White, Barry", + "artist": "Barry White", "disabled": false, "favorite": false, "guid": "89d95f76-a99b-ce65-9ad6-18d4bbf83a4f", @@ -140302,7 +140383,7 @@ "title": "You're The First The Last My Everything" }, { - "artist": "White, Bryan", + "artist": "Bryan White", "disabled": false, "favorite": false, "guid": "ea695bad-a85d-95c0-4809-35b16bbae6f6", @@ -140310,7 +140391,7 @@ "title": "So Much For Pretending" }, { - "artist": "White, Karyn", + "artist": "Karyn White", "disabled": false, "favorite": false, "guid": "3879eadf-299b-2e2f-6cf2-630676c53ead", @@ -140318,7 +140399,7 @@ "title": "Superwoman" }, { - "artist": "Whiting, Margaret & Jimmy Wakely", + "artist": "Margaret Whiting & Jimmy Wakely", "disabled": false, "favorite": false, "guid": "d6f1f2b8-ad84-030b-e78a-a262f72ab350", @@ -140326,7 +140407,7 @@ "title": "Slipping Around" }, { - "artist": "Whitley, Keith", + "artist": "Keith Whitley", "disabled": false, "favorite": false, "guid": "3eb1b464-78e9-6c3c-cf16-7d77986098e0", @@ -140342,7 +140423,7 @@ "title": "I Believe In You & Me" }, { - "artist": "Who, The", + "artist": "The Who", "disabled": false, "favorite": false, "guid": "193c44c7-f07b-ab99-128d-01a845cccf34", @@ -140350,7 +140431,7 @@ "title": "Sqeezebox, The" }, { - "artist": "Who, The", + "artist": "The Who", "disabled": false, "favorite": false, "guid": "9fc5aac7-3f6e-44a8-ad05-f0ebae8c37ca", @@ -140358,7 +140439,7 @@ "title": "Who Are You" }, { - "artist": "Who, The", + "artist": "The Who", "disabled": false, "favorite": false, "guid": "20023cc3-36fa-1b42-89da-9383ae4d87b5", @@ -140366,7 +140447,7 @@ "title": "Won't Get Fooled Again" }, { - "artist": "Wilde, Kim", + "artist": "Kim Wilde", "disabled": false, "favorite": false, "guid": "5fd463fa-3542-4510-6fc3-2664b8437102", @@ -140390,7 +140471,7 @@ "title": "Men In Black" }, { - "artist": "Williams, Andy", + "artist": "Andy Williams", "disabled": false, "favorite": false, "guid": "c4d124ec-c990-3134-c146-a6b402b9ec2e", @@ -140398,7 +140479,7 @@ "title": "Born Free" }, { - "artist": "Williams, Andy", + "artist": "Andy Williams", "disabled": false, "favorite": false, "guid": "61e0eca5-fb24-e447-9d97-3c80255d5e27", @@ -140406,7 +140487,7 @@ "title": "Moon River" }, { - "artist": "Williams, Don", + "artist": "Don Williams", "disabled": false, "favorite": false, "guid": "9951f6b6-e0ba-c85a-73e2-1b6569ecf12f", @@ -140414,7 +140495,7 @@ "title": "I'm Just A Country Boy" }, { - "artist": "Williams, Don", + "artist": "Don Williams", "disabled": false, "favorite": false, "guid": "5687150f-4148-58be-1d64-33e7009a4cf9", @@ -140422,7 +140503,7 @@ "title": "Some Broken Hearts Never Mend" }, { - "artist": "Williams, Robbie", + "artist": "Robbie Williams", "disabled": false, "favorite": false, "guid": "0673b09e-dc05-fab7-3d09-de1a4cd1c6ce", @@ -140430,7 +140511,7 @@ "title": "Angels" }, { - "artist": "Williams, Robbie", + "artist": "Robbie Williams", "disabled": false, "favorite": false, "guid": "2364a909-8202-c556-50f6-086928a2363d", @@ -140438,7 +140519,7 @@ "title": "Feel" }, { - "artist": "Wilson, Ann & Mike Reno", + "artist": "Ann Wilson & Mike Reno", "disabled": false, "favorite": false, "guid": "44c8ef85-5ef3-8bd7-0298-2c9c6917742d", @@ -140446,7 +140527,7 @@ "title": "(Duet) Almost Paradise" }, { - "artist": "Wilson, Gretchen", + "artist": "Gretchen Wilson", "disabled": false, "favorite": false, "guid": "a835f3ef-f688-2930-e416-3eb8318671a1", @@ -140454,7 +140535,7 @@ "title": "Homewrecker" }, { - "artist": "Wilson, Gretchen", + "artist": "Gretchen Wilson", "disabled": false, "favorite": false, "guid": "4ac5f5e4-ce97-65e9-089f-605b7fa3f2cb", @@ -140462,7 +140543,7 @@ "title": "Redneck Woman" }, { - "artist": "Wilson, Gretchen", + "artist": "Gretchen Wilson", "disabled": false, "favorite": false, "guid": "c385c73c-60a2-3cd5-bc88-d26eaddc01c1", @@ -140470,7 +140551,7 @@ "title": "When I Think About Cheatin'" }, { - "artist": "Winans, Mario", + "artist": "Mario Winans", "disabled": false, "favorite": false, "guid": "e0092921-d9a4-1330-3643-6ea1776eb0b4", @@ -140486,7 +140567,7 @@ "title": "Silly Love Songs" }, { - "artist": "Withers, Bill", + "artist": "Bill Withers", "disabled": false, "favorite": false, "guid": "f3534f06-c954-03a8-f946-b0d3cfdec6b5", @@ -140494,7 +140575,7 @@ "title": "Ain't No Sunshine" }, { - "artist": "Womack, Lee Ann", + "artist": "Lee Ann Womack", "disabled": false, "favorite": false, "guid": "e8b31ae9-38ed-f68b-1e6f-ad132b495abd", @@ -140502,7 +140583,7 @@ "title": "Ashes By Now" }, { - "artist": "Womack, Lee Ann", + "artist": "Lee Ann Womack", "disabled": false, "favorite": false, "guid": "664cba4b-75f6-47b4-8437-d7da6872be6e", @@ -140510,7 +140591,7 @@ "title": "Fool" }, { - "artist": "Womack, Lee Ann", + "artist": "Lee Ann Womack", "disabled": false, "favorite": false, "guid": "e71e16fb-1136-b453-62ac-77d9a1676e35", @@ -140518,7 +140599,7 @@ "title": "I Hope You Dance" }, { - "artist": "Womack, Lee Ann", + "artist": "Lee Ann Womack", "disabled": false, "favorite": false, "guid": "752aea92-d003-6cdf-2cc6-7aff931468fa", @@ -140526,7 +140607,7 @@ "title": "I May Hate Myself In The Morning" }, { - "artist": "Womack, Lee Ann", + "artist": "Lee Ann Womack", "disabled": false, "favorite": false, "guid": "0181e65d-3f0d-6a24-5bb4-eb0d55b1f835", @@ -140534,7 +140615,7 @@ "title": "I'll Think Of A Reason Later" }, { - "artist": "Womack, Lee Ann", + "artist": "Lee Ann Womack", "disabled": false, "favorite": false, "guid": "73b60600-7dca-fbdf-f262-7275b4865cae", @@ -140542,7 +140623,7 @@ "title": "I'll Think Of A Reason Later" }, { - "artist": "Womack, Lee Ann", + "artist": "Lee Ann Womack", "disabled": false, "favorite": false, "guid": "ee0f455f-7e8e-c93e-13c6-57ee984bd7ae", @@ -140550,7 +140631,7 @@ "title": "Why They Call It Falling" }, { - "artist": "Wonder, Stevie", + "artist": "Stevie Wonder", "disabled": false, "favorite": false, "guid": "8cd8903a-56a4-0996-cb4b-8f14e92e81d0", @@ -140558,7 +140639,7 @@ "title": "If You Really Love Me" }, { - "artist": "Wonder, Stevie", + "artist": "Stevie Wonder", "disabled": false, "favorite": false, "guid": "d33ed805-151c-793d-a129-87360197f2b8", @@ -140566,7 +140647,7 @@ "title": "Living For The City" }, { - "artist": "Wonder, Stevie", + "artist": "Stevie Wonder", "disabled": false, "favorite": false, "guid": "4307a20d-d908-f4e0-f59d-b195a9a4119e", @@ -140574,7 +140655,7 @@ "title": "Superstition" }, { - "artist": "Wonder, Stevie", + "artist": "Stevie Wonder", "disabled": false, "favorite": false, "guid": "fbb13a0d-e571-f4ff-26ba-c8d23982f14e", @@ -140582,7 +140663,7 @@ "title": "Uptight" }, { - "artist": "Wood, Brenton", + "artist": "Brenton Wood", "disabled": false, "favorite": false, "guid": "ac0192ae-869f-481f-b1f8-3acafa0fdf74", @@ -140590,7 +140671,7 @@ "title": "Gimme A Little Sign" }, { - "artist": "Wooley, Sheb", + "artist": "Sheb Wooley", "disabled": false, "favorite": false, "guid": "82107031-ebea-30c1-aa1e-30590ef22648", @@ -140598,7 +140679,7 @@ "title": "Purple People Eater" }, { - "artist": "Worley, Darryl", + "artist": "Darryl Worley", "disabled": false, "favorite": false, "guid": "b3422ad6-01de-00aa-84a4-e2efa46e0c98", @@ -140606,7 +140687,7 @@ "title": "I Miss My Friend" }, { - "artist": "Worley, Darryl", + "artist": "Darryl Worley", "disabled": false, "favorite": false, "guid": "b8726659-9251-dc1f-4520-3f4524cebabc", @@ -140622,7 +140703,7 @@ "title": "Rump Shaker" }, { - "artist": "Wright, Chely", + "artist": "Chely Wright", "disabled": false, "favorite": false, "guid": "f445f624-6bf0-0084-6be2-a42b4baf4c7e", @@ -140630,7 +140711,7 @@ "title": "Single White Female" }, { - "artist": "Wright, Gary", + "artist": "Gary Wright", "disabled": false, "favorite": false, "guid": "b898dbf5-cf03-50cc-d8bb-24a7627ce3b9", @@ -140638,7 +140719,7 @@ "title": "Dream Weaver" }, { - "artist": "Wynette, Tammy", + "artist": "Tammy Wynette", "disabled": false, "favorite": false, "guid": "e313b4ce-3f18-9403-4ec3-b46af0863a9f", @@ -140646,7 +140727,7 @@ "title": "D-I-V-O-R-C-E" }, { - "artist": "Wynette, Tammy", + "artist": "Tammy Wynette", "disabled": false, "favorite": false, "guid": "0c809bec-3f4e-5c18-1159-253c238343a2", @@ -140670,7 +140751,7 @@ "title": "Meteorite" }, { - "artist": "Yearwood, Trisha & Don Henley", + "artist": "Trisha Yearwood & Don Henley", "disabled": false, "favorite": false, "guid": "7bdb89a8-5b46-4d29-e494-9da26072cb7c", @@ -140678,7 +140759,7 @@ "title": "Walkaway Joe" }, { - "artist": "Young, Neil", + "artist": "Neil Young", "disabled": false, "favorite": false, "guid": "601d06ce-f2c0-adf2-dc24-f5563a548100", @@ -140686,7 +140767,7 @@ "title": "Heart Of Gold" }, { - "artist": "Young, Paul", + "artist": "Paul Young", "disabled": false, "favorite": false, "guid": "06244ec8-0c4d-4b6f-6788-ad6d4df4561c", @@ -140710,7 +140791,7 @@ "title": "Ain't My Fault" }, { - "artist": "Zombie, Rob", + "artist": "Rob Zombie", "disabled": false, "favorite": false, "guid": "c3f058ef-1356-7bac-ef8b-43d191a3bd61", @@ -141145,7 +141226,7 @@ "title": "Take On Me" }, { - "artist": "A-Ha", + "artist": "a-ha", "disabled": false, "favorite": false, "genre": "Karaoke", @@ -141389,7 +141470,7 @@ "title": "Winner Takes It All" }, { - "artist": "AC DC", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "e9a66438-e15b-0e6d-d091-c1e24b10f11a", @@ -141658,6 +141739,24 @@ "path": "z://MP4\\Sing King Karaoke\\AJR - World's Smallest Violin (Karaoke Version).mp4", "title": "World's Smallest Violin" }, + { + "artist": "Akon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "34fb0caf-9463-fe08-9a63-b7adc781281a", + "path": "z://MP4\\Sing King Karaoke\\Akon - Akon's Beautiful Day.mp4", + "title": "Akon's Beautiful Day" + }, + { + "artist": "Akon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8b553008-9401-f739-86cd-e92fc3df87fc", + "path": "z://MP4\\Sing King Karaoke\\Akon - Akons Beautiful Day.mp4", + "title": "Akon's Beautiful Day" + }, { "artist": "Akon", "disabled": false, @@ -142439,11 +142538,12 @@ "title": "Cups (Pitch Perfect s When I m Gone) (Karaoke Version)" }, { + "artist": "Anna Kendrick", "disabled": false, "favorite": false, - "guid": "fd04e928-fe3d-da48-86f4-fdeae4c5e6bd", - "path": "z://MP4\\Sing King Karaoke\\Anna Kendrick - Cups (Pitch Perfect's When I'm Gone) (Karaoke Version).mp4", - "title": "Anna Kendrick - Cups (Pitch Perfect's \"When I'm Gone) (Karaoke Version)" + "guid": "af6c1f12-fa61-5379-07da-bde5755bd2fb", + "path": "z://MP4\\Sing King Karaoke\\Anna Kendrick - Cups.mp4", + "title": "Cups" }, { "artist": "Anne Marie", @@ -144760,6 +144860,15 @@ "path": "z://MP4\\Sing King Karaoke\\BIGBANG - Fantastic Baby.mp4", "title": "Fantastic Baby" }, + { + "artist": "BIGBANG", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6076e3e1-4c59-13f9-e075-54505e3acf9d", + "path": "z://MP4\\Sing King Karaoke\\BIGBANG - IF YOU.mp4", + "title": "IF YOU" + }, { "artist": "Bill Medley & Jennifer Warnes", "disabled": false, @@ -145408,7 +145517,7 @@ "title": "You Never Know" }, { - "artist": "BLACKPINK ft. Cardi B", + "artist": "BLACKPINK", "disabled": false, "favorite": false, "guid": "73525daf-d51f-6e48-f5bd-ac65c7f00763", @@ -145440,7 +145549,7 @@ "title": "The Git Up" }, { - "artist": "blink-182", + "artist": "Blink 182", "disabled": false, "favorite": false, "guid": "3147b722-88be-4cf3-9861-8edfa6e93e51", @@ -147176,6 +147285,15 @@ "path": "z://MP4\\Sing King Karaoke\\Cavetown - This Is Home (Karaoke Version).mp4", "title": "This Is Home" }, + { + "artist": "CeCe Winans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2074af9f-c838-36bd-dce8-fb3a201636a3", + "path": "z://MP4\\Sing King Karaoke\\CeCe Winans - Holy Forever.mp4", + "title": "Holy Forever" + }, { "artist": "Cee Lo Green", "disabled": false, @@ -148584,6 +148702,24 @@ "path": "z://MP4\\Sing King Karaoke\\Cody Fry - I Hear A Symphony (Karaoke Version).mp4", "title": "I Hear A Symphony" }, + { + "artist": "Cody Johnson, Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c980ce32-bfe7-1e26-441f-19792e866c06", + "path": "z://MP4\\Sing King Karaoke\\Cody Johnson, Carrie Underwood - I'm Gonna Love You.mp4", + "title": "I'm Gonna Love You" + }, + { + "artist": "Cody Johnson, Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de3d13d0-6df9-99ff-5ab6-2e98a19b6395", + "path": "z://MP4\\Sing King Karaoke\\Cody Johnson, Carrie Underwood - Im Gonna Love You.mp4", + "title": "I'm Gonna Love You" + }, { "artist": "Coi Leray", "disabled": false, @@ -148983,11 +149119,12 @@ "title": "True Colors" }, { + "artist": "Cynthia Erivo, Ariana Grande", "disabled": false, "favorite": false, - "guid": "6946d407-424c-d693-16a2-abeaaa629c8b", - "path": "z://MP4\\Sing King Karaoke\\Cynthia Erivo, Ariana Grande - Defying Gravity (From Wicked The Soundtrack) (Karaoke Version).mp4", - "title": "Cynthia Erivo, Ariana Grande - Defying Gravity (From Wicked The Soundtrack) (Karaoke Version)" + "guid": "19a9ac56-43c4-e4ad-6d73-5659ca7cf938", + "path": "z://MP4\\Sing King Karaoke\\Cynthia Erivo, Ariana Grande - Defying Gravity.mp4", + "title": "Defying Gravity" }, { "artist": "CΓ©line Dion", @@ -149265,11 +149402,12 @@ "title": "Crush" }, { + "artist": "David Bowie", "disabled": false, "favorite": false, - "guid": "fd800a70-e8c9-fb90-2cbf-a612df9d65df", - "path": "z://MP4\\Sing King Karaoke\\David Bowie - Space Oddity (Karaoke Version).mp4", - "title": "David Bowie - Space Oddity (Karaoke Version)" + "guid": "e432fa48-3372-0abd-644b-9773fab34ed4", + "path": "z://MP4\\Sing King Karaoke\\David Bowie - Space Oddity.mp4", + "title": "Space Oddity" }, { "artist": "David Gates", @@ -151969,6 +152107,15 @@ "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding, Diplo, Swae Lee - Close To Me (Karaoke Version).mp4", "title": "Close To Me" }, + { + "artist": "Elliot James Reay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fa5c9e36-adaf-d6c9-4aca-ed0a400cac41", + "path": "z://MP4\\Sing King Karaoke\\Elliot James Reay - Who Knew Dancing Was A Sin.mp4", + "title": "Who Knew Dancing Was A Sin" + }, { "artist": "Ellise", "disabled": false, @@ -160420,6 +160567,15 @@ "path": "z://MP4\\Sing King Karaoke\\Lana Del Rey - Blue Jeans (Karaoke Version).mp4", "title": "Blue Jeans" }, + { + "artist": "Lana Del Rey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fbe8925d-380b-d696-bd2e-35395ffa85db", + "path": "z://MP4\\Sing King Karaoke\\Lana Del Rey - Bluebird.mp4", + "title": "Bluebird" + }, { "artist": "Lana Del Rey", "disabled": false, @@ -160754,6 +160910,15 @@ "path": "z://MP4\\Sing King Karaoke\\Lauv - Never Not (Karaoke Version).mp4", "title": "Never Not" }, + { + "artist": "Lauv", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1e3d008f-4444-ddb4-4ccf-17441a5a00fc", + "path": "z://MP4\\Sing King Karaoke\\Lauv - Paris in the Rain.mp4", + "title": "Paris in the Rain" + }, { "artist": "Lauv", "disabled": false, @@ -162205,6 +162370,15 @@ "path": "z://MP4\\Sing King Karaoke\\Lola Young - Messy (Karaoke Version).mp4", "title": "Messy" }, + { + "artist": "Lola Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "50c3c4f3-ebac-4922-2ede-e68edb8be52c", + "path": "z://MP4\\Sing King Karaoke\\Lola Young - One Thing.mp4", + "title": "One Thing" + }, { "artist": "London Grammar", "disabled": false, @@ -162646,9 +162820,9 @@ "artist": "Luke Combs", "disabled": false, "favorite": false, - "guid": "056cae6d-a20a-6357-4296-5c1000808daf", - "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Ain't No Love In Oklahoma (From Twisters# The Album) (Karaoke Version).mp4", - "title": "Ain't No Love In Oklahoma (From Twisters# The Album) (Karaoke Version)" + "guid": "44cce20d-99ed-54c0-0be8-75c75ab92f6a", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Ain't No Love In Oklahoma.mp4", + "title": "Ain't No Love In Oklahoma" }, { "artist": "Luke Combs", @@ -165118,6 +165292,15 @@ "path": "z://MP4\\Sing King Karaoke\\Mike Posner - Please Don't Go.mp4", "title": "Please Don't Go" }, + { + "artist": "Mila J, Ty Dolla $ign", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "616e1da2-7f7c-7040-74f8-1560fbeec692", + "path": "z://MP4\\Sing King Karaoke\\Mila J, Ty Dolla $ign - My Main.mp4", + "title": "My Main" + }, { "artist": "Miley Cirus", "disabled": false, @@ -167321,9 +167504,9 @@ "artist": "Olivia Rodrigo", "disabled": false, "favorite": false, - "guid": "9c7ec94c-d5b7-b157-7838-ec10e1ddd706", - "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - bad idea right# (Karaoke Version).mp4", - "title": "bad idea right# (Karaoke Version)" + "guid": "1c932bf0-2bc6-5235-206f-e38858c16afd", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - bad idea right#.mp4", + "title": "bad idea right#" }, { "artist": "Olivia Rodrigo", @@ -170281,13 +170464,6 @@ "path": "z://MP4\\Sing King Karaoke\\Rihanna - Sos.mp4", "title": "Sos" }, - { - "disabled": false, - "favorite": false, - "guid": "6b8652eb-231c-133c-1f4f-72798af8a78a", - "path": "z://MP4\\Sing King Karaoke\\Rihanna - Stay ft. Mikky Ekko (Karaoke Version).mp4", - "title": "Rihanna - Stay ft. Mikky Ekko (Karaoke Version)" - }, { "artist": "Rihanna", "disabled": false, @@ -170361,6 +170537,14 @@ "path": "z://MP4\\Sing King Karaoke\\Rihanna ft. Jay-Z - Umbrella (Karaoke Version).mp4", "title": "Umbrella" }, + { + "artist": "Rihanna ft. Mikky Ekko", + "disabled": false, + "favorite": false, + "guid": "eb629fc3-1fe7-90ae-a3ab-dec7b615ecf1", + "path": "z://MP4\\Sing King Karaoke\\Rihanna ft. Mikky Ekko - Stay.mp4", + "title": "Stay" + }, { "artist": "Rihanna, Drake", "disabled": false, @@ -178521,11 +178705,12 @@ "title": "Defying Gravity (Karaoke Version)" }, { + "artist": "Wicked", "disabled": false, "favorite": false, - "guid": "f97b02eb-c598-8467-1d3c-3731c06fdfd3", - "path": "z://MP4\\Sing King Karaoke\\Wicked - Popular (Karaoke Version).mp4", - "title": "Wicked - Popular (Karaoke Version)" + "guid": "9d7837f4-2414-5642-fb69-44da8bd85f5a", + "path": "z://MP4\\Sing King Karaoke\\Wicked - Popular.mp4", + "title": "Popular" }, { "artist": "Wilbur Soot", @@ -179459,13 +179644,13 @@ "title": "Best Thing I Never Had" }, { - "artist": "", + "artist": "Birdy", "disabled": false, "favorite": false, "genre": "Karaoke", - "guid": "72765c97-5dc0-b265-c62c-b7c1eaa11a4d", - "path": "z://MP4\\sing2karaoke\\Birdy Surrender (Karaoke Version Lyrics.mp4", - "title": "Birdy Surrender (Karaoke Version) Lyrics" + "guid": "345775e2-a843-6182-4f56-cb1803ff189f", + "path": "z://MP4\\sing2karaoke\\Birdy - Surrender.mp4", + "title": "Surrender" }, { "artist": "Black Eyed Peas", @@ -179602,6 +179787,42 @@ "path": "z://MP4\\sing2karaoke\\Elton John - Are You Ready For Love.mp4", "title": "Are You Ready For Love" }, + { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4595dbf6-44c1-684b-2b4e-9d1fb28fda7c", + "path": "z://MP4\\sing2karaoke\\Elton John - I Want Love.mp4", + "title": "I Want Love" + }, + { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "828e2d37-7b31-82e8-9afd-06795306637c", + "path": "z://MP4\\sing2karaoke\\Elton John - Tiny Dancer.mp4", + "title": "Tiny Dancer" + }, + { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "320ba5f9-dd61-6362-ef5d-d8c51ab3182d", + "path": "z://MP4\\sing2karaoke\\Eminem - Cleanin' Out My Closet.mp4", + "title": "Cleanin' Out My Closet" + }, + { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "521357fd-1570-84d3-b891-fcf3d49d0e29", + "path": "z://MP4\\sing2karaoke\\Eminem - Real Slim Shady.mp4", + "title": "Real Slim Shady" + }, { "artist": "Engelbert Humperdinck", "disabled": false, @@ -179773,6 +179994,15 @@ "path": "z://MP4\\sing2karaoke\\Katy Perry - Not The End Of The World.mp4", "title": "Not The End Of The World" }, + { + "artist": "Keane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb1a5755-6be3-7c12-44c7-96446bc8b286", + "path": "z://MP4\\sing2karaoke\\Keane - Everybody's Changing.mp4", + "title": "Everybody's Changing" + }, { "artist": "Kid Laroi", "disabled": false, @@ -179800,6 +180030,15 @@ "path": "z://MP4\\sing2karaoke\\Kylie Minogue - Get Outta My Way.mp4", "title": "Get Outta My Way" }, + { + "artist": "Kylie Minogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2fb3cf2e-2947-3424-8e37-e7b53c831a90", + "path": "z://MP4\\sing2karaoke\\Kylie Minogue - Never Too Late.mp4", + "title": "Never Too Late" + }, { "artist": "Kylie Minogue", "disabled": false, @@ -179809,6 +180048,24 @@ "path": "z://MP4\\sing2karaoke\\Kylie Minogue - Step Back In Time.mp4", "title": "Step Back In Time" }, + { + "artist": "Kylie Minogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6059e412-9cc8-5f85-6c15-7130a93237c7", + "path": "z://MP4\\sing2karaoke\\Kylie Minogue - Wouldn't Change A Thing.mp4", + "title": "Wouldn't Change A Thing" + }, + { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b53d64fb-7b4e-f0cb-60c9-cae281c540e4", + "path": "z://MP4\\sing2karaoke\\Lady Gaga - Applause.mp4", + "title": "Applause" + }, { "artist": "Lauren Spencer Smith", "disabled": false, @@ -180277,6 +180534,15 @@ "path": "z://MP4\\sing2karaoke\\The Neighbourhood - Stargazing.mp4", "title": "Stargazing" }, + { + "artist": "", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46d9c11f-46dd-b494-db36-cf3ca98bfdd5", + "path": "z://MP4\\sing2karaoke\\This Is The Last Time (Karaoke Version) Lyrics.mp4", + "title": "This Is The Last Time" + }, { "artist": "Birdy", "disabled": false, @@ -185748,6 +186014,15 @@ "path": "z://MP4\\Stingray Karaoke\\Alan Jackson - Good Time (Karaoke Version).mp4", "title": "Good Time" }, + { + "artist": "Alanis Morissette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8761c40d-685b-c7f0-51f3-d59fe6a06876", + "path": "z://MP4\\Stingray Karaoke\\Alanis Morissette - Ironic.mp4", + "title": "Ironic" + }, { "artist": "Brad Paisley", "disabled": false, @@ -185756,6 +186031,15 @@ "path": "z://MP4\\Stingray Karaoke\\Alcohol in the style of Brad Paisley karaoke video.mp4", "title": "Alcohol" }, + { + "artist": "Alex Warren", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e328140e-8c69-af0f-2574-bbdd256f8958", + "path": "z://MP4\\Stingray Karaoke\\Alex Warren - Burning Down.mp4", + "title": "Burning Down" + }, { "artist": "Simple Minds", "disabled": false, @@ -190700,6 +190984,15 @@ "path": "z://MP4\\Stingray Karaoke\\Simple Kind Of Life No Doubt Karaoke with Lyrics.mp4", "title": "Simple Kind Of Life" }, + { + "artist": "Simple Minds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59067d2b-b8f0-9c10-6148-89edda4c7a66", + "path": "z://MP4\\Stingray Karaoke\\Simple Minds - Don't You (Forget About Me).mp4", + "title": "Don't You (Forget About Me)" + }, { "artist": "Beware of Darkness", "disabled": false, @@ -191033,6 +191326,15 @@ "path": "z://MP4\\Stingray Karaoke\\T-Shirt Thomas Rhett Karaoke with Lyrics.mp4", "title": "T-Shirt" }, + { + "artist": "Tag Team", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8128085-68a8-b2ac-0f15-f40fa3e91eb2", + "path": "z://MP4\\Stingray Karaoke\\Tag Team - Whoomp! (There It Is).mp4", + "title": "Whoomp! (There It Is)" + }, { "artist": "Marilyn Manson", "disabled": false, @@ -191242,6 +191544,15 @@ "path": "z://MP4\\Stingray Karaoke\\The Cranberries - Zombie (Karaoke Version).mp4", "title": "Zombie" }, + { + "artist": "The Creator Tyler & Kali Uchis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "22ccedfe-04ec-490b-343b-b38ba0f2da79", + "path": "z://MP4\\Stingray Karaoke\\The Creator Tyler & Kali Uchis - See You Again.mp4", + "title": "See You Again" + }, { "artist": "Charlie Daniels Band", "disabled": false, @@ -191452,6 +191763,15 @@ "path": "z://MP4\\Stingray Karaoke\\This Train Don't Stop There Anymore in the style of Elton John karaoke video.mp4", "title": "This Train Don't Stop There Anymore" }, + { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76d50525-8252-bf90-e3d9-1d0e7f77017b", + "path": "z://MP4\\Stingray Karaoke\\Tina Turner - What's Love Got To Do With It.mp4", + "title": "What's Love Got To Do With It" + }, { "artist": "Elton John", "disabled": false, @@ -192425,7 +192745,7 @@ "title": "Abracadabra" }, { - "artist": "AC DC", + "artist": "AC/DC", "disabled": false, "favorite": false, "guid": "da4dbc82-e902-968c-b9e6-a1bf9158814f", @@ -192673,7 +192993,7 @@ "title": "All The Right Moves" }, { - "artist": "blink-182", + "artist": "Blink 182", "disabled": false, "favorite": false, "guid": "9d9c782d-8911-27ee-888c-47c7d28c8f1c", @@ -193304,13 +193624,6 @@ "path": "z://MP4\\TheKARAOKEChannel\\Bon Jovi - Livin' On A Prayer (Karaoke with Lyrics).mp4", "title": "Livin' On A Prayer" }, - { - "disabled": false, - "favorite": false, - "guid": "cedd274d-f83f-cad8-e32b-e9db40afc93d", - "path": "z://MP4\\TheKARAOKEChannel\\Bones - Imagine Dragons KARAOKE WITH LYRICS (2).mp4", - "title": "Bones - Imagine Dragons | KARAOKE WITH LYRICS" - }, { "artist": "Bonnie Tyler", "disabled": false, @@ -195455,6 +195768,14 @@ "path": "z://MP4\\TheKARAOKEChannel\\If You re Reading This in the Style of Tim McGraw karaoke video with lyrics (no lead vocal).mp4", "title": "If You re Reading This" }, + { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "1d8f0f05-3b20-6a2d-47b9-d16980da59a6", + "path": "z://MP4\\TheKARAOKEChannel\\Imagine Dragons - Bones.mp4", + "title": "Bones" + }, { "artist": "Imagine Dragons", "disabled": false, @@ -199743,6 +200064,3065 @@ "path": "z://MP4\\TheKARAOKEChannel\\Β‘Basta Ya! in the Style of Jenni Rivera karaoke video with lyrics (no lead vocal).mp4", "title": "Β‘Basta Ya!" }, + { + "artist": "10cc", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61308c34-6417-865b-c230-049244c84e80", + "path": "z://MP4\\VocalStarKaraoke\\10cc - Dreadlock Holiday.mp4", + "title": "Dreadlock Holiday" + }, + { + "artist": "10cc", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0be6bab6-4271-df25-a664-79aeb244aafd", + "path": "z://MP4\\VocalStarKaraoke\\10cc - Rubber Bullets.mp4", + "title": "Rubber Bullets" + }, + { + "artist": "2 Unlimited", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ac14b5e-1dd8-8b70-f4ff-51a623bcee63", + "path": "z://MP4\\VocalStarKaraoke\\2 Unlimited - No Limits.mp4", + "title": "No Limits" + }, + { + "artist": "38 Special", + "disabled": false, + "favorite": false, + "guid": "fe0aca22-9ce7-b390-17ee-c378b96c7695", + "path": "z://MP4\\VocalStarKaraoke\\38 Special - Hold On Loosely.mp4", + "title": "Hold On Loosely" + }, + { + "artist": "a-ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6160e757-fefd-5d74-8698-adb2b755911b", + "path": "z://MP4\\VocalStarKaraoke\\A-Ha - The Sun Always Shines on TV.mp4", + "title": "The Sun Always Shines on TV" + }, + { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f133b449-98d9-c65f-bae2-7ee7b750e378", + "path": "z://MP4\\VocalStarKaraoke\\AC DC - For Those About To Rock.mp4", + "title": "For Those About To Rock" + }, + { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1e3137b-0035-3a0e-1342-faf1477f2cf5", + "path": "z://MP4\\VocalStarKaraoke\\AC DC - Hells Bells.mp4", + "title": "Hells Bells" + }, + { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8276a77e-20d4-0394-ab8b-113da89854da", + "path": "z://MP4\\VocalStarKaraoke\\AC DC - Shoot To Thrill.mp4", + "title": "Shoot To Thrill" + }, + { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e239c326-33be-6ddb-2e98-c48d2034c782", + "path": "z://MP4\\VocalStarKaraoke\\AC DC - Whole Lotta Rosie.mp4", + "title": "Whole Lotta Rosie" + }, + { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87f7ca65-6df9-d3dc-0970-8622f3edffba", + "path": "z://MP4\\VocalStarKaraoke\\AC DC - You Shook Me All Night Long.mp4", + "title": "You Shook Me All Night Long" + }, + { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dc630e69-02b7-51a7-4903-520e290bf1c7", + "path": "z://MP4\\VocalStarKaraoke\\ACDC - Moneytalks.mp4", + "title": "Moneytalks" + }, + { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ae31f42-c376-a6c6-3cb8-eb38004c1ab6", + "path": "z://MP4\\VocalStarKaraoke\\ACDC - Shot In The Dark.mp4", + "title": "Shot In The Dark" + }, + { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6bffcdea-a396-40ea-7cf3-0553bf5cdeed", + "path": "z://MP4\\VocalStarKaraoke\\ACDC - Thunderstruck.mp4", + "title": "Thunderstruck" + }, + { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ecf06b27-e1f7-6f1b-f29c-c53595ae1ba6", + "path": "z://MP4\\VocalStarKaraoke\\ACDC - You Shook Me All Night Long.mp4", + "title": "You Shook Me All Night Long" + }, + { + "artist": "Ace Of Base", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7525035e-03c4-0f5e-78ec-7eb413dfd6a1", + "path": "z://MP4\\VocalStarKaraoke\\Ace Of Base - All That She Wants.mp4", + "title": "All That She Wants" + }, + { + "artist": "Adam & The Ants", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9c61fd8-4625-82d9-6b20-1e785e386374", + "path": "z://MP4\\VocalStarKaraoke\\Adam & The Ants - Prince Charming.mp4", + "title": "Prince Charming" + }, + { + "artist": "Adam & The Ants", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "657282d9-db76-68fb-feb7-b957a660b07a", + "path": "z://MP4\\VocalStarKaraoke\\Adam & The Ants - Stand & Deliver.mp4", + "title": "Stand & Deliver" + }, + { + "artist": "Adam Faith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "566c5d58-46c4-8477-ce3a-085c02aee446", + "path": "z://MP4\\VocalStarKaraoke\\Adam Faith - How About That.mp4", + "title": "How About That" + }, + { + "artist": "Adam Faith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c3494ef-6327-ed79-6a5f-c8973b1f8b4c", + "path": "z://MP4\\VocalStarKaraoke\\Adam Faith - Poor Me.mp4", + "title": "Poor Me" + }, + { + "artist": "Adam Faith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "08deb082-7756-b1bd-e246-b863dd3d1a00", + "path": "z://MP4\\VocalStarKaraoke\\Adam Faith - Time Has Come.mp4", + "title": "Time Has Come" + }, + { + "artist": "Adam Faith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9fe1f5f9-b1f5-aa87-4224-077a95dc9ac4", + "path": "z://MP4\\VocalStarKaraoke\\Adam Faith - What Do You Want.mp4", + "title": "What Do You Want" + }, + { + "artist": "Adam Sandler", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d413863-1ec9-0ee5-425c-f8ca6832dafb", + "path": "z://MP4\\VocalStarKaraoke\\Adam Sandler - Ode To My Car.mp4", + "title": "Ode To My Car" + }, + { + "artist": "Adamski", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d08538f-d6b6-eff3-4681-de901de09a78", + "path": "z://MP4\\VocalStarKaraoke\\Adamski - Killer.mp4", + "title": "Killer" + }, + { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eabde714-388c-0b6e-44b3-297345fb9968", + "path": "z://MP4\\VocalStarKaraoke\\Aerosmith - Love In An Elevator (2).mp4", + "title": "Love In An Elevator (2)" + }, + { + "artist": "a-ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7e27bce1-9a97-4d03-b8fe-56be1373640f", + "path": "z://MP4\\VocalStarKaraoke\\Aha - Sun Always Shines On Tv.mp4", + "title": "Sun Always Shines On Tv" + }, + { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "18475993-d9b5-96d8-cfeb-4acdcce60112", + "path": "z://MP4\\VocalStarKaraoke\\AJR - I Wont.mp4", + "title": "I Wont" + }, + { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43c3082e-7a6d-5d44-d3c6-5b2fe15d9c74", + "path": "z://MP4\\VocalStarKaraoke\\Al Green - You Ought To Be With Me.mp4", + "title": "You Ought To Be With Me" + }, + { + "artist": "Al Martino", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "34aa0800-d293-0762-a477-fe63155e1e2c", + "path": "z://MP4\\VocalStarKaraoke\\Al Martino - Volare.mp4", + "title": "Volare" + }, + { + "artist": "Alcazar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28474f75-e149-8bec-e990-e46c9fe3c2a2", + "path": "z://MP4\\VocalStarKaraoke\\Alcazar - Crying At The Discoteque.mp4", + "title": "Crying At The Discoteque" + }, + { + "artist": "Alesha Dixon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f55b1b9-ebf0-bcdc-9662-6020aab44a36", + "path": "z://MP4\\VocalStarKaraoke\\Alesha Dixon - Breathe Slow.mp4", + "title": "Breathe Slow" + }, + { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04518eb6-af7e-f913-cf10-4b591e9b513c", + "path": "z://MP4\\VocalStarKaraoke\\Alicia Keys - Karma.mp4", + "title": "Karma" + }, + { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3e6beb5-b0e1-9079-1500-c6272a0b66ca", + "path": "z://MP4\\VocalStarKaraoke\\Alicia Keys - Womans Worth.mp4", + "title": "Womans Worth" + }, + { + "artist": "Alison Moyet", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "afb7769e-c421-97c7-b5ab-8e4ad3386295", + "path": "z://MP4\\VocalStarKaraoke\\Alison Moyet - All Cried Out.mp4", + "title": "All Cried Out" + }, + { + "artist": "Alison Moyet", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "71c15c7f-da32-7eba-1192-56708033f418", + "path": "z://MP4\\VocalStarKaraoke\\Alison Moyet - Love Letters.mp4", + "title": "Love Letters" + }, + { + "artist": "All Saints", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3bb908e-83e1-9f88-31d7-4a0381749f85", + "path": "z://MP4\\VocalStarKaraoke\\All Saints - Pure Shores.mp4", + "title": "Pure Shores" + }, + { + "artist": "Allison Moyet", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e2807eae-1ae3-5c60-100f-45954f65d610", + "path": "z://MP4\\VocalStarKaraoke\\Allison Moyet - Love Letters.mp4", + "title": "Love Letters" + }, + { + "artist": "Allman Brothers Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e54aafa1-f478-51a4-c08f-990f08234211", + "path": "z://MP4\\VocalStarKaraoke\\Allman Brothers Band - Ramblin Man.mp4", + "title": "Ramblin Man" + }, + { + "artist": "Alma", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6cbb41e1-71ff-ea3a-ab29-231635a63742", + "path": "z://MP4\\VocalStarKaraoke\\Alma - Chasing Highs.mp4", + "title": "Chasing Highs" + }, + { + "artist": "Aloe Blacc", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65c1644e-a1a7-37da-d71f-4f6acc0d316a", + "path": "z://MP4\\VocalStarKaraoke\\Aloe Blacc - Man.mp4", + "title": "Man" + }, + { + "artist": "Alphabeat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74b3c625-7b64-1d58-76ed-21dbff22f6cd", + "path": "z://MP4\\VocalStarKaraoke\\Alphabeat - 10,000 Nights.mp4", + "title": "10,000 Nights" + }, + { + "artist": "Alphabeat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f1297e3-da9a-4dd1-55df-ca50fc77cefb", + "path": "z://MP4\\VocalStarKaraoke\\Alphabeat - Fascination.mp4", + "title": "Fascination" + }, + { + "artist": "Altered Images", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6001f2bf-204e-2e31-1cc4-52c22a65adca", + "path": "z://MP4\\VocalStarKaraoke\\Altered Images - Happy Birthday.mp4", + "title": "Happy Birthday" + }, + { + "artist": "Alyssa Reid & Jump Smokers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a3eefddb-6ddd-0951-48a6-55c33568781c", + "path": "z://MP4\\VocalStarKaraoke\\Alyssa Reid & Jump Smokers - Alone Again.mp4", + "title": "Alone Again" + }, + { + "artist": "Amelia Lily", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcaaef7d-6813-043e-4f9f-d1eeb11195ee", + "path": "z://MP4\\VocalStarKaraoke\\Amelia Lily - You Bring Me Joy.mp4", + "title": "You Bring Me Joy" + }, + { + "artist": "Anastacia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "66048ae2-70c4-dfad-2139-c7d52659f5ce", + "path": "z://MP4\\VocalStarKaraoke\\Anastacia - Heavy In My Heart.mp4", + "title": "Heavy In My Heart" + }, + { + "artist": "Anastacia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ebe41702-1100-fdab-388f-c1a25d44550f", + "path": "z://MP4\\VocalStarKaraoke\\Anastacia - I'm Outta Love.mp4", + "title": "I'm Outta Love" + }, + { + "artist": "Anastacia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1e4a3fcd-df76-44c3-8a3e-2fd72fbe8c8a", + "path": "z://MP4\\VocalStarKaraoke\\Anastacia - Welcome To My Truth.mp4", + "title": "Welcome To My Truth" + }, + { + "artist": "Anne Murray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b01144c-bf70-c7b8-08dc-ab6f1a68a288", + "path": "z://MP4\\VocalStarKaraoke\\Anne Murray - Daydream Believer.mp4", + "title": "Daydream Believer" + }, + { + "artist": "Arctic Monkeys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7afd08dd-133e-91e8-fcb3-3e1db5ccc3fc", + "path": "z://MP4\\VocalStarKaraoke\\Arctic Monkeys - Thered Better Be A Mirrorball.mp4", + "title": "Thered Better Be A Mirrorball" + }, + { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bd8e983-3178-9bb0-0ae6-06df3d4ec92a", + "path": "z://MP4\\VocalStarKaraoke\\Barbra Streisand - Woman In Love.mp4", + "title": "Woman In Love" + }, + { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "71decf95-207c-8817-2479-24187f50d6d0", + "path": "z://MP4\\VocalStarKaraoke\\Barry Manilow - Trying To Get The Feeling Again.mp4", + "title": "Trying To Get The Feeling Again" + }, + { + "artist": "Beastie Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5f9dac6-fdae-1c2c-3ed4-fb826749cc8f", + "path": "z://MP4\\VocalStarKaraoke\\Beastie Boys - Fight For Your Right.mp4", + "title": "Fight For Your Right" + }, + { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f593e1dc-8e53-2ae8-1f4f-8078f3feea5e", + "path": "z://MP4\\VocalStarKaraoke\\Bee Gees - Night Fever.mp4", + "title": "Night Fever" + }, + { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6843076-6e43-e7dd-ce3d-4abc8197a25b", + "path": "z://MP4\\VocalStarKaraoke\\Bee Gees - To Love Somebody.mp4", + "title": "To Love Somebody" + }, + { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d684f929-aa2f-2a48-9869-51f20eec7ccc", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Cuff It.mp4", + "title": "Cuff It" + }, + { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "69f8b7b6-3531-2152-d278-70e48e4f788f", + "path": "z://MP4\\VocalStarKaraoke\\Billy Joel - We Didnt Start The Fire.mp4", + "title": "We Didnt Start The Fire" + }, + { + "artist": "Black", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "271c7acd-1caf-d4c7-f3a2-a9e24746a96e", + "path": "z://MP4\\VocalStarKaraoke\\Black - Wonderful Life.mp4", + "title": "Wonderful Life" + }, + { + "artist": "Black Eyed Peas, Shakira + David Guetta", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3d9454f-5e0c-8812-83b4-b4d006888977", + "path": "z://MP4\\VocalStarKaraoke\\Black Eyed Peas, Shakira + David Guetta - Dont You Worry.mp4", + "title": "Dont You Worry" + }, + { + "artist": "Blue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "846d728b-7d80-8363-5138-92bc0801fc28", + "path": "z://MP4\\VocalStarKaraoke\\Blue - One Love.mp4", + "title": "One Love" + }, + { + "artist": "Blues Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a743b8a-d4d8-016b-7bb1-a3c4780c2c7d", + "path": "z://MP4\\VocalStarKaraoke\\Blues Brothers - Soul Man.mp4", + "title": "Soul Man" + }, + { + "artist": "Bob Seger", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "80af6bb4-f455-7ab2-b4f4-2184d94f591f", + "path": "z://MP4\\VocalStarKaraoke\\Bob Seger - Fire Down Below.mp4", + "title": "Fire Down Below" + }, + { + "artist": "Bobby Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "997e868a-a1bc-e627-c77f-efd4e8f1492f", + "path": "z://MP4\\VocalStarKaraoke\\Bobby Gentry - Ill Never Fall In Love Again.mp4", + "title": "Ill Never Fall In Love Again" + }, + { + "artist": "Bombalurina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f22a28d7-39d9-d19f-ed42-2627d51a1215", + "path": "z://MP4\\VocalStarKaraoke\\Bombalurina - Itsy Bitsy Teeny Weeny Yellow Polka Dot Bikini.mp4", + "title": "Itsy Bitsy Teeny Weeny Yellow Polka Dot Bikini" + }, + { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "847489cb-5769-f6a9-4b1e-16350b290076", + "path": "z://MP4\\VocalStarKaraoke\\Bon Jovi - Runaway.mp4", + "title": "Runaway" + }, + { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7576ee3c-d18c-eccd-8685-ca6f7bfbed9e", + "path": "z://MP4\\VocalStarKaraoke\\Bon Jovi - Say It Isnt So.mp4", + "title": "Say It Isnt So" + }, + { + "artist": "Boyzone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4db56a86-7c34-3a24-ae59-41bf327efe3f", + "path": "z://MP4\\VocalStarKaraoke\\Boyzone - Words.mp4", + "title": "Words" + }, + { + "artist": "Bread", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f84855af-f1e7-58f6-365d-91d236e5fc00", + "path": "z://MP4\\VocalStarKaraoke\\Bread - Guitar Man.mp4", + "title": "Guitar Man" + }, + { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c2496dc-4d70-398e-1628-652e6c3e5474", + "path": "z://MP4\\VocalStarKaraoke\\Britney Spears - From The Bottom Of My Broken Heart.mp4", + "title": "From The Bottom Of My Broken Heart" + }, + { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49a18bcc-7e19-8a36-e7c6-aa83d936f7b6", + "path": "z://MP4\\VocalStarKaraoke\\Bryan Adams - Best Of Me.mp4", + "title": "Best Of Me" + }, + { + "artist": "Calvin Harris & Rag n Bone Man", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d7b1291-deee-040e-0a91-788dc5a56e39", + "path": "z://MP4\\VocalStarKaraoke\\Calvin Harris & Rag n Bone Man - Giant.mp4", + "title": "Giant" + }, + { + "artist": "Carly Pearce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b1f9dc08-25a7-f221-709d-56012e8049be", + "path": "z://MP4\\VocalStarKaraoke\\Carly Pearce - What He Didnt Do.mp4", + "title": "What He Didnt Do" + }, + { + "artist": "Chris Isaak", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d316ca37-d0c2-3993-b898-48bac88919ba", + "path": "z://MP4\\VocalStarKaraoke\\Chris Isaak - Wicked Game.mp4", + "title": "Wicked Game" + }, + { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6bb760f0-3603-94e0-ec9f-f19251bf3d3b", + "path": "z://MP4\\VocalStarKaraoke\\Christina Aguilera - Come On Over.mp4", + "title": "Come On Over" + }, + { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "feb1d060-2614-cd5d-5026-846aab80c8d8", + "path": "z://MP4\\VocalStarKaraoke\\Coldplay - Lost!.mp4", + "title": "Lost!" + }, + { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "524fe92a-b968-8c6b-8cd9-e574c9da821b", + "path": "z://MP4\\VocalStarKaraoke\\Coldplay - Speed Of Sound.mp4", + "title": "Speed Of Sound" + }, + { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a025cd71-54ab-ed7c-1208-6f1109b3b342", + "path": "z://MP4\\VocalStarKaraoke\\Coldplay - Talk.mp4", + "title": "Talk" + }, + { + "artist": "Connie Francis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "73e3f7ba-0f1d-9eed-bb5f-813a7df2df00", + "path": "z://MP4\\VocalStarKaraoke\\Connie Francis - Lipstick on Your Collar.mp4", + "title": "Lipstick on Your Collar" + }, + { + "artist": "Cream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "88934ee1-880e-6704-07b2-df544ef24c1d", + "path": "z://MP4\\VocalStarKaraoke\\Cream - Badge.mp4", + "title": "Badge" + }, + { + "artist": "Cream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ae788d94-2cd9-ed96-80ca-76d1bdd9aba1", + "path": "z://MP4\\VocalStarKaraoke\\Cream - Strange Brew.mp4", + "title": "Strange Brew" + }, + { + "artist": "Creedence Clearwater Revival", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1bd263e9-8b44-7adb-09a4-1444a44d3371", + "path": "z://MP4\\VocalStarKaraoke\\Creedence Clearwater Revival - I Put A Spell On You.mp4", + "title": "I Put A Spell On You" + }, + { + "artist": "Crowded House", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "927f03c0-f491-0de2-de6c-2171eb4a7987", + "path": "z://MP4\\VocalStarKaraoke\\Crowded House - Weather With You.mp4", + "title": "Weather With You" + }, + { + "artist": "Darius", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e682ad9a-6f03-d62f-1e51-451446d32139", + "path": "z://MP4\\VocalStarKaraoke\\Darius - Colour Blind.mp4", + "title": "Colour Blind" + }, + { + "artist": "Darren Hayes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c1be84f-0aa2-9121-6117-6b8c8f8606f0", + "path": "z://MP4\\VocalStarKaraoke\\Darren Hayes - Strange Relationship.mp4", + "title": "Strange Relationship" + }, + { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d7d9090-7882-651c-4a51-5c4ea059fea1", + "path": "z://MP4\\VocalStarKaraoke\\David Bowie - China Girl.mp4", + "title": "China Girl" + }, + { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "551cf57d-e452-9d01-fa7d-4c35a640cc07", + "path": "z://MP4\\VocalStarKaraoke\\David Bowie - Modern Love.mp4", + "title": "Modern Love" + }, + { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ee7e0036-dbfe-66e5-d466-fdb8bdad0892", + "path": "z://MP4\\VocalStarKaraoke\\David Bowie - Suffragette City.mp4", + "title": "Suffragette City" + }, + { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c50ec4c3-de52-6995-cd71-55dd88f49056", + "path": "z://MP4\\VocalStarKaraoke\\David Bowie - Ziggy Stardust.mp4", + "title": "Ziggy Stardust" + }, + { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4d58504a-d936-e008-6a00-67d3a36a6c72", + "path": "z://MP4\\VocalStarKaraoke\\Dean Martin - Volare.mp4", + "title": "Volare" + }, + { + "artist": "Deana Carter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c495cdfc-3e5c-6a4b-eeb8-2a17b5430480", + "path": "z://MP4\\VocalStarKaraoke\\Deana Carter - Did I Shave My Legs For This.mp4", + "title": "Did I Shave My Legs For This" + }, + { + "artist": "Destinys Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "992005ff-5233-b451-2d05-4ed292c4b6a3", + "path": "z://MP4\\VocalStarKaraoke\\Destinys Child - Bug A Boo.mp4", + "title": "Bug A Boo" + }, + { + "artist": "Destinys Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be4ac6bf-1a6f-4dcd-cb0f-8d996dca728f", + "path": "z://MP4\\VocalStarKaraoke\\Destinys Child - Independent Woman.mp4", + "title": "Independent Woman" + }, + { + "artist": "Dionne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2246dd3-47b0-a4b0-8432-a8cfbac00351", + "path": "z://MP4\\VocalStarKaraoke\\Dionne - That s What Friends Are For.mp4", + "title": "That s What Friends Are For" + }, + { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f1eabde-b0ab-0bb3-7674-923ef720057c", + "path": "z://MP4\\VocalStarKaraoke\\Doja Cat - Vegas.mp4", + "title": "Vegas" + }, + { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0fd478c7-8171-b9a6-d5c8-fc698765db39", + "path": "z://MP4\\VocalStarKaraoke\\Donna Summer - Hot Stuff.mp4", + "title": "Hot Stuff" + }, + { + "artist": "Dream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aa8e300-b9d0-1e70-4667-7f65f19aa084", + "path": "z://MP4\\VocalStarKaraoke\\Dream - He Loves U Not.mp4", + "title": "He Loves U Not" + }, + { + "artist": "Dream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cefbfb95-93ee-2893-8f26-2273eccee455", + "path": "z://MP4\\VocalStarKaraoke\\Dream - He Loves You Not.mp4", + "title": "He Loves You Not" + }, + { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5e2cac5-b9e1-09e1-a77e-75ffadf54edf", + "path": "z://MP4\\VocalStarKaraoke\\Dua Lipa - Dance The Night.mp4", + "title": "Dance The Night" + }, + { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dc650ece-b561-4d93-43fd-3b52e6795ce6", + "path": "z://MP4\\VocalStarKaraoke\\Eagles - Take It Easy.mp4", + "title": "Take It Easy" + }, + { + "artist": "Eddie Cochran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a63c6cac-b4e8-c9c4-09ef-b4cd3544e9f8", + "path": "z://MP4\\VocalStarKaraoke\\Eddie Cochran - Somethin Else.mp4", + "title": "Somethin Else" + }, + { + "artist": "Eddie Money", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "890d0b06-d405-7a7e-59bc-eebcaa0418ce", + "path": "z://MP4\\VocalStarKaraoke\\Eddie Money - Shakin.mp4", + "title": "Shakin" + }, + { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9d774de-36f7-d235-b341-e8a74986d5ef", + "path": "z://MP4\\VocalStarKaraoke\\Eric Clapton - Dont Think Twice Its Alright.mp4", + "title": "Dont Think Twice Its Alright" + }, + { + "artist": "Eurythmics And Aretha Franklin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "108b95ed-7723-5e36-791b-46773c7df34e", + "path": "z://MP4\\VocalStarKaraoke\\Eurythmics And Aretha Franklin - Sisters Are Doing It For Themselves.mp4", + "title": "Sisters Are Doing It For Themselves" + }, + { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97c1ef5c-7e38-1e89-77dd-03e87b919230", + "path": "z://MP4\\VocalStarKaraoke\\Faith Hill - It Matters To Me.mp4", + "title": "It Matters To Me" + }, + { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41afec3f-044d-5187-0e53-527c3afc1faf", + "path": "z://MP4\\VocalStarKaraoke\\Faith Hill - This Kiss.mp4", + "title": "This Kiss" + }, + { + "artist": "Fat Les", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f3085d7-c860-5d26-7070-89cc8c32b722", + "path": "z://MP4\\VocalStarKaraoke\\Fat Les - Vindaloo.mp4", + "title": "Vindaloo" + }, + { + "artist": "Five Satins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e94abfa3-aafb-3fd3-bb03-a861a32a924a", + "path": "z://MP4\\VocalStarKaraoke\\Five Satins - In The Still Of The Night.mp4", + "title": "In The Still Of The Night" + }, + { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72b20cd6-cdb9-d160-6d95-d809b7868ad5", + "path": "z://MP4\\VocalStarKaraoke\\Foo Fighters - Shame Shame.mp4", + "title": "Shame Shame" + }, + { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4aab566-413b-a752-7dd4-5bce46a1c779", + "path": "z://MP4\\VocalStarKaraoke\\Frank Sinatra - Something Stupid.mp4", + "title": "Something Stupid" + }, + { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8f1eb2be-93d5-1fbb-d05c-de8f5e48d7e7", + "path": "z://MP4\\VocalStarKaraoke\\Frank Sinatra - Summerwind.mp4", + "title": "Summerwind" + }, + { + "artist": "Gareth Gates", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25ed15b6-88b5-a43b-1fd6-36c03125bed5", + "path": "z://MP4\\VocalStarKaraoke\\Gareth Gates - Suspicious Minds.mp4", + "title": "Suspicious Minds" + }, + { + "artist": "Gareth Gates and Will Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1eb674d6-b9b5-5e37-8168-814ab64b7a61", + "path": "z://MP4\\VocalStarKaraoke\\Gareth Gates and Will Young - The Long And Winding Road.mp4", + "title": "The Long And Winding Road" + }, + { + "artist": "Gerry & The Pacemakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "22f04411-2d86-bc5c-3c0d-65ac6b2a6bde", + "path": "z://MP4\\VocalStarKaraoke\\Gerry & The Pacemakers - Ferry Cross The Mersey.mp4", + "title": "Ferry Cross The Mersey" + }, + { + "artist": "girl in red", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ab9a71d-b0d0-85a0-1c02-c7401e86cdc7", + "path": "z://MP4\\VocalStarKaraoke\\girl in red - Serotonin.mp4", + "title": "Serotonin" + }, + { + "artist": "Glee Cast", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8e6b5feb-c9c3-f331-1899-dd3607542a49", + "path": "z://MP4\\VocalStarKaraoke\\Glee Cast - Don't Rain On My Parade.mp4", + "title": "Don't Rain On My Parade" + }, + { + "artist": "Gloria Estefan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a62c6c02-9f33-1a38-a436-391f9eef30ce", + "path": "z://MP4\\VocalStarKaraoke\\Gloria Estefan - I Dont Wanna Lose You.mp4", + "title": "I Dont Wanna Lose You" + }, + { + "artist": "Grand Funk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3757dd9-8a32-ec55-b308-9a572b04a30c", + "path": "z://MP4\\VocalStarKaraoke\\Grand Funk - Some Kind Of Wonderful.mp4", + "title": "Some Kind Of Wonderful" + }, + { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "197362ba-df6f-13c2-ab4f-f7931b823f78", + "path": "z://MP4\\VocalStarKaraoke\\Green Day - Longview.mp4", + "title": "Longview" + }, + { + "artist": "Groove Armada", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6a6cf10-d9fb-653e-f759-1212fae65bcd", + "path": "z://MP4\\VocalStarKaraoke\\Groove Armada - I See You Baby.mp4", + "title": "I See You Baby" + }, + { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7dfcfa0f-471c-6cd6-9bc9-09c15bc6e6f4", + "path": "z://MP4\\VocalStarKaraoke\\Gwen Stefani - Hollaback Girl.mp4", + "title": "Hollaback Girl" + }, + { + "artist": "Harry Belafonte", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "249041c1-29e3-a01e-b09a-d4f506346652", + "path": "z://MP4\\VocalStarKaraoke\\Harry Belafonte - Banana Boat Song.mp4", + "title": "Banana Boat Song" + }, + { + "artist": "Hoku", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f4a8cff2-d9c5-7cf4-990c-b450ca4280c7", + "path": "z://MP4\\VocalStarKaraoke\\Hoku - Perfect Day.mp4", + "title": "Perfect Day" + }, + { + "artist": "Huntr-X Kpop Demon Hunters Cast", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f4e091b-ab69-02d0-bf4a-cd709e871619", + "path": "z://MP4\\VocalStarKaraoke\\Huntr-X Kpop Demon Hunters Cast - Golden.mp4", + "title": "Golden" + }, + { + "artist": "Ian Dury And The Blockheads", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76d8dd95-8351-66e9-7764-fe08dcf4bd98", + "path": "z://MP4\\VocalStarKaraoke\\Ian Dury And The Blockheads - Sex And Drugs And.mp4", + "title": "Sex And Drugs And" + }, + { + "artist": "J Geils Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8b55c6ba-71de-3dfe-2ff4-6929ab1587d2", + "path": "z://MP4\\VocalStarKaraoke\\J Geils Band - Love Stinks.mp4", + "title": "Love Stinks" + }, + { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35ea2240-e57c-37ee-67d7-ff586e60d5e1", + "path": "z://MP4\\VocalStarKaraoke\\Jack Harlow - Tyler Herro.mp4", + "title": "Tyler Herro" + }, + { + "artist": "Jackie Wilson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "50ef36fa-ff8b-5afe-2d3c-63586bba02ac", + "path": "z://MP4\\VocalStarKaraoke\\Jackie Wilson - Reet Petite.mp4", + "title": "Reet Petite" + }, + { + "artist": "Jane Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b35096cc-b213-e119-bad4-e62ed19339fe", + "path": "z://MP4\\VocalStarKaraoke\\Jane Child - I Dont Wanna Fall In Love.mp4", + "title": "I Dont Wanna Fall In Love" + }, + { + "artist": "Jane Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04b1e774-5d07-20b5-05af-c3b857009678", + "path": "z://MP4\\VocalStarKaraoke\\Jane Morgan - The Day The Rains Came.mp4", + "title": "The Day The Rains Came" + }, + { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f33d239-23e8-9722-ff7a-c02f87874f2b", + "path": "z://MP4\\VocalStarKaraoke\\Janet Jackson - Dosent Really Matter.mp4", + "title": "Dosent Really Matter" + }, + { + "artist": "Janet Jackson And L Vandross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0706ced3-fc86-b6a9-3d20-e828e6ff7a7b", + "path": "z://MP4\\VocalStarKaraoke\\Janet Jackson And L Vandross - Best Things In Lfe are free.mp4", + "title": "Best Things In Lfe are free" + }, + { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d0cd6f1-020c-b614-529e-3c6940bce5a5", + "path": "z://MP4\\VocalStarKaraoke\\Jason Derulo - Take You Dancing.mp4", + "title": "Take You Dancing" + }, + { + "artist": "Jeff Beck", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "245fb901-029c-2ee9-7241-3a499c9b2617", + "path": "z://MP4\\VocalStarKaraoke\\Jeff Beck - Hi Ho Silver Lining.mp4", + "title": "Hi Ho Silver Lining" + }, + { + "artist": "Jennfer Lopez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21335bfe-35d5-7fda-b067-51020b699bad", + "path": "z://MP4\\VocalStarKaraoke\\Jennfer Lopez - If You Had My Love.mp4", + "title": "If You Had My Love" + }, + { + "artist": "Jennfier Lopez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49c61d2f-befd-040e-21e8-d7dfe245235b", + "path": "z://MP4\\VocalStarKaraoke\\Jennfier Lopez - Feeling So Good.mp4", + "title": "Feeling So Good" + }, + { + "artist": "Jessica Garlick", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6162390c-71f8-2df3-a182-2c82d8abd86d", + "path": "z://MP4\\VocalStarKaraoke\\Jessica Garlick - Come Back.mp4", + "title": "Come Back" + }, + { + "artist": "Jessica Simpson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "18e8590a-8a30-c4fb-3a6f-eabae3842174", + "path": "z://MP4\\VocalStarKaraoke\\Jessica Simpson - I Think Im In Love With You.mp4", + "title": "I Think Im In Love With You" + }, + { + "artist": "Jin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c2989b4e-c6a6-baae-b686-9513b3d1f150", + "path": "z://MP4\\VocalStarKaraoke\\Jin - Dont Say You Love Me.mp4", + "title": "Don't Say You Love Me" + }, + { + "artist": "Joan Armatrading", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64bca5c6-60dd-243f-e5a7-81d16a646e75", + "path": "z://MP4\\VocalStarKaraoke\\Joan Armatrading - Drop The Pilot.mp4", + "title": "Drop The Pilot" + }, + { + "artist": "Joel Corry X MNEK", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "776101c2-da43-f5d2-787c-3a06bb153153", + "path": "z://MP4\\VocalStarKaraoke\\Joel Corry X MNEK - Head & Heart.mp4", + "title": "Head & Heart" + }, + { + "artist": "John Farnham", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b5a88e9-220a-914b-6ee4-1381e89d7d55", + "path": "z://MP4\\VocalStarKaraoke\\John Farnham - Youre The Voice.mp4", + "title": "Youre The Voice" + }, + { + "artist": "John Holt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "672bea0a-2d18-33fe-bfaa-85c92a7a5871", + "path": "z://MP4\\VocalStarKaraoke\\John Holt - Help Me Make It Through The Night.mp4", + "title": "Help Me Make It Through The Night" + }, + { + "artist": "Johnny Cash", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c410ed3e-2e33-518b-eeb3-2447f0eab867", + "path": "z://MP4\\VocalStarKaraoke\\Johnny Cash - Cocaine Blues.mp4", + "title": "Cocaine Blues" + }, + { + "artist": "Kelly Llorenna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c24c429-daea-c2f2-aec5-6117b908441a", + "path": "z://MP4\\VocalStarKaraoke\\Kelly Llorenna - Tell It to My Heart.mp4", + "title": "Tell It to My Heart" + }, + { + "artist": "Kid Rock Featuring Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce317767-7b44-9d54-7fca-6bf57aa9c82f", + "path": "z://MP4\\VocalStarKaraoke\\Kid Rock Featuring Sheryl Crow - Picture.mp4", + "title": "Picture" + }, + { + "artist": "Kylie Minogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f88a35fd-5863-8d3f-3c68-3d594e90b0e2", + "path": "z://MP4\\VocalStarKaraoke\\Kylie Minogue - Come into My World.mp4", + "title": "Come into My World" + }, + { + "artist": "Kylie Minogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4da4b55a-ab5b-122b-e52f-9bffd62fb568", + "path": "z://MP4\\VocalStarKaraoke\\Kylie Minogue - Spinning Around.mp4", + "title": "Spinning Around" + }, + { + "artist": "Lasgo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "efbf7f30-6256-abe4-5c63-7cc0632e07f2", + "path": "z://MP4\\VocalStarKaraoke\\Lasgo - Something.mp4", + "title": "Something" + }, + { + "artist": "Laura Branigan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe030a59-e255-d750-7abe-517c23c437f7", + "path": "z://MP4\\VocalStarKaraoke\\Laura Branigan - Gloria.mp4", + "title": "Gloria" + }, + { + "artist": "Leanne Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ccf53d34-5e9b-43cb-3020-560e825a9c01", + "path": "z://MP4\\VocalStarKaraoke\\Leanne Rimes - Life Goes On.mp4", + "title": "Life Goes On" + }, + { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4a534428-42ce-f974-1826-bc7e9418575e", + "path": "z://MP4\\VocalStarKaraoke\\Led Zeppelin - Dyer Maker.mp4", + "title": "Dyer Maker" + }, + { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b8a419c-64d2-2630-918b-ab86222301f2", + "path": "z://MP4\\VocalStarKaraoke\\Led Zeppelin - Kashmir.mp4", + "title": "Kashmir" + }, + { + "artist": "Liberty X", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3fd9e8eb-af42-1bfe-d620-520697197bb5", + "path": "z://MP4\\VocalStarKaraoke\\Liberty X - Got To Have Your Love.mp4", + "title": "Got To Have Your Love" + }, + { + "artist": "Liberty X", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef6147f1-932d-6561-3b4a-a091742be9bd", + "path": "z://MP4\\VocalStarKaraoke\\Liberty X - Just A Little.mp4", + "title": "Just A Little" + }, + { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb35189e-9c5f-7434-f2fd-fcb9ce755902", + "path": "z://MP4\\VocalStarKaraoke\\Linda Ronstadt - Youre No Good.mp4", + "title": "Youre No Good" + }, + { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d5df007-e38b-53f8-a3be-8d8a468edb50", + "path": "z://MP4\\VocalStarKaraoke\\Lizzo - 2 Be Loved (Am I Ready.mp4", + "title": "2 Be Loved" + }, + { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ad46914-fe77-dedf-8524-aebd9009e0a2", + "path": "z://MP4\\VocalStarKaraoke\\Lorde - Solar Power.mp4", + "title": "Solar Power" + }, + { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "08b1952b-d678-c8c4-f4a5-c6ff415532b6", + "path": "z://MP4\\VocalStarKaraoke\\Lorde - What Was That.mp4", + "title": "What Was That" + }, + { + "artist": "Machine Gun Kelly & Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d5b6d394-7adb-4871-9f77-6dba436554fb", + "path": "z://MP4\\VocalStarKaraoke\\Machine Gun Kelly & Halsey - Forget Me Too.mp4", + "title": "Forget Me Too" + }, + { + "artist": "Macklemore Featuring Kesha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4218345-02e7-204b-825c-c08c6493a6ee", + "path": "z://MP4\\VocalStarKaraoke\\Macklemore Featuring Kesha - Good Old Days.mp4", + "title": "Good Old Days" + }, + { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b52b6468-bb7b-43c6-efc5-3c1d2528fbe5", + "path": "z://MP4\\VocalStarKaraoke\\Madonna - Dont Tell Me.mp4", + "title": "Dont Tell Me" + }, + { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3125831-bf55-b10c-2239-5fa7bb83160b", + "path": "z://MP4\\VocalStarKaraoke\\Madonna - Music.mp4", + "title": "Music" + }, + { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7220c19-18a1-c5c9-a904-dc04a2663781", + "path": "z://MP4\\VocalStarKaraoke\\Madonna - Youll See.mp4", + "title": "Youll See" + }, + { + "artist": "Mamas And Papas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b27eb90-31af-03c2-5c6a-ed36d4c2a303", + "path": "z://MP4\\VocalStarKaraoke\\Mamas And Papas - Dream A Little Dream Of Me.mp4", + "title": "Dream A Little Dream Of Me" + }, + { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2f35248a-e0e5-0d64-2b05-28ebd9fac046", + "path": "z://MP4\\VocalStarKaraoke\\Maneskin - Supermodel.mp4", + "title": "Supermodel" + }, + { + "artist": "Manfred Mann", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad3c6d96-6aeb-9959-b52e-1da864a3e9d8", + "path": "z://MP4\\VocalStarKaraoke\\Manfred Mann - Do Wah Diddy Diddy.mp4", + "title": "Do Wah Diddy Diddy" + }, + { + "artist": "Maria Mckee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5522d287-51f6-df51-ff1c-b01cf68c5897", + "path": "z://MP4\\VocalStarKaraoke\\Maria Mckee - Show Me Heaven.mp4", + "title": "Show Me Heaven" + }, + { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "369b3272-697f-ff2b-f103-6745ae71fbd2", + "path": "z://MP4\\VocalStarKaraoke\\Mariah Carey - Fantasy.mp4", + "title": "Fantasy" + }, + { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd36b05e-3179-9eb5-d8ef-af3baaa594ec", + "path": "z://MP4\\VocalStarKaraoke\\Mariah Carey - Hero (2.mp4", + "title": "Hero" + }, + { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23ab73b7-2032-5686-9158-0e5cb55bbbd3", + "path": "z://MP4\\VocalStarKaraoke\\Mariah Carey - Hero.mp4", + "title": "Hero" + }, + { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ed2b50c-93cc-309f-a1a3-ec554d8854aa", + "path": "z://MP4\\VocalStarKaraoke\\Maroon 5 - Lost.mp4", + "title": "Lost" + }, + { + "artist": "Matt McAndrew", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd0c6937-2ff2-c0af-fe0a-37d74cf5c52c", + "path": "z://MP4\\VocalStarKaraoke\\Matt McAndrew - I Still Havent Found What Im Looking For.mp4", + "title": "I Still Havent Found What Im Looking For" + }, + { + "artist": "Mccoys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb896dfc-1dd2-579c-ca73-a457017a82ab", + "path": "z://MP4\\VocalStarKaraoke\\Mccoys - Hang On Sloopy.mp4", + "title": "Hang On Sloopy" + }, + { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "256645d2-e7a8-4c48-6a10-a7ac4c6db505", + "path": "z://MP4\\VocalStarKaraoke\\Metallica - I Disappear.mp4", + "title": "I Disappear" + }, + { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb8fc31d-325c-807b-c3cd-275bc6743fe2", + "path": "z://MP4\\VocalStarKaraoke\\Michael Bolton - When A Man Loves A Woman.mp4", + "title": "When A Man Loves A Woman" + }, + { + "artist": "Mike & The Mechanics", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96fb0ebd-e1c9-bc09-109d-c6d4e944d62d", + "path": "z://MP4\\VocalStarKaraoke\\Mike & The Mechanics - Living Years, The.mp4", + "title": "Living Years, The" + }, + { + "artist": "Moby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f9d181ce-04ef-bdb0-c49c-c22daa5943c5", + "path": "z://MP4\\VocalStarKaraoke\\Moby - We Are All Made Of Stars.mp4", + "title": "We Are All Made Of Stars" + }, + { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "658691d6-43c0-7874-6cbe-4377f3fc39ae", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - Thought You Should Know.mp4", + "title": "Thought You Should Know" + }, + { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + { + "artist": "Ms Dynamite", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a3cdc859-24b7-f57b-cef3-a21e27258998", + "path": "z://MP4\\VocalStarKaraoke\\Ms Dynamite - Dy Na Mi Tee.mp4", + "title": "Dy Na Mi Tee" + }, + { + "artist": "Mya", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0a63fdc4-35b5-12e1-6543-44ef501c6b02", + "path": "z://MP4\\VocalStarKaraoke\\Mya - Case Of The Ex.mp4", + "title": "Case Of The Ex" + }, + { + "artist": "Nat King Cole And Natalie Col", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "84c25e59-f918-5042-f4c0-13cf398839fb", + "path": "z://MP4\\VocalStarKaraoke\\Nat King Cole And Natalie Col - Unforgettable.mp4", + "title": "Unforgettable" + }, + { + "artist": "Natalie Imbruglia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3558ad2b-6b6a-4b90-128b-d98a43a8f5dd", + "path": "z://MP4\\VocalStarKaraoke\\Natalie Imbruglia - Big Mistake.mp4", + "title": "Big Mistake" + }, + { + "artist": "Nate Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "08688ad3-bf59-dbeb-5981-eb1526c0790e", + "path": "z://MP4\\VocalStarKaraoke\\Nate Band - Drugs I Like.mp4", + "title": "Drugs I Like" + }, + { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b7f4c9f-0abf-cde8-0d8f-5e88db3eb62b", + "path": "z://MP4\\VocalStarKaraoke\\Neil Sedaka - Oh Carol.mp4", + "title": "Oh Carol" + }, + { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3e436c91-0dc6-e5c2-c5ff-5c49d9a8e4fd", + "path": "z://MP4\\VocalStarKaraoke\\Neil Sedaka - Oh! Carol.mp4", + "title": "Oh! Carol" + }, + { + "artist": "Neil Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb79504e-ae37-3842-9012-72e3bb0b8da9", + "path": "z://MP4\\VocalStarKaraoke\\Neil Young - Only Love Can Break Your Heart.mp4", + "title": "Only Love Can Break Your Heart" + }, + { + "artist": "Newsboys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c6cf0e0f-2133-0f73-636f-977d3ae7fa55", + "path": "z://MP4\\VocalStarKaraoke\\Newsboys - Joy.mp4", + "title": "Joy" + }, + { + "artist": "Nick Lowe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8caf6eec-c11d-573c-e60a-2d71199da9b6", + "path": "z://MP4\\VocalStarKaraoke\\Nick Lowe - I Knew The Bride (When She Use To Rock N Roll.mp4", + "title": "I Knew The Bride" + }, + { + "artist": "NSync", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b38a7d1a-5429-bcb2-45e9-f492462a152d", + "path": "z://MP4\\VocalStarKaraoke\\NSync - Gone.mp4", + "title": "Gone" + }, + { + "artist": "Oasis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d423bf3-1eaa-25d7-6e49-980cb0ed96d4", + "path": "z://MP4\\VocalStarKaraoke\\Oasis - Acquiesce.mp4", + "title": "Acquiesce" + }, + { + "artist": "Ocean Colour Scene", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d3f4d13-7ec6-3a31-e9b7-ebb9727408e0", + "path": "z://MP4\\VocalStarKaraoke\\Ocean Colour Scene - The Riverboat Song.mp4", + "title": "The Riverboat Song" + }, + { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b58b3512-608a-f706-0bb3-9b466b69510c", + "path": "z://MP4\\VocalStarKaraoke\\OneRepublic - I Aint Worried.mp4", + "title": "I Aint Worried" + }, + { + "artist": "Ozzy Osbourne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75c29fc8-76e1-29c1-575d-057d8e39f7a6", + "path": "z://MP4\\VocalStarKaraoke\\Ozzy Osbourne - Crazy Train.mp4", + "title": "Crazy Train" + }, + { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "530d7881-12a1-0c22-17e9-48f52fc4683e", + "path": "z://MP4\\VocalStarKaraoke\\Pat Benatar - Fire And Ice.mp4", + "title": "Fire And Ice" + }, + { + "artist": "Paul Oakenfold", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "653750be-595b-a1e2-e90b-f34f2713ec01", + "path": "z://MP4\\VocalStarKaraoke\\Paul Oakenfold - Starry Eyed Surprise.mp4", + "title": "Starry Eyed Surprise" + }, + { + "artist": "Pet Shop Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "848cadc9-c0ff-14db-9488-c45e186e503d", + "path": "z://MP4\\VocalStarKaraoke\\Pet Shop Boys - Go West.mp4", + "title": "Go West" + }, + { + "artist": "Pharrell Williams Featuring 21 Savage &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36f88323-8ab8-d16a-6741-85ce8ab583ee", + "path": "z://MP4\\VocalStarKaraoke\\Pharrell Williams Featuring 21 Savage & Tyler, The Creator - Cash In Cash Out.mp4", + "title": "Cash In Cash Out" + }, + { + "artist": "Pink", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2c006d7-4200-777d-d694-699183c07d53", + "path": "z://MP4\\VocalStarKaraoke\\Pink - Just Like A Pill.mp4", + "title": "Just Like A Pill" + }, + { + "artist": "Pink Floyd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5b47794-9d93-5902-caa5-65e75c1ee786", + "path": "z://MP4\\VocalStarKaraoke\\Pink Floyd - Time.mp4", + "title": "Time" + }, + { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51bad357-3e6f-0ea2-bf5c-563003b98d51", + "path": "z://MP4\\VocalStarKaraoke\\Post Malone - Motley Crew.mp4", + "title": "Motley Crew" + }, + { + "artist": "Quarterflash", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99b473fe-24ca-3956-56e0-d084dea06a63", + "path": "z://MP4\\VocalStarKaraoke\\Quarterflash - Harden My Heart.mp4", + "title": "Harden My Heart" + }, + { + "artist": "Queen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a33b01e1-917b-6e14-f789-e7064d0453fd", + "path": "z://MP4\\VocalStarKaraoke\\Queen - One Vision.mp4", + "title": "One Vision" + }, + { + "artist": "Queen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c136e2ec-f358-c0cb-c0e4-01e1e9841268", + "path": "z://MP4\\VocalStarKaraoke\\Queen - Thank God Its Christmas.mp4", + "title": "Thank God Its Christmas" + }, + { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96d6f56d-de3d-1b58-20ae-3fe3a77903cb", + "path": "z://MP4\\VocalStarKaraoke\\Rascal Flatts - My Wish.mp4", + "title": "My Wish" + }, + { + "artist": "Red Hot Chilli Pepers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "513a1323-5726-74f1-71e2-4ede4f8007ca", + "path": "z://MP4\\VocalStarKaraoke\\Red Hot Chilli Pepers - Californication.mp4", + "title": "Californication" + }, + { + "artist": "Richie Valens", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8063aee0-9d51-7b59-6598-1e52afe1f573", + "path": "z://MP4\\VocalStarKaraoke\\Richie Valens - Donna.mp4", + "title": "Donna" + }, + { + "artist": "Richie Valens", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f2df9d5-fdbd-73c4-7a90-161dd7c3c00c", + "path": "z://MP4\\VocalStarKaraoke\\Richie Valens - La Bamba.mp4", + "title": "La Bamba" + }, + { + "artist": "Ringo Starr", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3338fcb7-d311-ab65-debf-378b44e9ac31", + "path": "z://MP4\\VocalStarKaraoke\\Ringo Starr - Youre Sixteen.mp4", + "title": "Youre Sixteen" + }, + { + "artist": "Rolling Stones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fcb13e7e-e994-1f1e-f207-5569a75b9223", + "path": "z://MP4\\VocalStarKaraoke\\Rolling Stones - Wild Horses.mp4", + "title": "Wild Horses" + }, + { + "artist": "Ronan Keating", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1255c02a-81d2-66d9-8908-d07468207fe3", + "path": "z://MP4\\VocalStarKaraoke\\Ronan Keating - I Love It When We Do.mp4", + "title": "I Love It When We Do" + }, + { + "artist": "Roy Orbison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d40db15-77f2-b807-1f6a-44be912e9fb7", + "path": "z://MP4\\VocalStarKaraoke\\Roy Orbison - California Blue.mp4", + "title": "California Blue" + }, + { + "artist": "Roy Orbison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef88e801-4d94-3fc9-ab9b-da010ca1164f", + "path": "z://MP4\\VocalStarKaraoke\\Roy Orbison - Pretty Woman.mp4", + "title": "Pretty Woman" + }, + { + "artist": "Royal Blood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d39e4107-bf8a-211f-7d45-e588cf2d0b9d", + "path": "z://MP4\\VocalStarKaraoke\\Royal Blood - Troubles Coming.mp4", + "title": "Troubles Coming" + }, + { + "artist": "S Club 7", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a06fd1e5-1c20-435f-0edf-267078e516a4", + "path": "z://MP4\\VocalStarKaraoke\\S Club 7 - Best Friend.mp4", + "title": "Best Friend" + }, + { + "artist": "Saja Boys Kpop Demon Hunters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aae108fc-0692-0f61-9a9f-0e30ea4c4809", + "path": "z://MP4\\VocalStarKaraoke\\Saja Boys Kpop Demon Hunters - Your Idol.mp4", + "title": "Your Idol" + }, + { + "artist": "Samantha Mumba", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "793f7c3a-9b48-e59e-6119-9a07fe13d02e", + "path": "z://MP4\\VocalStarKaraoke\\Samantha Mumba - Baby Come On Over.mp4", + "title": "Baby Come On Over" + }, + { + "artist": "Samantha Mumba", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f14b1a55-8beb-a649-b7e2-45256ecf6e82", + "path": "z://MP4\\VocalStarKaraoke\\Samantha Mumba - Gotta Tell You.mp4", + "title": "Gotta Tell You" + }, + { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0cf9c0f7-a5c1-1a94-24a1-8cefff1c8690", + "path": "z://MP4\\VocalStarKaraoke\\Sarah McLachlan - I Will Remember You (Live.mp4", + "title": "I Will Remember You" + }, + { + "artist": "Sarah Whatmore", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "779840a4-d8c6-8b8f-7da2-a6d060066997", + "path": "z://MP4\\VocalStarKaraoke\\Sarah Whatmore - When I Lost You.mp4", + "title": "When I Lost You" + }, + { + "artist": "Seekers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "98ad5b84-59e6-5e04-ee84-b461635d897a", + "path": "z://MP4\\VocalStarKaraoke\\Seekers - Ill Never Find Another You.mp4", + "title": "Ill Never Find Another You" + }, + { + "artist": "Shamrocks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f68e3849-1310-41e9-011d-e253e179cdb9", + "path": "z://MP4\\VocalStarKaraoke\\Shamrocks - Tell Me Ma.mp4", + "title": "Tell Me Ma" + }, + { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d90e488-62e3-47d4-479b-46b3ebe2c284", + "path": "z://MP4\\VocalStarKaraoke\\Shania Twain - Im Holding On To Love.mp4", + "title": "Im Holding On To Love" + }, + { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41e7ae28-b056-4c0b-84df-979c4e9a3f8b", + "path": "z://MP4\\VocalStarKaraoke\\Shania Twain - When.mp4", + "title": "When" + }, + { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65e767c1-a915-077d-b2d1-a7c58e2845fb", + "path": "z://MP4\\VocalStarKaraoke\\Shania Twain - Youve Got A Way.mp4", + "title": "Youve Got A Way" + }, + { + "artist": "Simon & Garfunkel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b9b636b-d215-58ad-d5bb-298b9d731399", + "path": "z://MP4\\VocalStarKaraoke\\Simon & Garfunkel - Homeward Bound.mp4", + "title": "Homeward Bound" + }, + { + "artist": "Sister Sledge", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25a2a4d7-128d-d897-da9d-916397f81154", + "path": "z://MP4\\VocalStarKaraoke\\Sister Sledge - We Are Family.mp4", + "title": "We Are Family" + }, + { + "artist": "Snap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "facc8ac1-2ea9-b145-817c-42c6a450df35", + "path": "z://MP4\\VocalStarKaraoke\\Snap - Rhythm Is A Dancer.mp4", + "title": "Rhythm Is A Dancer" + }, + { + "artist": "Sonique", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ba7e1fb-aa5c-b1b5-0ac0-540a48439ec9", + "path": "z://MP4\\VocalStarKaraoke\\Sonique - It Feels So Good.mp4", + "title": "It Feels So Good" + }, + { + "artist": "Sophie Ellis Bextor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7e04416b-2a8a-8d17-ef47-51018aaa42e0", + "path": "z://MP4\\VocalStarKaraoke\\Sophie Ellis Bextor - Take Me Home.mp4", + "title": "Take Me Home" + }, + { + "artist": "Sophie Ellis-Bextor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48a881c9-dbe8-6ba9-7fca-8eb332e8d2f6", + "path": "z://MP4\\VocalStarKaraoke\\Sophie Ellis-Bextor - Get Over You.mp4", + "title": "Get Over You" + }, + { + "artist": "Space", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35f7da3d-4d2e-4be7-050d-8209c178851d", + "path": "z://MP4\\VocalStarKaraoke\\Space - Female Of The Species.mp4", + "title": "Female Of The Species" + }, + { + "artist": "Steam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2ce2d1d-fcef-e7c3-8c63-fcee65f250b3", + "path": "z://MP4\\VocalStarKaraoke\\Steam - Na Na Hey Hey.mp4", + "title": "Na Na Hey Hey" + }, + { + "artist": "Stereophonics", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49a45985-9c83-7ea0-6c7b-ae487dd186ea", + "path": "z://MP4\\VocalStarKaraoke\\Stereophonics - I Wanna Get Lost With You.mp4", + "title": "I Wanna Get Lost With You" + }, + { + "artist": "Steve Miller Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d4a4610-5fea-2fc7-618b-67a29016d2f4", + "path": "z://MP4\\VocalStarKaraoke\\Steve Miller Band - Joker.mp4", + "title": "Joker" + }, + { + "artist": "Stone Temple Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c310d8b-b8ef-2f7a-c9e9-d92289e70168", + "path": "z://MP4\\VocalStarKaraoke\\Stone Temple Pilots - Interstate Love Song.mp4", + "title": "Interstate Love Song" + }, + { + "artist": "Styx", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43703467-bfc5-61ed-56e6-334878a578b7", + "path": "z://MP4\\VocalStarKaraoke\\Styx - Babe.mp4", + "title": "Babe" + }, + { + "artist": "Sugababes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b13a33a-8228-e2b6-bbab-f87d8a3450ff", + "path": "z://MP4\\VocalStarKaraoke\\Sugababes - Round Round.mp4", + "title": "Round Round" + }, + { + "artist": "Susan Boyle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2dc88301-4219-690b-bf22-8cad143d3ee0", + "path": "z://MP4\\VocalStarKaraoke\\Susan Boyle - Wild Horses.mp4", + "title": "Wild Horses" + }, + { + "artist": "Tag Team", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11538254-6c2b-0b87-4764-57dffc9b1979", + "path": "z://MP4\\VocalStarKaraoke\\Tag Team - Whoomp! (There It Is.mp4", + "title": "Whoomp!" + }, + { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "228da555-a7cf-f280-79ab-2ce04fb830bd", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - Betty.mp4", + "title": "Betty" + }, + { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41d574e0-19b7-8737-cef4-d62b635989de", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - Fortnight.mp4", + "title": "Fortnight" + }, + { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7563f047-1b3f-1f28-8a64-d98fe54e6383", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - I Can Do It With A Broken Heart.mp4", + "title": "I Can Do It With A Broken Heart" + }, + { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aad51718-c330-2410-cfa3-f41ef8bae403", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - My Tears Ricochet.mp4", + "title": "My Tears Ricochet" + }, + { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef08e00c-2b34-cdf3-fe6a-2d2bd48d0798", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - Tim McGraw.mp4", + "title": "Tim McGraw" + }, + { + "artist": "Tennessee Ernie Ford", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8891dd3a-708f-d5ee-11a4-6fab74b44cef", + "path": "z://MP4\\VocalStarKaraoke\\Tennessee Ernie Ford - Sixteen Tons.mp4", + "title": "Sixteen Tons" + }, + { + "artist": "Tesher X Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b2b4a0a-9379-2e1d-1e47-b5b10dc99516", + "path": "z://MP4\\VocalStarKaraoke\\Tesher X Jason Derulo - Jalebi Baby.mp4", + "title": "Jalebi Baby" + }, + { + "artist": "Texas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3649a84d-89b9-67d9-4fac-31231d7d3d9c", + "path": "z://MP4\\VocalStarKaraoke\\Texas - Put Your Arms Around Me.mp4", + "title": "Put Your Arms Around Me" + }, + { + "artist": "The Buckinghams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79487683-b8ca-eaae-aab6-8ed36aac869a", + "path": "z://MP4\\VocalStarKaraoke\\The Buckinghams - Kind Of A Drag.mp4", + "title": "Kind Of A Drag" + }, + { + "artist": "The Carpenters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78673234-9a75-22bd-ef82-d3ddaf5922ea", + "path": "z://MP4\\VocalStarKaraoke\\The Carpenters - This Masquerade.mp4", + "title": "This Masquerade" + }, + { + "artist": "The Contours", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bdb35271-9f6e-420b-21f4-b5c0f6ed7570", + "path": "z://MP4\\VocalStarKaraoke\\The Contours - Do You Love Me.mp4", + "title": "Do You Love Me" + }, + { + "artist": "The Crests", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b49d1f7e-99b5-ffe4-28a1-df4ecf51142a", + "path": "z://MP4\\VocalStarKaraoke\\The Crests - 16 Candles.mp4", + "title": "16 Candles" + }, + { + "artist": "The Fixx", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ab6a745-0fea-b36d-f221-b365323d7a71", + "path": "z://MP4\\VocalStarKaraoke\\The Fixx - One Thing Leads To Another.mp4", + "title": "One Thing Leads To Another" + }, + { + "artist": "The Glen (Levi Heron Edit)", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c6a6a62-96ef-e908-248d-ce11766f1639", + "path": "z://MP4\\VocalStarKaraoke\\The Glen (Levi Heron Edit) - Beluga Lagoon KARAOKE With Vocal Guide.mp4", + "title": "Beluga Lagoon KARAOKE With Vocal Guide" + }, + { + "artist": "The Glen (Levi Heron Edit)", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "724fd33a-f503-b5fb-6523-02970f7bc287", + "path": "z://MP4\\VocalStarKaraoke\\The Glen (Levi Heron Edit) - Beluga Lagoon KARAOKE Without Backing Vocals.mp4", + "title": "Beluga Lagoon KARAOKE Without Backing Vocals" + }, + { + "artist": "The Kinks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05883f16-07f7-9efc-d71e-0e7d49035f59", + "path": "z://MP4\\VocalStarKaraoke\\The Kinks - Dedicated Follower Of Fashion.mp4", + "title": "Dedicated Follower Of Fashion" + }, + { + "artist": "The Moody Blues", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c98368a0-35e0-d482-b02b-88c7b45c3bb3", + "path": "z://MP4\\VocalStarKaraoke\\The Moody Blues - Go Now.mp4", + "title": "Go Now" + }, + { + "artist": "The Steve Miller Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cbb89f1-0b1e-0a21-455e-a921fb53329a", + "path": "z://MP4\\VocalStarKaraoke\\The Steve Miller Band - The Joker.mp4", + "title": "The Joker" + }, + { + "artist": "The Stooges", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8f18e576-d288-f890-b6ed-2d2eb6f93f20", + "path": "z://MP4\\VocalStarKaraoke\\The Stooges - I Wanna Be Your Dog.mp4", + "title": "I Wanna Be Your Dog" + }, + { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7164b224-2807-62ef-5190-eb5f9d816706", + "path": "z://MP4\\VocalStarKaraoke\\The Supremes - Baby Love.mp4", + "title": "Baby Love" + }, + { + "artist": "The Wonder Stuff and Vic Reeves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "615d5715-7a53-e7a1-91d9-2d0ea2128c11", + "path": "z://MP4\\VocalStarKaraoke\\The Wonder Stuff and Vic Reeves - Dizzy.mp4", + "title": "Dizzy" + }, + { + "artist": "Tom Petty And Stevie Nicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "18b966c9-c931-04ef-ebd8-0d43f30fb59c", + "path": "z://MP4\\VocalStarKaraoke\\Tom Petty And Stevie Nicks - Stop Draggin My Heart Around.mp4", + "title": "Stop Draggin My Heart Around" + }, + { + "artist": "Toto", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77ab272b-54ca-fec6-9acd-c7ceb0604b97", + "path": "z://MP4\\VocalStarKaraoke\\Toto - Without Your Love.mp4", + "title": "Without Your Love" + }, + { + "artist": "twenty one pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "917159e4-03ab-0bad-ca7c-3f7d7a7fd703", + "path": "z://MP4\\VocalStarKaraoke\\twenty one pilots - Saturday.mp4", + "title": "Saturday" + }, + { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fca03167-e998-4fed-7e23-d5f25fb28408", + "path": "z://MP4\\VocalStarKaraoke\\U2 - All I Want Is You.mp4", + "title": "All I Want Is You" + }, + { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ef9260e-8305-8fdb-c94e-321a3d1a49c4", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Angel Of Harlem.mp4", + "title": "Angel Of Harlem" + }, + { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cdac18f-d5e4-bdc1-7ccc-40d0834fe1c7", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Desire.mp4", + "title": "Desire" + }, + { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "641c833d-f38d-384f-fca9-1d358036314f", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Elevation.mp4", + "title": "Elevation" + }, + { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "15630a07-4f64-18a5-e8fd-11952f108f02", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Even Better Than The Real Thing.mp4", + "title": "Even Better Than The Real Thing" + }, + { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a6ba09d-dce4-12e6-1e87-65ccae7cc08c", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Mysterious Ways.mp4", + "title": "Mysterious Ways" + }, + { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28560f95-c220-407b-efd6-60c3e7af7d6f", + "path": "z://MP4\\VocalStarKaraoke\\U2 - New Years Day.mp4", + "title": "New Years Day" + }, + { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c5a0357b-d9fb-754f-1546-8cb20109fd61", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Unforgettable Fire.mp4", + "title": "Unforgettable Fire" + }, + { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "73197e25-e313-b3fc-82c4-ed816e5c06a5", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Vertigo.mp4", + "title": "Vertigo" + }, + { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c31c0747-de58-bc93-465e-31c8a6e5a92b", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Walk On.mp4", + "title": "Walk On" + }, + { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9edefbb4-584d-0492-418e-87a835e479c3", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Where The Streets Have No Name.mp4", + "title": "Where The Streets Have No Name" + }, + { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c019320a-0797-189f-1be1-05e66fb979dd", + "path": "z://MP4\\VocalStarKaraoke\\U2 - With Or Without You.mp4", + "title": "With Or Without You" + }, + { + "artist": "Ugly Kid Joe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0db3d8cb-8f54-2bec-2ccd-e64c08290ddd", + "path": "z://MP4\\VocalStarKaraoke\\Ugly Kid Joe - Everything About You.mp4", + "title": "Everything About You" + }, + { + "artist": "Van Halen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72581cbb-ecc7-b215-11a6-62bedf4c67e3", + "path": "z://MP4\\VocalStarKaraoke\\Van Halen - Dance The Night Away.mp4", + "title": "Dance The Night Away" + }, + { + "artist": "Van Halen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d2a9987-cf01-dccf-5a27-d058aaaa1ba9", + "path": "z://MP4\\VocalStarKaraoke\\Van Halen - Why Cant This Be Love.mp4", + "title": "Why Cant This Be Love" + }, + { + "artist": "Van Morrison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46fb969e-50da-5455-572a-0f2ee818903c", + "path": "z://MP4\\VocalStarKaraoke\\Van Morrison - Moondance.mp4", + "title": "Moondance" + }, + { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abecd49e-f5a8-e350-0fe3-29050d9d8cff", + "path": "z://MP4\\VocalStarKaraoke\\Vance Joy - Missing Piece.mp4", + "title": "Missing Piece" + }, + { + "artist": "Vanessa Carlton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77fd46ec-c3d6-7049-2d25-fbd27c982ea2", + "path": "z://MP4\\VocalStarKaraoke\\Vanessa Carlton - A Thousand Miles.mp4", + "title": "A Thousand Miles" + }, + { + "artist": "Venga Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "14e73c80-2718-1c43-e829-06bdeb09d05d", + "path": "z://MP4\\VocalStarKaraoke\\Venga Boys - Kiss (when The Sun Dont Shine.mp4", + "title": "Kiss" + }, + { + "artist": "Vengaboys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d902aa7-8911-5e6a-cb39-d91c126a5493", + "path": "z://MP4\\VocalStarKaraoke\\Vengaboys - Boom Boom Boom.mp4", + "title": "Boom Boom Boom" + }, + { + "artist": "Village People", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "22d7c909-f29c-8ed1-4c55-9eb1dceb3809", + "path": "z://MP4\\VocalStarKaraoke\\Village People - Macho Man.mp4", + "title": "Macho Man" + }, + { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c6609a19-00a0-0eab-cbc6-db68953080a0", + "path": "z://MP4\\VocalStarKaraoke\\Whitney Houston - I Believe In You And Me.mp4", + "title": "I Believe In You And Me" + }, + { + "artist": "Wild Cherry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "091f9b81-2d92-d608-b9d2-5590c74524c5", + "path": "z://MP4\\VocalStarKaraoke\\Wild Cherry - Play That Funky Music.mp4", + "title": "Play That Funky Music" + }, + { + "artist": "Will Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f3394d2-28bd-7b22-e55e-75e99db8e754", + "path": "z://MP4\\VocalStarKaraoke\\Will Young - Evergreen.mp4", + "title": "Evergreen" + }, + { + "artist": "Yazoo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "94b5d058-438f-5dea-2744-a32d4c55ef1a", + "path": "z://MP4\\VocalStarKaraoke\\Yazoo - Situation.mp4", + "title": "Situation" + }, + { + "artist": "Young MC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d444fdc-75f3-1b6a-7544-4f5a1e8973ad", + "path": "z://MP4\\VocalStarKaraoke\\Young MC - Bust A Move.mp4", + "title": "Bust A Move" + }, + { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "239b3edd-fe23-d23a-1ee7-3a09c6cab7c3", + "path": "z://MP4\\VocalStarKaraoke\\Zach Bryan - I Remember Everything.mp4", + "title": "I Remember Everything" + }, + { + "artist": "Zack Brown Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad0fedc2-a9dc-9ba1-3e2f-b48f8c170c03", + "path": "z://MP4\\VocalStarKaraoke\\Zack Brown Band - Toes.mp4", + "title": "Toes" + }, + { + "artist": "Alvin Stardust", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df9b0c35-1530-874e-ccb1-49d8e71f064f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alvin Stardust - Jealous Mind (Two Semitones Down.mp4", + "title": "Jealous Mind (Two Semitones Down)" + }, + { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59c1bd56-22f5-89b3-460f-c4a871d41d56", + "path": "z://MP4\\ZoomKaraokeOfficial\\Andy Williams - House Of Bamboo.mp4", + "title": "House Of Bamboo" + }, + { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9a80b790-c76f-2135-0cf8-a487eafe27e6", + "path": "z://MP4\\ZoomKaraokeOfficial\\Benson Boone - Mystical Magical (Without Backing Vocals.mp4", + "title": "Mystical Magical (Without Backing Vocals)" + }, + { + "artist": "Bernard Cribbins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "63bab46d-4478-21a4-e3f1-d439f20889b5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bernard Cribbins - Right Said Fred.mp4", + "title": "Right Said Fred" + }, + { + "artist": "Billy Ocean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59d3b027-455f-a03f-bc15-33435655c292", + "path": "z://MP4\\ZoomKaraokeOfficial\\Billy Ocean - A Simple Game (Without Backing Vocals).mp4", + "title": "A Simple Game (Without Backing Vocals)" + }, + { + "artist": "Brian Justin Crum", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7290a1f-1981-fff4-76f0-5ec0f785ee25", + "path": "z://MP4\\ZoomKaraokeOfficial\\Brian Justin Crum - Creep (Three Semitones Down.mp4", + "title": "Creep (Three Semitones Down)" + }, + { + "artist": "Caesars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d2af5d9-3cbf-a8a5-f971-5b03bc2ca893", + "path": "z://MP4\\ZoomKaraokeOfficial\\Caesars - Jerk It Out (Without Backing Vocals).mp4", + "title": "Jerk It Out (Without Backing Vocals)" + }, + { + "artist": "Caesars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6db47903-9c43-4f69-31a5-b6f316f376b9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Caesars - Jerk It Out.mp4", + "title": "Jerk It Out" + }, + { + "artist": "David Soul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1fc49366-38d4-b8a0-e1a8-d749a5ca8c8a", + "path": "z://MP4\\ZoomKaraokeOfficial\\David Soul - Going In With My Eyes Open (Without Backing Vocals).mp4", + "title": "Going In With My Eyes Open (Without Backing Vocals)" + }, + { + "artist": "Doechii", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "00e84c92-82d6-b808-6b84-34c0332290f3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Doechii - Anxiety (Without Backing Vocals).mp4", + "title": "Anxiety (Without Backing Vocals)" + }, + { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4c2c35a-54ad-6c29-5d35-70d704aa31f3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ed Sheeran - Azizam (Without Backing Vocals).mp4", + "title": "Azizam (Without Backing Vocals)" + }, + { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edb96010-e9dc-6eba-6356-510f4bc5021d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ed Sheeran - Sapphire.mp4", + "title": "Sapphire" + }, + { + "artist": "Ed Sheeran feat Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3615c272-4c93-c577-edd2-35653cfb2862", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ed Sheeran feat Luke Combs - Life Goes On (Live Version).mp4", + "title": "Life Goes On (Live Version)" + }, + { + "artist": "Ed Sheeran feat Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ebd7fa19-2bd8-9a90-4ff6-1939507e0c53", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ed Sheeran feat Luke Combs - Life Goes On.mp4", + "title": "Life Goes On" + }, + { + "artist": "Eddie Cochran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0263b2d8-d18c-1eaf-8eab-16770a403b0e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eddie Cochran - Summertime Blues (Two Semitones Down.mp4", + "title": "Summertime Blues (Two Semitones Down)" + }, + { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f7262cd-f886-b4ec-70bb-f90037329e19", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Big Love Big Heartache (Without Backing Vocals).mp4", + "title": "Big Love Big Heartache (Without Backing Vocals)" + }, + { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77e323fb-d99c-0168-df59-baacff2f572c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Big Love Big Heartache.mp4", + "title": "Big Love Big Heartache" + }, + { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bbfe4f12-8325-e4cc-85ba-7e57d5f6df6f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Kentucky Rain (Without Backing Vocals).mp4", + "title": "Kentucky Rain (Without Backing Vocals)" + }, + { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "24b27889-b6a1-8792-6554-32e4a938e0b6", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Kentucky Rain.mp4", + "title": "Kentucky Rain" + }, + { + "artist": "Emile Ford & Checkmates", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90b56d62-f8b5-54d7-7b66-044b24a14d67", + "path": "z://MP4\\ZoomKaraokeOfficial\\Emile Ford & Checkmates - What Do You Want To Make Those Eyes At Me For.mp4", + "title": "What Do You Want To Make Those Eyes At Me For" + }, + { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59a61d02-be86-66d7-a3bf-880c41b006d4", + "path": "z://MP4\\ZoomKaraokeOfficial\\George Strait - Write This Down (Without Backing Vocals).mp4", + "title": "Write This Down (Without Backing Vocals)" + }, + { + "artist": "Joe South", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76b97431-20d2-0349-9907-fb1d60dbb630", + "path": "z://MP4\\ZoomKaraokeOfficial\\Joe South - Rose Garden.mp4", + "title": "Rose Garden" + }, + { + "artist": "John Parr", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f291a8cc-51fc-eb6b-ad84-68b7f46c95c2", + "path": "z://MP4\\ZoomKaraokeOfficial\\John Parr - St Elmo's Fire (Man In Motion) (Three Semitones Down).mp4", + "title": "St Elmo's Fire (Man In Motion) (Three Semitones Down)" + }, + { + "artist": "John Parr", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0520c396-29b8-486a-aafc-3f521162c800", + "path": "z://MP4\\ZoomKaraokeOfficial\\John Parr - St Elmo's Fire (Man In Motion) (Two Semitones Down).mp4", + "title": "St Elmo's Fire (Man In Motion) (Two Semitones Down)" + }, + { + "artist": "Josh Thompson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a42d8daa-8fb9-2aab-a917-5b46de8ef156", + "path": "z://MP4\\ZoomKaraokeOfficial\\Josh Thompson - Cold Beer With Your Name On It (Without Backing Vocals Karaoke Version from Zoom.mp4", + "title": "Cold Beer With Your Name On It (Without Backing Vocals)" + }, + { + "artist": "Josh Thompson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "34f6458d-234f-e03b-0d12-322a2b851c84", + "path": "z://MP4\\ZoomKaraokeOfficial\\Josh Thompson - Cold Beer With Your Name On It.mp4", + "title": "Cold Beer With Your Name On It" + }, + { + "artist": "Lewis Capaldi", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "00949a16-b7da-552b-376d-cca40a759212", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lewis Capaldi - Survive (Without Backing Vocals).mp4", + "title": "Survive (Without Backing Vocals)" + }, + { + "artist": "Luciano Pavarotti", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "550bd83d-7770-ac8e-7593-8e8855b11014", + "path": "z://MP4\\ZoomKaraokeOfficial\\Luciano Pavarotti - Nessun Dorma (Three Semitones Down).mp4", + "title": "Nessun Dorma (Three Semitones Down)" + }, + { + "artist": "Marc Hunter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2bccf383-2e30-9d4d-19be-6ed2c6b940d0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Marc Hunter - Big City Talk.mp4", + "title": "Big City Talk" + }, + { + "artist": "Marina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ca137a1d-54ed-b051-4402-9109e7f820e0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Marina - Cuntissimo (Without Backing Vocals).mp4", + "title": "Cuntissimo (Without Backing Vocals)" + }, + { + "artist": "MK feat Chrystal", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49355df5-a731-2972-5c37-0afff04d3a5f", + "path": "z://MP4\\ZoomKaraokeOfficial\\MK feat Chrystal - Dior.mp4", + "title": "Dior" + }, + { + "artist": "Mud", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95622919-bd25-9dac-bc15-6db562c79449", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mud - Tiger Feet (2025 Remake).mp4", + "title": "Tiger Feet (2025 Remake)" + }, + { + "artist": "Pussycat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8ef30b32-1939-eed6-2916-e5321c043479", + "path": "z://MP4\\ZoomKaraokeOfficial\\Pussycat - Mississippi (Two Semitones Down).mp4", + "title": "Mississippi (Two Semitones Down)" + }, + { + "artist": "Randy Travis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58db1853-16cb-c182-0626-db094e0efd66", + "path": "z://MP4\\ZoomKaraokeOfficial\\Randy Travis - Three Wooden Crosses (Without Backing Vocals).mp4", + "title": "Three Wooden Crosses (Without Backing Vocals)" + }, + { + "artist": "Skye Newman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7c208ca8-b437-c0b3-044e-a7d791625d93", + "path": "z://MP4\\ZoomKaraokeOfficial\\Skye Newman - Family Matters.mp4", + "title": "Family Matters" + }, + { + "artist": "Survivor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1f389bf-45e2-5309-aecf-bbd673684d43", + "path": "z://MP4\\ZoomKaraokeOfficial\\Survivor - Eye Of The Tiger (Three Semitones Down).mp4", + "title": "Eye Of The Tiger (Three Semitones Down)" + }, + { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "135fbfa8-872d-32f5-2a47-b04f1098a67f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tate McRae - Revolving Door (Clean Version Without Backing Vocals).mp4", + "title": "Revolving Door (Clean Version Without Backing Vocals)" + }, + { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "857b4767-8c69-14fb-01fa-658170b9f406", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Beatles - Penny Lane (Two Semitones Down.mp4", + "title": "Penny Lane (Two Semitones Down)" + }, + { + "artist": "The Mavericks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75c896fe-77ad-690b-f358-dccbda4b5ae8", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Mavericks - Here Comes My Baby Karaoke Version from Zoom Karaoke.mp4", + "title": "Here Comes My Baby - Karaoke Version from Zoom Karaoke" + }, + { + "artist": "The Mavericks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61b3e8d2-2d1d-cd98-abbe-3581c9f73db6", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Mavericks - Here Comes My Baby.mp4", + "title": "Here Comes My Baby" + }, + { + "artist": "The Monkees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "42146957-6f67-824b-c228-95885c95e19c", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Monkees - Pleasant Valley Sunday (Without Backing Vocals.mp4", + "title": "Pleasant Valley Sunday (Without Backing Vocals)" + }, + { + "artist": "The Weather Girls", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dad5b87e-144e-e07b-e694-384430215cd3", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Weather Girls - It's Raining Men (Two Semitones Down).mp4", + "title": "It's Raining Men (Two Semitones Down)" + }, + { + "artist": "The Weather Girls", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82367b29-2306-dc18-af79-d023ae459d0c", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Weather Girls - Its Raining Men (Three Semitones Down).mp4", + "title": "It's Raining Men (Three Semitones Down)" + }, + { + "artist": "Thompson Twins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6adfca16-8992-0594-a423-2a12ceee1238", + "path": "z://MP4\\ZoomKaraokeOfficial\\Thompson Twins - Sister Of Mercy (Without Backing Vocals.mp4", + "title": "Sister Of Mercy (Without Backing Vocals)" + }, + { + "artist": "Thompson Twins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "34bc37e3-1b51-5a9b-c7eb-394e71da6dc1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Thompson Twins - Sister Of Mercy.mp4", + "title": "Sister Of Mercy" + }, + { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f2bef7c-c190-9154-ea85-13dbdb236cd3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tina Turner - The Best (Three Semitones Down).mp4", + "title": "The Best (Three Semitones Down)" + }, + { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "06b57dda-2c50-b882-222d-4003c010de88", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tina Turner - The Best (Two Semitones Down).mp4", + "title": "The Best (Two Semitones Down)" + }, + { + "artist": "Warren Zevon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ed6c265-1fed-ddd6-0dd7-51861d87def7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Warren Zevon - Tenderness On The Block (Without Backing Vocals.mp4", + "title": "Tenderness On The Block (Without Backing Vocals)" + }, { "artist": "Buble, Michael", "disabled": false, diff --git a/karaoke_downloader/cli.py b/karaoke_downloader/cli.py index 2f74c52..8fd681e 100644 --- a/karaoke_downloader/cli.py +++ b/karaoke_downloader/cli.py @@ -102,6 +102,7 @@ Examples: python download_karaoke.py --songlist-only --limit 10 # Download only songlist songs across channels python download_karaoke.py https://www.youtube.com/@SingKingKaraoke/videos # Download from specific channel python download_karaoke.py --file data/channels.txt # Download from custom channel list + python download_karaoke.py --manual --limit 5 # Download from manual videos collection python download_karaoke.py --reset-channel SingKingKaraoke --delete-files """, ) @@ -292,6 +293,11 @@ Examples: action="store_true", help="Create a new song list instead of appending when using --generate-songlist", ) + parser.add_argument( + "--manual", + action="store_true", + help="Download from manual videos collection (data/manual_videos.json)", + ) args = parser.parse_args() # Validate workers argument @@ -464,6 +470,15 @@ Examples: if len(tracking) > 10: print(f" ... and {len(tracking) - 10} more") sys.exit(0) + elif args.manual: + # Download from manual videos collection + print("🎀 Downloading from manual videos collection...") + success = downloader.download_channel_videos( + "manual://static", + force_refresh=args.refresh, + fuzzy_match=args.fuzzy_match, + fuzzy_threshold=args.fuzzy_threshold, + ) elif args.songlist_only or args.songlist_focus: # Use provided file or default to channels configuration channel_urls = load_channels(args.file) diff --git a/karaoke_downloader/downloader.py b/karaoke_downloader/downloader.py index b91774b..c0ea4c9 100644 --- a/karaoke_downloader/downloader.py +++ b/karaoke_downloader/downloader.py @@ -63,6 +63,7 @@ from karaoke_downloader.parallel_downloader import ( create_parallel_downloader, ) from karaoke_downloader.youtube_utils import get_channel_info, get_playlist_info +from karaoke_downloader.manual_video_manager import is_manual_channel, get_manual_channel_info, get_manual_videos_for_channel # Constants DEFAULT_FUZZY_THRESHOLD = 85 @@ -186,6 +187,35 @@ class KaraokeDownloader: fuzzy_threshold=DEFAULT_FUZZY_THRESHOLD, ): """Download videos from a channel or playlist URL, respecting songlist-only and limit flags. Supports fuzzy matching.""" + + # Check if this is a manual channel + from karaoke_downloader.manual_video_manager import is_manual_channel, get_manual_channel_info, get_manual_videos_for_channel + + if is_manual_channel(url): + channel_name, channel_id = get_manual_channel_info(url) + print(f"\n🎬 Downloading from manual channel: {channel_name} ({url})") + + # Load manual videos + manual_videos = get_manual_videos_for_channel(channel_name) + if not manual_videos: + print("⚠️ No manual videos found. Skipping.") + return False + + # Convert to the expected format + available_videos = [] + for video in manual_videos: + available_videos.append({ + "title": video.get("title", ""), + "id": video.get("id", ""), + "url": video.get("url", "") + }) + + print(f"πŸ“‹ Found {len(available_videos)} manual videos") + + # Process manual videos (skip yt-dlp) + return self._process_videos_for_download(available_videos, channel_name, force_refresh, fuzzy_match, fuzzy_threshold) + + # Regular YouTube channel processing channel_name, channel_id = get_channel_info(url) print(f"\n🎬 Downloading from channel: {channel_name} ({url})") songlist = load_songlist(self.songlist_file_path) @@ -1011,6 +1041,134 @@ class KaraokeDownloader: # --- Download phase --- return self.execute_latest_per_channel_parallel(channel_plans, cache_file) + def _process_videos_for_download(self, available_videos, channel_name, force_refresh=False, fuzzy_match=False, fuzzy_threshold=DEFAULT_FUZZY_THRESHOLD): + """Process videos for download (used for both manual and regular channels).""" + songlist = load_songlist(self.songlist_file_path) + if not songlist: + print("⚠️ No songlist loaded. Skipping.") + return False + + # Load server songs and duplicates tracking for availability checking + server_songs = load_server_songs() + server_duplicates_tracking = load_server_duplicates_tracking() + + limit = getattr(self.config, "limit", 1) + + # Normalize songlist for matching + normalized_songlist = { + create_song_key(s["artist"], s["title"]): s for s in songlist + } + matches = [] + similarity = get_similarity_function() + + print(f"πŸ” Scanning {len(available_videos)} videos for songlist matches...") + + for video in available_videos: + title = video["title"] + video_id = video["id"] + + # Extract artist and title using channel parser + artist, extracted_title = self.channel_parser.extract_artist_title(title, channel_name) + + if not artist and not extracted_title: + continue + + song_key = create_song_key(artist, extracted_title) + + # Check for exact matches first + if song_key in normalized_songlist: + song_data = normalized_songlist[song_key] + matches.append({ + "video": video, + "song": song_data, + "match_type": "exact", + "match_score": 100.0, + "artist": artist, + "title": extracted_title + }) + print(f" βœ… Exact match: {artist} - {extracted_title}") + continue + + # Check for fuzzy matches if enabled + if fuzzy_match: + best_match = None + best_score = 0 + + for song_key, song_data in normalized_songlist.items(): + score = similarity(f"{artist} {extracted_title}", f"{song_data['artist']} {song_data['title']}") + if score > best_score and score >= fuzzy_threshold: + best_score = score + best_match = song_data + + if best_match: + matches.append({ + "video": video, + "song": best_match, + "match_type": "fuzzy", + "match_score": best_score, + "artist": artist, + "title": extracted_title + }) + print(f" 🎯 Fuzzy match ({best_score:.1f}%): {artist} - {extracted_title} -> {best_match['artist']} - {best_match['title']}") + + print(f"πŸ“Š Found {len(matches)} matches out of {len(available_videos)} videos") + + if not matches: + print("❌ No matches found in songlist") + return False + + # Sort matches by score (exact matches first, then by fuzzy score) + matches.sort(key=lambda x: (x["match_type"] != "exact", -x["match_score"])) + + # Limit downloads + if limit: + matches = matches[:limit] + print(f"🎯 Limiting to {len(matches)} downloads") + + # Download matched videos + success_count = 0 + for i, match in enumerate(matches, 1): + video = match["video"] + song = match["song"] + artist = match["artist"] + title = match["title"] + video_id = video["id"] + + print(f"\n⬇️ Downloading {i}/{len(matches)}: {artist} - {title}") + print(f" 🎬 Video: {video['title']} ({channel_name})") + if match["match_type"] == "fuzzy": + print(f" 🎯 Match Score: {match['match_score']:.1f}%") + + # Create filename + filename = sanitize_filename(artist, title) + output_path = self.downloads_dir / channel_name / filename + + # Use the download pipeline + pipeline = DownloadPipeline( + yt_dlp_path=str(self.yt_dlp_path), + config=self.config, + downloads_dir=self.downloads_dir, + songlist_tracking=self.songlist_tracking, + tracker=self.tracker, + ) + + success = pipeline.execute_pipeline( + video_id=video_id, + artist=artist, + title=title, + channel_name=channel_name, + video_title=video["title"] + ) + + if success: + success_count += 1 + print(f"βœ… Successfully downloaded: {artist} - {title}") + else: + print(f"❌ Failed to download: {artist} - {title}") + + print(f"\nπŸŽ‰ Download complete! {success_count}/{len(matches)} videos downloaded successfully") + return success_count > 0 + def reset_songlist_all(): """Delete all files tracked in songlist_tracking.json, clear songlist_tracking.json, and remove songlist songs from karaoke_tracking.json.""" diff --git a/karaoke_downloader/manual_video_manager.py b/karaoke_downloader/manual_video_manager.py new file mode 100644 index 0000000..7e71615 --- /dev/null +++ b/karaoke_downloader/manual_video_manager.py @@ -0,0 +1,77 @@ +""" +Manual video manager for handling static video collections. +""" + +import json +from pathlib import Path +from typing import Dict, List, Optional, Any + +def load_manual_videos(manual_file: str = "data/manual_videos.json") -> List[Dict[str, Any]]: + """ + Load manual videos from the JSON file. + + Args: + manual_file: Path to manual videos JSON file + + Returns: + List of video dictionaries + """ + manual_path = Path(manual_file) + + if not manual_path.exists(): + print(f"⚠️ Manual videos file not found: {manual_file}") + return [] + + try: + with open(manual_path, 'r', encoding='utf-8') as f: + data = json.load(f) + + videos = data.get("videos", []) + print(f"πŸ“‹ Loaded {len(videos)} manual videos from {manual_file}") + return videos + + except Exception as e: + print(f"❌ Error loading manual videos: {e}") + return [] + +def get_manual_videos_for_channel(channel_name: str, manual_file: str = "data/manual_videos.json") -> List[Dict[str, Any]]: + """ + Get manual videos for a specific channel. + + Args: + channel_name: Channel name (should be "@ManualVideos") + manual_file: Path to manual videos JSON file + + Returns: + List of video dictionaries + """ + if channel_name != "@ManualVideos": + return [] + + return load_manual_videos(manual_file) + +def is_manual_channel(channel_url: str) -> bool: + """ + Check if a channel URL is a manual channel. + + Args: + channel_url: Channel URL + + Returns: + True if it's a manual channel + """ + return channel_url == "manual://static" + +def get_manual_channel_info(channel_url: str) -> tuple[str, str]: + """ + Get channel info for manual channels. + + Args: + channel_url: Channel URL + + Returns: + Tuple of (channel_name, channel_id) + """ + if channel_url == "manual://static": + return "@ManualVideos", "manual" + return None, None \ No newline at end of file diff --git a/karaoke_downloader/tracking_manager.py b/karaoke_downloader/tracking_manager.py index be3c56f..c65aee1 100644 --- a/karaoke_downloader/tracking_manager.py +++ b/karaoke_downloader/tracking_manager.py @@ -341,8 +341,31 @@ class TrackingManager: show_pagination: Show page-by-page progress (slower but more detailed) """ channel_name, channel_id = None, None + + # Check if this is a manual channel + from karaoke_downloader.manual_video_manager import is_manual_channel, get_manual_channel_info, get_manual_videos_for_channel + + if is_manual_channel(channel_url): + channel_name, channel_id = get_manual_channel_info(channel_url) + if channel_name and channel_id: + print(f" πŸ“‹ Loading manual videos for {channel_name}") + manual_videos = get_manual_videos_for_channel(channel_name) + # Convert to the expected format + videos = [] + for video in manual_videos: + videos.append({ + "title": video.get("title", ""), + "id": video.get("id", ""), + "url": video.get("url", "") + }) + print(f" βœ… Loaded {len(videos)} manual videos") + return videos + else: + print(f" ❌ Could not get manual channel info for: {channel_url}") + return [] + + # Regular YouTube channel processing from karaoke_downloader.youtube_utils import get_channel_info - channel_name, channel_id = get_channel_info(channel_url) if not channel_id: